| 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 DEFINE_bool(trace_fragmentation, false, | 257 DEFINE_bool(trace_fragmentation, false, |
| 258 "report fragmentation for old pointer and data pages") | 258 "report fragmentation for old pointer and data pages") |
| 259 DEFINE_bool(collect_maps, true, | 259 DEFINE_bool(collect_maps, true, |
| 260 "garbage collect maps from which no objects can be reached") | 260 "garbage collect maps from which no objects can be reached") |
| 261 DEFINE_bool(flush_code, false, | 261 DEFINE_bool(flush_code, false, |
| 262 "flush code that we expect not to use again before full gc") | 262 "flush code that we expect not to use again before full gc") |
| 263 DEFINE_bool(incremental_marking, true, "use incremental marking") | 263 DEFINE_bool(incremental_marking, true, "use incremental marking") |
| 264 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") | 264 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") |
| 265 DEFINE_bool(trace_incremental_marking, false, | 265 DEFINE_bool(trace_incremental_marking, false, |
| 266 "trace progress of the incremental marking") | 266 "trace progress of the incremental marking") |
| 267 DEFINE_bool(trace_heap, false, "write a visualization of the heap to a file (d8)
") |
| 268 DEFINE_string(trace_heap_file, "v8heapvisualization.log", |
| 269 "file name for visualization of the heap (d8)") |
| 267 | 270 |
| 268 // v8.cc | 271 // v8.cc |
| 269 DEFINE_bool(use_idle_notification, true, | 272 DEFINE_bool(use_idle_notification, true, |
| 270 "Use idle notification to reduce memory footprint.") | 273 "Use idle notification to reduce memory footprint.") |
| 271 // ic.cc | 274 // ic.cc |
| 272 DEFINE_bool(use_ic, true, "use inline caching") | 275 DEFINE_bool(use_ic, true, "use inline caching") |
| 273 | 276 |
| 274 #ifdef LIVE_OBJECT_LIST | 277 #ifdef LIVE_OBJECT_LIST |
| 275 // liveobjectlist.cc | 278 // liveobjectlist.cc |
| 276 DEFINE_string(lol_workdir, NULL, "path for lol temp files") | 279 DEFINE_string(lol_workdir, NULL, "path for lol temp files") |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 #undef FLAG | 541 #undef FLAG |
| 539 | 542 |
| 540 #undef DEFINE_bool | 543 #undef DEFINE_bool |
| 541 #undef DEFINE_int | 544 #undef DEFINE_int |
| 542 #undef DEFINE_string | 545 #undef DEFINE_string |
| 543 | 546 |
| 544 #undef FLAG_MODE_DECLARE | 547 #undef FLAG_MODE_DECLARE |
| 545 #undef FLAG_MODE_DEFINE | 548 #undef FLAG_MODE_DEFINE |
| 546 #undef FLAG_MODE_DEFINE_DEFAULTS | 549 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 547 #undef FLAG_MODE_META | 550 #undef FLAG_MODE_META |
| OLD | NEW |