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

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

Issue 10802012: Add --trace-parse flag to parser. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix corner cases. Created 8 years, 5 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/parser.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 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 "flush code caches in maps during mark compact cycle.") 402 "flush code caches in maps during mark compact cycle.")
403 DEFINE_int(random_seed, 0, 403 DEFINE_int(random_seed, 0,
404 "Default seed for initializing random generator " 404 "Default seed for initializing random generator "
405 "(0, the default, means to use system random).") 405 "(0, the default, means to use system random).")
406 406
407 // objects.cc 407 // objects.cc
408 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") 408 DEFINE_bool(use_verbose_printer, true, "allows verbose printing")
409 409
410 // parser.cc 410 // parser.cc
411 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") 411 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax")
412 DEFINE_bool(trace_parse, false, "trace parsing and preparsing")
412 413
413 // simulator-arm.cc and simulator-mips.cc 414 // simulator-arm.cc and simulator-mips.cc
414 DEFINE_bool(trace_sim, false, "Trace simulator execution") 415 DEFINE_bool(trace_sim, false, "Trace simulator execution")
415 DEFINE_bool(check_icache, false, 416 DEFINE_bool(check_icache, false,
416 "Check icache flushes in ARM and MIPS simulator") 417 "Check icache flushes in ARM and MIPS simulator")
417 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") 418 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions")
418 DEFINE_int(sim_stack_alignment, 8, 419 DEFINE_int(sim_stack_alignment, 8,
419 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") 420 "Stack alingment in bytes in simulator (4 or 8, 8 is default)")
420 421
421 // isolate.cc 422 // isolate.cc
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
670 #undef DEFINE_bool 671 #undef DEFINE_bool
671 #undef DEFINE_int 672 #undef DEFINE_int
672 #undef DEFINE_string 673 #undef DEFINE_string
673 #undef DEFINE_implication 674 #undef DEFINE_implication
674 675
675 #undef FLAG_MODE_DECLARE 676 #undef FLAG_MODE_DECLARE
676 #undef FLAG_MODE_DEFINE 677 #undef FLAG_MODE_DEFINE
677 #undef FLAG_MODE_DEFINE_DEFAULTS 678 #undef FLAG_MODE_DEFINE_DEFAULTS
678 #undef FLAG_MODE_META 679 #undef FLAG_MODE_META
679 #undef FLAG_MODE_DEFINE_IMPLICATIONS 680 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « no previous file | src/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698