Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(525)

Side by Side Diff: src/flag-definitions.h

Issue 11975012: Remove support for Live Object List and inspector module. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/debug-debugger.js ('k') | src/heap.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 #ifdef VERIFY_HEAP 412 #ifdef VERIFY_HEAP
413 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") 413 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC")
414 #endif 414 #endif
415 415
416 // v8.cc 416 // v8.cc
417 DEFINE_bool(use_idle_notification, true, 417 DEFINE_bool(use_idle_notification, true,
418 "Use idle notification to reduce memory footprint.") 418 "Use idle notification to reduce memory footprint.")
419 // ic.cc 419 // ic.cc
420 DEFINE_bool(use_ic, true, "use inline caching") 420 DEFINE_bool(use_ic, true, "use inline caching")
421 421
422 #ifdef LIVE_OBJECT_LIST
423 // liveobjectlist.cc
424 DEFINE_string(lol_workdir, NULL, "path for lol temp files")
425 DEFINE_bool(verify_lol, false, "perform debugging verification for lol")
426 #endif
427
428 // macro-assembler-ia32.cc 422 // macro-assembler-ia32.cc
429 DEFINE_bool(native_code_counters, false, 423 DEFINE_bool(native_code_counters, false,
430 "generate extra code for manipulating stats counters") 424 "generate extra code for manipulating stats counters")
431 425
432 // mark-compact.cc 426 // mark-compact.cc
433 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") 427 DEFINE_bool(always_compact, false, "Perform compaction on every full GC")
434 DEFINE_bool(lazy_sweeping, true, 428 DEFINE_bool(lazy_sweeping, true,
435 "Use lazy sweeping for old pointer and data spaces") 429 "Use lazy sweeping for old pointer and data spaces")
436 DEFINE_bool(never_compact, false, 430 DEFINE_bool(never_compact, false,
437 "Never perform compaction on full GC - testing only") 431 "Never perform compaction on full GC - testing only")
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
720 #undef DEFINE_bool 714 #undef DEFINE_bool
721 #undef DEFINE_int 715 #undef DEFINE_int
722 #undef DEFINE_string 716 #undef DEFINE_string
723 #undef DEFINE_implication 717 #undef DEFINE_implication
724 718
725 #undef FLAG_MODE_DECLARE 719 #undef FLAG_MODE_DECLARE
726 #undef FLAG_MODE_DEFINE 720 #undef FLAG_MODE_DEFINE
727 #undef FLAG_MODE_DEFINE_DEFAULTS 721 #undef FLAG_MODE_DEFINE_DEFAULTS
728 #undef FLAG_MODE_META 722 #undef FLAG_MODE_META
729 #undef FLAG_MODE_DEFINE_IMPLICATIONS 723 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/debug-debugger.js ('k') | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698