Home
last modified time | relevance | path

Searched refs:CompilerDispatcherTracer (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/compiler-dispatcher/
Dcompiler-dispatcher-tracer.cc24 CompilerDispatcherTracer::Scope::Scope(CompilerDispatcherTracer* tracer, in Scope()
30 CompilerDispatcherTracer::Scope::~Scope() { in ~Scope()
46 const char* CompilerDispatcherTracer::Scope::Name(ScopeID scope_id) { in Name()
58 CompilerDispatcherTracer::CompilerDispatcherTracer(Isolate* isolate) in CompilerDispatcherTracer() function in v8::internal::CompilerDispatcherTracer
66 CompilerDispatcherTracer::~CompilerDispatcherTracer() {} in ~CompilerDispatcherTracer()
68 void CompilerDispatcherTracer::RecordPrepare(double duration_ms) { in RecordPrepare()
73 void CompilerDispatcherTracer::RecordCompile(double duration_ms, in RecordCompile()
79 void CompilerDispatcherTracer::RecordFinalize(double duration_ms) { in RecordFinalize()
84 double CompilerDispatcherTracer::EstimatePrepareInMs() const { in EstimatePrepareInMs()
89 double CompilerDispatcherTracer::EstimateCompileInMs( in EstimateCompileInMs()
[all …]
Dcompiler-dispatcher-tracer.h23 CompilerDispatcherTracer::ScopeID tracer_scope_id( \
24 CompilerDispatcherTracer::ScopeID::scope_id); \
25 CompilerDispatcherTracer::Scope trace_scope(tracer, tracer_scope_id, num); \
27 CompilerDispatcherTracer::Scope::Name(tracer_scope_id))
32 class V8_EXPORT_PRIVATE CompilerDispatcherTracer {
38 Scope(CompilerDispatcherTracer* tracer, ScopeID scope_id, size_t num = 0);
44 CompilerDispatcherTracer* tracer_;
52 explicit CompilerDispatcherTracer(Isolate* isolate);
53 ~CompilerDispatcherTracer();
77 DISALLOW_COPY_AND_ASSIGN(CompilerDispatcherTracer);
Dunoptimized-compile-job.h20 class CompilerDispatcherTracer; variable
35 UnoptimizedCompileJob(Isolate* isolate, CompilerDispatcherTracer* tracer,
64 CompilerDispatcherTracer* tracer_;
Dcompiler-dispatcher.h34 class CompilerDispatcherTracer; variable
161 std::unique_ptr<CompilerDispatcherTracer> tracer_;
Dunoptimized-compile-job.cc67 CompilerDispatcherTracer* tracer, in UnoptimizedCompileJob()
Dcompiler-dispatcher.cc179 tracer_(new CompilerDispatcherTracer(isolate_)), in CompilerDispatcher()