blob: af0450729a724314f59462cd2ed77659f2d589f3 [file] [log] [blame]
Juergen Ributzkaf26beda2014-01-25 02:02:55 +00001//===- ConstantHoisting.cpp - Prepare code for expensive constants --------===//
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 identifies expensive constants to hoist and coalesces them to
11// better prepare it for SelectionDAG-based code generation. This works around
12// the limitations of the basic-block-at-a-time approach.
13//
14// First it scans all instructions for integer constants and calculates its
15// cost. If the constant can be folded into the instruction (the cost is
16// TCC_Free) or the cost is just a simple operation (TCC_BASIC), then we don't
17// consider it expensive and leave it alone. This is the default behavior and
18// the default implementation of getIntImmCost will always return TCC_Free.
19//
20// If the cost is more than TCC_BASIC, then the integer constant can't be folded
21// into the instruction and it might be beneficial to hoist the constant.
22// Similar constants are coalesced to reduce register pressure and
23// materialization code.
24//
25// When a constant is hoisted, it is also hidden behind a bitcast to force it to
26// be live-out of the basic block. Otherwise the constant would be just
27// duplicated and each basic block would have its own copy in the SelectionDAG.
28// The SelectionDAG recognizes such constants as opaque and doesn't perform
29// certain transformations on them, which would create a new expensive constant.
30//
31// This optimization is only applied to integer constants in instructions and
Juergen Ributzkaf0dff492014-03-21 06:04:45 +000032// simple (this means not nested) constant cast expressions. For example:
Juergen Ributzkaf26beda2014-01-25 02:02:55 +000033// %0 = load i64* inttoptr (i64 big_constant to i64*)
34//===----------------------------------------------------------------------===//
35
Juergen Ributzkaf26beda2014-01-25 02:02:55 +000036#include "llvm/Transforms/Scalar.h"
Juergen Ributzkaf26beda2014-01-25 02:02:55 +000037#include "llvm/ADT/SmallSet.h"
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +000038#include "llvm/ADT/SmallVector.h"
Juergen Ributzkaf26beda2014-01-25 02:02:55 +000039#include "llvm/ADT/Statistic.h"
40#include "llvm/Analysis/TargetTransformInfo.h"
41#include "llvm/IR/Constants.h"
42#include "llvm/IR/Dominators.h"
43#include "llvm/IR/IntrinsicInst.h"
44#include "llvm/Pass.h"
Juergen Ributzkaf26beda2014-01-25 02:02:55 +000045#include "llvm/Support/Debug.h"
46
47using namespace llvm;
48
Chandler Carruth964daaa2014-04-22 02:55:47 +000049#define DEBUG_TYPE "consthoist"
50
Juergen Ributzkaf26beda2014-01-25 02:02:55 +000051STATISTIC(NumConstantsHoisted, "Number of constants hoisted");
52STATISTIC(NumConstantsRebased, "Number of constants rebased");
53
Juergen Ributzkaf26beda2014-01-25 02:02:55 +000054namespace {
Juergen Ributzka5429c062014-03-21 06:04:36 +000055struct ConstantUser;
56struct RebasedConstantInfo;
57
58typedef SmallVector<ConstantUser, 8> ConstantUseListType;
59typedef SmallVector<RebasedConstantInfo, 4> RebasedConstantListType;
60
61/// \brief Keeps track of the user of a constant and the operand index where the
62/// constant is used.
63struct ConstantUser {
64 Instruction *Inst;
65 unsigned OpndIdx;
66
67 ConstantUser(Instruction *Inst, unsigned Idx) : Inst(Inst), OpndIdx(Idx) { }
68};
69
Juergen Ributzkaf0dff492014-03-21 06:04:45 +000070/// \brief Keeps track of a constant candidate and its uses.
Juergen Ributzka6dab5202014-03-20 19:55:52 +000071struct ConstantCandidate {
Juergen Ributzka6dab5202014-03-20 19:55:52 +000072 ConstantUseListType Uses;
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +000073 ConstantInt *ConstInt;
74 unsigned CumulativeCost;
75
76 ConstantCandidate(ConstantInt *ConstInt)
77 : ConstInt(ConstInt), CumulativeCost(0) { }
Juergen Ributzka5429c062014-03-21 06:04:36 +000078
79 /// \brief Add the user to the use list and update the cost.
80 void addUser(Instruction *Inst, unsigned Idx, unsigned Cost) {
81 CumulativeCost += Cost;
82 Uses.push_back(ConstantUser(Inst, Idx));
83 }
Juergen Ributzka6dab5202014-03-20 19:55:52 +000084};
85
Juergen Ributzka5429c062014-03-21 06:04:36 +000086/// \brief This represents a constant that has been rebased with respect to a
87/// base constant. The difference to the base constant is recorded in Offset.
88struct RebasedConstantInfo {
89 ConstantUseListType Uses;
90 Constant *Offset;
91
92 RebasedConstantInfo(ConstantUseListType &&Uses, Constant *Offset)
Juergen Ributzkac81000b2014-04-03 01:38:47 +000093 : Uses(Uses), Offset(Offset) { }
Juergen Ributzka5429c062014-03-21 06:04:36 +000094};
95
96/// \brief A base constant and all its rebased constants.
Juergen Ributzkaf26beda2014-01-25 02:02:55 +000097struct ConstantInfo {
98 ConstantInt *BaseConstant;
Juergen Ributzkaf26beda2014-01-25 02:02:55 +000099 RebasedConstantListType RebasedConstants;
100};
101
Juergen Ributzka5429c062014-03-21 06:04:36 +0000102/// \brief The constant hoisting pass.
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000103class ConstantHoisting : public FunctionPass {
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000104 typedef DenseMap<ConstantInt *, unsigned> ConstCandMapType;
105 typedef std::vector<ConstantCandidate> ConstCandVecType;
106
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000107 const TargetTransformInfo *TTI;
108 DominatorTree *DT;
Juergen Ributzka5429c062014-03-21 06:04:36 +0000109 BasicBlock *Entry;
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000110
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000111 /// Keeps track of constant candidates found in the function.
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000112 ConstCandVecType ConstCandVec;
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000113
Juergen Ributzka5429c062014-03-21 06:04:36 +0000114 /// Keep track of cast instructions we already cloned.
115 SmallDenseMap<Instruction *, Instruction *> ClonedCastMap;
116
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000117 /// These are the final constants we decided to hoist.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000118 SmallVector<ConstantInfo, 8> ConstantVec;
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000119public:
120 static char ID; // Pass identification, replacement for typeid
Juergen Ributzka5429c062014-03-21 06:04:36 +0000121 ConstantHoisting() : FunctionPass(ID), TTI(0), DT(0), Entry(0) {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000122 initializeConstantHoistingPass(*PassRegistry::getPassRegistry());
123 }
124
Juergen Ributzka5429c062014-03-21 06:04:36 +0000125 bool runOnFunction(Function &Fn) override;
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000126
Craig Topper3e4c6972014-03-05 09:10:37 +0000127 const char *getPassName() const override { return "Constant Hoisting"; }
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000128
Craig Topper3e4c6972014-03-05 09:10:37 +0000129 void getAnalysisUsage(AnalysisUsage &AU) const override {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000130 AU.setPreservesCFG();
131 AU.addRequired<DominatorTreeWrapperPass>();
132 AU.addRequired<TargetTransformInfo>();
133 }
134
135private:
Juergen Ributzka5429c062014-03-21 06:04:36 +0000136 /// \brief Initialize the pass.
137 void setup(Function &Fn) {
138 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
139 TTI = &getAnalysis<TargetTransformInfo>();
140 Entry = &Fn.getEntryBlock();
141 }
142
143 /// \brief Cleanup.
144 void cleanup() {
145 ConstantVec.clear();
146 ClonedCastMap.clear();
147 ConstCandVec.clear();
Juergen Ributzka5429c062014-03-21 06:04:36 +0000148
149 TTI = nullptr;
150 DT = nullptr;
151 Entry = nullptr;
152 }
153
154 Instruction *findMatInsertPt(Instruction *Inst, unsigned Idx = ~0U) const;
155 Instruction *findConstantInsertionPoint(const ConstantInfo &ConstInfo) const;
Juergen Ributzka7be410f2014-03-25 21:21:10 +0000156 void collectConstantCandidates(ConstCandMapType &ConstCandMap,
157 Instruction *Inst, unsigned Idx,
Juergen Ributzka5429c062014-03-21 06:04:36 +0000158 ConstantInt *ConstInt);
Juergen Ributzka7be410f2014-03-25 21:21:10 +0000159 void collectConstantCandidates(ConstCandMapType &ConstCandMap,
160 Instruction *Inst);
Juergen Ributzka5429c062014-03-21 06:04:36 +0000161 void collectConstantCandidates(Function &Fn);
Juergen Ributzkab8489b32014-03-21 06:04:33 +0000162 void findAndMakeBaseConstant(ConstCandVecType::iterator S,
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000163 ConstCandVecType::iterator E);
Juergen Ributzkab8489b32014-03-21 06:04:33 +0000164 void findBaseConstants();
Juergen Ributzka5429c062014-03-21 06:04:36 +0000165 void emitBaseConstants(Instruction *Base, Constant *Offset,
166 const ConstantUser &ConstUser);
167 bool emitBaseConstants();
168 void deleteDeadCastInst() const;
169 bool optimizeConstants(Function &Fn);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000170};
171}
172
173char ConstantHoisting::ID = 0;
174INITIALIZE_PASS_BEGIN(ConstantHoisting, "consthoist", "Constant Hoisting",
175 false, false)
176INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
177INITIALIZE_AG_DEPENDENCY(TargetTransformInfo)
178INITIALIZE_PASS_END(ConstantHoisting, "consthoist", "Constant Hoisting",
179 false, false)
180
181FunctionPass *llvm::createConstantHoistingPass() {
182 return new ConstantHoisting();
183}
184
185/// \brief Perform the constant hoisting optimization for the given function.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000186bool ConstantHoisting::runOnFunction(Function &Fn) {
187 DEBUG(dbgs() << "********** Begin Constant Hoisting **********\n");
188 DEBUG(dbgs() << "********** Function: " << Fn.getName() << '\n');
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000189
Juergen Ributzka5429c062014-03-21 06:04:36 +0000190 setup(Fn);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000191
Juergen Ributzka5429c062014-03-21 06:04:36 +0000192 bool MadeChange = optimizeConstants(Fn);
193
194 if (MadeChange) {
195 DEBUG(dbgs() << "********** Function after Constant Hoisting: "
196 << Fn.getName() << '\n');
197 DEBUG(dbgs() << Fn);
198 }
199 DEBUG(dbgs() << "********** End Constant Hoisting **********\n");
200
201 cleanup();
202
203 return MadeChange;
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000204}
205
Juergen Ributzka5429c062014-03-21 06:04:36 +0000206
207/// \brief Find the constant materialization insertion point.
208Instruction *ConstantHoisting::findMatInsertPt(Instruction *Inst,
209 unsigned Idx) const {
Juergen Ributzka575bcb72014-04-22 18:06:58 +0000210 // If the operand is a cast instruction, then we have to materialize the
211 // constant before the cast instruction.
212 if (Idx != ~0U) {
213 Value *Opnd = Inst->getOperand(Idx);
214 if (auto CastInst = dyn_cast<Instruction>(Opnd))
215 if (CastInst->isCast())
216 return CastInst;
217 }
218
219 // The simple and common case. This also includes constant expressions.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000220 if (!isa<PHINode>(Inst) && !isa<LandingPadInst>(Inst))
221 return Inst;
222
223 // We can't insert directly before a phi node or landing pad. Insert before
224 // the terminator of the incoming or dominating block.
225 assert(Entry != Inst->getParent() && "PHI or landing pad in entry block!");
226 if (Idx != ~0U && isa<PHINode>(Inst))
227 return cast<PHINode>(Inst)->getIncomingBlock(Idx)->getTerminator();
228
229 BasicBlock *IDom = DT->getNode(Inst->getParent())->getIDom()->getBlock();
230 return IDom->getTerminator();
231}
232
233/// \brief Find an insertion point that dominates all uses.
234Instruction *ConstantHoisting::
235findConstantInsertionPoint(const ConstantInfo &ConstInfo) const {
236 assert(!ConstInfo.RebasedConstants.empty() && "Invalid constant info entry.");
Juergen Ributzkac81000b2014-04-03 01:38:47 +0000237 // Collect all basic blocks.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000238 SmallPtrSet<BasicBlock *, 8> BBs;
239 for (auto const &RCI : ConstInfo.RebasedConstants)
Juergen Ributzkac81000b2014-04-03 01:38:47 +0000240 for (auto const &U : RCI.Uses)
Juergen Ributzka575bcb72014-04-22 18:06:58 +0000241 BBs.insert(findMatInsertPt(U.Inst, U.OpndIdx)->getParent());
Juergen Ributzka5429c062014-03-21 06:04:36 +0000242
243 if (BBs.count(Entry))
244 return &Entry->front();
245
246 while (BBs.size() >= 2) {
247 BasicBlock *BB, *BB1, *BB2;
248 BB1 = *BBs.begin();
249 BB2 = *std::next(BBs.begin());
250 BB = DT->findNearestCommonDominator(BB1, BB2);
251 if (BB == Entry)
252 return &Entry->front();
253 BBs.erase(BB1);
254 BBs.erase(BB2);
255 BBs.insert(BB);
256 }
257 assert((BBs.size() == 1) && "Expected only one element.");
258 Instruction &FirstInst = (*BBs.begin())->front();
259 return findMatInsertPt(&FirstInst);
260}
261
262
263/// \brief Record constant integer ConstInt for instruction Inst at operand
264/// index Idx.
265///
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000266/// The operand at index Idx is not necessarily the constant integer itself. It
Juergen Ributzka5429c062014-03-21 06:04:36 +0000267/// could also be a cast instruction or a constant expression that uses the
268// constant integer.
Juergen Ributzka7be410f2014-03-25 21:21:10 +0000269void ConstantHoisting::collectConstantCandidates(ConstCandMapType &ConstCandMap,
270 Instruction *Inst,
Juergen Ributzka5429c062014-03-21 06:04:36 +0000271 unsigned Idx,
272 ConstantInt *ConstInt) {
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000273 unsigned Cost;
Juergen Ributzka5429c062014-03-21 06:04:36 +0000274 // Ask the target about the cost of materializing the constant for the given
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000275 // instruction and operand index.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000276 if (auto IntrInst = dyn_cast<IntrinsicInst>(Inst))
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000277 Cost = TTI->getIntImmCost(IntrInst->getIntrinsicID(), Idx,
Juergen Ributzka5429c062014-03-21 06:04:36 +0000278 ConstInt->getValue(), ConstInt->getType());
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000279 else
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000280 Cost = TTI->getIntImmCost(Inst->getOpcode(), Idx, ConstInt->getValue(),
Juergen Ributzka5429c062014-03-21 06:04:36 +0000281 ConstInt->getType());
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000282
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000283 // Ignore cheap integer constants.
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000284 if (Cost > TargetTransformInfo::TCC_Basic) {
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000285 ConstCandMapType::iterator Itr;
286 bool Inserted;
Juergen Ributzka5429c062014-03-21 06:04:36 +0000287 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(ConstInt, 0));
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000288 if (Inserted) {
Juergen Ributzka5429c062014-03-21 06:04:36 +0000289 ConstCandVec.push_back(ConstantCandidate(ConstInt));
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000290 Itr->second = ConstCandVec.size() - 1;
291 }
Juergen Ributzka5429c062014-03-21 06:04:36 +0000292 ConstCandVec[Itr->second].addUser(Inst, Idx, Cost);
293 DEBUG(if (isa<ConstantInt>(Inst->getOperand(Idx)))
294 dbgs() << "Collect constant " << *ConstInt << " from " << *Inst
295 << " with cost " << Cost << '\n';
296 else
297 dbgs() << "Collect constant " << *ConstInt << " indirectly from "
298 << *Inst << " via " << *Inst->getOperand(Idx) << " with cost "
299 << Cost << '\n';
300 );
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000301 }
302}
303
Juergen Ributzka5429c062014-03-21 06:04:36 +0000304/// \brief Scan the instruction for expensive integer constants and record them
305/// in the constant candidate vector.
Juergen Ributzka7be410f2014-03-25 21:21:10 +0000306void ConstantHoisting::collectConstantCandidates(ConstCandMapType &ConstCandMap,
307 Instruction *Inst) {
Juergen Ributzka5429c062014-03-21 06:04:36 +0000308 // Skip all cast instructions. They are visited indirectly later on.
309 if (Inst->isCast())
310 return;
311
312 // Can't handle inline asm. Skip it.
313 if (auto Call = dyn_cast<CallInst>(Inst))
314 if (isa<InlineAsm>(Call->getCalledValue()))
315 return;
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000316
317 // Scan all operands.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000318 for (unsigned Idx = 0, E = Inst->getNumOperands(); Idx != E; ++Idx) {
319 Value *Opnd = Inst->getOperand(Idx);
320
Juergen Ributzka7be410f2014-03-25 21:21:10 +0000321 // Visit constant integers.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000322 if (auto ConstInt = dyn_cast<ConstantInt>(Opnd)) {
Juergen Ributzka7be410f2014-03-25 21:21:10 +0000323 collectConstantCandidates(ConstCandMap, Inst, Idx, ConstInt);
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000324 continue;
325 }
Juergen Ributzka5429c062014-03-21 06:04:36 +0000326
327 // Visit cast instructions that have constant integers.
328 if (auto CastInst = dyn_cast<Instruction>(Opnd)) {
329 // Only visit cast instructions, which have been skipped. All other
330 // instructions should have already been visited.
331 if (!CastInst->isCast())
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000332 continue;
333
Juergen Ributzka5429c062014-03-21 06:04:36 +0000334 if (auto *ConstInt = dyn_cast<ConstantInt>(CastInst->getOperand(0))) {
335 // Pretend the constant is directly used by the instruction and ignore
336 // the cast instruction.
Juergen Ributzka7be410f2014-03-25 21:21:10 +0000337 collectConstantCandidates(ConstCandMap, Inst, Idx, ConstInt);
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000338 continue;
339 }
340 }
Juergen Ributzka5429c062014-03-21 06:04:36 +0000341
342 // Visit constant expressions that have constant integers.
343 if (auto ConstExpr = dyn_cast<ConstantExpr>(Opnd)) {
344 // Only visit constant cast expressions.
345 if (!ConstExpr->isCast())
346 continue;
347
348 if (auto ConstInt = dyn_cast<ConstantInt>(ConstExpr->getOperand(0))) {
349 // Pretend the constant is directly used by the instruction and ignore
350 // the constant expression.
Juergen Ributzka7be410f2014-03-25 21:21:10 +0000351 collectConstantCandidates(ConstCandMap, Inst, Idx, ConstInt);
Juergen Ributzka5429c062014-03-21 06:04:36 +0000352 continue;
353 }
354 }
355 } // end of for all operands
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000356}
357
358/// \brief Collect all integer constants in the function that cannot be folded
359/// into an instruction itself.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000360void ConstantHoisting::collectConstantCandidates(Function &Fn) {
Juergen Ributzka7be410f2014-03-25 21:21:10 +0000361 ConstCandMapType ConstCandMap;
Juergen Ributzka5429c062014-03-21 06:04:36 +0000362 for (Function::iterator BB : Fn)
363 for (BasicBlock::iterator Inst : *BB)
Juergen Ributzka7be410f2014-03-25 21:21:10 +0000364 collectConstantCandidates(ConstCandMap, Inst);
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000365}
366
367/// \brief Find the base constant within the given range and rebase all other
368/// constants with respect to the base constant.
Juergen Ributzkab8489b32014-03-21 06:04:33 +0000369void ConstantHoisting::findAndMakeBaseConstant(ConstCandVecType::iterator S,
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000370 ConstCandVecType::iterator E) {
Juergen Ributzka5429c062014-03-21 06:04:36 +0000371 auto MaxCostItr = S;
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000372 unsigned NumUses = 0;
373 // Use the constant that has the maximum cost as base constant.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000374 for (auto ConstCand = S; ConstCand != E; ++ConstCand) {
375 NumUses += ConstCand->Uses.size();
376 if (ConstCand->CumulativeCost > MaxCostItr->CumulativeCost)
377 MaxCostItr = ConstCand;
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000378 }
379
380 // Don't hoist constants that have only one use.
381 if (NumUses <= 1)
382 return;
383
Juergen Ributzka5429c062014-03-21 06:04:36 +0000384 ConstantInfo ConstInfo;
385 ConstInfo.BaseConstant = MaxCostItr->ConstInt;
386 Type *Ty = ConstInfo.BaseConstant->getType();
387
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000388 // Rebase the constants with respect to the base constant.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000389 for (auto ConstCand = S; ConstCand != E; ++ConstCand) {
390 APInt Diff = ConstCand->ConstInt->getValue() -
391 ConstInfo.BaseConstant->getValue();
392 Constant *Offset = Diff == 0 ? nullptr : ConstantInt::get(Ty, Diff);
393 ConstInfo.RebasedConstants.push_back(
394 RebasedConstantInfo(std::move(ConstCand->Uses), Offset));
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000395 }
Juergen Ributzka5429c062014-03-21 06:04:36 +0000396 ConstantVec.push_back(ConstInfo);
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000397}
398
Juergen Ributzka5429c062014-03-21 06:04:36 +0000399/// \brief Finds and combines constant candidates that can be easily
400/// rematerialized with an add from a common base constant.
Juergen Ributzkab8489b32014-03-21 06:04:33 +0000401void ConstantHoisting::findBaseConstants() {
Juergen Ributzka5429c062014-03-21 06:04:36 +0000402 // Sort the constants by value and type. This invalidates the mapping!
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000403 std::sort(ConstCandVec.begin(), ConstCandVec.end(),
404 [](const ConstantCandidate &LHS, const ConstantCandidate &RHS) {
405 if (LHS.ConstInt->getType() != RHS.ConstInt->getType())
406 return LHS.ConstInt->getType()->getBitWidth() <
407 RHS.ConstInt->getType()->getBitWidth();
408 return LHS.ConstInt->getValue().ult(RHS.ConstInt->getValue());
Juergen Ributzka46357932014-03-20 20:17:13 +0000409 });
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000410
Juergen Ributzka5429c062014-03-21 06:04:36 +0000411 // Simple linear scan through the sorted constant candidate vector for viable
412 // merge candidates.
413 auto MinValItr = ConstCandVec.begin();
414 for (auto CC = std::next(ConstCandVec.begin()), E = ConstCandVec.end();
415 CC != E; ++CC) {
416 if (MinValItr->ConstInt->getType() == CC->ConstInt->getType()) {
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000417 // Check if the constant is in range of an add with immediate.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000418 APInt Diff = CC->ConstInt->getValue() - MinValItr->ConstInt->getValue();
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000419 if ((Diff.getBitWidth() <= 64) &&
420 TTI->isLegalAddImmediate(Diff.getSExtValue()))
421 continue;
422 }
423 // We either have now a different constant type or the constant is not in
424 // range of an add with immediate anymore.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000425 findAndMakeBaseConstant(MinValItr, CC);
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000426 // Start a new base constant search.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000427 MinValItr = CC;
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000428 }
429 // Finalize the last base constant search.
Juergen Ributzkab8489b32014-03-21 06:04:33 +0000430 findAndMakeBaseConstant(MinValItr, ConstCandVec.end());
Juergen Ributzka46357932014-03-20 20:17:13 +0000431}
432
Juergen Ributzkae802d502014-03-22 01:49:27 +0000433/// \brief Updates the operand at Idx in instruction Inst with the result of
434/// instruction Mat. If the instruction is a PHI node then special
435/// handling for duplicate values form the same incomming basic block is
436/// required.
437/// \return The update will always succeed, but the return value indicated if
438/// Mat was used for the update or not.
439static bool updateOperand(Instruction *Inst, unsigned Idx, Instruction *Mat) {
440 if (auto PHI = dyn_cast<PHINode>(Inst)) {
441 // Check if any previous operand of the PHI node has the same incoming basic
442 // block. This is a very odd case that happens when the incoming basic block
443 // has a switch statement. In this case use the same value as the previous
444 // operand(s), otherwise we will fail verification due to different values.
445 // The values are actually the same, but the variable names are different
446 // and the verifier doesn't like that.
447 BasicBlock *IncomingBB = PHI->getIncomingBlock(Idx);
448 for (unsigned i = 0; i < Idx; ++i) {
449 if (PHI->getIncomingBlock(i) == IncomingBB) {
450 Value *IncomingVal = PHI->getIncomingValue(i);
451 Inst->setOperand(Idx, IncomingVal);
452 return false;
453 }
454 }
455 }
456
457 Inst->setOperand(Idx, Mat);
458 return true;
459}
460
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000461/// \brief Emit materialization code for all rebased constants and update their
462/// users.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000463void ConstantHoisting::emitBaseConstants(Instruction *Base, Constant *Offset,
464 const ConstantUser &ConstUser) {
465 Instruction *Mat = Base;
466 if (Offset) {
467 Instruction *InsertionPt = findMatInsertPt(ConstUser.Inst,
468 ConstUser.OpndIdx);
469 Mat = BinaryOperator::Create(Instruction::Add, Base, Offset,
470 "const_mat", InsertionPt);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000471
Juergen Ributzka5429c062014-03-21 06:04:36 +0000472 DEBUG(dbgs() << "Materialize constant (" << *Base->getOperand(0)
473 << " + " << *Offset << ") in BB "
474 << Mat->getParent()->getName() << '\n' << *Mat << '\n');
475 Mat->setDebugLoc(ConstUser.Inst->getDebugLoc());
476 }
477 Value *Opnd = ConstUser.Inst->getOperand(ConstUser.OpndIdx);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000478
Juergen Ributzka5429c062014-03-21 06:04:36 +0000479 // Visit constant integer.
480 if (isa<ConstantInt>(Opnd)) {
481 DEBUG(dbgs() << "Update: " << *ConstUser.Inst << '\n');
Juergen Ributzkae802d502014-03-22 01:49:27 +0000482 if (!updateOperand(ConstUser.Inst, ConstUser.OpndIdx, Mat) && Offset)
483 Mat->eraseFromParent();
Juergen Ributzka5429c062014-03-21 06:04:36 +0000484 DEBUG(dbgs() << "To : " << *ConstUser.Inst << '\n');
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000485 return;
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000486 }
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000487
Juergen Ributzka5429c062014-03-21 06:04:36 +0000488 // Visit cast instruction.
489 if (auto CastInst = dyn_cast<Instruction>(Opnd)) {
490 assert(CastInst->isCast() && "Expected an cast instruction!");
491 // Check if we already have visited this cast instruction before to avoid
492 // unnecessary cloning.
493 Instruction *&ClonedCastInst = ClonedCastMap[CastInst];
494 if (!ClonedCastInst) {
495 ClonedCastInst = CastInst->clone();
496 ClonedCastInst->setOperand(0, Mat);
497 ClonedCastInst->insertAfter(CastInst);
498 // Use the same debug location as the original cast instruction.
499 ClonedCastInst->setDebugLoc(CastInst->getDebugLoc());
Juergen Ributzkaa1444b32014-04-22 18:06:51 +0000500 DEBUG(dbgs() << "Clone instruction: " << *CastInst << '\n'
501 << "To : " << *ClonedCastInst << '\n');
Juergen Ributzka46357932014-03-20 20:17:13 +0000502 }
Juergen Ributzka5429c062014-03-21 06:04:36 +0000503
504 DEBUG(dbgs() << "Update: " << *ConstUser.Inst << '\n');
Juergen Ributzkae802d502014-03-22 01:49:27 +0000505 updateOperand(ConstUser.Inst, ConstUser.OpndIdx, ClonedCastInst);
Juergen Ributzka5429c062014-03-21 06:04:36 +0000506 DEBUG(dbgs() << "To : " << *ConstUser.Inst << '\n');
507 return;
Juergen Ributzka46357932014-03-20 20:17:13 +0000508 }
Juergen Ributzka5429c062014-03-21 06:04:36 +0000509
510 // Visit constant expression.
511 if (auto ConstExpr = dyn_cast<ConstantExpr>(Opnd)) {
512 Instruction *ConstExprInst = ConstExpr->getAsInstruction();
513 ConstExprInst->setOperand(0, Mat);
514 ConstExprInst->insertBefore(findMatInsertPt(ConstUser.Inst,
515 ConstUser.OpndIdx));
516
517 // Use the same debug location as the instruction we are about to update.
518 ConstExprInst->setDebugLoc(ConstUser.Inst->getDebugLoc());
519
520 DEBUG(dbgs() << "Create instruction: " << *ConstExprInst << '\n'
521 << "From : " << *ConstExpr << '\n');
522 DEBUG(dbgs() << "Update: " << *ConstUser.Inst << '\n');
Juergen Ributzkae802d502014-03-22 01:49:27 +0000523 if (!updateOperand(ConstUser.Inst, ConstUser.OpndIdx, ConstExprInst)) {
524 ConstExprInst->eraseFromParent();
525 if (Offset)
526 Mat->eraseFromParent();
527 }
Juergen Ributzka5429c062014-03-21 06:04:36 +0000528 DEBUG(dbgs() << "To : " << *ConstUser.Inst << '\n');
529 return;
Juergen Ributzka4c8a0252014-02-08 00:20:45 +0000530 }
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000531}
532
533/// \brief Hoist and hide the base constant behind a bitcast and emit
534/// materialization code for derived constants.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000535bool ConstantHoisting::emitBaseConstants() {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000536 bool MadeChange = false;
Juergen Ributzka5429c062014-03-21 06:04:36 +0000537 for (auto const &ConstInfo : ConstantVec) {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000538 // Hoist and hide the base constant behind a bitcast.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000539 Instruction *IP = findConstantInsertionPoint(ConstInfo);
540 IntegerType *Ty = ConstInfo.BaseConstant->getType();
541 Instruction *Base =
542 new BitCastInst(ConstInfo.BaseConstant, Ty, "const", IP);
543 DEBUG(dbgs() << "Hoist constant (" << *ConstInfo.BaseConstant << ") to BB "
544 << IP->getParent()->getName() << '\n' << *Base << '\n');
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000545 NumConstantsHoisted++;
546
547 // Emit materialization code for all rebased constants.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000548 for (auto const &RCI : ConstInfo.RebasedConstants) {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000549 NumConstantsRebased++;
Juergen Ributzka5429c062014-03-21 06:04:36 +0000550 for (auto const &U : RCI.Uses)
551 emitBaseConstants(Base, RCI.Offset, U);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000552 }
553
554 // Use the same debug location as the last user of the constant.
555 assert(!Base->use_empty() && "The use list is empty!?");
Chandler Carruthcdf47882014-03-09 03:16:01 +0000556 assert(isa<Instruction>(Base->user_back()) &&
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000557 "All uses should be instructions.");
Chandler Carruthcdf47882014-03-09 03:16:01 +0000558 Base->setDebugLoc(cast<Instruction>(Base->user_back())->getDebugLoc());
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000559
560 // Correct for base constant, which we counted above too.
561 NumConstantsRebased--;
562 MadeChange = true;
563 }
564 return MadeChange;
565}
566
Juergen Ributzka5429c062014-03-21 06:04:36 +0000567/// \brief Check all cast instructions we made a copy of and remove them if they
568/// have no more users.
569void ConstantHoisting::deleteDeadCastInst() const {
570 for (auto const &I : ClonedCastMap)
571 if (I.first->use_empty())
Juergen Ributzkae4747522014-03-22 01:49:30 +0000572 I.first->eraseFromParent();
Juergen Ributzka5429c062014-03-21 06:04:36 +0000573}
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000574
Juergen Ributzka5429c062014-03-21 06:04:36 +0000575/// \brief Optimize expensive integer constants in the given function.
576bool ConstantHoisting::optimizeConstants(Function &Fn) {
Juergen Ributzka46357932014-03-20 20:17:13 +0000577 // Collect all constant candidates.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000578 collectConstantCandidates(Fn);
Juergen Ributzka46357932014-03-20 20:17:13 +0000579
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000580 // There are no constant candidates to worry about.
581 if (ConstCandVec.empty())
582 return false;
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000583
584 // Combine constants that can be easily materialized with an add from a common
585 // base constant.
Juergen Ributzkab8489b32014-03-21 06:04:33 +0000586 findBaseConstants();
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000587
Juergen Ributzka5429c062014-03-21 06:04:36 +0000588 // There are no constants to emit.
589 if (ConstantVec.empty())
590 return false;
591
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000592 // Finally hoist the base constant and emit materialization code for dependent
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000593 // constants.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000594 bool MadeChange = emitBaseConstants();
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000595
Juergen Ributzka5429c062014-03-21 06:04:36 +0000596 // Cleanup dead instructions.
597 deleteDeadCastInst();
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000598
599 return MadeChange;
600}