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

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

Issue 15858003: Merged r14185 into 3.14 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.14
Patch Set: Created 7 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 | « no previous file | 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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 442
443 // simulator-arm.cc and simulator-mips.cc 443 // simulator-arm.cc and simulator-mips.cc
444 DEFINE_bool(trace_sim, false, "Trace simulator execution") 444 DEFINE_bool(trace_sim, false, "Trace simulator execution")
445 DEFINE_bool(check_icache, false, 445 DEFINE_bool(check_icache, false,
446 "Check icache flushes in ARM and MIPS simulator") 446 "Check icache flushes in ARM and MIPS simulator")
447 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") 447 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions")
448 DEFINE_int(sim_stack_alignment, 8, 448 DEFINE_int(sim_stack_alignment, 8,
449 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") 449 "Stack alingment in bytes in simulator (4 or 8, 8 is default)")
450 450
451 // isolate.cc 451 // isolate.cc
452 DEFINE_bool(abort_on_uncaught_exception, false,
453 "abort program (dump core) when an uncaught exception is thrown")
452 DEFINE_bool(trace_exception, false, 454 DEFINE_bool(trace_exception, false,
453 "print stack trace when throwing exceptions") 455 "print stack trace when throwing exceptions")
454 DEFINE_bool(preallocate_message_memory, false, 456 DEFINE_bool(preallocate_message_memory, false,
455 "preallocate some memory to build stack traces.") 457 "preallocate some memory to build stack traces.")
456 DEFINE_bool(randomize_hashes, 458 DEFINE_bool(randomize_hashes,
457 true, 459 true,
458 "randomize hashes to avoid predictable hash collisions " 460 "randomize hashes to avoid predictable hash collisions "
459 "(with snapshots this option cannot override the baked-in seed)") 461 "(with snapshots this option cannot override the baked-in seed)")
460 DEFINE_int(hash_seed, 462 DEFINE_int(hash_seed,
461 0, 463 0,
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
702 #undef DEFINE_bool 704 #undef DEFINE_bool
703 #undef DEFINE_int 705 #undef DEFINE_int
704 #undef DEFINE_string 706 #undef DEFINE_string
705 #undef DEFINE_implication 707 #undef DEFINE_implication
706 708
707 #undef FLAG_MODE_DECLARE 709 #undef FLAG_MODE_DECLARE
708 #undef FLAG_MODE_DEFINE 710 #undef FLAG_MODE_DEFINE
709 #undef FLAG_MODE_DEFINE_DEFAULTS 711 #undef FLAG_MODE_DEFINE_DEFAULTS
710 #undef FLAG_MODE_META 712 #undef FLAG_MODE_META
711 #undef FLAG_MODE_DEFINE_IMPLICATIONS 713 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « no previous file | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698