aboutsummaryrefslogtreecommitdiffstats
path: root/dcache.h
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-02-10 15:43:59 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-02-10 15:43:59 -0800
commitc27f813900a3c114562efbb8df1065e94766fc48 (patch)
treed95919283707dcab61009e27007374a745c9541e /dcache.h
parent0852ad57fa372f9b2854e4df685eaba8d8ef6790 (diff)
downloadexternal_qemu-c27f813900a3c114562efbb8df1065e94766fc48.zip
external_qemu-c27f813900a3c114562efbb8df1065e94766fc48.tar.gz
external_qemu-c27f813900a3c114562efbb8df1065e94766fc48.tar.bz2
auto import from //branches/cupcake/...@130745
Diffstat (limited to 'dcache.h')
-rw-r--r--dcache.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/dcache.h b/dcache.h
index 15e249b..8857600 100644
--- a/dcache.h
+++ b/dcache.h
@@ -18,6 +18,13 @@
#define kPolicyRoundRobin 1
#define kPolicyRandom 2
+extern int dcache_size;
+extern int dcache_ways;
+extern int dcache_line_size;
+extern int dcache_replace_policy;
+extern int dcache_load_miss_penalty;
+extern int dcache_store_miss_penalty;
+
extern void dcache_init(int size, int ways, int line_size, int replace_policy,
int load_miss_penalty, int store_miss_penalty);