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

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

Issue 26764004: Invoke generated lexer along with baseline lexer to compare results. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Created 7 years, 2 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/lexer/lexer.h » ('j') | src/lexer/lexer.re » ('J')
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 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
565 "Default seed for initializing random generator " 565 "Default seed for initializing random generator "
566 "(0, the default, means to use system random).") 566 "(0, the default, means to use system random).")
567 567
568 // objects.cc 568 // objects.cc
569 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") 569 DEFINE_bool(use_verbose_printer, true, "allows verbose printing")
570 570
571 // parser.cc 571 // parser.cc
572 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") 572 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax")
573 DEFINE_bool(trace_parse, false, "trace parsing and preparsing") 573 DEFINE_bool(trace_parse, false, "trace parsing and preparsing")
574 574
575 DEFINE_bool(trace_lexer, false, "trace lexing")
576
575 // simulator-arm.cc and simulator-mips.cc 577 // simulator-arm.cc and simulator-mips.cc
576 DEFINE_bool(trace_sim, false, "Trace simulator execution") 578 DEFINE_bool(trace_sim, false, "Trace simulator execution")
577 DEFINE_bool(check_icache, false, 579 DEFINE_bool(check_icache, false,
578 "Check icache flushes in ARM and MIPS simulator") 580 "Check icache flushes in ARM and MIPS simulator")
579 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") 581 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions")
580 DEFINE_int(sim_stack_alignment, 8, 582 DEFINE_int(sim_stack_alignment, 8,
581 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") 583 "Stack alingment in bytes in simulator (4 or 8, 8 is default)")
582 584
583 // isolate.cc 585 // isolate.cc
584 DEFINE_bool(abort_on_uncaught_exception, false, 586 DEFINE_bool(abort_on_uncaught_exception, false,
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
864 #undef DEFINE_ALIAS_float 866 #undef DEFINE_ALIAS_float
865 #undef DEFINE_ALIAS_args 867 #undef DEFINE_ALIAS_args
866 868
867 #undef FLAG_MODE_DECLARE 869 #undef FLAG_MODE_DECLARE
868 #undef FLAG_MODE_DEFINE 870 #undef FLAG_MODE_DEFINE
869 #undef FLAG_MODE_DEFINE_DEFAULTS 871 #undef FLAG_MODE_DEFINE_DEFAULTS
870 #undef FLAG_MODE_META 872 #undef FLAG_MODE_META
871 #undef FLAG_MODE_DEFINE_IMPLICATIONS 873 #undef FLAG_MODE_DEFINE_IMPLICATIONS
872 874
873 #undef COMMA 875 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | src/lexer/lexer.h » ('j') | src/lexer/lexer.re » ('J')

Powered by Google App Engine
This is Rietveld 408576698