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

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

Issue 993473002: [turbofan] Add support for inlining of builtins. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 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/compiler/pipeline.cc ('k') | test/cctest/compiler/function-tester.h » ('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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file defines all of the flags. It is separated into different section, 5 // This file defines all of the flags. It is separated into different section,
6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the 6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the
7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'. 7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'.
8 // 8 //
9 // This include does not have a guard, because it is a template-style include, 9 // This include does not have a guard, because it is a template-style include,
10 // which can be included multiple times in different modes. It expects to have 10 // which can be included multiple times in different modes. It expects to have
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 DEFINE_BOOL(turbo_stats, false, "print TurboFan statistics") 401 DEFINE_BOOL(turbo_stats, false, "print TurboFan statistics")
402 DEFINE_BOOL(turbo_splitting, true, "split nodes during scheduling in TurboFan") 402 DEFINE_BOOL(turbo_splitting, true, "split nodes during scheduling in TurboFan")
403 DEFINE_BOOL(turbo_types, true, "use typed lowering in TurboFan") 403 DEFINE_BOOL(turbo_types, true, "use typed lowering in TurboFan")
404 DEFINE_BOOL(turbo_source_positions, false, 404 DEFINE_BOOL(turbo_source_positions, false,
405 "track source code positions when building TurboFan IR") 405 "track source code positions when building TurboFan IR")
406 DEFINE_IMPLICATION(trace_turbo, turbo_source_positions) 406 DEFINE_IMPLICATION(trace_turbo, turbo_source_positions)
407 DEFINE_BOOL(context_specialization, false, 407 DEFINE_BOOL(context_specialization, false,
408 "enable context specialization in TurboFan") 408 "enable context specialization in TurboFan")
409 DEFINE_BOOL(turbo_deoptimization, false, "enable deoptimization in TurboFan") 409 DEFINE_BOOL(turbo_deoptimization, false, "enable deoptimization in TurboFan")
410 DEFINE_BOOL(turbo_inlining, false, "enable inlining in TurboFan") 410 DEFINE_BOOL(turbo_inlining, false, "enable inlining in TurboFan")
411 DEFINE_BOOL(turbo_builtin_inlining, true, "enable builtin inlining in TurboFan")
411 DEFINE_BOOL(trace_turbo_inlining, false, "trace TurboFan inlining") 412 DEFINE_BOOL(trace_turbo_inlining, false, "trace TurboFan inlining")
412 DEFINE_BOOL(loop_assignment_analysis, true, "perform loop assignment analysis") 413 DEFINE_BOOL(loop_assignment_analysis, true, "perform loop assignment analysis")
413 DEFINE_IMPLICATION(turbo_inlining, turbo_types) 414 DEFINE_IMPLICATION(turbo_inlining, turbo_types)
415 DEFINE_IMPLICATION(turbo_builtin_inlining, turbo_types)
414 DEFINE_BOOL(turbo_profiling, false, "enable profiling in TurboFan") 416 DEFINE_BOOL(turbo_profiling, false, "enable profiling in TurboFan")
415 // TODO(dcarney): this is just for experimentation, remove when default. 417 // TODO(dcarney): this is just for experimentation, remove when default.
416 DEFINE_BOOL(turbo_delay_ssa_decon, false, 418 DEFINE_BOOL(turbo_delay_ssa_decon, false,
417 "delay ssa deconstruction in TurboFan register allocator") 419 "delay ssa deconstruction in TurboFan register allocator")
418 DEFINE_BOOL(turbo_verify_allocation, DEBUG_BOOL, 420 DEFINE_BOOL(turbo_verify_allocation, DEBUG_BOOL,
419 "verify register allocation in TurboFan") 421 "verify register allocation in TurboFan")
420 DEFINE_BOOL(turbo_move_optimization, true, "optimize gap moves in TurboFan") 422 DEFINE_BOOL(turbo_move_optimization, true, "optimize gap moves in TurboFan")
421 DEFINE_BOOL(turbo_jt, true, "enable jump threading in TurboFan") 423 DEFINE_BOOL(turbo_jt, true, "enable jump threading in TurboFan")
422 DEFINE_BOOL(turbo_osr, false, "enable OSR in TurboFan") 424 DEFINE_BOOL(turbo_osr, false, "enable OSR in TurboFan")
423 DEFINE_BOOL(turbo_exceptions, false, "enable exception handling in TurboFan") 425 DEFINE_BOOL(turbo_exceptions, false, "enable exception handling in TurboFan")
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after
1037 #undef DEFINE_ALIAS_FLOAT 1039 #undef DEFINE_ALIAS_FLOAT
1038 #undef DEFINE_ALIAS_ARGS 1040 #undef DEFINE_ALIAS_ARGS
1039 1041
1040 #undef FLAG_MODE_DECLARE 1042 #undef FLAG_MODE_DECLARE
1041 #undef FLAG_MODE_DEFINE 1043 #undef FLAG_MODE_DEFINE
1042 #undef FLAG_MODE_DEFINE_DEFAULTS 1044 #undef FLAG_MODE_DEFINE_DEFAULTS
1043 #undef FLAG_MODE_META 1045 #undef FLAG_MODE_META
1044 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1046 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1045 1047
1046 #undef COMMA 1048 #undef COMMA
OLDNEW
« no previous file with comments | « src/compiler/pipeline.cc ('k') | test/cctest/compiler/function-tester.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698