Home
last modified time | relevance | path

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

/external/v8/src/
Dcounters.cc218 V8_NOINLINE void Add(RuntimeCallCounter* counter) { in Add()
276 void RuntimeCallCounter::Reset() { in Reset()
281 void RuntimeCallCounter::Dump(v8::tracing::TracedValue* value) { in Dump()
288 void RuntimeCallCounter::Add(RuntimeCallCounter* other) { in Add()
333 RuntimeCallCounter* counter = &(stats->*counter_id); in Enter()
357 RuntimeCallCounter* counter = &(this->*counter_id); in Add()
358 RuntimeCallCounter* other_counter = &(other->*counter_id); in Add()
379 RuntimeCallCounter* counter = &(this->*counter_id); in Print()
398 RuntimeCallCounter* counter = &(this->*counter_id); in Reset()
408 RuntimeCallCounter* counter = &(this->*counter_id); in Dump()
Dcounters.h487 class RuntimeCallCounter final {
489 explicit RuntimeCallCounter(const char* name) : name_(name) {} in RuntimeCallCounter() function
492 void Add(RuntimeCallCounter* other);
510 RuntimeCallCounter* counter() { return counter_; } in counter()
511 void set_counter(RuntimeCallCounter* counter) { counter_ = counter; } in set_counter()
518 inline void Start(RuntimeCallCounter* counter, RuntimeCallTimer* parent);
528 RuntimeCallCounter* counter_ = nullptr;
825 typedef RuntimeCallCounter RuntimeCallStats::*CounterId;
828 RuntimeCallCounter name = RuntimeCallCounter(#name);
832 RuntimeCallCounter Runtime_##name = RuntimeCallCounter(#name);
[all …]
Dcounters-inl.h13 void RuntimeCallTimer::Start(RuntimeCallCounter* counter, in Start()
Dlog.cc1256 RuntimeCallCounter* counter = timer->counter(); in RuntimeCallTimerEvent()
/external/v8/src/profiler/
Dcpu-profiler.cc285 RuntimeCallCounter* counter = &(rcs->*(RuntimeCallStats::counters[i])); in CreateEntriesForRuntimeCallStats()
/external/v8/src/interpreter/
Dinterpreter.cc59 explicit TimerScope(RuntimeCallCounter* counter) : stats_(nullptr) { in TimerScope()
84 RuntimeCallCounter background_execute_counter_;