Lines Matching full:counters
5 #include "src/counters.h"
18 StatsTable::StatsTable(Counters* counters) in StatsTable() argument
31 StatsCounterThreadSafe::StatsCounterThreadSafe(Counters* counters, in StatsCounterThreadSafe() argument
33 : StatsCounterBase(counters, name) {} in StatsCounterThreadSafe()
113 Counters::Counters(Isolate* isolate) in Counters() function in v8::internal::Counters
123 Histogram Counters::*member; in Counters()
130 {&Counters::name##_, #caption, min, max, num_buckets}, in Counters()
143 HistogramTimer Counters::*member; in Counters()
149 {&Counters::name##_, #caption, max, HistogramTimerResolution::res}, in Counters()
159 TimedHistogram Counters::*member; in Counters()
165 {&Counters::name##_, #caption, max, HistogramTimerResolution::res}, in Counters()
175 AggregatableHistogramTimer Counters::*member; in Counters()
178 #define AHT(name, caption) {&Counters::name##_, #caption}, in Counters()
188 Histogram Counters::*member; in Counters()
191 #define HP(name, caption) {&Counters::name##_, #caption}, in Counters()
206 Histogram Counters::*member; in Counters()
209 #define HM(name, caption) {&Counters::name##_, #caption}, in Counters()
220 StatsCounter Counters::*member; in Counters()
223 #define SC(name, caption) {&Counters::name##_, "c:" #caption}, in Counters()
227 {&Counters::count_of_##name##_, "c:" "V8.CountOf_" #name}, \ in Counters()
228 {&Counters::size_of_##name##_, "c:" "V8.SizeOf_" #name}, in Counters()
232 {&Counters::count_of_CODE_TYPE_##name##_, \ in Counters()
234 {&Counters::size_of_CODE_TYPE_##name##_, \ in Counters()
239 {&Counters::count_of_FIXED_ARRAY_##name##_, \ in Counters()
241 {&Counters::size_of_FIXED_ARRAY_##name##_, \ in Counters()
252 void Counters::ResetCounterFunction(CounterLookupCallback f) { in ResetCounterFunction()
283 void Counters::ResetCreateHistogramFunction(CreateHistogramCallback f) { in ResetCreateHistogramFunction()
412 // Commit all the timer's elapsed time to the counters. in Snapshot()
512 // counter stack, and then reset counters so that we can dump counters into in Reset()