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

  /external/llvm/unittests/Analysis/
BlockFrequencyInfoTest.cpp 79 EXPECT_EQ(BFI.getBlockProfileCount(&BB0).getValue(), UINT64_C(100));
80 EXPECT_EQ(BFI.getBlockProfileCount(BB3).getValue(), UINT64_C(100));
81 EXPECT_EQ(BFI.getBlockProfileCount(BB1).getValue(), 100 * BB1Freq / BB0Freq);
82 EXPECT_EQ(BFI.getBlockProfileCount(BB2).getValue(), 100 * BB2Freq / BB0Freq);
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/
BlockFrequencyInfoTest.cpp 78 EXPECT_EQ(BFI.getBlockProfileCount(&BB0).getValue(), UINT64_C(100));
79 EXPECT_EQ(BFI.getBlockProfileCount(BB3).getValue(), UINT64_C(100));
80 EXPECT_EQ(BFI.getBlockProfileCount(BB1).getValue(), 100 * BB1Freq / BB0Freq);
81 EXPECT_EQ(BFI.getBlockProfileCount(BB2).getValue(), 100 * BB2Freq / BB0Freq);
  /external/llvm/include/llvm/CodeGen/
MachineBlockFrequencyInfo.h 54 Optional<uint64_t> getBlockProfileCount(const MachineBasicBlock *MBB) const;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
MachineBlockFrequencyInfo.h 62 Optional<uint64_t> getBlockProfileCount(const MachineBasicBlock *MBB) const;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
MachineOptimizationRemarkEmitter.cpp 39 return MBFI->getBlockProfileCount(&MBB);
MachineBlockFrequencyInfo.cpp 225 Optional<uint64_t> MachineBlockFrequencyInfo::getBlockProfileCount(
228 return MBFI ? MBFI->getBlockProfileCount(F, MBB) : None;
  /external/llvm/lib/CodeGen/
MachineBlockFrequencyInfo.cpp 172 Optional<uint64_t> MachineBlockFrequencyInfo::getBlockProfileCount(
175 return MBFI ? MBFI->getBlockProfileCount(*F, MBB) : None;
  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfo.h 62 Optional<uint64_t> getBlockProfileCount(const BasicBlock *BB) const;
BlockFrequencyInfoImpl.h 483 Optional<uint64_t> getBlockProfileCount(const Function &F,
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
ProfileSummaryInfo.cpp 101 return BFI->getBlockProfileCount(Inst->getParent());
239 auto Count = BFI->getBlockProfileCount(B);
245 auto Count = BFI->getBlockProfileCount(B);
OptimizationRemarkEmitter.cpp 63 return BFI->getBlockProfileCount(cast<BasicBlock>(V));
BlockFrequencyInfo.cpp 207 BlockFrequencyInfo::getBlockProfileCount(const BasicBlock *BB) const {
211 return BFI->getBlockProfileCount(*getFunction(), BB);
BlockFrequencyInfoImpl.cpp 560 BlockFrequencyInfoImplBase::getBlockProfileCount(const Function &F,
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
BlockFrequencyInfo.h 71 Optional<uint64_t> getBlockProfileCount(const BasicBlock *BB) const;
BlockFrequencyInfoImpl.h 527 Optional<uint64_t> getBlockProfileCount(const Function &F,
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
CGProfile.cpp 49 Optional<uint64_t> BBCount = BFI.getBlockProfileCount(&BB);
PGOMemOPSizeOpt.cpp 246 auto BBEdgeCount = BFI.getBlockProfileCount(MI->getParent());
  /external/llvm/lib/Analysis/
BlockFrequencyInfo.cpp 158 BlockFrequencyInfo::getBlockProfileCount(const BasicBlock *BB) const {
162 return BFI->getBlockProfileCount(*getFunction(), BB);
ModuleSummaryAnalysis.cpp 88 auto ScaledCount = BFI ? BFI->getBlockProfileCount(&BB) : None;
BlockFrequencyInfoImpl.cpp 534 BlockFrequencyInfoImplBase::getBlockProfileCount(const Function &F,
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
PartialInlining.cpp 433 return BFI->getBlockProfileCount(BB)
434 ? BFI->getBlockProfileCount(BB).getValue()
    [all...]

Completed in 1714 milliseconds