| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 "print one detailed trace line in name=value format " | 260 "print one detailed trace line in name=value format " |
| 261 "after each garbage collection") | 261 "after each garbage collection") |
| 262 DEFINE_bool(print_cumulative_gc_stat, false, | 262 DEFINE_bool(print_cumulative_gc_stat, false, |
| 263 "print cumulative GC statistics in name=value format on exit") | 263 "print cumulative GC statistics in name=value format on exit") |
| 264 DEFINE_bool(trace_gc_verbose, false, | 264 DEFINE_bool(trace_gc_verbose, false, |
| 265 "print more details following each garbage collection") | 265 "print more details following each garbage collection") |
| 266 DEFINE_bool(collect_maps, true, | 266 DEFINE_bool(collect_maps, true, |
| 267 "garbage collect maps from which no objects can be reached") | 267 "garbage collect maps from which no objects can be reached") |
| 268 DEFINE_bool(flush_code, false, | 268 DEFINE_bool(flush_code, false, |
| 269 "flush code that we expect not to use again before full gc") | 269 "flush code that we expect not to use again before full gc") |
| 270 #ifdef V8_TARGET_ARCH_IA32 |
| 270 DEFINE_bool(incremental_marking, true, "use incremental marking") | 271 DEFINE_bool(incremental_marking, true, "use incremental marking") |
| 272 #else |
| 273 DEFINE_bool(incremental_marking, false, "use incremental marking") |
| 274 #endif |
| 271 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") | 275 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") |
| 272 DEFINE_bool(trace_incremental_marking, false, | 276 DEFINE_bool(trace_incremental_marking, false, |
| 273 "trace progress of the incremental marking") | 277 "trace progress of the incremental marking") |
| 274 | 278 |
| 275 // v8.cc | 279 // v8.cc |
| 276 DEFINE_bool(use_idle_notification, true, | 280 DEFINE_bool(use_idle_notification, true, |
| 277 "Use idle notification to reduce memory footprint.") | 281 "Use idle notification to reduce memory footprint.") |
| 278 // ic.cc | 282 // ic.cc |
| 279 DEFINE_bool(use_ic, true, "use inline caching") | 283 DEFINE_bool(use_ic, true, "use inline caching") |
| 280 | 284 |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 559 #undef FLAG | 563 #undef FLAG |
| 560 | 564 |
| 561 #undef DEFINE_bool | 565 #undef DEFINE_bool |
| 562 #undef DEFINE_int | 566 #undef DEFINE_int |
| 563 #undef DEFINE_string | 567 #undef DEFINE_string |
| 564 | 568 |
| 565 #undef FLAG_MODE_DECLARE | 569 #undef FLAG_MODE_DECLARE |
| 566 #undef FLAG_MODE_DEFINE | 570 #undef FLAG_MODE_DEFINE |
| 567 #undef FLAG_MODE_DEFINE_DEFAULTS | 571 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 568 #undef FLAG_MODE_META | 572 #undef FLAG_MODE_META |
| OLD | NEW |