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

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

Issue 8831: Remove unused maps during marking garbage collections. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 12 years, 1 month 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/mark-compact.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 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 DEFINE_int(max_stack_trace_source_length, 300, 127 DEFINE_int(max_stack_trace_source_length, 300,
128 "maximum length of function source code printed in a stack trace.") 128 "maximum length of function source code printed in a stack trace.")
129 129
130 // heap.cc 130 // heap.cc
131 DEFINE_int(new_space_size, 0, "size of (each semispace in) the new generation") 131 DEFINE_int(new_space_size, 0, "size of (each semispace in) the new generation")
132 DEFINE_int(old_space_size, 0, "size of the old generation") 132 DEFINE_int(old_space_size, 0, "size of the old generation")
133 DEFINE_bool(gc_global, false, "always perform global GCs") 133 DEFINE_bool(gc_global, false, "always perform global GCs")
134 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations") 134 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations")
135 DEFINE_bool(trace_gc, false, 135 DEFINE_bool(trace_gc, false,
136 "print one trace line following each garbage collection") 136 "print one trace line following each garbage collection")
137 DEFINE_bool(collect_maps, true,
138 "garbage collect maps from which no objects can be reached")
137 139
138 // ic.cc 140 // ic.cc
139 DEFINE_bool(use_ic, true, "use inline caching") 141 DEFINE_bool(use_ic, true, "use inline caching")
140 142
141 // macro-assembler-ia32.cc 143 // macro-assembler-ia32.cc
142 DEFINE_bool(native_code_counters, false, 144 DEFINE_bool(native_code_counters, false,
143 "generate extra code for manipulating stats counters") 145 "generate extra code for manipulating stats counters")
144 146
145 // mark-compact.cc 147 // mark-compact.cc
146 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") 148 DEFINE_bool(always_compact, false, "Perform compaction on every full GC")
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 #undef FLAG 317 #undef FLAG
316 318
317 #undef DEFINE_bool 319 #undef DEFINE_bool
318 #undef DEFINE_int 320 #undef DEFINE_int
319 #undef DEFINE_string 321 #undef DEFINE_string
320 322
321 #undef FLAG_MODE_DECLARE 323 #undef FLAG_MODE_DECLARE
322 #undef FLAG_MODE_DEFINE 324 #undef FLAG_MODE_DEFINE
323 #undef FLAG_MODE_DEFINE_DEFAULTS 325 #undef FLAG_MODE_DEFINE_DEFAULTS
324 #undef FLAG_MODE_META 326 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « no previous file | src/mark-compact.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698