Home
last modified time | relevance | path

Searched refs:getBranchMispredictPenalty (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h297 InstructionCost getBranchMispredictPenalty() const;
H A DX86TargetTransformInfo.cpp6760 InstructionCost X86TTIImpl::getBranchMispredictPenalty() const { in getBranchMispredictPenalty() function in X86TTIImpl
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h426 InstructionCost getBranchMispredictPenalty() const;
1841 virtual InstructionCost getBranchMispredictPenalty() = 0;
2253 InstructionCost getBranchMispredictPenalty() override { in getBranchMispredictPenalty() function
2254 return Impl.getBranchMispredictPenalty(); in getBranchMispredictPenalty()
H A DTargetTransformInfoImpl.h102 InstructionCost getBranchMispredictPenalty() const { return 0; } in getBranchMispredictPenalty() function
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp282 InstructionCost TargetTransformInfo::getBranchMispredictPenalty() const { in getBranchMispredictPenalty() function in TargetTransformInfo
283 return TTIImpl->getBranchMispredictPenalty(); in getBranchMispredictPenalty()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp3557 Budget += TTI.getBranchMispredictPenalty(); in FoldTwoEntryPHINode()