HomeSort by relevance Sort by last modified time
    Searched refs:getEdge (Results 1 - 12 of 12) sorted by null

  /external/llvm/lib/Analysis/
ProfileInfo.cpp 75 Edge e = getEdge(0, BB);
85 double w = getEdgeWeight(getEdge(P, BB));
102 Edge e = getEdge(BB,0);
109 double w = getEdgeWeight(getEdge(BB, *SI));
260 Edge e = getEdge(BB,*Succ);
300 Edge e = getEdge(Parent,BB);
335 newedge = getEdge(DestBB, e.second);
343 newedge = getEdge(e.first, DestBB);
352 Edge newedge = getEdge(DestBB, DestBB);
376 Edge e = getEdge(FirstBB, SecondBB)
    [all...]
ProfileEstimatorPass.cpp 134 Edge edge = getEdge(*bbi,BB);
205 Edge edge = getEdge(Latch,0);
208 edge = getEdge(Latch, BB);
242 Edge e = getEdge(Parent, Dest);
267 Edge edge = getEdge(BB,0);
273 Edge edge = getEdge(BB,*bbi);
341 Edge edge = getEdge(0,entry);
372 Edge e = getEdge(*bbi,BB);
406 Edge e = getEdge(0,BB);
410 Edge e = getEdge(*predi,BB)
    [all...]
ProfileInfoLoaderPass.cpp 164 readEdge(getEdge(0,&F->getEntryBlock()), Counters);
168 readEdge(getEdge(BB,TI->getSuccessor(s)), Counters);
185 readEdge(getEdge(0,&F->getEntryBlock()), Counters);
189 readEdge(getEdge(BB,0), Counters);
192 readEdge(getEdge(BB,TI->getSuccessor(s)), Counters);
ProfileDataLoaderPass.cpp 117 readEdge(ReadCount++, PB, PB.getEdge(0, &F->getEntryBlock()), Counters);
121 readEdge(ReadCount++, PB, PB.getEdge(BB,TI->getSuccessor(s)),
152 ProfileData::Edge edge = PB.getEdge(BB, TI->getSuccessor(s));
ProfileVerifierPass.cpp 105 typename ProfileInfoT<FType, BType>::Edge E = PI->getEdge(*bbi,BB);
120 typename ProfileInfoT<FType, BType>::Edge E = PI->getEdge(BB,*bbi);
251 DI.inWeight += ReadOrAssert(PI->getEdge(0,BB));
256 DI.inWeight += ReadOrAssert(PI->getEdge(*bpi,BB));
267 double w = PI->getEdgeWeight(PI->getEdge(BB,0));
274 DI.outWeight += ReadOrAssert(PI->getEdge(BB,*bbi));
  /external/llvm/include/llvm/CodeGen/PBQP/
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/include/llvm/Analysis/
ProfileDataLoader.h 67 /// getEdge() - Creates an Edge between two BasicBlocks.
68 static Edge getEdge(const BType *Src, const BType *Dest) {
ProfileInfo.h 96 // getEdge() - Creates an Edge from two BasicBlocks.
97 static Edge getEdge(const BType *Src, const BType *Dest) {
  /external/llvm/lib/Transforms/Instrumentation/
OptimalEdgeProfiling.cpp 150 ProfileInfo::Edge edge = ProfileInfo::getEdge(0, entry);
173 ProfileInfo::Edge edge = ProfileInfo::getEdge(BB, 0);
184 ProfileInfo::Edge edge = ProfileInfo::getEdge(BB,Succ);
  /external/llvm/lib/Transforms/Utils/
Local.cpp 521 PI->removeEdge(ProfileInfo::getEdge(PredBB, DestBB));
    [all...]
  /external/llvm/lib/Transforms/Scalar/
CodeGenPrepare.cpp 444 PFI->removeEdge(ProfileInfo::getEdge(BB, DestBB));
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java     [all...]

Completed in 507 milliseconds