Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: src/flag-definitions.h

Issue 1787006: Put the icache checks in the ARM simulator behind a flag,... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/arm/simulator-arm.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 DEFINE_bool(new_snapshot, true, "use new snapshot implementation") 225 DEFINE_bool(new_snapshot, true, "use new snapshot implementation")
226 226
227 // parser.cc 227 // parser.cc
228 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") 228 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax")
229 229
230 // rewriter.cc 230 // rewriter.cc
231 DEFINE_bool(optimize_ast, true, "optimize the ast") 231 DEFINE_bool(optimize_ast, true, "optimize the ast")
232 232
233 // simulator-arm.cc and simulator-mips.cc 233 // simulator-arm.cc and simulator-mips.cc
234 DEFINE_bool(trace_sim, false, "Trace simulator execution") 234 DEFINE_bool(trace_sim, false, "Trace simulator execution")
235 DEFINE_bool(check_icache, false, "Check icache flushes in ARM simulator")
235 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") 236 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions")
236 DEFINE_int(sim_stack_alignment, 8, 237 DEFINE_int(sim_stack_alignment, 8,
237 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") 238 "Stack alingment in bytes in simulator (4 or 8, 8 is default)")
238 239
239 // top.cc 240 // top.cc
240 DEFINE_bool(trace_exception, false, 241 DEFINE_bool(trace_exception, false,
241 "print stack trace when throwing exceptions") 242 "print stack trace when throwing exceptions")
242 DEFINE_bool(preallocate_message_memory, false, 243 DEFINE_bool(preallocate_message_memory, false,
243 "preallocate some memory to build stack traces.") 244 "preallocate some memory to build stack traces.")
244 245
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 #undef FLAG 438 #undef FLAG
438 439
439 #undef DEFINE_bool 440 #undef DEFINE_bool
440 #undef DEFINE_int 441 #undef DEFINE_int
441 #undef DEFINE_string 442 #undef DEFINE_string
442 443
443 #undef FLAG_MODE_DECLARE 444 #undef FLAG_MODE_DECLARE
444 #undef FLAG_MODE_DEFINE 445 #undef FLAG_MODE_DEFINE
445 #undef FLAG_MODE_DEFINE_DEFAULTS 446 #undef FLAG_MODE_DEFINE_DEFAULTS
446 #undef FLAG_MODE_META 447 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/arm/simulator-arm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698