Searched refs:CompilerDispatcherTracer (Results 1 – 6 of 6) sorted by relevance
/external/v8/src/compiler-dispatcher/ |
D | compiler-dispatcher-tracer.cc | 24 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 …]
|
D | compiler-dispatcher-tracer.h | 23 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);
|
D | compiler-dispatcher-job.h | 20 class CompilerDispatcherTracer; variable 48 CompilerDispatcherJob(Isolate* isolate, CompilerDispatcherTracer* tracer, 52 CompilerDispatcherJob(Isolate* isolate, CompilerDispatcherTracer* tracer, 110 CompilerDispatcherTracer* tracer_;
|
D | compiler-dispatcher.h | 30 class CompilerDispatcherTracer; variable 157 std::unique_ptr<CompilerDispatcherTracer> tracer_;
|
D | compiler-dispatcher-job.cc | 65 CompilerDispatcherTracer* tracer, in CompilerDispatcherJob() 89 Isolate* isolate, CompilerDispatcherTracer* tracer, Handle<Script> script, in CompilerDispatcherJob()
|
D | compiler-dispatcher.cc | 222 tracer_(new CompilerDispatcherTracer(isolate_)), in CompilerDispatcher()
|