| 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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 DEFINE_bool(incremental_marking, true, "use incremental marking") | 383 DEFINE_bool(incremental_marking, true, "use incremental marking") |
| 384 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") | 384 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") |
| 385 DEFINE_bool(trace_incremental_marking, false, | 385 DEFINE_bool(trace_incremental_marking, false, |
| 386 "trace progress of the incremental marking") | 386 "trace progress of the incremental marking") |
| 387 DEFINE_bool(track_gc_object_stats, false, | 387 DEFINE_bool(track_gc_object_stats, false, |
| 388 "track object counts and memory usage") | 388 "track object counts and memory usage") |
| 389 | 389 |
| 390 // v8.cc | 390 // v8.cc |
| 391 DEFINE_bool(use_idle_notification, true, | 391 DEFINE_bool(use_idle_notification, true, |
| 392 "Use idle notification to reduce memory footprint.") | 392 "Use idle notification to reduce memory footprint.") |
| 393 | |
| 394 DEFINE_bool(send_idle_notification, false, | |
| 395 "Send idle notifcation between stress runs.") | |
| 396 // ic.cc | 393 // ic.cc |
| 397 DEFINE_bool(use_ic, true, "use inline caching") | 394 DEFINE_bool(use_ic, true, "use inline caching") |
| 398 | 395 |
| 399 #ifdef LIVE_OBJECT_LIST | 396 #ifdef LIVE_OBJECT_LIST |
| 400 // liveobjectlist.cc | 397 // liveobjectlist.cc |
| 401 DEFINE_string(lol_workdir, NULL, "path for lol temp files") | 398 DEFINE_string(lol_workdir, NULL, "path for lol temp files") |
| 402 DEFINE_bool(verify_lol, false, "perform debugging verification for lol") | 399 DEFINE_bool(verify_lol, false, "perform debugging verification for lol") |
| 403 #endif | 400 #endif |
| 404 | 401 |
| 405 // macro-assembler-ia32.cc | 402 // macro-assembler-ia32.cc |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 690 #undef DEFINE_bool | 687 #undef DEFINE_bool |
| 691 #undef DEFINE_int | 688 #undef DEFINE_int |
| 692 #undef DEFINE_string | 689 #undef DEFINE_string |
| 693 #undef DEFINE_implication | 690 #undef DEFINE_implication |
| 694 | 691 |
| 695 #undef FLAG_MODE_DECLARE | 692 #undef FLAG_MODE_DECLARE |
| 696 #undef FLAG_MODE_DEFINE | 693 #undef FLAG_MODE_DEFINE |
| 697 #undef FLAG_MODE_DEFINE_DEFAULTS | 694 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 698 #undef FLAG_MODE_META | 695 #undef FLAG_MODE_META |
| 699 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 696 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |