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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
246 DEFINE_bool(trace_migration, false, "trace object migration") | 246 DEFINE_bool(trace_migration, false, "trace object migration") |
247 DEFINE_bool(trace_generalization, false, "trace map generalization") | 247 DEFINE_bool(trace_generalization, false, "trace map generalization") |
248 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") | 248 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction") |
249 DEFINE_bool(stress_environments, false, "environment for every instruction") | 249 DEFINE_bool(stress_environments, false, "environment for every instruction") |
250 DEFINE_int(deopt_every_n_times, | 250 DEFINE_int(deopt_every_n_times, |
251 0, | 251 0, |
252 "deoptimize every n times a deopt point is passed") | 252 "deoptimize every n times a deopt point is passed") |
253 DEFINE_int(deopt_every_n_garbage_collections, | 253 DEFINE_int(deopt_every_n_garbage_collections, |
254 0, | 254 0, |
255 "deoptimize every n garbage collections") | 255 "deoptimize every n garbage collections") |
256 DEFINE_bool(trace_deopt_stress, false, "trace number of possible deopt points") | |
Michael Starzinger
2013/07/16 15:23:35
This doesn't really trace anything but just print
| |
256 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") | 257 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") |
257 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") | 258 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") |
258 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") | 259 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") |
259 DEFINE_bool(use_osr, true, "use on-stack replacement") | 260 DEFINE_bool(use_osr, true, "use on-stack replacement") |
260 DEFINE_bool(idefs, false, "use informative definitions") | 261 DEFINE_bool(idefs, false, "use informative definitions") |
261 DEFINE_bool(array_bounds_checks_elimination, true, | 262 DEFINE_bool(array_bounds_checks_elimination, true, |
262 "perform array bounds checks elimination") | 263 "perform array bounds checks elimination") |
263 DEFINE_bool(array_index_dehoisting, true, | 264 DEFINE_bool(array_index_dehoisting, true, |
264 "perform array index dehoisting") | 265 "perform array index dehoisting") |
265 DEFINE_bool(analyze_environment_liveness, true, | 266 DEFINE_bool(analyze_environment_liveness, true, |
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
802 #undef DEFINE_bool | 803 #undef DEFINE_bool |
803 #undef DEFINE_int | 804 #undef DEFINE_int |
804 #undef DEFINE_string | 805 #undef DEFINE_string |
805 #undef DEFINE_implication | 806 #undef DEFINE_implication |
806 | 807 |
807 #undef FLAG_MODE_DECLARE | 808 #undef FLAG_MODE_DECLARE |
808 #undef FLAG_MODE_DEFINE | 809 #undef FLAG_MODE_DEFINE |
809 #undef FLAG_MODE_DEFINE_DEFAULTS | 810 #undef FLAG_MODE_DEFINE_DEFAULTS |
810 #undef FLAG_MODE_META | 811 #undef FLAG_MODE_META |
811 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 812 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |