| 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 DEFINE_string(trace_hydrogen_file, NULL, "trace hydrogen to given file name") | 253 DEFINE_string(trace_hydrogen_file, NULL, "trace hydrogen to given file name") |
| 254 DEFINE_string(trace_phase, "HLZ", "trace generated IR for specified phases") | 254 DEFINE_string(trace_phase, "HLZ", "trace generated IR for specified phases") |
| 255 DEFINE_bool(trace_inlining, false, "trace inlining decisions") | 255 DEFINE_bool(trace_inlining, false, "trace inlining decisions") |
| 256 DEFINE_bool(trace_load_elimination, false, "trace load elimination") | 256 DEFINE_bool(trace_load_elimination, false, "trace load elimination") |
| 257 DEFINE_bool(trace_store_elimination, false, "trace store elimination") | 257 DEFINE_bool(trace_store_elimination, false, "trace store elimination") |
| 258 DEFINE_bool(trace_alloc, false, "trace register allocator") | 258 DEFINE_bool(trace_alloc, false, "trace register allocator") |
| 259 DEFINE_bool(trace_all_uses, false, "trace all use positions") | 259 DEFINE_bool(trace_all_uses, false, "trace all use positions") |
| 260 DEFINE_bool(trace_range, false, "trace range analysis") | 260 DEFINE_bool(trace_range, false, "trace range analysis") |
| 261 DEFINE_bool(trace_gvn, false, "trace global value numbering") | 261 DEFINE_bool(trace_gvn, false, "trace global value numbering") |
| 262 DEFINE_bool(trace_representation, false, "trace representation types") | 262 DEFINE_bool(trace_representation, false, "trace representation types") |
| 263 DEFINE_bool(trace_removable_simulates, false, "trace removable simulates") |
| 263 DEFINE_bool(trace_escape_analysis, false, "trace hydrogen escape analysis") | 264 DEFINE_bool(trace_escape_analysis, false, "trace hydrogen escape analysis") |
| 264 DEFINE_bool(trace_allocation_folding, false, "trace allocation folding") | 265 DEFINE_bool(trace_allocation_folding, false, "trace allocation folding") |
| 265 DEFINE_bool(trace_track_allocation_sites, false, | 266 DEFINE_bool(trace_track_allocation_sites, false, |
| 266 "trace the tracking of allocation sites") | 267 "trace the tracking of allocation sites") |
| 267 DEFINE_bool(trace_migration, false, "trace object migration") | 268 DEFINE_bool(trace_migration, false, "trace object migration") |
| 268 DEFINE_bool(trace_generalization, false, "trace map generalization") | 269 DEFINE_bool(trace_generalization, false, "trace map generalization") |
| 269 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") | 270 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") |
| 270 DEFINE_bool(stress_environments, false, "environment for every instruction") | 271 DEFINE_bool(stress_environments, false, "environment for every instruction") |
| 271 DEFINE_int(deopt_every_n_times, 0, | 272 DEFINE_int(deopt_every_n_times, 0, |
| 272 "deoptimize every n times a deopt point is passed") | 273 "deoptimize every n times a deopt point is passed") |
| (...skipping 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 892 #undef DEFINE_ALIAS_float | 893 #undef DEFINE_ALIAS_float |
| 893 #undef DEFINE_ALIAS_args | 894 #undef DEFINE_ALIAS_args |
| 894 | 895 |
| 895 #undef FLAG_MODE_DECLARE | 896 #undef FLAG_MODE_DECLARE |
| 896 #undef FLAG_MODE_DEFINE | 897 #undef FLAG_MODE_DEFINE |
| 897 #undef FLAG_MODE_DEFINE_DEFAULTS | 898 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 898 #undef FLAG_MODE_META | 899 #undef FLAG_MODE_META |
| 899 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 900 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 900 | 901 |
| 901 #undef COMMA | 902 #undef COMMA |
| OLD | NEW |