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

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

Issue 12321046: Send SIGPROF signals on the profiler event processor thread (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Fixed typo: Profler->Profiler Created 7 years, 10 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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 DEFINE_bool(always_full_compiler, false, 357 DEFINE_bool(always_full_compiler, false,
358 "try to use the dedicated run-once backend for all code") 358 "try to use the dedicated run-once backend for all code")
359 DEFINE_int(max_opt_count, 10, 359 DEFINE_int(max_opt_count, 10,
360 "maximum number of optimization attempts before giving up.") 360 "maximum number of optimization attempts before giving up.")
361 361
362 // compilation-cache.cc 362 // compilation-cache.cc
363 DEFINE_bool(compilation_cache, true, "enable compilation cache") 363 DEFINE_bool(compilation_cache, true, "enable compilation cache")
364 364
365 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") 365 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions")
366 366
367 // cpu-profiler.cc
368 DEFINE_int(cpu_profiler_sampling_period, 1000,
369 "CPU profiler sampling period in microseconds")
370
367 // debug.cc 371 // debug.cc
368 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") 372 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response")
369 DEFINE_bool(trace_js_array_abuse, false, 373 DEFINE_bool(trace_js_array_abuse, false,
370 "trace out-of-bounds accesses to JS arrays") 374 "trace out-of-bounds accesses to JS arrays")
371 DEFINE_bool(trace_external_array_abuse, false, 375 DEFINE_bool(trace_external_array_abuse, false,
372 "trace out-of-bounds-accesses to external arrays") 376 "trace out-of-bounds-accesses to external arrays")
373 DEFINE_bool(trace_array_abuse, false, 377 DEFINE_bool(trace_array_abuse, false,
374 "trace out-of-bounds accesses to all arrays") 378 "trace out-of-bounds accesses to all arrays")
375 DEFINE_implication(trace_array_abuse, trace_js_array_abuse) 379 DEFINE_implication(trace_array_abuse, trace_js_array_abuse)
376 DEFINE_implication(trace_array_abuse, trace_external_array_abuse) 380 DEFINE_implication(trace_array_abuse, trace_external_array_abuse)
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
744 #undef DEFINE_bool 748 #undef DEFINE_bool
745 #undef DEFINE_int 749 #undef DEFINE_int
746 #undef DEFINE_string 750 #undef DEFINE_string
747 #undef DEFINE_implication 751 #undef DEFINE_implication
748 752
749 #undef FLAG_MODE_DECLARE 753 #undef FLAG_MODE_DECLARE
750 #undef FLAG_MODE_DEFINE 754 #undef FLAG_MODE_DEFINE
751 #undef FLAG_MODE_DEFINE_DEFAULTS 755 #undef FLAG_MODE_DEFINE_DEFAULTS
752 #undef FLAG_MODE_META 756 #undef FLAG_MODE_META
753 #undef FLAG_MODE_DEFINE_IMPLICATIONS 757 #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