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

  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfo.h 47 /// getblockFreq - Return block frequency. Return 0 if we don't have the
52 BlockFrequency getBlockFreq(const BasicBlock *BB) const;
BlockFrequencyInfoImpl.h 467 BlockFrequency getBlockFreq(const BlockNode &Node) const;
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineBlockFrequencyInfo.h 46 /// getblockFreq - Return block frequency. Return 0 if we don't have the
51 BlockFrequency getBlockFreq(const MachineBasicBlock *MBB) const;
  /external/llvm/lib/Analysis/
BlockFrequencyInfo.cpp 94 OS << Graph->getBlockFreq(Node).getFrequency();
149 BlockFrequency BlockFrequencyInfo::getBlockFreq(const BasicBlock *BB) const {
150 return BFI ? BFI->getBlockFreq(BB) : 0;
BlockFrequencyInfoImpl.cpp 507 BlockFrequencyInfoImplBase::getBlockFreq(const BlockNode &Node) const {
  /external/llvm/lib/CodeGen/
MachineBlockFrequencyInfo.cpp 101 OS << Graph->getBlockFreq(Node).getFrequency();
171 getBlockFreq(const MachineBasicBlock *MBB) const {
172 return MBFI ? MBFI->getBlockFreq(MBB) : 0;
MachineBlockPlacement.cpp 379 = MBFI->getBlockFreq(BB) * SuccProb * HotProb.getCompl();
388 = MBFI->getBlockFreq(*PI) * MBPI->getEdgeProbability(*PI, *SI);
449 BlockFrequency CandidateFreq = MBFI->getBlockFreq(*WBI);
577 BlockFrequency PredFreq = MBFI->getBlockFreq(Pred);
684 BlockFrequency ExitEdgeFreq = MBFI->getBlockFreq(*I) * SuccProb;
    [all...]
SpillPlacement.cpp 213 BlockFrequencies[Num] = MBFI->getBlockFreq(I);
InlineSpiller.cpp 453 (MBFI.getBlockFreq(DepSV.SpillMBB) >=
454 (MBFI.getBlockFreq(SV.SpillMBB) * MarginProb)) ||
    [all...]
LiveIntervalAnalysis.cpp 639 BlockFrequency Freq = MBFI->getBlockFreq(MI->getParent());
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 129 milliseconds