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

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

Issue 8190: Revert changes 601 and 602. TBR (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")
139 137
140 // ic.cc 138 // ic.cc
141 DEFINE_bool(use_ic, true, "use inline caching") 139 DEFINE_bool(use_ic, true, "use inline caching")
142 140
143 // macro-assembler-ia32.cc 141 // macro-assembler-ia32.cc
144 DEFINE_bool(native_code_counters, false, 142 DEFINE_bool(native_code_counters, false,
145 "generate extra code for manipulating stats counters") 143 "generate extra code for manipulating stats counters")
146 144
147 // mark-compact.cc 145 // mark-compact.cc
148 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") 146 DEFINE_bool(always_compact, false, "Perform compaction on every full GC")
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 #undef FLAG 312 #undef FLAG
315 313
316 #undef DEFINE_bool 314 #undef DEFINE_bool
317 #undef DEFINE_int 315 #undef DEFINE_int
318 #undef DEFINE_string 316 #undef DEFINE_string
319 317
320 #undef FLAG_MODE_DECLARE 318 #undef FLAG_MODE_DECLARE
321 #undef FLAG_MODE_DEFINE 319 #undef FLAG_MODE_DEFINE
322 #undef FLAG_MODE_DEFINE_DEFAULTS 320 #undef FLAG_MODE_DEFINE_DEFAULTS
323 #undef FLAG_MODE_META 321 #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