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

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

Issue 1024823002: Fix OOM bug 3976. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix signed/unsigned comparison Created 5 years, 9 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 | « no previous file | src/heap/mark-compact.cc » ('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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file defines all of the flags. It is separated into different section, 5 // This file defines all of the flags. It is separated into different section,
6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the 6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the
7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'. 7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'.
8 // 8 //
9 // This include does not have a guard, because it is a template-style include, 9 // This include does not have a guard, because it is a template-style include,
10 // which can be included multiple times in different modes. It expects to have 10 // which can be included multiple times in different modes. It expects to have
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
587 "print one trace line following each idle notification") 587 "print one trace line following each idle notification")
588 DEFINE_BOOL(trace_idle_notification_verbose, false, 588 DEFINE_BOOL(trace_idle_notification_verbose, false,
589 "prints the heap state used by the idle notification") 589 "prints the heap state used by the idle notification")
590 DEFINE_BOOL(print_cumulative_gc_stat, false, 590 DEFINE_BOOL(print_cumulative_gc_stat, false,
591 "print cumulative GC statistics in name=value format on exit") 591 "print cumulative GC statistics in name=value format on exit")
592 DEFINE_BOOL(print_max_heap_committed, false, 592 DEFINE_BOOL(print_max_heap_committed, false,
593 "print statistics of the maximum memory committed for the heap " 593 "print statistics of the maximum memory committed for the heap "
594 "in name=value format on exit") 594 "in name=value format on exit")
595 DEFINE_BOOL(trace_gc_verbose, false, 595 DEFINE_BOOL(trace_gc_verbose, false,
596 "print more details following each garbage collection") 596 "print more details following each garbage collection")
597 DEFINE_BOOL(trace_fragmentation, false, 597 DEFINE_BOOL(trace_fragmentation, false, "report fragmentation for old space")
598 "report fragmentation for old pointer and data pages") 598 DEFINE_BOOL(trace_fragmentation_verbose, false,
599 "report fragmentation for old space (detailed)")
599 DEFINE_BOOL(collect_maps, true, 600 DEFINE_BOOL(collect_maps, true,
600 "garbage collect maps from which no objects can be reached") 601 "garbage collect maps from which no objects can be reached")
601 DEFINE_BOOL(weak_embedded_maps_in_optimized_code, true, 602 DEFINE_BOOL(weak_embedded_maps_in_optimized_code, true,
602 "make maps embedded in optimized code weak") 603 "make maps embedded in optimized code weak")
603 DEFINE_BOOL(weak_embedded_objects_in_optimized_code, true, 604 DEFINE_BOOL(weak_embedded_objects_in_optimized_code, true,
604 "make objects embedded in optimized code weak") 605 "make objects embedded in optimized code weak")
605 DEFINE_BOOL(flush_code, true, 606 DEFINE_BOOL(flush_code, true,
606 "flush code that we expect not to use again (during full gc)") 607 "flush code that we expect not to use again (during full gc)")
607 DEFINE_BOOL(flush_code_incrementally, true, 608 DEFINE_BOOL(flush_code_incrementally, true,
608 "flush code that we expect not to use again (incrementally)") 609 "flush code that we expect not to use again (incrementally)")
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
1034 #undef DEFINE_ALIAS_FLOAT 1035 #undef DEFINE_ALIAS_FLOAT
1035 #undef DEFINE_ALIAS_ARGS 1036 #undef DEFINE_ALIAS_ARGS
1036 1037
1037 #undef FLAG_MODE_DECLARE 1038 #undef FLAG_MODE_DECLARE
1038 #undef FLAG_MODE_DEFINE 1039 #undef FLAG_MODE_DEFINE
1039 #undef FLAG_MODE_DEFINE_DEFAULTS 1040 #undef FLAG_MODE_DEFINE_DEFAULTS
1040 #undef FLAG_MODE_META 1041 #undef FLAG_MODE_META
1041 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1042 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1042 1043
1043 #undef COMMA 1044 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | src/heap/mark-compact.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698