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

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

Issue 10857035: Moving cpu profiling into its own thread. (Closed) Base URL: http://git.chromium.org/external/v8.git@master
Patch Set: added { } Created 8 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
« no previous file with comments | « src/cpu-profiler.cc ('k') | src/platform.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 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 DEFINE_bool(always_full_compiler, false, 326 DEFINE_bool(always_full_compiler, false,
327 "try to use the dedicated run-once backend for all code") 327 "try to use the dedicated run-once backend for all code")
328 DEFINE_int(max_opt_count, 10, 328 DEFINE_int(max_opt_count, 10,
329 "maximum number of optimization attempts before giving up.") 329 "maximum number of optimization attempts before giving up.")
330 330
331 // compilation-cache.cc 331 // compilation-cache.cc
332 DEFINE_bool(compilation_cache, true, "enable compilation cache") 332 DEFINE_bool(compilation_cache, true, "enable compilation cache")
333 333
334 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") 334 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions")
335 335
336 // cpu-profiler.cc
337 DEFINE_int(cpu_profiler_sampling_period, 1000,
338 "CPU profiler sampling period in microseconds")
339
336 // debug.cc 340 // debug.cc
337 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") 341 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response")
338 DEFINE_bool(debugger_auto_break, true, 342 DEFINE_bool(debugger_auto_break, true,
339 "automatically set the debug break flag when debugger commands are " 343 "automatically set the debug break flag when debugger commands are "
340 "in the queue") 344 "in the queue")
341 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") 345 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature")
342 DEFINE_bool(break_on_abort, true, "always cause a debug break before aborting") 346 DEFINE_bool(break_on_abort, true, "always cause a debug break before aborting")
343 347
344 // execution.cc 348 // execution.cc
345 // Slightly less than 1MB on 64-bit, since Windows' default stack size for 349 // Slightly less than 1MB on 64-bit, since Windows' default stack size for
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 #undef DEFINE_bool 692 #undef DEFINE_bool
689 #undef DEFINE_int 693 #undef DEFINE_int
690 #undef DEFINE_string 694 #undef DEFINE_string
691 #undef DEFINE_implication 695 #undef DEFINE_implication
692 696
693 #undef FLAG_MODE_DECLARE 697 #undef FLAG_MODE_DECLARE
694 #undef FLAG_MODE_DEFINE 698 #undef FLAG_MODE_DEFINE
695 #undef FLAG_MODE_DEFINE_DEFAULTS 699 #undef FLAG_MODE_DEFINE_DEFAULTS
696 #undef FLAG_MODE_META 700 #undef FLAG_MODE_META
697 #undef FLAG_MODE_DEFINE_IMPLICATIONS 701 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/cpu-profiler.cc ('k') | src/platform.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698