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

  /external/llvm/lib/CodeGen/
MachineBranchProbabilityInfo.cpp 41 uint32_t Weight = getEdgeWeight(MBB, I);
56 uint32_t Weight = getEdgeWeight(MBB, I);
64 getEdgeWeight(const MachineBasicBlock *Src,
73 getEdgeWeight(const MachineBasicBlock *Src,
77 return getEdgeWeight(Src, std::find(Src->succ_begin(), Src->succ_end(), Dst));
93 uint32_t Weight = getEdgeWeight(MBB, I);
111 uint32_t N = getEdgeWeight(Src, Dst) / Scale;
MachineBlockPlacement.cpp 350 uint32_t SuccWeight = MBPI->getEdgeWeight(BB, *SI);
669 uint32_t SuccWeight = MBPI->getEdgeWeight(*I, *SI);
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineBranchProbabilityInfo.h 50 uint32_t getEdgeWeight(const MachineBasicBlock *Src,
55 uint32_t getEdgeWeight(const MachineBasicBlock *Src,
  /external/llvm/include/llvm/Analysis/
BranchProbabilityInfo.h 92 uint32_t getEdgeWeight(const BasicBlock *Src,
99 uint32_t getEdgeWeight(const BasicBlock *Src, const BasicBlock *Dst) const;
ProfileDataLoader.h 71 /// getEdgeWeight - Return the number of times that a given edge was
73 unsigned getEdgeWeight(Edge e) const {
ProfileInfo.h 112 double getEdgeWeight(Edge e) const {
  /external/llvm/lib/Analysis/
ProfileInfo.cpp 76 Count = getEdgeWeight(e);
85 double w = getEdgeWeight(getEdge(P, BB));
103 Count = getEdgeWeight(e);
109 double w = getEdgeWeight(getEdge(BB, *SI));
184 double oldw = getEdgeWeight(e);
225 if ((w = getEdgeWeight(newedge)) == MissingValue) {
226 w = getEdgeWeight(oldedge);
229 w += getEdgeWeight(oldedge);
261 if ((Mode & GetPathWithNewEdges) && (getEdgeWeight(e) != MissingValue)) continue;
286 if (getEdgeWeight(oldedge) == 0)
    [all...]
BranchProbabilityInfo.cpp 444 uint32_t Weight = getEdgeWeight(BB, I.getSuccessorIndex());
468 uint32_t Weight = getEdgeWeight(BB, Succ);
491 getEdgeWeight(const BasicBlock *Src, unsigned IndexInSuccessors) const {
504 getEdgeWeight(const BasicBlock *Src, const BasicBlock *Dst) const {
530 uint32_t N = getEdgeWeight(Src, IndexInSuccessors);
541 uint32_t N = getEdgeWeight(Src, Dst);
ProfileEstimatorPass.cpp 107 << format("%20.20g", getEdgeWeight(E)) << "\n");
135 double w = getEdgeWeight(edge);
187 double w = getEdgeWeight(*ei);
274 double w = getEdgeWeight(edge);
276 BBWeight -= getEdgeWeight(edge);
373 double w = getEdgeWeight(e);
ProfileDataLoaderPass.cpp 104 << PB.getEdgeWeight(e) << "\n");
153 Weights[s] = (uint32_t)PB.getEdgeWeight(edge);
ProfileVerifierPass.cpp 105 double EdgeWeight = PI->getEdgeWeight(E);
120 double EdgeWeight = PI->getEdgeWeight(E);
201 double EdgeWeight = PI->getEdgeWeight(E);
266 double w = PI->getEdgeWeight(PI->getEdge(BB,0));
ProfileInfoLoaderPass.cpp 100 if ((w = getEdgeWeight(edge)) == MissingValue) {
145 << (unsigned)getEdgeWeight(e) << "\n");
  /external/llvm/tools/llvm-prof/
llvm-prof.cpp 110 double w = ignoreMissing(PI.getEdgeWeight(std::make_pair(BB, Succ)));
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 449 uint32_t getEdgeWeight(const MachineBasicBlock *Src,
SelectionDAGBuilder.cpp     [all...]

Completed in 343 milliseconds