Home
last modified time | relevance | path

Searched refs:getEdge (Results 1 – 19 of 19) sorted by relevance

/external/llvm/lib/Analysis/
DProfileInfo.cpp75 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 …]
DProfileEstimatorPass.cpp134 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 …]
DProfileInfoLoaderPass.cpp164 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()
DProfileVerifierPass.cpp105 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()
DProfileDataLoaderPass.cpp117 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/
DGraph.h119 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/
DOptimalEdgeProfiling.cpp150 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/
DProfileDataLoader.h68 static Edge getEdge(const BType *Src, const BType *Dest) { in getEdge() function
DProfileInfo.h97 static Edge getEdge(const BType *Src, const BType *Dest) { in getEdge() function
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
Dnv50_ir_print.cpp594 ei.getEdge()->typeStr()); in visit()
610 ei.getEdge()->typeStr()); in visit()
Dnv50_ir_graph.h95 inline Edge *getEdge() const { return e; } in getEdge() function
Dnv50_ir_graph.cpp139 delete ei.getEdge(); in detach()
Dnv50_ir_bb.cpp310 Graph::Edge *e = cfg.outgoing(true).getEdge(); in splitCommon()
/external/mesa3d/src/gallium/drivers/nv50/codegen/
Dnv50_ir_print.cpp594 ei.getEdge()->typeStr()); in visit()
610 ei.getEdge()->typeStr()); in visit()
Dnv50_ir_graph.h95 inline Edge *getEdge() const { return e; } in getEdge() function
Dnv50_ir_graph.cpp139 delete ei.getEdge(); in detach()
Dnv50_ir_bb.cpp310 Graph::Edge *e = cfg.outgoing(true).getEdge(); in splitCommon()
/external/llvm/lib/Transforms/Utils/
DLocal.cpp521 PI->removeEdge(ProfileInfo::getEdge(PredBB, DestBB)); in MergeBasicBlockIntoOnlyPred()
/external/llvm/lib/Transforms/Scalar/
DCodeGenPrepare.cpp447 PFI->removeEdge(ProfileInfo::getEdge(BB, DestBB)); in EliminateMostlyEmptyBlock()