Searched defs:Counters (Results 1 - 11 of 11) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
H A DEdgeProfiling.cpp78 GlobalVariable *Counters = local
88 IncrementCounterInBlock(&F->getEntryBlock(), i++, Counters);
104 IncrementCounterInBlock(BB, i++, Counters, false);
107 IncrementCounterInBlock(TI->getSuccessor(s), i++, Counters);
114 InsertProfilingInitCall(Main, "llvm_start_edge_profiling", Counters);
H A DOptimalEdgeProfiling.cpp117 GlobalVariable *Counters = local
153 IncrementCounterInBlock(entry, i, Counters); ++NumEdgesInserted;
176 IncrementCounterInBlock(BB, i, Counters); ++NumEdgesInserted;
199 IncrementCounterInBlock(BB, i, Counters); ++NumEdgesInserted;
203 IncrementCounterInBlock(Succ, i, Counters); ++NumEdgesInserted;
219 Counters->setInitializer(init);
222 InsertProfilingInitCall(Main, "llvm_start_opt_edge_profiling", Counters);
H A DGCOVProfiling.cpp444 GlobalVariable *Counters = local
449 CountersBySP.push_back(std::make_pair(Counters, (MDNode*)SP));
462 Value *Counter = Builder.CreateConstInBoundsGEP2_64(Counters, 0,
476 Value *Counter = Builder.CreateInBoundsGEP(Counters, Idx);
492 buildEdgeLookupTable(F, Counters,
525 GlobalVariable *Counters,
550 Value *Counter = builder.CreateConstInBoundsGEP2_64(Counters, 0,
523 buildEdgeLookupTable( Function *F, GlobalVariable *Counters, const UniqueVector<BasicBlock *> &Preds, const UniqueVector<BasicBlock *> &Succs) argument
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DProfileInfoLoaderPass.cpp158 std::vector<unsigned> Counters = PIL.getRawEdgeCounts(); local
159 if (Counters.size() > 0) {
164 readEdge(getEdge(0,&F->getEntryBlock()), Counters);
168 readEdge(getEdge(BB,TI->getSuccessor(s)), Counters); local
172 if (ReadCount != Counters.size()) {
179 Counters = PIL.getRawOptimalEdgeCounts();
180 if (Counters.size() > 0) {
185 readEdge(getEdge(0,&F->getEntryBlock()), Counters);
189 readEdge(getEdge(BB,0), Counters); local
192 readEdge(getEdge(BB,TI->getSuccessor(s)), Counters); local
[all...]
/external/v8/src/
H A Dcounters.cc63 Counters::Counters(Isolate* isolate) { function in class:v8::internal::Counters
145 void Counters::ResetCounters() {
177 void Counters::ResetHistograms() {
H A Dcounters.h26 // counters for monitoring. Counters can be looked up and
1121 class Counters { class in namespace:v8::internal
1296 explicit Counters(Isolate* isolate);
1298 DISALLOW_IMPLICIT_CONSTRUCTORS(Counters);
/external/llvm/lib/Target/AMDGPU/
H A DSIInsertWaits.cpp44 } Counters; typedef in namespace:__anon12882
52 typedef Counters RegCounters[512];
64 static const Counters WaitCounts;
67 static const Counters ZeroCounts;
70 Counters WaitedOn;
74 Counters DelayedWaitOn;
77 Counters LastIssued;
100 Counters getHwCounts(MachineInstr &MI);
112 const Counters& Increment);
117 const Counters
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp218 GlobalVariable *Counters = getOrCreateRegionCounters(Inc); local
222 Value *Addr = Builder.CreateConstInBoundsGEP2_64(Counters, 0, Index);
H A DEfficiencySanitizer.cpp419 // Counters.
425 GlobalVariable *Counters = local
432 StructTyMap.insert(std::pair<Type *, GlobalVariable *>(StructTy, Counters));
461 ConstantExpr::getGetElementPtr(CounterArrayTy, Counters,
463 ConstantExpr::getGetElementPtr(CounterArrayTy, Counters,
H A DGCOVProfiling.cpp609 GlobalVariable *Counters = local
614 CountersBySP.push_back(std::make_pair(Counters, SP));
626 Value *Counter = Builder.CreateConstInBoundsGEP2_64(Counters, 0,
637 Counters->getValueType(), Counters, {Builder.getInt64(0), Sel});
653 buildEdgeLookupTable(&F, Counters,
721 GlobalVariable *Counters,
746 Value *Counter = Builder.CreateConstInBoundsGEP2_64(Counters, 0,
719 buildEdgeLookupTable( Function *F, GlobalVariable *Counters, const UniqueVector<BasicBlock *> &Preds, const UniqueVector<BasicBlock *> &Succs) argument
/external/clang/include/clang/AST/
H A DStmtOpenMP.h409 return getArraysOffset(Kind) + 5 * CollapsedNum; // Counters,
550 /// \brief Counters Loop counters.
551 SmallVector<Expr *, 4> Counters; member in struct:clang::OMPLoopDirective::HelperExprs
591 Counters.resize(Size);
597 Counters[i] = nullptr;

Completed in 301 milliseconds