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 1125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1136 "trace the creation of allocation sites") | 1136 "trace the creation of allocation sites") |
1137 | 1137 |
1138 // code-stubs.cc | 1138 // code-stubs.cc |
1139 DEFINE_BOOL(print_code_stubs, false, "print code stubs") | 1139 DEFINE_BOOL(print_code_stubs, false, "print code stubs") |
1140 DEFINE_BOOL(test_secondary_stub_cache, false, | 1140 DEFINE_BOOL(test_secondary_stub_cache, false, |
1141 "test secondary stub cache by disabling the primary one") | 1141 "test secondary stub cache by disabling the primary one") |
1142 | 1142 |
1143 DEFINE_BOOL(test_primary_stub_cache, false, | 1143 DEFINE_BOOL(test_primary_stub_cache, false, |
1144 "test primary stub cache by disabling the secondary one") | 1144 "test primary stub cache by disabling the secondary one") |
1145 | 1145 |
| 1146 DEFINE_BOOL(test_small_max_function_context_stub_size, false, |
| 1147 "enable testing the function context size overflow path " |
| 1148 "by making the maximum size smaller") |
1146 | 1149 |
1147 // codegen-ia32.cc / codegen-arm.cc | 1150 // codegen-ia32.cc / codegen-arm.cc |
1148 DEFINE_BOOL(print_code, false, "print generated code") | 1151 DEFINE_BOOL(print_code, false, "print generated code") |
1149 DEFINE_BOOL(print_opt_code, false, "print optimized code") | 1152 DEFINE_BOOL(print_opt_code, false, "print optimized code") |
1150 DEFINE_STRING(print_opt_code_filter, "*", "filter for printing optimized code") | 1153 DEFINE_STRING(print_opt_code_filter, "*", "filter for printing optimized code") |
1151 DEFINE_BOOL(print_unopt_code, false, | 1154 DEFINE_BOOL(print_unopt_code, false, |
1152 "print unoptimized code before " | 1155 "print unoptimized code before " |
1153 "printing optimized code based on it") | 1156 "printing optimized code based on it") |
1154 DEFINE_BOOL(print_code_verbose, false, "print more information for code") | 1157 DEFINE_BOOL(print_code_verbose, false, "print more information for code") |
1155 DEFINE_BOOL(print_builtin_code, false, "print generated code for builtins") | 1158 DEFINE_BOOL(print_builtin_code, false, "print generated code for builtins") |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1249 #undef DEFINE_ALIAS_FLOAT | 1252 #undef DEFINE_ALIAS_FLOAT |
1250 #undef DEFINE_ALIAS_ARGS | 1253 #undef DEFINE_ALIAS_ARGS |
1251 | 1254 |
1252 #undef FLAG_MODE_DECLARE | 1255 #undef FLAG_MODE_DECLARE |
1253 #undef FLAG_MODE_DEFINE | 1256 #undef FLAG_MODE_DEFINE |
1254 #undef FLAG_MODE_DEFINE_DEFAULTS | 1257 #undef FLAG_MODE_DEFINE_DEFAULTS |
1255 #undef FLAG_MODE_META | 1258 #undef FLAG_MODE_META |
1256 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1259 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1257 | 1260 |
1258 #undef COMMA | 1261 #undef COMMA |
OLD | NEW |