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

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

Issue 11065034: Rollback trunk to bleeding_edge revision 12524 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 8 years, 2 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/cpu-profiler-inl.h ('k') | src/hydrogen.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 "enable use of RDTSC instruction if available") 277 "enable use of RDTSC instruction if available")
278 DEFINE_bool(enable_sahf, true, 278 DEFINE_bool(enable_sahf, true,
279 "enable use of SAHF instruction if available (X64 only)") 279 "enable use of SAHF instruction if available (X64 only)")
280 DEFINE_bool(enable_vfp3, true, 280 DEFINE_bool(enable_vfp3, true,
281 "enable use of VFP3 instructions if available - this implies " 281 "enable use of VFP3 instructions if available - this implies "
282 "enabling ARMv7 and VFP2 instructions (ARM only)") 282 "enabling ARMv7 and VFP2 instructions (ARM only)")
283 DEFINE_bool(enable_vfp2, true, 283 DEFINE_bool(enable_vfp2, true,
284 "enable use of VFP2 instructions if available") 284 "enable use of VFP2 instructions if available")
285 DEFINE_bool(enable_armv7, true, 285 DEFINE_bool(enable_armv7, true,
286 "enable use of ARMv7 instructions if available (ARM only)") 286 "enable use of ARMv7 instructions if available (ARM only)")
287 DEFINE_bool(enable_sudiv, true,
288 "enable use of SDIV and UDIV instructions if available (ARM only)")
287 DEFINE_bool(enable_fpu, true, 289 DEFINE_bool(enable_fpu, true,
288 "enable use of MIPS FPU instructions if available (MIPS only)") 290 "enable use of MIPS FPU instructions if available (MIPS only)")
289 291
290 // bootstrapper.cc 292 // bootstrapper.cc
291 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") 293 DEFINE_string(expose_natives_as, NULL, "expose natives in global object")
292 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") 294 DEFINE_string(expose_debug_as, NULL, "expose debug in global object")
293 DEFINE_bool(expose_gc, false, "expose gc extension") 295 DEFINE_bool(expose_gc, false, "expose gc extension")
294 DEFINE_bool(expose_externalize_string, false, 296 DEFINE_bool(expose_externalize_string, false,
295 "expose externalize string extension") 297 "expose externalize string extension")
296 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") 298 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture")
(...skipping 29 matching lines...) Expand all
326 DEFINE_bool(always_full_compiler, false, 328 DEFINE_bool(always_full_compiler, false,
327 "try to use the dedicated run-once backend for all code") 329 "try to use the dedicated run-once backend for all code")
328 DEFINE_int(max_opt_count, 10, 330 DEFINE_int(max_opt_count, 10,
329 "maximum number of optimization attempts before giving up.") 331 "maximum number of optimization attempts before giving up.")
330 332
331 // compilation-cache.cc 333 // compilation-cache.cc
332 DEFINE_bool(compilation_cache, true, "enable compilation cache") 334 DEFINE_bool(compilation_cache, true, "enable compilation cache")
333 335
334 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") 336 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions")
335 337
338 // cpu-profiler.cc
339 DEFINE_int(cpu_profiler_sampling_period, 1000,
340 "CPU profiler sampling period in microseconds")
341
336 // debug.cc 342 // debug.cc
337 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") 343 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response")
338 DEFINE_bool(debugger_auto_break, true, 344 DEFINE_bool(debugger_auto_break, true,
339 "automatically set the debug break flag when debugger commands are " 345 "automatically set the debug break flag when debugger commands are "
340 "in the queue") 346 "in the queue")
341 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") 347 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature")
342 DEFINE_bool(break_on_abort, true, "always cause a debug break before aborting") 348 DEFINE_bool(break_on_abort, true, "always cause a debug break before aborting")
343 349
344 // execution.cc 350 // execution.cc
345 // Slightly less than 1MB on 64-bit, since Windows' default stack size for 351 // Slightly less than 1MB on 64-bit, since Windows' default stack size for
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
691 #undef DEFINE_bool 697 #undef DEFINE_bool
692 #undef DEFINE_int 698 #undef DEFINE_int
693 #undef DEFINE_string 699 #undef DEFINE_string
694 #undef DEFINE_implication 700 #undef DEFINE_implication
695 701
696 #undef FLAG_MODE_DECLARE 702 #undef FLAG_MODE_DECLARE
697 #undef FLAG_MODE_DEFINE 703 #undef FLAG_MODE_DEFINE
698 #undef FLAG_MODE_DEFINE_DEFAULTS 704 #undef FLAG_MODE_DEFINE_DEFAULTS
699 #undef FLAG_MODE_META 705 #undef FLAG_MODE_META
700 #undef FLAG_MODE_DEFINE_IMPLICATIONS 706 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/cpu-profiler-inl.h ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698