Searched defs:profiler (Results 1 - 8 of 8) sorted by relevance

/external/webkit/Source/JavaScriptCore/API/
H A DJSProfilerPrivate.cpp37 Profiler::profiler()->startProfiling(toJS(ctx), title->ustring());
43 Profiler* profiler = Profiler::profiler(); local
44 profiler->stopProfiling(exec, title->ustring());
/external/webkit/Source/JavaScriptCore/profiler/
H A DProfiler.cpp56 Profiler* Profiler::profiler() function in class:JSC::Profiler
/external/v8/src/
H A Dcpu-profiler.h269 CpuProfiler* profiler = isolate->cpu_profiler(); local
270 return profiler != NULL && NoBarrier_Load(&profiler->is_profiling_);
H A Dcpu-profiler.cc30 #include "cpu-profiler-inl.h"
39 #include "../include/v8-profiler.h"
313 CpuProfiler* profiler = Isolate::Current()->cpu_profiler(); local
314 const int token = profiler->token_enumerator_->GetTokenId(security_token);
315 return profiler->profiles_->Profiles(token)->at(index);
321 CpuProfiler* profiler = Isolate::Current()->cpu_profiler(); local
322 const int token = profiler->token_enumerator_->GetTokenId(security_token);
323 return profiler->profiles_->GetProfile(token, uid);
437 CpuProfiler* profiler = Isolate::Current()->cpu_profiler(); local
438 profiler
[all...]
H A Dheap-profiler.cc30 #include "heap-profiler.h"
440 HeapProfiler* profiler = Isolate::Current()->heap_profiler(); local
441 ASSERT(profiler != NULL);
442 return profiler->snapshots_->snapshots()->length();
447 HeapProfiler* profiler = Isolate::Current()->heap_profiler(); local
448 ASSERT(profiler != NULL);
449 return profiler->snapshots_->snapshots()->at(index);
454 HeapProfiler* profiler = Isolate::Current()->heap_profiler(); local
455 ASSERT(profiler != NULL);
456 return profiler
461 HeapProfiler* profiler = Isolate::Current()->heap_profiler(); local
[all...]
H A Dlog.cc38 #include "runtime-profiler.h"
134 // Tells whether profiler is engaged, that is, processing thread is stated.
189 // Ticker used to provide ticks to the profiler and the sliding state
216 void SetProfiler(Profiler* profiler) { argument
218 profiler_ = profiler;
295 // Start thread processing the profiler buffer.
322 LOG(ISOLATE, UncheckedStringEvent("profiler", "end"));
372 msg.Append("profiler,\"begin\",%d\n", kSamplingIntervalMs);
1182 LOG(ISOLATE, UncheckedStringEvent("profiler", "pause"));
1210 LOG(ISOLATE, UncheckedStringEvent("profiler", "resum
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSGlobalObject.cpp94 Profiler** profiler = Profiler::enabledProfilerReference(); local
95 if (UNLIKELY(*profiler != 0)) {
96 (*profiler)->stopProfiling(this);
/external/webkit/Source/JavaScriptCore/interpreter/
H A DInterpreter.cpp682 if (Profiler* profiler = *Profiler::enabledProfilerReference())
683 profiler->exceptionUnwind(callFrame);
688 if (Profiler* profiler = *Profiler::enabledProfilerReference())
689 profiler->exceptionUnwind(callFrame);
756 Profiler** profiler = Profiler::enabledProfilerReference(); local
757 if (*profiler)
758 (*profiler)->willExecute(callFrame, program->sourceURL(), program->lineNo());
775 if (*profiler)
776 (*profiler)->didExecute(callFrame, program->sourceURL(), program->lineNo());
827 Profiler** profiler local
859 Profiler** profiler = Profiler::enabledProfilerReference(); local
916 Profiler** profiler = Profiler::enabledProfilerReference(); local
951 Profiler** profiler = Profiler::enabledProfilerReference(); local
1018 Profiler** profiler = Profiler::enabledProfilerReference(); local
1124 Profiler** profiler = Profiler::enabledProfilerReference(); local
[all...]

Completed in 148 milliseconds