| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file") | 224 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file") |
| 225 DEFINE_string(trace_phase, "Z", "trace generated IR for specified phases") | 225 DEFINE_string(trace_phase, "Z", "trace generated IR for specified phases") |
| 226 DEFINE_bool(trace_inlining, false, "trace inlining decisions") | 226 DEFINE_bool(trace_inlining, false, "trace inlining decisions") |
| 227 DEFINE_bool(trace_alloc, false, "trace register allocator") | 227 DEFINE_bool(trace_alloc, false, "trace register allocator") |
| 228 DEFINE_bool(trace_all_uses, false, "trace all use positions") | 228 DEFINE_bool(trace_all_uses, false, "trace all use positions") |
| 229 DEFINE_bool(trace_range, false, "trace range analysis") | 229 DEFINE_bool(trace_range, false, "trace range analysis") |
| 230 DEFINE_bool(trace_gvn, false, "trace global value numbering") | 230 DEFINE_bool(trace_gvn, false, "trace global value numbering") |
| 231 DEFINE_bool(trace_representation, false, "trace representation types") | 231 DEFINE_bool(trace_representation, false, "trace representation types") |
| 232 DEFINE_bool(trace_track_allocation_sites, false, | 232 DEFINE_bool(trace_track_allocation_sites, false, |
| 233 "trace the tracking of allocation sites") | 233 "trace the tracking of allocation sites") |
| 234 DEFINE_bool(trace_migration, false, "trace object migration") |
| 235 DEFINE_bool(trace_generalization, false, "trace map generalization") |
| 234 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") | 236 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") |
| 235 DEFINE_bool(stress_environments, false, "environment for every instruction") | 237 DEFINE_bool(stress_environments, false, "environment for every instruction") |
| 236 DEFINE_int(deopt_every_n_times, | 238 DEFINE_int(deopt_every_n_times, |
| 237 0, | 239 0, |
| 238 "deoptimize every n times a deopt point is passed") | 240 "deoptimize every n times a deopt point is passed") |
| 239 DEFINE_int(deopt_every_n_garbage_collections, | 241 DEFINE_int(deopt_every_n_garbage_collections, |
| 240 0, | 242 0, |
| 241 "deoptimize every n garbage collections") | 243 "deoptimize every n garbage collections") |
| 242 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") | 244 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") |
| 243 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") | 245 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") |
| (...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 781 #undef DEFINE_bool | 783 #undef DEFINE_bool |
| 782 #undef DEFINE_int | 784 #undef DEFINE_int |
| 783 #undef DEFINE_string | 785 #undef DEFINE_string |
| 784 #undef DEFINE_implication | 786 #undef DEFINE_implication |
| 785 | 787 |
| 786 #undef FLAG_MODE_DECLARE | 788 #undef FLAG_MODE_DECLARE |
| 787 #undef FLAG_MODE_DEFINE | 789 #undef FLAG_MODE_DEFINE |
| 788 #undef FLAG_MODE_DEFINE_DEFAULTS | 790 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 789 #undef FLAG_MODE_META | 791 #undef FLAG_MODE_META |
| 790 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 792 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |