| OLD | NEW |
| 1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 2008 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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 "print one trace line following each garbage collection") | 186 "print one trace line following each garbage collection") |
| 187 DEFINE_bool(trace_gc_nvp, false, | 187 DEFINE_bool(trace_gc_nvp, false, |
| 188 "print one detailed trace line in name=value format " | 188 "print one detailed trace line in name=value format " |
| 189 "after each garbage collection") | 189 "after each garbage collection") |
| 190 DEFINE_bool(print_cumulative_gc_stat, false, | 190 DEFINE_bool(print_cumulative_gc_stat, false, |
| 191 "print cumulative GC statistics in name=value format on exit") | 191 "print cumulative GC statistics in name=value format on exit") |
| 192 DEFINE_bool(trace_gc_verbose, false, | 192 DEFINE_bool(trace_gc_verbose, false, |
| 193 "print more details following each garbage collection") | 193 "print more details following each garbage collection") |
| 194 DEFINE_bool(collect_maps, true, | 194 DEFINE_bool(collect_maps, true, |
| 195 "garbage collect maps from which no objects can be reached") | 195 "garbage collect maps from which no objects can be reached") |
| 196 DEFINE_bool(flush_code, false, | 196 DEFINE_bool(flush_code, true, |
| 197 "flush code that we expect not to use again before full gc") | 197 "flush code that we expect not to use again before full gc") |
| 198 | 198 |
| 199 // v8.cc | 199 // v8.cc |
| 200 DEFINE_bool(use_idle_notification, true, | 200 DEFINE_bool(use_idle_notification, true, |
| 201 "Use idle notification to reduce memory footprint.") | 201 "Use idle notification to reduce memory footprint.") |
| 202 // ic.cc | 202 // ic.cc |
| 203 DEFINE_bool(use_ic, true, "use inline caching") | 203 DEFINE_bool(use_ic, true, "use inline caching") |
| 204 | 204 |
| 205 // macro-assembler-ia32.cc | 205 // macro-assembler-ia32.cc |
| 206 DEFINE_bool(native_code_counters, false, | 206 DEFINE_bool(native_code_counters, false, |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 #undef FLAG | 446 #undef FLAG |
| 447 | 447 |
| 448 #undef DEFINE_bool | 448 #undef DEFINE_bool |
| 449 #undef DEFINE_int | 449 #undef DEFINE_int |
| 450 #undef DEFINE_string | 450 #undef DEFINE_string |
| 451 | 451 |
| 452 #undef FLAG_MODE_DECLARE | 452 #undef FLAG_MODE_DECLARE |
| 453 #undef FLAG_MODE_DEFINE | 453 #undef FLAG_MODE_DEFINE |
| 454 #undef FLAG_MODE_DEFINE_DEFAULTS | 454 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 455 #undef FLAG_MODE_META | 455 #undef FLAG_MODE_META |
| OLD | NEW |