Home
last modified time | relevance | path

Searched refs:CpuProfiler (Results 1 – 15 of 15) sorted by relevance

/external/v8/src/profiler/
Dcpu-profiler.cc176 int CpuProfiler::GetProfilesCount() { in GetProfilesCount()
182 CpuProfile* CpuProfiler::GetProfile(int index) { in GetProfile()
187 void CpuProfiler::DeleteAllProfiles() { in DeleteAllProfiles()
193 void CpuProfiler::DeleteProfile(CpuProfile* profile) { in DeleteProfile()
203 void CpuProfiler::CallbackEvent(Name* name, Address entry_point) { in CallbackEvent()
215 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent()
230 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent()
245 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, Code* code, in CodeCreateEvent()
265 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, Code* code, in CodeCreateEvent()
301 void CpuProfiler::CodeCreateEvent(Logger::LogEventsAndTags tag, in CodeCreateEvent()
[all …]
Dcpu-profiler.h189 CpuProfiler* cpu_profiler = cpu_profiler_isolate->cpu_profiler(); \
196 class CpuProfiler : public CodeEventListener {
198 explicit CpuProfiler(Isolate* isolate);
200 CpuProfiler(Isolate* isolate,
205 virtual ~CpuProfiler();
271 DISALLOW_COPY_AND_ASSIGN(CpuProfiler);
Dcpu-profiler-inl.h53 TickSample* CpuProfiler::StartTickSample() { in StartTickSample()
59 void CpuProfiler::FinishTickSample() { in FinishTickSample()
/external/v8/include/
Dv8-profiler.h181 class V8_EXPORT CpuProfiler {
215 CpuProfiler();
216 ~CpuProfiler();
217 CpuProfiler(const CpuProfiler&);
218 CpuProfiler& operator=(const CpuProfiler&);
Dv8.h73 class CpuProfiler; variable
5632 CpuProfiler* GetCpuProfiler();
/external/v8/test/cctest/
Dtest-cpu-profiler.cc42 using i::CpuProfiler;
168 CpuProfiler profiler(isolate, profiles, &generator, processor.get()); in TEST()
229 CpuProfiler profiler(isolate, profiles, &generator, processor.get()); in TEST()
274 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler(); in TEST()
298 CpuProfiler profiler(isolate, profiles, &generator, processor.get()); in TEST()
329 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler(); in TEST()
356 static bool FindCpuProfile(v8::CpuProfiler* v8profiler, in FindCpuProfile()
358 i::CpuProfiler* profiler = reinterpret_cast<i::CpuProfiler*>(v8profiler); in FindCpuProfile()
373 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); in TEST()
374 i::CpuProfiler* iprofiler = reinterpret_cast<i::CpuProfiler*>(cpu_profiler); in TEST()
[all …]
Dprofiler-extension.cc68 v8::CpuProfiler* cpu_profiler = args.GetIsolate()->GetCpuProfiler(); in StartProfiling()
77 v8::CpuProfiler* cpu_profiler = args.GetIsolate()->GetCpuProfiler(); in StopProfiling()
Dtest-profile-generator.cc41 using i::CpuProfiler;
507 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler(); in TEST()
583 v8::CpuProfiler* profiler = env->GetIsolate()->GetCpuProfiler(); in TEST()
584 i::CpuProfiler* iprofiler = reinterpret_cast<i::CpuProfiler*>(profiler); in TEST()
640 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler(); in GetFunctionLineNumber()
668 CpuProfiler* profiler = isolate->cpu_profiler(); in TEST()
690 v8::CpuProfiler* profiler = env->GetIsolate()->GetCpuProfiler(); in TEST()
691 i::CpuProfiler* iprofiler = reinterpret_cast<i::CpuProfiler*>(profiler); in TEST()
Dtest-api.cc98 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); in RunWithProfiler()
102 reinterpret_cast<i::CpuProfiler*>(cpu_profiler)->DeleteAllProfiles(); in RunWithProfiler()
/external/v8/src/
Dlog.h60 class CpuProfiler; variable
410 friend class CpuProfiler; variable
Disolate.h53 class CpuProfiler; variable
899 CpuProfiler* cpu_profiler() const { return cpu_profiler_; } in cpu_profiler()
1271 CpuProfiler* cpu_profiler_;
Dapi.cc6966 CpuProfiler* Isolate::GetCpuProfiler() { in GetCpuProfiler()
6967 i::CpuProfiler* cpu_profiler = in GetCpuProfiler()
6969 return reinterpret_cast<CpuProfiler*>(cpu_profiler); in GetCpuProfiler()
7997 i::CpuProfiler* profiler = isolate->cpu_profiler(); in Delete()
8047 void CpuProfiler::SetSamplingInterval(int us) { in SetSamplingInterval()
8049 return reinterpret_cast<i::CpuProfiler*>(this)->set_sampling_interval( in SetSamplingInterval()
8054 void CpuProfiler::StartProfiling(Local<String> title, bool record_samples) { in StartProfiling()
8055 reinterpret_cast<i::CpuProfiler*>(this)->StartProfiling( in StartProfiling()
8060 CpuProfile* CpuProfiler::StopProfiling(Local<String> title) { in StopProfiling()
8062 reinterpret_cast<i::CpuProfiler*>(this)->StopProfiling( in StopProfiling()
[all …]
Dlog.cc42 CpuProfiler* cpu_profiler = isolate_->cpu_profiler(); \
Disolate.cc2135 cpu_profiler_ = new CpuProfiler(this); in Init()
/external/v8/
DChangeLog4490 Remove deprecated CpuProfiler methods.