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

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

Issue 165448: - Added simple memory reduction behavior for IdleNotification.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 4 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.h » ('j') | src/spaces.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 DEFINE_int(old_space_size, 0, "size of the old generation") 154 DEFINE_int(old_space_size, 0, "size of the old generation")
155 DEFINE_bool(gc_global, false, "always perform global GCs") 155 DEFINE_bool(gc_global, false, "always perform global GCs")
156 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations") 156 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations")
157 DEFINE_bool(trace_gc, false, 157 DEFINE_bool(trace_gc, false,
158 "print one trace line following each garbage collection") 158 "print one trace line following each garbage collection")
159 DEFINE_bool(trace_gc_verbose, false, 159 DEFINE_bool(trace_gc_verbose, false,
160 "print more details following each garbage collection") 160 "print more details following each garbage collection")
161 DEFINE_bool(collect_maps, true, 161 DEFINE_bool(collect_maps, true,
162 "garbage collect maps from which no objects can be reached") 162 "garbage collect maps from which no objects can be reached")
163 163
164 // v8.cc
165 DEFINE_bool(use_idle_notification, true,
166 "Use idle notification to reduce memory footprint.")
164 // ic.cc 167 // ic.cc
165 DEFINE_bool(use_ic, true, "use inline caching") 168 DEFINE_bool(use_ic, true, "use inline caching")
166 169
167 // macro-assembler-ia32.cc 170 // macro-assembler-ia32.cc
168 DEFINE_bool(native_code_counters, false, 171 DEFINE_bool(native_code_counters, false,
169 "generate extra code for manipulating stats counters") 172 "generate extra code for manipulating stats counters")
170 173
171 // mark-compact.cc 174 // mark-compact.cc
172 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") 175 DEFINE_bool(always_compact, false, "Perform compaction on every full GC")
173 DEFINE_bool(never_compact, false, 176 DEFINE_bool(never_compact, false,
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 #undef FLAG 386 #undef FLAG
384 387
385 #undef DEFINE_bool 388 #undef DEFINE_bool
386 #undef DEFINE_int 389 #undef DEFINE_int
387 #undef DEFINE_string 390 #undef DEFINE_string
388 391
389 #undef FLAG_MODE_DECLARE 392 #undef FLAG_MODE_DECLARE
390 #undef FLAG_MODE_DEFINE 393 #undef FLAG_MODE_DEFINE
391 #undef FLAG_MODE_DEFINE_DEFAULTS 394 #undef FLAG_MODE_DEFINE_DEFAULTS
392 #undef FLAG_MODE_META 395 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « no previous file | src/heap.h » ('j') | src/spaces.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698