| OLD | NEW | 
|    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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  372             "instruction pairs (ARM only)") |  372             "instruction pairs (ARM only)") | 
|  373 DEFINE_bool(enable_unaligned_accesses, true, |  373 DEFINE_bool(enable_unaligned_accesses, true, | 
|  374             "enable unaligned accesses for ARMv7 (ARM only)") |  374             "enable unaligned accesses for ARMv7 (ARM only)") | 
|  375 DEFINE_bool(enable_32dregs, ENABLE_32DREGS_DEFAULT, |  375 DEFINE_bool(enable_32dregs, ENABLE_32DREGS_DEFAULT, | 
|  376             "enable use of d16-d31 registers on ARM - this requires VFP3") |  376             "enable use of d16-d31 registers on ARM - this requires VFP3") | 
|  377 DEFINE_bool(enable_vldr_imm, false, |  377 DEFINE_bool(enable_vldr_imm, false, | 
|  378             "enable use of constant pools for double immediate (ARM only)") |  378             "enable use of constant pools for double immediate (ARM only)") | 
|  379 DEFINE_bool(force_long_branches, false, |  379 DEFINE_bool(force_long_branches, false, | 
|  380             "force all emitted branches to be in long mode (MIPS only)") |  380             "force all emitted branches to be in long mode (MIPS only)") | 
|  381  |  381  | 
|  382 // cpu-arm64.cc |  | 
|  383 DEFINE_bool(enable_always_align_csp, true, |  | 
|  384             "enable alignment of csp to 16 bytes on platforms which prefer " |  | 
|  385             "the register to always be aligned (ARM64 only)") |  | 
|  386  |  | 
|  387 // bootstrapper.cc |  382 // bootstrapper.cc | 
|  388 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") |  383 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") | 
|  389 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") |  384 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") | 
|  390 DEFINE_bool(expose_free_buffer, false, "expose freeBuffer extension") |  385 DEFINE_bool(expose_free_buffer, false, "expose freeBuffer extension") | 
|  391 DEFINE_bool(expose_gc, false, "expose gc extension") |  386 DEFINE_bool(expose_gc, false, "expose gc extension") | 
|  392 DEFINE_string(expose_gc_as, NULL, |  387 DEFINE_string(expose_gc_as, NULL, | 
|  393               "expose gc extension under the specified name") |  388               "expose gc extension under the specified name") | 
|  394 DEFINE_implication(expose_gc_as, expose_gc) |  389 DEFINE_implication(expose_gc_as, expose_gc) | 
|  395 DEFINE_bool(expose_externalize_string, false, |  390 DEFINE_bool(expose_externalize_string, false, | 
|  396             "expose externalize string extension") |  391             "expose externalize string extension") | 
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  903 #undef DEFINE_ALIAS_float |  898 #undef DEFINE_ALIAS_float | 
|  904 #undef DEFINE_ALIAS_args |  899 #undef DEFINE_ALIAS_args | 
|  905  |  900  | 
|  906 #undef FLAG_MODE_DECLARE |  901 #undef FLAG_MODE_DECLARE | 
|  907 #undef FLAG_MODE_DEFINE |  902 #undef FLAG_MODE_DEFINE | 
|  908 #undef FLAG_MODE_DEFINE_DEFAULTS |  903 #undef FLAG_MODE_DEFINE_DEFAULTS | 
|  909 #undef FLAG_MODE_META |  904 #undef FLAG_MODE_META | 
|  910 #undef FLAG_MODE_DEFINE_IMPLICATIONS |  905 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 
|  911  |  906  | 
|  912 #undef COMMA |  907 #undef COMMA | 
| OLD | NEW |