/external/llvm/lib/Analysis/ |
D | ProfileInfo.cpp | 75 Edge e = getEdge(0, BB); in getExecutionCount() 85 double w = getEdgeWeight(getEdge(P, BB)); in getExecutionCount() 102 Edge e = getEdge(BB,0); in getExecutionCount() 109 double w = getEdgeWeight(getEdge(BB, *SI)); in getExecutionCount() 260 Edge e = getEdge(BB,*Succ); in GetPath() 300 Edge e = getEdge(Parent,BB); in divertFlow() 335 newedge = getEdge(DestBB, e.second); in replaceAllUses() 343 newedge = getEdge(e.first, DestBB); in replaceAllUses() 352 Edge newedge = getEdge(DestBB, DestBB); in replaceAllUses() 376 Edge e = getEdge(FirstBB, SecondBB); in splitEdge() [all …]
|
D | ProfileEstimatorPass.cpp | 134 Edge edge = getEdge(*bbi,BB); in recurseBasicBlock() 205 Edge edge = getEdge(Latch,0); in recurseBasicBlock() 208 edge = getEdge(Latch, BB); in recurseBasicBlock() 242 Edge e = getEdge(Parent, Dest); in recurseBasicBlock() 267 Edge edge = getEdge(BB,0); in recurseBasicBlock() 273 Edge edge = getEdge(BB,*bbi); in recurseBasicBlock() 341 Edge edge = getEdge(0,entry); in runOnFunction() 372 Edge e = getEdge(*bbi,BB); in runOnFunction() 406 Edge e = getEdge(0,BB); in runOnFunction() 410 Edge e = getEdge(*predi,BB); in runOnFunction() [all …]
|
D | ProfileInfoLoaderPass.cpp | 164 readEdge(getEdge(0,&F->getEntryBlock()), Counters); in runOnModule() 168 readEdge(getEdge(BB,TI->getSuccessor(s)), Counters); in runOnModule() 185 readEdge(getEdge(0,&F->getEntryBlock()), Counters); in runOnModule() 189 readEdge(getEdge(BB,0), Counters); in runOnModule() 192 readEdge(getEdge(BB,TI->getSuccessor(s)), Counters); in runOnModule()
|
D | ProfileVerifierPass.cpp | 105 typename ProfileInfoT<FType, BType>::Edge E = PI->getEdge(*bbi,BB); in printDebugInfo() 120 typename ProfileInfoT<FType, BType>::Edge E = PI->getEdge(BB,*bbi); in printDebugInfo() 251 DI.inWeight += ReadOrAssert(PI->getEdge(0,BB)); in recurseBasicBlock() 256 DI.inWeight += ReadOrAssert(PI->getEdge(*bpi,BB)); in recurseBasicBlock() 267 double w = PI->getEdgeWeight(PI->getEdge(BB,0)); in recurseBasicBlock() 274 DI.outWeight += ReadOrAssert(PI->getEdge(BB,*bbi)); in recurseBasicBlock()
|
D | ProfileDataLoaderPass.cpp | 117 readEdge(ReadCount++, PB, PB.getEdge(0, &F->getEntryBlock()), Counters); in matchEdges() 121 readEdge(ReadCount++, PB, PB.getEdge(BB,TI->getSuccessor(s)), in matchEdges() 152 ProfileData::Edge edge = PB.getEdge(BB, TI->getSuccessor(s)); in setBranchWeightMetadata()
|
/external/llvm/include/llvm/CodeGen/PBQP/ |
D | Graph.h | 119 EdgeEntry& getEdge(EdgeItr eItr) { return *eItr; } 120 const EdgeEntry& getEdge(ConstEdgeItr eItr) const { return *eItr; } 132 EdgeEntry &ne = getEdge(edgeItr); 224 Matrix& getEdgeCosts(EdgeItr eItr) { return getEdge(eItr).getCosts(); } 230 return getEdge(eItr).getCosts(); 238 void setEdgeData(EdgeItr eItr, void *data) { getEdge(eItr).setData(data); } 243 void* getEdgeData(EdgeItr eItr) { return getEdge(eItr).getData(); } 288 return getEdge(eItr).getNode1(); 295 return getEdge(eItr).getNode2(); 303 EdgeEntry &e = getEdge(eItr); [all …]
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | OptimalEdgeProfiling.cpp | 150 ProfileInfo::Edge edge = ProfileInfo::getEdge(0, entry); in runOnModule() 173 ProfileInfo::Edge edge = ProfileInfo::getEdge(BB, 0); in runOnModule() 184 ProfileInfo::Edge edge = ProfileInfo::getEdge(BB,Succ); in runOnModule()
|
/external/llvm/include/llvm/Analysis/ |
D | ProfileDataLoader.h | 68 static Edge getEdge(const BType *Src, const BType *Dest) { in getEdge() function
|
D | ProfileInfo.h | 97 static Edge getEdge(const BType *Src, const BType *Dest) { in getEdge() function
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/ |
D | nv50_ir_print.cpp | 594 ei.getEdge()->typeStr()); in visit() 610 ei.getEdge()->typeStr()); in visit()
|
D | nv50_ir_graph.h | 95 inline Edge *getEdge() const { return e; } in getEdge() function
|
D | nv50_ir_graph.cpp | 139 delete ei.getEdge(); in detach()
|
D | nv50_ir_bb.cpp | 310 Graph::Edge *e = cfg.outgoing(true).getEdge(); in splitCommon()
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
D | nv50_ir_print.cpp | 594 ei.getEdge()->typeStr()); in visit() 610 ei.getEdge()->typeStr()); in visit()
|
D | nv50_ir_graph.h | 95 inline Edge *getEdge() const { return e; } in getEdge() function
|
D | nv50_ir_graph.cpp | 139 delete ei.getEdge(); in detach()
|
D | nv50_ir_bb.cpp | 310 Graph::Edge *e = cfg.outgoing(true).getEdge(); in splitCommon()
|
/external/llvm/lib/Transforms/Utils/ |
D | Local.cpp | 521 PI->removeEdge(ProfileInfo::getEdge(PredBB, DestBB)); in MergeBasicBlockIntoOnlyPred()
|
/external/llvm/lib/Transforms/Scalar/ |
D | CodeGenPrepare.cpp | 447 PFI->removeEdge(ProfileInfo::getEdge(BB, DestBB)); in EliminateMostlyEmptyBlock()
|