Searched refs:CpuProfiler (Results 1 – 21 of 21) sorted by relevance
/external/v8/test/cctest/ |
D | test-cpu-profiler.cc | 12 using i::CpuProfiler; 219 CpuProfiler::SetUp(); in TEST() 220 CpuProfiler::StartProfiling("1"); in TEST() 221 CpuProfiler::StopProfiling("2"); in TEST() 222 CpuProfiler::StartProfiling("1"); in TEST() 223 CpuProfiler::StopProfiling(""); in TEST() 224 CpuProfiler::TearDown(); in TEST() 271 CpuProfiler::SetUp(); in TEST() 272 CHECK_EQ(0, CpuProfiler::GetProfilesCount()); in TEST() 273 CpuProfiler::DeleteAllProfiles(); in TEST() [all …]
|
D | test-profile-generator.cc | 13 using i::CpuProfiler; 725 v8::CpuProfiler::StartProfiling(args[0].As<v8::String>()); in StartProfiling() 727 v8::CpuProfiler::StartProfiling(v8::String::New("")); in StartProfiling() 735 v8::CpuProfiler::StopProfiling(args[0].As<v8::String>()); in StopProfiling() 737 v8::CpuProfiler::StopProfiling(v8::String::New("")); in StopProfiling() 770 CHECK_EQ(0, CpuProfiler::GetProfilesCount()); in TEST() 777 CHECK_EQ(1, CpuProfiler::GetProfilesCount()); in TEST() 779 CpuProfiler::GetProfile(NULL, 0); in TEST()
|
/external/v8/src/ |
D | cpu-profiler.cc | 262 void CpuProfiler::StartProfiling(const char* title) { in StartProfiling() 268 void CpuProfiler::StartProfiling(String* title) { in StartProfiling() 274 CpuProfile* CpuProfiler::StopProfiling(const char* title) { in StopProfiling() 281 CpuProfile* CpuProfiler::StopProfiling(Object* security_token, String* title) { in StopProfiling() 289 int CpuProfiler::GetProfilesCount() { in GetProfilesCount() 297 CpuProfile* CpuProfiler::GetProfile(Object* security_token, int index) { in GetProfile() 299 CpuProfiler* profiler = Isolate::Current()->cpu_profiler(); in GetProfile() 305 CpuProfile* CpuProfiler::FindProfile(Object* security_token, unsigned uid) { in FindProfile() 307 CpuProfiler* profiler = Isolate::Current()->cpu_profiler(); in FindProfile() 313 TickSample* CpuProfiler::TickSampleEvent(Isolate* isolate) { in TickSampleEvent() [all …]
|
D | cpu-profiler.h | 193 if (v8::internal::CpuProfiler::is_profiling(isolate)) { \ 194 v8::internal::CpuProfiler::Call; \ 204 class CpuProfiler { 251 CpuProfiler* profiler = isolate->cpu_profiler(); in INLINE() 256 CpuProfiler(); 257 ~CpuProfiler(); 277 DISALLOW_COPY_AND_ASSIGN(CpuProfiler);
|
D | codegen.cc | 156 if (!isolate->logger()->is_logging() && !CpuProfiler::is_profiling(isolate)) { in ShouldGenerateLog()
|
D | log.h | 427 friend class CpuProfiler; variable
|
D | api.cc | 5859 i::CpuProfiler::DeleteProfile(reinterpret_cast<i::CpuProfile*>(this)); in Delete() 5860 if (i::CpuProfiler::GetProfilesCount() == 0 && in Delete() 5861 !i::CpuProfiler::HasDetachedProfiles()) { in Delete() 5863 i::CpuProfiler::DeleteAllProfiles(); in Delete() 5900 int CpuProfiler::GetProfilesCount() { in GetProfilesCount() 5903 return i::CpuProfiler::GetProfilesCount(); in GetProfilesCount() 5907 const CpuProfile* CpuProfiler::GetProfile(int index, in GetProfile() 5912 i::CpuProfiler::GetProfile( in GetProfile() 5918 const CpuProfile* CpuProfiler::FindProfile(unsigned uid, in FindProfile() 5923 i::CpuProfiler::FindProfile( in FindProfile() [all …]
|
D | isolate.h | 60 class CpuProfiler; variable 353 V(CpuProfiler*, cpu_profiler, NULL) \
|
D | platform-cygwin.cc | 707 TickSample* sample = CpuProfiler::TickSampleEvent(sampler->isolate()); in SampleContext()
|
D | platform-macos.cc | 820 TickSample* sample = CpuProfiler::TickSampleEvent(sampler->isolate()); in SampleContext()
|
D | platform-freebsd.cc | 695 TickSample* sample = CpuProfiler::TickSampleEvent(isolate); in ProfilerSignalHandler()
|
D | platform-solaris.cc | 687 TickSample* sample = CpuProfiler::TickSampleEvent(isolate); in ProfilerSignalHandler()
|
D | platform-openbsd.cc | 748 TickSample* sample = CpuProfiler::TickSampleEvent(isolate); in ProfilerSignalHandler()
|
D | isolate.cc | 1573 CpuProfiler::TearDown(); in Deinit() 1779 CpuProfiler::SetUp(); in Init()
|
D | compiler.cc | 797 CpuProfiler::is_profiling(info->isolate())) { in RecordFunctionCompilation()
|
D | platform-linux.cc | 1045 TickSample* sample = CpuProfiler::TickSampleEvent(isolate); in ProfilerSignalHandler()
|
D | platform-win32.cc | 2042 TickSample* sample = CpuProfiler::TickSampleEvent(sampler->isolate()); in SampleContext()
|
D | heap.cc | 1601 CpuProfiler::is_profiling(isolate)) { in INLINE() 1827 CpuProfiler::is_profiling(isolate()) || in SelectScavengingVisitorsTable()
|
D | runtime.cc | 2216 if (isolate->logger()->is_logging() || CpuProfiler::is_profiling(isolate)) { in RUNTIME_FUNCTION()
|
/external/webkit/Source/WebCore/bindings/v8/ |
D | ScriptProfiler.cpp | 47 v8::CpuProfiler::StartProfiling(v8String(title)); in start() 54 v8::CpuProfiler::StopProfiling(v8String(title), state->context()->GetSecurityToken()) : in stop() 55 v8::CpuProfiler::StopProfiling(v8String(title)); in stop()
|
/external/v8/include/ |
D | v8-profiler.h | 150 class V8EXPORT CpuProfiler {
|