aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-05-18 08:21:40 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2009-05-18 08:21:40 -0700
commit144065e79ef20c254c68ddf4f1a3a951cd1fed2a (patch)
treecba1d75e3e4b56af5bf22f5189c7f63724ae5346
parent3e7a92854dbf66902da5522ca3dfb2011c0ce8be (diff)
parente858242763a9939257b741df0708b24d9f3e3a74 (diff)
downloadexternal_qemu-144065e79ef20c254c68ddf4f1a3a951cd1fed2a.zip
external_qemu-144065e79ef20c254c68ddf4f1a3a951cd1fed2a.tar.gz
external_qemu-144065e79ef20c254c68ddf4f1a3a951cd1fed2a.tar.bz2
Merge change 1789 into donut
* changes: Remove the dcache from the emulator since we are not tracing loads and stores.
-rw-r--r--vl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/vl.c b/vl.c
index 0659b45..e6a0305 100644
--- a/vl.c
+++ b/vl.c
@@ -9688,9 +9688,13 @@ int main(int argc, char **argv)
#ifdef CONFIG_TRACE
if (trace_filename) {
trace_init(trace_filename);
+#if 0
+ // We don't need the dcache code until we can get load and store tracing
+ // working again.
dcache_init(dcache_size, dcache_ways, dcache_line_size,
dcache_replace_policy, dcache_load_miss_penalty,
dcache_store_miss_penalty);
+#endif
fprintf(stderr, "-- When done tracing, exit the emulator. --\n");
}
#endif