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()
58 const char* CompilerDispatcherTracer::Scope::Name(ScopeID scope_id) { in Name()
79 CompilerDispatcherTracer::CompilerDispatcherTracer(Isolate* isolate) in CompilerDispatcherTracer() function in v8::internal::CompilerDispatcherTracer
87 CompilerDispatcherTracer::~CompilerDispatcherTracer() {} in ~CompilerDispatcherTracer()
89 void CompilerDispatcherTracer::RecordPrepareToParse(double duration_ms) { in RecordPrepareToParse()
94 void CompilerDispatcherTracer::RecordParse(double duration_ms, in RecordParse()
100 void CompilerDispatcherTracer::RecordFinalizeParsing(double duration_ms) { in RecordFinalizeParsing()
105 void CompilerDispatcherTracer::RecordAnalyze(double duration_ms) { in RecordAnalyze()
110 void CompilerDispatcherTracer::RecordPrepareToCompile(double duration_ms) { in RecordPrepareToCompile()
[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 {
46 Scope(CompilerDispatcherTracer* tracer, ScopeID scope_id, size_t num = 0);
52 CompilerDispatcherTracer* tracer_;
60 explicit CompilerDispatcherTracer(Isolate* isolate);
61 ~CompilerDispatcherTracer();
97 DISALLOW_COPY_AND_ASSIGN(CompilerDispatcherTracer);
Dcompiler-dispatcher-job.h20 class CompilerDispatcherTracer; variable
48 CompilerDispatcherJob(Isolate* isolate, CompilerDispatcherTracer* tracer,
52 CompilerDispatcherJob(Isolate* isolate, CompilerDispatcherTracer* tracer,
110 CompilerDispatcherTracer* tracer_;
Dcompiler-dispatcher.h30 class CompilerDispatcherTracer; variable
157 std::unique_ptr<CompilerDispatcherTracer> tracer_;
Dcompiler-dispatcher-job.cc65 CompilerDispatcherTracer* tracer, in CompilerDispatcherJob()
89 Isolate* isolate, CompilerDispatcherTracer* tracer, Handle<Script> script, in CompilerDispatcherJob()
Dcompiler-dispatcher.cc222 tracer_(new CompilerDispatcherTracer(isolate_)), in CompilerDispatcher()