Chandler Carruth | 47e1db1 | 2011-10-16 22:15:07 +0000 | [diff] [blame] | 1 | //===- LowerExpectIntrinsic.cpp - Lower expect intrinsic ------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This pass lowers the 'expect' intrinsic to LLVM metadata. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 14 | #include "llvm/Transforms/Scalar.h" |
Chandler Carruth | 3f5e7b1 | 2015-01-24 10:47:13 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/SmallVector.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/Statistic.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 17 | #include "llvm/IR/BasicBlock.h" |
| 18 | #include "llvm/IR/Constants.h" |
| 19 | #include "llvm/IR/Function.h" |
| 20 | #include "llvm/IR/Instructions.h" |
| 21 | #include "llvm/IR/Intrinsics.h" |
| 22 | #include "llvm/IR/LLVMContext.h" |
| 23 | #include "llvm/IR/MDBuilder.h" |
| 24 | #include "llvm/IR/Metadata.h" |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 25 | #include "llvm/Pass.h" |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 26 | #include "llvm/Support/CommandLine.h" |
| 27 | #include "llvm/Support/Debug.h" |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 28 | |
| 29 | using namespace llvm; |
| 30 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 31 | #define DEBUG_TYPE "lower-expect-intrinsic" |
| 32 | |
Chandler Carruth | 6eb60eb | 2015-01-24 10:57:25 +0000 | [diff] [blame^] | 33 | STATISTIC(ExpectIntrinsicsHandled, |
| 34 | "Number of 'expect' intrinsic instructions handled"); |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 35 | |
| 36 | static cl::opt<uint32_t> |
| 37 | LikelyBranchWeight("likely-branch-weight", cl::Hidden, cl::init(64), |
| 38 | cl::desc("Weight of the branch likely to be taken (default = 64)")); |
| 39 | static cl::opt<uint32_t> |
| 40 | UnlikelyBranchWeight("unlikely-branch-weight", cl::Hidden, cl::init(4), |
| 41 | cl::desc("Weight of the branch unlikely to be taken (default = 4)")); |
| 42 | |
| 43 | namespace { |
Chandler Carruth | 579c5c4 | 2015-01-24 10:32:53 +0000 | [diff] [blame] | 44 | /// \brief Legacy pass for lowering expect intrinsics out of the IR. |
| 45 | /// |
| 46 | /// When this pass is run over a function it uses expect intrinsics which feed |
| 47 | /// branches and switches to provide branch weight metadata for those |
| 48 | /// terminators. It then removes the expect intrinsics from the IR so the rest |
| 49 | /// of the optimizer can ignore them. |
Chandler Carruth | 0ea746b | 2015-01-24 10:30:14 +0000 | [diff] [blame] | 50 | class LowerExpectIntrinsic : public FunctionPass { |
Chandler Carruth | 0ea746b | 2015-01-24 10:30:14 +0000 | [diff] [blame] | 51 | public: |
| 52 | static char ID; |
| 53 | LowerExpectIntrinsic() : FunctionPass(ID) { |
| 54 | initializeLowerExpectIntrinsicPass(*PassRegistry::getPassRegistry()); |
| 55 | } |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 56 | |
Chandler Carruth | 0ea746b | 2015-01-24 10:30:14 +0000 | [diff] [blame] | 57 | bool runOnFunction(Function &F) override; |
| 58 | }; |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 59 | } |
| 60 | |
Chandler Carruth | 0012c77 | 2015-01-24 10:39:24 +0000 | [diff] [blame] | 61 | static bool handleSwitchExpect(SwitchInst &SI) { |
| 62 | CallInst *CI = dyn_cast<CallInst>(SI.getCondition()); |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 63 | if (!CI) |
| 64 | return false; |
| 65 | |
| 66 | Function *Fn = CI->getCalledFunction(); |
| 67 | if (!Fn || Fn->getIntrinsicID() != Intrinsic::expect) |
| 68 | return false; |
| 69 | |
| 70 | Value *ArgValue = CI->getArgOperand(0); |
| 71 | ConstantInt *ExpectedValue = dyn_cast<ConstantInt>(CI->getArgOperand(1)); |
| 72 | if (!ExpectedValue) |
| 73 | return false; |
| 74 | |
Chandler Carruth | 0012c77 | 2015-01-24 10:39:24 +0000 | [diff] [blame] | 75 | SwitchInst::CaseIt Case = SI.findCaseValue(ExpectedValue); |
| 76 | unsigned n = SI.getNumCases(); // +1 for default case. |
Chandler Carruth | 3f5e7b1 | 2015-01-24 10:47:13 +0000 | [diff] [blame] | 77 | SmallVector<uint32_t, 16> Weights(n + 1, UnlikelyBranchWeight); |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 78 | |
Chandler Carruth | 3f5e7b1 | 2015-01-24 10:47:13 +0000 | [diff] [blame] | 79 | if (Case == SI.case_default()) |
| 80 | Weights[0] = LikelyBranchWeight; |
| 81 | else |
| 82 | Weights[Case.getCaseIndex() + 1] = LikelyBranchWeight; |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 83 | |
Chandler Carruth | 0012c77 | 2015-01-24 10:39:24 +0000 | [diff] [blame] | 84 | SI.setMetadata(LLVMContext::MD_prof, |
| 85 | MDBuilder(CI->getContext()).createBranchWeights(Weights)); |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 86 | |
Chandler Carruth | 0012c77 | 2015-01-24 10:39:24 +0000 | [diff] [blame] | 87 | SI.setCondition(ArgValue); |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 88 | return true; |
| 89 | } |
| 90 | |
Chandler Carruth | 0012c77 | 2015-01-24 10:39:24 +0000 | [diff] [blame] | 91 | static bool handleBranchExpect(BranchInst &BI) { |
| 92 | if (BI.isUnconditional()) |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 93 | return false; |
| 94 | |
| 95 | // Handle non-optimized IR code like: |
Duncan P. N. Exon Smith | 1ff08e3 | 2014-02-02 22:43:55 +0000 | [diff] [blame] | 96 | // %expval = call i64 @llvm.expect.i64(i64 %conv1, i64 1) |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 97 | // %tobool = icmp ne i64 %expval, 0 |
| 98 | // br i1 %tobool, label %if.then, label %if.end |
Duncan P. N. Exon Smith | 1ff08e3 | 2014-02-02 22:43:55 +0000 | [diff] [blame] | 99 | // |
| 100 | // Or the following simpler case: |
| 101 | // %expval = call i1 @llvm.expect.i1(i1 %cmp, i1 1) |
| 102 | // br i1 %expval, label %if.then, label %if.end |
| 103 | |
| 104 | CallInst *CI; |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 105 | |
Chandler Carruth | 0012c77 | 2015-01-24 10:39:24 +0000 | [diff] [blame] | 106 | ICmpInst *CmpI = dyn_cast<ICmpInst>(BI.getCondition()); |
Duncan P. N. Exon Smith | 1ff08e3 | 2014-02-02 22:43:55 +0000 | [diff] [blame] | 107 | if (!CmpI) { |
Chandler Carruth | 0012c77 | 2015-01-24 10:39:24 +0000 | [diff] [blame] | 108 | CI = dyn_cast<CallInst>(BI.getCondition()); |
Duncan P. N. Exon Smith | 1ff08e3 | 2014-02-02 22:43:55 +0000 | [diff] [blame] | 109 | } else { |
| 110 | if (CmpI->getPredicate() != CmpInst::ICMP_NE) |
| 111 | return false; |
| 112 | CI = dyn_cast<CallInst>(CmpI->getOperand(0)); |
| 113 | } |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 114 | |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 115 | if (!CI) |
| 116 | return false; |
| 117 | |
| 118 | Function *Fn = CI->getCalledFunction(); |
| 119 | if (!Fn || Fn->getIntrinsicID() != Intrinsic::expect) |
| 120 | return false; |
| 121 | |
| 122 | Value *ArgValue = CI->getArgOperand(0); |
| 123 | ConstantInt *ExpectedValue = dyn_cast<ConstantInt>(CI->getArgOperand(1)); |
| 124 | if (!ExpectedValue) |
| 125 | return false; |
| 126 | |
Benjamin Kramer | 65e7566 | 2012-05-26 13:59:43 +0000 | [diff] [blame] | 127 | MDBuilder MDB(CI->getContext()); |
| 128 | MDNode *Node; |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 129 | |
| 130 | // If expect value is equal to 1 it means that we are more likely to take |
| 131 | // branch 0, in other case more likely is branch 1. |
Benjamin Kramer | 65e7566 | 2012-05-26 13:59:43 +0000 | [diff] [blame] | 132 | if (ExpectedValue->isOne()) |
| 133 | Node = MDB.createBranchWeights(LikelyBranchWeight, UnlikelyBranchWeight); |
| 134 | else |
| 135 | Node = MDB.createBranchWeights(UnlikelyBranchWeight, LikelyBranchWeight); |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 136 | |
Chandler Carruth | 0012c77 | 2015-01-24 10:39:24 +0000 | [diff] [blame] | 137 | BI.setMetadata(LLVMContext::MD_prof, Node); |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 138 | |
Duncan P. N. Exon Smith | 1ff08e3 | 2014-02-02 22:43:55 +0000 | [diff] [blame] | 139 | if (CmpI) |
| 140 | CmpI->setOperand(0, ArgValue); |
| 141 | else |
Chandler Carruth | 0012c77 | 2015-01-24 10:39:24 +0000 | [diff] [blame] | 142 | BI.setCondition(ArgValue); |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 143 | return true; |
| 144 | } |
| 145 | |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 146 | bool LowerExpectIntrinsic::runOnFunction(Function &F) { |
Chandler Carruth | d12741e | 2015-01-24 10:57:19 +0000 | [diff] [blame] | 147 | for (BasicBlock &BB : F) { |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 148 | // Create "block_weights" metadata. |
Chandler Carruth | d12741e | 2015-01-24 10:57:19 +0000 | [diff] [blame] | 149 | if (BranchInst *BI = dyn_cast<BranchInst>(BB.getTerminator())) { |
Chandler Carruth | 0012c77 | 2015-01-24 10:39:24 +0000 | [diff] [blame] | 150 | if (handleBranchExpect(*BI)) |
Chandler Carruth | 6eb60eb | 2015-01-24 10:57:25 +0000 | [diff] [blame^] | 151 | ExpectIntrinsicsHandled++; |
Chandler Carruth | d12741e | 2015-01-24 10:57:19 +0000 | [diff] [blame] | 152 | } else if (SwitchInst *SI = dyn_cast<SwitchInst>(BB.getTerminator())) { |
Chandler Carruth | 0012c77 | 2015-01-24 10:39:24 +0000 | [diff] [blame] | 153 | if (handleSwitchExpect(*SI)) |
Chandler Carruth | 6eb60eb | 2015-01-24 10:57:25 +0000 | [diff] [blame^] | 154 | ExpectIntrinsicsHandled++; |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | // remove llvm.expect intrinsics. |
Chandler Carruth | d12741e | 2015-01-24 10:57:19 +0000 | [diff] [blame] | 158 | for (BasicBlock::iterator BI = BB.begin(), BE = BB.end(); BI != BE;) { |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 159 | CallInst *CI = dyn_cast<CallInst>(BI++); |
| 160 | if (!CI) |
| 161 | continue; |
| 162 | |
| 163 | Function *Fn = CI->getCalledFunction(); |
Jakub Staszak | a11f7ec | 2011-07-06 23:50:16 +0000 | [diff] [blame] | 164 | if (Fn && Fn->getIntrinsicID() == Intrinsic::expect) { |
| 165 | Value *Exp = CI->getArgOperand(0); |
| 166 | CI->replaceAllUsesWith(Exp); |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 167 | CI->eraseFromParent(); |
Jakub Staszak | a11f7ec | 2011-07-06 23:50:16 +0000 | [diff] [blame] | 168 | } |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 169 | } |
| 170 | } |
| 171 | |
| 172 | return false; |
| 173 | } |
| 174 | |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 175 | char LowerExpectIntrinsic::ID = 0; |
Chandler Carruth | 0ea746b | 2015-01-24 10:30:14 +0000 | [diff] [blame] | 176 | INITIALIZE_PASS(LowerExpectIntrinsic, "lower-expect", |
| 177 | "Lower 'expect' Intrinsics", false, false) |
Jakub Staszak | 3f158fd | 2011-07-06 18:22:43 +0000 | [diff] [blame] | 178 | |
| 179 | FunctionPass *llvm::createLowerExpectIntrinsicPass() { |
| 180 | return new LowerExpectIntrinsic(); |
| 181 | } |