HomeSort by relevance Sort by last modified time
    Searched refs:Counters (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /external/v8/test/cctest/
test-ast-expression-visitor.cc 25 typedef std::map<AstNode::NodeType, int> Counters;
27 NodeTypeCounter(Isolate* isolate, Expression* expr, Counters* counts)
36 Counters* counts_;
96 NodeTypeCounter::Counters counts;
  /external/llvm/lib/Target/AMDGPU/
SIInsertWaits.cpp 33 /// \brief One variable for each of the hardware counters
42 } Counters;
50 typedef Counters RegCounters[512];
62 static const Counters WaitCounts;
65 static const Counters ZeroCounts;
68 Counters WaitedOn;
71 Counters LastIssued;
88 Counters getHwCounts(MachineInstr &MI);
104 const Counters &Counts);
110 Counters handleOperands(MachineInstr &MI)
    [all...]
  /external/compiler-rt/lib/profile/
InstrProfilingBuffer.c 40 PROFILE_RANGE_SIZE(Counters) * sizeof(uint64_t) + NamesSize + Padding;
  /external/v8/src/
counters.cc 5 #include "src/counters.h"
63 Counters::Counters(Isolate* isolate) {
145 void Counters::ResetCounters() {
177 void Counters::ResetHistograms() {
279 RuntimeCallStats* stats = isolate->counters()->runtime_call_stats();
287 RuntimeCallStats* stats = isolate->counters()->runtime_call_stats();
304 RuntimeCallStats* stats = isolate->counters()->runtime_call_stats();
external-reference-table.cc 9 #include "src/counters.h"
278 // Stat counters
280 StatsCounter* (Counters::*counter)();
285 #define COUNTER_ENTRY(name, caption) {&Counters::name, "Counters::" #name},
290 Counters* counters = isolate->counters(); local
292 // To make sure the indices are not dependent on whether counters are
295 StatsCounter* counter = (counters->*(stats_ref_table[i].counter))()
    [all...]
counters.h 21 // counters for monitoring. Counters can be looked up and
27 // counters can be looked up.
    [all...]
isolate.h 55 class Counters;
825 Counters* counters() { function in class:v8::internal::Isolate
    [all...]
  /external/v8/src/extensions/
statistics-extension.cc 7 #include "src/counters.h"
70 heap->CollectAllGarbage(Heap::kNoGCFlags, "counters extension");
74 Counters* counters = isolate->counters(); local
83 { counters->name(), #name } \
89 { counters->count_of_##name(), "count_of_" #name } \
90 , {counters->size_of_##name(), "size_of_" #name},
95 { counters->count_of_CODE_TYPE_##name(), "count_of_CODE_TYPE_" #name } \
96 , {counters->size_of_CODE_TYPE_##name(), "size_of_CODE_TYPE_" #name}
    [all...]
  /external/clang/lib/AST/
StmtOpenMP.cpp 28 "Number of loop counters is not the same as the collapsed number");
33 assert(A.size() == getCollapsedNumber() && "Number of loop private counters "
103 Dir->setCounters(Exprs.Counters);
151 Dir->setCounters(Exprs.Counters);
200 Dir->setCounters(Exprs.Counters);
365 Dir->setCounters(Exprs.Counters);
412 Dir->setCounters(Exprs.Counters);
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 1 //===- GCOVProfiling.cpp - Insert edge counters for gcov profiling --------===//
115 // Produce a table of pointers to counters, by predecessor and successor
122 // Add the function to write out all our counters to the global destructor
597 GlobalVariable *Counters =
602 CountersBySP.push_back(std::make_pair(Counters, SP));
614 Value *Counter = Builder.CreateConstInBoundsGEP2_64(Counters, 0,
627 Value *Counter = Builder.CreateInBoundsGEP(Counters->getValueType(),
628 Counters, Idx);
644 buildEdgeLookupTable(F, Counters,
712 GlobalVariable *Counters,
    [all...]
InstrProfiling.cpp 99 /// Get the region counters for an increment, creating them if necessary.
225 GlobalVariable *Counters = getOrCreateRegionCounters(Inc);
229 Value *Addr = Builder.CreateConstInBoundsGEP2_64(Counters, 0, Index);
254 // If we have region counters for this name, we've already handled it.
307 // only one copy of counters of the COMDAT function will be emitted after
321 // Create the counters variable.
  /external/v8/src/ic/arm/
stub-cache-arm.cc 131 Counters* counters = masm->isolate()->counters(); local
132 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1, extra2,
169 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1, extra2,
handler-compiler-arm.cc 138 Counters* counters = masm->isolate()->counters(); local
139 __ IncrementCounter(counters->negative_lookups(), 1, scratch0, scratch1);
140 __ IncrementCounter(counters->negative_lookups_miss(), 1, scratch0, scratch1);
176 __ DecrementCounter(counters->negative_lookups_miss(), 1, scratch0, scratch1);
696 Counters* counters = isolate()->counters(); local
697 __ IncrementCounter(counters->ic_named_load_global_stub(), 1, r1, r3)
    [all...]
  /external/v8/src/ic/arm64/
stub-cache-arm64.cc 122 Counters* counters = masm->isolate()->counters(); local
123 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1, extra2,
154 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1, extra2,
  /external/v8/src/ic/mips/
stub-cache-mips.cc 125 Counters* counters = masm->isolate()->counters(); local
126 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1, extra2,
161 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1, extra2,
  /external/v8/src/ic/mips64/
stub-cache-mips64.cc 128 Counters* counters = masm->isolate()->counters(); local
129 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1, extra2,
164 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1, extra2,
  /external/v8/src/ic/ppc/
stub-cache-ppc.cc 148 Counters* counters = masm->isolate()->counters(); local
149 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1, extra2,
181 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1, extra2,
  /external/v8/src/ic/s390/
stub-cache-s390.cc 143 Counters* counters = masm->isolate()->counters(); local
144 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1, extra2,
176 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1, extra2,
  /external/v8/src/ic/x64/
ic-x64.cc 295 Counters* counters = masm->isolate()->counters(); local
296 __ IncrementCounter(counters->ic_keyed_load_generic_smi(), 1);
314 __ IncrementCounter(counters->ic_keyed_load_generic_slow(), 1);
361 __ IncrementCounter(counters->ic_keyed_load_generic_symbol(), 1);
660 Counters* counters = masm->isolate()->counters(); local
661 __ IncrementCounter(counters->ic_load_miss(), 1)
688 Counters* counters = masm->isolate()->counters(); local
754 Counters* counters = masm->isolate()->counters(); local
    [all...]
stub-cache-x64.cc 123 Counters* counters = masm->isolate()->counters(); local
124 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1);
156 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
usbioctl.h 463 HCD_STAT_COUNTERS Counters;
472 HCD_STAT_COUNTERS Counters;
  /external/v8/src/heap/
object-stats.cc 7 #include "src/counters.h"
78 Counters* counters = isolate()->counters(); local
80 counters->count_of_##name()->Increment( \
82 counters->count_of_##name()->Decrement( \
84 counters->size_of_##name()->Increment( \
86 counters->size_of_##name()->Decrement( \
93 counters->count_of_CODE_TYPE_##name()->Increment( \
95 counters->count_of_CODE_TYPE_##name()->Decrement(
    [all...]
  /external/v8/src/ic/ia32/
stub-cache-ia32.cc 171 Counters* counters = masm->isolate()->counters(); local
172 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1);
208 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1);
  /external/v8/src/ic/x87/
stub-cache-x87.cc 171 Counters* counters = masm->isolate()->counters(); local
172 __ IncrementCounter(counters->megamorphic_stub_cache_probes(), 1);
208 __ IncrementCounter(counters->megamorphic_stub_cache_misses(), 1);
  /external/clang/include/clang/AST/
StmtOpenMP.h 305 /// allocated: loop counters, their updates and final values.
317 // specify the offset to the end (and start of the following counters/
328 // Offset to the end (and start of the following counters/updates/finals
333 /// \brief Get the counters storage.
340 /// \brief Get the private counters storage.
404 return getArraysOffset(Kind) + 5 * CollapsedNum; // Counters,
515 /// \brief Counters Loop counters.
516 SmallVector<Expr *, 4> Counters;
517 /// \brief PrivateCounters Loop counters
657 ArrayRef<Expr *> counters() { return getCounters(); } function in class:clang::OMPLoopDirective
659 ArrayRef<Expr *> counters() const { function in class:clang::OMPLoopDirective
    [all...]

Completed in 734 milliseconds

1 2 3 4