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

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

Issue 214883002: Two-threaded parser (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: code review (svenpanne) Created 6 years, 8 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') | src/parser.cc » ('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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 DEFINE_bool(always_opt, false, "always try to optimize functions") 443 DEFINE_bool(always_opt, false, "always try to optimize functions")
444 DEFINE_bool(always_osr, false, "always try to OSR functions") 444 DEFINE_bool(always_osr, false, "always try to OSR functions")
445 DEFINE_bool(prepare_always_opt, false, "prepare for turning on always opt") 445 DEFINE_bool(prepare_always_opt, false, "prepare for turning on always opt")
446 DEFINE_bool(trace_deopt, false, "trace optimize function deoptimization") 446 DEFINE_bool(trace_deopt, false, "trace optimize function deoptimization")
447 DEFINE_bool(trace_stub_failures, false, 447 DEFINE_bool(trace_stub_failures, false,
448 "trace deoptimization of generated code stubs") 448 "trace deoptimization of generated code stubs")
449 449
450 // compiler.cc 450 // compiler.cc
451 DEFINE_int(min_preparse_length, 1024, 451 DEFINE_int(min_preparse_length, 1024,
452 "minimum length for automatic enable preparsing") 452 "minimum length for automatic enable preparsing")
453 DEFINE_int(min_parallel_parse_length, 4096,
454 "minimum code length for multithreaded parsing")
453 DEFINE_bool(always_full_compiler, false, 455 DEFINE_bool(always_full_compiler, false,
454 "try to use the dedicated run-once backend for all code") 456 "try to use the dedicated run-once backend for all code")
455 DEFINE_int(max_opt_count, 10, 457 DEFINE_int(max_opt_count, 10,
456 "maximum number of optimization attempts before giving up.") 458 "maximum number of optimization attempts before giving up.")
457 459
458 // compilation-cache.cc 460 // compilation-cache.cc
459 DEFINE_bool(compilation_cache, true, "enable compilation cache") 461 DEFINE_bool(compilation_cache, true, "enable compilation cache")
460 462
461 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") 463 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions")
462 464
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
925 #undef DEFINE_ALIAS_float 927 #undef DEFINE_ALIAS_float
926 #undef DEFINE_ALIAS_args 928 #undef DEFINE_ALIAS_args
927 929
928 #undef FLAG_MODE_DECLARE 930 #undef FLAG_MODE_DECLARE
929 #undef FLAG_MODE_DEFINE 931 #undef FLAG_MODE_DEFINE
930 #undef FLAG_MODE_DEFINE_DEFAULTS 932 #undef FLAG_MODE_DEFINE_DEFAULTS
931 #undef FLAG_MODE_META 933 #undef FLAG_MODE_META
932 #undef FLAG_MODE_DEFINE_IMPLICATIONS 934 #undef FLAG_MODE_DEFINE_IMPLICATIONS
933 935
934 #undef COMMA 936 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | src/parser.cc » ('j') | src/parser.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698