aboutsummaryrefslogtreecommitdiff
path: root/gdb/target-dcache.h
diff options
context:
space:
mode:
authorYao Qi <yao@codesourcery.com>2013-10-31 16:50:15 +0800
committerYao Qi <yao@codesourcery.com>2013-11-20 11:40:51 +0800
commit68c765e263432b1aa5f5a54edc358eba302be4ca (patch)
tree132882f55aaaad1d6b6b0373fa7b3862010cafc0 /gdb/target-dcache.h
parentf2de978509eb51f85410eab04696725f0bccf9c3 (diff)
downloadgdb-68c765e263432b1aa5f5a54edc358eba302be4ca.zip
gdb-68c765e263432b1aa5f5a54edc358eba302be4ca.tar.gz
gdb-68c765e263432b1aa5f5a54edc358eba302be4ca.tar.bz2
Move target-dcache out of target.c
This patch moves target_dcache related code out of target.c. gdb: 2013-11-20 Yao Qi <yao@codesourcery.com> * Makefile.in (SFILES):Add target-dcache.c. (HFILES_NO_SRCDIR): Add target-dcache.h. (COMMON_OBS): Add target-dcache.o. * dcache.c: Remove inclusion to "target.h". Include "target-dcache.h". * memattr.c: Include "target-dcache.h". * top.c: Likewise. * tracepoint.c: Likewise. * target.c: (stack_cache_enabled_p_1): Move to target-dcache.c. (stack_cache_enabled_p): Likewise. (set_stack_cache_enabled_p): Likewise. (show_stack_cache_enabled_p): Likewise. (target_dcache, target_dcache_init_p): Likewise. (target_dcache_invalidate): Likewise. (target_dcache_get, target_dcache_get_or_init): Likewise. (memory_xfer_partial_1): Call function stack_cache_enabled. (initialize_target): Move code to target-dcache.c. * target.h (target_dcache_invalidate): Move to target-dcache.h. (target_dcache_get): Likewise. * target-dcache.c: New. * target-dcache.h: New.
Diffstat (limited to 'gdb/target-dcache.h')
-rw-r--r--gdb/target-dcache.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/gdb/target-dcache.h b/gdb/target-dcache.h
new file mode 100644
index 0000000..a5e1556
--- /dev/null
+++ b/gdb/target-dcache.h
@@ -0,0 +1,33 @@
+/* Copyright (C) 1992-2013 Free Software Foundation, Inc.
+
+ This file is part of GDB.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
+#ifndef TARGET_DCACHE_H
+#define TARGET_DCACHE_H
+
+#include "dcache.h"
+
+extern void target_dcache_invalidate (void);
+
+extern DCACHE *target_dcache_get (void);
+
+extern DCACHE *target_dcache_get_or_init (void);
+
+extern int target_dcache_init_p (void);
+
+extern int stack_cache_enabled (void);
+
+#endif /* TARGET_DCACHE_H */