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

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

Issue 1526913003: Reland "[turbofan] Instruction scheduler for Turbofan." (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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/x87/instruction-scheduler-x87.cc ('k') | tools/gyp/v8.gyp » ('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 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
460 DEFINE_BOOL(turbo_osr, true, "enable OSR in TurboFan") 460 DEFINE_BOOL(turbo_osr, true, "enable OSR in TurboFan")
461 DEFINE_BOOL(turbo_try_finally, false, "enable try-finally support in TurboFan") 461 DEFINE_BOOL(turbo_try_finally, false, "enable try-finally support in TurboFan")
462 DEFINE_BOOL(turbo_stress_loop_peeling, false, 462 DEFINE_BOOL(turbo_stress_loop_peeling, false,
463 "stress loop peeling optimization") 463 "stress loop peeling optimization")
464 DEFINE_BOOL(turbo_cf_optimization, true, "optimize control flow in TurboFan") 464 DEFINE_BOOL(turbo_cf_optimization, true, "optimize control flow in TurboFan")
465 DEFINE_BOOL(turbo_frame_elision, true, "elide frames in TurboFan") 465 DEFINE_BOOL(turbo_frame_elision, true, "elide frames in TurboFan")
466 DEFINE_BOOL(turbo_cache_shared_code, true, "cache context-independent code") 466 DEFINE_BOOL(turbo_cache_shared_code, true, "cache context-independent code")
467 DEFINE_BOOL(turbo_preserve_shared_code, false, "keep context-independent code") 467 DEFINE_BOOL(turbo_preserve_shared_code, false, "keep context-independent code")
468 DEFINE_BOOL(turbo_escape, false, "enable escape analysis") 468 DEFINE_BOOL(turbo_escape, false, "enable escape analysis")
469 DEFINE_BOOL(trace_turbo_escape, false, "enable tracing in escape analysis") 469 DEFINE_BOOL(trace_turbo_escape, false, "enable tracing in escape analysis")
470 DEFINE_BOOL(turbo_instruction_scheduling, false,
471 "enable instruction scheduling in TurboFan")
470 472
471 #if defined(V8_WASM) 473 #if defined(V8_WASM)
472 // Flags for native WebAssembly. 474 // Flags for native WebAssembly.
473 DEFINE_BOOL(expose_wasm, true, "expose WASM interface to JavaScript") 475 DEFINE_BOOL(expose_wasm, true, "expose WASM interface to JavaScript")
474 DEFINE_BOOL(trace_wasm_decoder, false, "trace decoding of wasm code") 476 DEFINE_BOOL(trace_wasm_decoder, false, "trace decoding of wasm code")
475 DEFINE_BOOL(trace_wasm_decode_time, false, "trace decoding time of wasm code") 477 DEFINE_BOOL(trace_wasm_decode_time, false, "trace decoding time of wasm code")
476 DEFINE_BOOL(trace_wasm_compiler, false, "trace compiling of wasm code") 478 DEFINE_BOOL(trace_wasm_compiler, false, "trace compiling of wasm code")
477 DEFINE_BOOL(wasm_break_on_decoder_error, false, 479 DEFINE_BOOL(wasm_break_on_decoder_error, false,
478 "debug break when wasm decoder encounters an error") 480 "debug break when wasm decoder encounters an error")
479 #endif 481 #endif
(...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after
1133 #undef DEFINE_ALIAS_FLOAT 1135 #undef DEFINE_ALIAS_FLOAT
1134 #undef DEFINE_ALIAS_ARGS 1136 #undef DEFINE_ALIAS_ARGS
1135 1137
1136 #undef FLAG_MODE_DECLARE 1138 #undef FLAG_MODE_DECLARE
1137 #undef FLAG_MODE_DEFINE 1139 #undef FLAG_MODE_DEFINE
1138 #undef FLAG_MODE_DEFINE_DEFAULTS 1140 #undef FLAG_MODE_DEFINE_DEFAULTS
1139 #undef FLAG_MODE_META 1141 #undef FLAG_MODE_META
1140 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1142 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1141 1143
1142 #undef COMMA 1144 #undef COMMA
OLDNEW
« no previous file with comments | « src/compiler/x87/instruction-scheduler-x87.cc ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698