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

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

Issue 6969042: Isolates cleanup: move top.cc to isolate.cc. (Closed)
Patch Set: Created 9 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
« no previous file with comments | « src/SConscript ('k') | src/isolate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 // rewriter.cc 320 // rewriter.cc
321 DEFINE_bool(optimize_ast, true, "optimize the ast") 321 DEFINE_bool(optimize_ast, true, "optimize the ast")
322 322
323 // simulator-arm.cc and simulator-mips.cc 323 // simulator-arm.cc and simulator-mips.cc
324 DEFINE_bool(trace_sim, false, "Trace simulator execution") 324 DEFINE_bool(trace_sim, false, "Trace simulator execution")
325 DEFINE_bool(check_icache, false, "Check icache flushes in ARM simulator") 325 DEFINE_bool(check_icache, false, "Check icache flushes in ARM simulator")
326 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") 326 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions")
327 DEFINE_int(sim_stack_alignment, 8, 327 DEFINE_int(sim_stack_alignment, 8,
328 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") 328 "Stack alingment in bytes in simulator (4 or 8, 8 is default)")
329 329
330 // top.cc 330 // isolate.cc
331 DEFINE_bool(trace_exception, false, 331 DEFINE_bool(trace_exception, false,
332 "print stack trace when throwing exceptions") 332 "print stack trace when throwing exceptions")
333 DEFINE_bool(preallocate_message_memory, false, 333 DEFINE_bool(preallocate_message_memory, false,
334 "preallocate some memory to build stack traces.") 334 "preallocate some memory to build stack traces.")
335 335
336 // v8.cc 336 // v8.cc
337 DEFINE_bool(preemption, false, 337 DEFINE_bool(preemption, false,
338 "activate a 100ms timer that switches between V8 threads") 338 "activate a 100ms timer that switches between V8 threads")
339 339
340 // Regexp 340 // Regexp
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
552 #undef FLAG 552 #undef FLAG
553 553
554 #undef DEFINE_bool 554 #undef DEFINE_bool
555 #undef DEFINE_int 555 #undef DEFINE_int
556 #undef DEFINE_string 556 #undef DEFINE_string
557 557
558 #undef FLAG_MODE_DECLARE 558 #undef FLAG_MODE_DECLARE
559 #undef FLAG_MODE_DEFINE 559 #undef FLAG_MODE_DEFINE
560 #undef FLAG_MODE_DEFINE_DEFAULTS 560 #undef FLAG_MODE_DEFINE_DEFAULTS
561 #undef FLAG_MODE_META 561 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/SConscript ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698