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

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

Issue 3421009: Revision 2.4.4.... (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: '' Created 10 years, 3 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/codegen.cc ('k') | src/full-codegen.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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") 167 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response")
168 DEFINE_bool(debugger_auto_break, true, 168 DEFINE_bool(debugger_auto_break, true,
169 "automatically set the debug break flag when debugger commands are " 169 "automatically set the debug break flag when debugger commands are "
170 "in the queue") 170 "in the queue")
171 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") 171 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature")
172 172
173 // frames.cc 173 // frames.cc
174 DEFINE_int(max_stack_trace_source_length, 300, 174 DEFINE_int(max_stack_trace_source_length, 300,
175 "maximum length of function source code printed in a stack trace.") 175 "maximum length of function source code printed in a stack trace.")
176 176
177 // full-codegen.cc
178 DEFINE_bool(always_inline_smi_code, false,
179 "always inline smi code in non-opt code")
180
177 // heap.cc 181 // heap.cc
178 DEFINE_int(max_new_space_size, 0, "max size of the new generation") 182 DEFINE_int(max_new_space_size, 0, "max size of the new generation")
179 DEFINE_int(max_old_space_size, 0, "max size of the old generation") 183 DEFINE_int(max_old_space_size, 0, "max size of the old generation")
180 DEFINE_bool(gc_global, false, "always perform global GCs") 184 DEFINE_bool(gc_global, false, "always perform global GCs")
181 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations") 185 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations")
182 DEFINE_bool(trace_gc, false, 186 DEFINE_bool(trace_gc, false,
183 "print one trace line following each garbage collection") 187 "print one trace line following each garbage collection")
184 DEFINE_bool(trace_gc_nvp, false, 188 DEFINE_bool(trace_gc_nvp, false,
185 "print one detailed trace line in name=value format " 189 "print one detailed trace line in name=value format "
186 "after each garbage collection") 190 "after each garbage collection")
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 #undef FLAG 447 #undef FLAG
444 448
445 #undef DEFINE_bool 449 #undef DEFINE_bool
446 #undef DEFINE_int 450 #undef DEFINE_int
447 #undef DEFINE_string 451 #undef DEFINE_string
448 452
449 #undef FLAG_MODE_DECLARE 453 #undef FLAG_MODE_DECLARE
450 #undef FLAG_MODE_DEFINE 454 #undef FLAG_MODE_DEFINE
451 #undef FLAG_MODE_DEFINE_DEFAULTS 455 #undef FLAG_MODE_DEFINE_DEFAULTS
452 #undef FLAG_MODE_META 456 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/codegen.cc ('k') | src/full-codegen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698