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

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

Issue 40218: Fix garbage collection of unused maps. Null descriptors, created... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 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 | « src/factory.cc ('k') | src/handles.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 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 DEFINE_int(max_stack_trace_source_length, 300, 144 DEFINE_int(max_stack_trace_source_length, 300,
145 "maximum length of function source code printed in a stack trace.") 145 "maximum length of function source code printed in a stack trace.")
146 146
147 // heap.cc 147 // heap.cc
148 DEFINE_int(new_space_size, 0, "size of (each semispace in) the new generation") 148 DEFINE_int(new_space_size, 0, "size of (each semispace in) the new generation")
149 DEFINE_int(old_space_size, 0, "size of the old generation") 149 DEFINE_int(old_space_size, 0, "size of the old generation")
150 DEFINE_bool(gc_global, false, "always perform global GCs") 150 DEFINE_bool(gc_global, false, "always perform global GCs")
151 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations") 151 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations")
152 DEFINE_bool(trace_gc, false, 152 DEFINE_bool(trace_gc, false,
153 "print one trace line following each garbage collection") 153 "print one trace line following each garbage collection")
154 DEFINE_bool(collect_maps, false, 154 DEFINE_bool(collect_maps, true,
155 "garbage collect maps from which no objects can be reached") 155 "garbage collect maps from which no objects can be reached")
156 156
157 // ic.cc 157 // ic.cc
158 DEFINE_bool(use_ic, true, "use inline caching") 158 DEFINE_bool(use_ic, true, "use inline caching")
159 159
160 // macro-assembler-ia32.cc 160 // macro-assembler-ia32.cc
161 DEFINE_bool(native_code_counters, false, 161 DEFINE_bool(native_code_counters, false,
162 "generate extra code for manipulating stats counters") 162 "generate extra code for manipulating stats counters")
163 163
164 // mark-compact.cc 164 // mark-compact.cc
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 #undef FLAG 360 #undef FLAG
361 361
362 #undef DEFINE_bool 362 #undef DEFINE_bool
363 #undef DEFINE_int 363 #undef DEFINE_int
364 #undef DEFINE_string 364 #undef DEFINE_string
365 365
366 #undef FLAG_MODE_DECLARE 366 #undef FLAG_MODE_DECLARE
367 #undef FLAG_MODE_DEFINE 367 #undef FLAG_MODE_DEFINE
368 #undef FLAG_MODE_DEFINE_DEFAULTS 368 #undef FLAG_MODE_DEFINE_DEFAULTS
369 #undef FLAG_MODE_META 369 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/handles.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698