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 149568: Add a trace_gc_verbose flag.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 5 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') | 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 DEFINE_int(max_stack_trace_source_length, 300, 151 DEFINE_int(max_stack_trace_source_length, 300,
152 "maximum length of function source code printed in a stack trace.") 152 "maximum length of function source code printed in a stack trace.")
153 153
154 // heap.cc 154 // heap.cc
155 DEFINE_int(new_space_size, 0, "size of (each semispace in) the new generation") 155 DEFINE_int(new_space_size, 0, "size of (each semispace in) the new generation")
156 DEFINE_int(old_space_size, 0, "size of the old generation") 156 DEFINE_int(old_space_size, 0, "size of the old generation")
157 DEFINE_bool(gc_global, false, "always perform global GCs") 157 DEFINE_bool(gc_global, false, "always perform global GCs")
158 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations") 158 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations")
159 DEFINE_bool(trace_gc, false, 159 DEFINE_bool(trace_gc, false,
160 "print one trace line following each garbage collection") 160 "print one trace line following each garbage collection")
161 DEFINE_bool(trace_gc_verbose, false,
162 "print more details following each garbage collection")
161 DEFINE_bool(collect_maps, true, 163 DEFINE_bool(collect_maps, true,
162 "garbage collect maps from which no objects can be reached") 164 "garbage collect maps from which no objects can be reached")
163 165
164 // ic.cc 166 // ic.cc
165 DEFINE_bool(use_ic, true, "use inline caching") 167 DEFINE_bool(use_ic, true, "use inline caching")
166 168
167 // macro-assembler-ia32.cc 169 // macro-assembler-ia32.cc
168 DEFINE_bool(native_code_counters, false, 170 DEFINE_bool(native_code_counters, false,
169 "generate extra code for manipulating stats counters") 171 "generate extra code for manipulating stats counters")
170 172
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 #undef FLAG 384 #undef FLAG
383 385
384 #undef DEFINE_bool 386 #undef DEFINE_bool
385 #undef DEFINE_int 387 #undef DEFINE_int
386 #undef DEFINE_string 388 #undef DEFINE_string
387 389
388 #undef FLAG_MODE_DECLARE 390 #undef FLAG_MODE_DECLARE
389 #undef FLAG_MODE_DEFINE 391 #undef FLAG_MODE_DEFINE
390 #undef FLAG_MODE_DEFINE_DEFAULTS 392 #undef FLAG_MODE_DEFINE_DEFAULTS
391 #undef FLAG_MODE_META 393 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « no previous file | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698