| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 "print one detailed trace line in name=value format " | 250 "print one detailed trace line in name=value format " |
| 251 "after each garbage collection") | 251 "after each garbage collection") |
| 252 DEFINE_bool(print_cumulative_gc_stat, false, | 252 DEFINE_bool(print_cumulative_gc_stat, false, |
| 253 "print cumulative GC statistics in name=value format on exit") | 253 "print cumulative GC statistics in name=value format on exit") |
| 254 DEFINE_bool(trace_gc_verbose, false, | 254 DEFINE_bool(trace_gc_verbose, false, |
| 255 "print more details following each garbage collection") | 255 "print more details following each garbage collection") |
| 256 DEFINE_bool(collect_maps, true, | 256 DEFINE_bool(collect_maps, true, |
| 257 "garbage collect maps from which no objects can be reached") | 257 "garbage collect maps from which no objects can be reached") |
| 258 DEFINE_bool(flush_code, true, | 258 DEFINE_bool(flush_code, true, |
| 259 "flush code that we expect not to use again before full gc") | 259 "flush code that we expect not to use again before full gc") |
| 260 DEFINE_bool(new_gc, false, "enable new GC infrastructure") |
| 260 | 261 |
| 261 // v8.cc | 262 // v8.cc |
| 262 DEFINE_bool(use_idle_notification, true, | 263 DEFINE_bool(use_idle_notification, true, |
| 263 "Use idle notification to reduce memory footprint.") | 264 "Use idle notification to reduce memory footprint.") |
| 264 // ic.cc | 265 // ic.cc |
| 265 DEFINE_bool(use_ic, true, "use inline caching") | 266 DEFINE_bool(use_ic, true, "use inline caching") |
| 266 | 267 |
| 267 // macro-assembler-ia32.cc | 268 // macro-assembler-ia32.cc |
| 268 DEFINE_bool(native_code_counters, false, | 269 DEFINE_bool(native_code_counters, false, |
| 269 "generate extra code for manipulating stats counters") | 270 "generate extra code for manipulating stats counters") |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 #undef FLAG | 512 #undef FLAG |
| 512 | 513 |
| 513 #undef DEFINE_bool | 514 #undef DEFINE_bool |
| 514 #undef DEFINE_int | 515 #undef DEFINE_int |
| 515 #undef DEFINE_string | 516 #undef DEFINE_string |
| 516 | 517 |
| 517 #undef FLAG_MODE_DECLARE | 518 #undef FLAG_MODE_DECLARE |
| 518 #undef FLAG_MODE_DEFINE | 519 #undef FLAG_MODE_DEFINE |
| 519 #undef FLAG_MODE_DEFINE_DEFAULTS | 520 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 520 #undef FLAG_MODE_META | 521 #undef FLAG_MODE_META |
| OLD | NEW |