Home
last modified time | relevance | path

Searched refs:profiler_ (Results 1 – 14 of 14) sorted by relevance

/external/v8/src/profiler/
Dtracing-cpu-profiler.cc55 if (!profiling_enabled_ || profiler_) return; in StartProfiling()
60 profiler_.reset(new CpuProfiler(isolate_)); in StartProfiling()
61 profiler_->set_sampling_interval( in StartProfiling()
63 profiler_->StartProfiling("", true); in StartProfiling()
68 if (!profiler_) return; in StopProfiling()
69 profiler_->StopProfiling(""); in StopProfiling()
70 profiler_.reset(); in StopProfiling()
Dsampling-heap-profiler.h57 SamplingHeapProfiler* profiler_) in Sample()
61 reinterpret_cast<v8::Isolate*>(profiler_->isolate_), local_)), in Sample()
62 profiler(profiler_) {} in Sample()
165 profiler_(profiler), in SamplingAllocationObserver()
178 profiler_->SampleObject(soon_object, size); in Step()
186 SamplingHeapProfiler* const profiler_; variable
Dprofile-generator.h340 CpuProfiler* cpu_profiler() const { return profiler_; } in cpu_profiler()
357 CpuProfiler* const profiler_; variable
408 void set_cpu_profiler(CpuProfiler* profiler) { profiler_ = profiler; } in set_cpu_profiler()
430 CpuProfiler* profiler_; variable
Dtracing-cpu-profiler.h34 std::unique_ptr<CpuProfiler> profiler_; variable
Dprofile-generator.cc398 profiler_(profiler), in CpuProfile()
604 : profiler_(nullptr), current_profiles_semaphore_(1) {} in CpuProfilesCollection()
623 new CpuProfile(profiler_, title, record_samples, mode)); in StartProfiling()
Dheap-snapshot-generator.h177 HeapProfiler* profiler() { return profiler_; } in profiler()
210 HeapProfiler* profiler_; variable
Dheap-snapshot-generator.cc181 : profiler_(profiler), in HeapSnapshot()
198 profiler_->RemoveSnapshot(this); in Delete()
203 max_snapshot_js_object_id_ = profiler_->heap_object_map()->last_assigned_id(); in RememberLastJSObjectId()
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dhlo_execution_profiler.h91 : profiler_(profiler), hlo_instruction_(hlo_instruction) { in ScopedInstructionProfiler()
98 profiler_->FinishHloInstruction(hlo_instruction_); in ~ScopedInstructionProfiler()
103 HloExecutionProfiler* profiler_;
/external/tensorflow/tensorflow/lite/tools/benchmark/
Dbenchmark_tflite_model.cc46 interpreter_->SetProfiler(&profiler_); in SetInterpreter()
51 profiler_.Reset(); in OnSingleRunStart()
52 profiler_.StartProfiling(); in OnSingleRunStart()
63 profiler_.StopProfiling(); in OnSingleRunEnd()
64 auto profile_events = profiler_.GetProfileEvents(); in OnSingleRunEnd()
Dbenchmark_tflite_model.h45 profiling::Profiler profiler_; variable
/external/v8/src/
Dlog.cc848 profiler_(nullptr), in Ticker()
857 DCHECK_NULL(profiler_); in SetProfiler()
858 profiler_ = profiler; in SetProfiler()
865 profiler_ = nullptr; in ClearProfiler()
872 if (!profiler_) return; in SampleStack()
876 profiler_->Insert(&sample); in SampleStack()
880 Profiler* profiler_; member in v8::internal::Ticker
960 profiler_(nullptr), in Logger()
1748 if (profiler_ != nullptr) { in StopProfiler()
1749 profiler_->Pause(); in StopProfiler()
[all …]
Dlog.h345 Profiler* profiler_; variable
/external/tensorflow/tensorflow/lite/core/
Dsubgraph.h279 profiler_ = profiler; in SetProfiler()
283 profiling::Profiler* GetProfiler() { return profiler_; } in GetProfiler()
528 profiling::Profiler* profiler_ = nullptr; variable
Dsubgraph.cc698 SCOPED_OPERATOR_PROFILE(profiler_, node_index); in Invoke()