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

  /external/llvm/include/llvm/Analysis/
ProfileDataLoader.h 55 DenseMap<const FType*, EdgeWeights> EdgeInformation;
76 assert((EdgeInformation.find(f) != EdgeInformation.end())
78 EdgeWeights weights = EdgeInformation.find(f)->second;
88 EdgeInformation[getFunction(e)][e] += weight;
ProfileInfo.h 65 // EdgeInformation - Count the number of times a transition between two
69 std::map<const FType*, EdgeWeights> EdgeInformation;
114 EdgeInformation.find(getFunction(e));
115 if (J == EdgeInformation.end()) return MissingValue;
127 EdgeInformation[getFunction(e)][e] = w;
133 return EdgeInformation[F];
200 typename std::map<const FType*, EdgeWeights>::iterator ei = EdgeInformation.find(*FI);
  /external/llvm/lib/Analysis/
ProfileEstimatorPass.cpp 206 EdgeInformation[BB->getParent()][edge] = BBWeight;
209 EdgeInformation[BB->getParent()][edge] = BBWeight * ExecCount;
228 EdgeInformation[BB->getParent()][*ei] += w;
231 EdgeInformation[BB->getParent()][*ei] += MinimalWeight[*ei];
268 EdgeInformation[BB->getParent()][edge] = BBWeight;
295 EdgeInformation[BB->getParent()][*ei] += fraction;
298 EdgeInformation[BB->getParent()][*ei] += BBWeight;
302 EdgeInformation[BB->getParent()][*ei] += MinimalWeight[*ei];
325 EdgeInformation[&F].clear();
342 EdgeInformation[&F][edge] = BlockInformation[&F][entry]
    [all...]
ProfileInfo.cpp 188 EdgeInformation[getFunction(e)][e] = oldw + w;
214 EdgeInformation.find(getFunction(e));
215 if (J == EdgeInformation.end()) return;
322 EdgeInformation.find(F);
323 if (J == EdgeInformation.end()) return;
372 EdgeInformation.find(F);
373 if (J == EdgeInformation.end()) return;
416 EdgeInformation.find(F);
417 if (J == EdgeInformation.end()) return;
447 EdgeInformation.find(F)
    [all...]
ProfileInfoLoaderPass.cpp 141 EdgeInformation[getFunction(e)][e] += (double)weight;
157 EdgeInformation.clear();

Completed in 3496 milliseconds