blob: 763d02b9fcd64d70b866171482facbee9497445a [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"
NAKAMURA Takumi99aa6e12014-04-30 06:44:50 +000046#include <tuple>
Juergen Ributzkaf26beda2014-01-25 02:02:55 +000047
48using namespace llvm;
49
Chandler Carruth964daaa2014-04-22 02:55:47 +000050#define DEBUG_TYPE "consthoist"
51
Juergen Ributzkaf26beda2014-01-25 02:02:55 +000052STATISTIC(NumConstantsHoisted, "Number of constants hoisted");
53STATISTIC(NumConstantsRebased, "Number of constants rebased");
54
Juergen Ributzkaf26beda2014-01-25 02:02:55 +000055namespace {
Juergen Ributzka5429c062014-03-21 06:04:36 +000056struct ConstantUser;
57struct RebasedConstantInfo;
58
59typedef SmallVector<ConstantUser, 8> ConstantUseListType;
60typedef SmallVector<RebasedConstantInfo, 4> RebasedConstantListType;
61
62/// \brief Keeps track of the user of a constant and the operand index where the
63/// constant is used.
64struct ConstantUser {
65 Instruction *Inst;
66 unsigned OpndIdx;
67
68 ConstantUser(Instruction *Inst, unsigned Idx) : Inst(Inst), OpndIdx(Idx) { }
69};
70
Juergen Ributzkaf0dff492014-03-21 06:04:45 +000071/// \brief Keeps track of a constant candidate and its uses.
Juergen Ributzka6dab5202014-03-20 19:55:52 +000072struct ConstantCandidate {
Juergen Ributzka6dab5202014-03-20 19:55:52 +000073 ConstantUseListType Uses;
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +000074 ConstantInt *ConstInt;
75 unsigned CumulativeCost;
76
77 ConstantCandidate(ConstantInt *ConstInt)
78 : ConstInt(ConstInt), CumulativeCost(0) { }
Juergen Ributzka5429c062014-03-21 06:04:36 +000079
80 /// \brief Add the user to the use list and update the cost.
81 void addUser(Instruction *Inst, unsigned Idx, unsigned Cost) {
82 CumulativeCost += Cost;
83 Uses.push_back(ConstantUser(Inst, Idx));
84 }
Juergen Ributzka6dab5202014-03-20 19:55:52 +000085};
86
Juergen Ributzka5429c062014-03-21 06:04:36 +000087/// \brief This represents a constant that has been rebased with respect to a
88/// base constant. The difference to the base constant is recorded in Offset.
89struct RebasedConstantInfo {
90 ConstantUseListType Uses;
91 Constant *Offset;
92
93 RebasedConstantInfo(ConstantUseListType &&Uses, Constant *Offset)
Juergen Ributzkac81000b2014-04-03 01:38:47 +000094 : Uses(Uses), Offset(Offset) { }
Juergen Ributzka5429c062014-03-21 06:04:36 +000095};
96
97/// \brief A base constant and all its rebased constants.
Juergen Ributzkaf26beda2014-01-25 02:02:55 +000098struct ConstantInfo {
99 ConstantInt *BaseConstant;
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000100 RebasedConstantListType RebasedConstants;
101};
102
Juergen Ributzka5429c062014-03-21 06:04:36 +0000103/// \brief The constant hoisting pass.
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000104class ConstantHoisting : public FunctionPass {
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000105 typedef DenseMap<ConstantInt *, unsigned> ConstCandMapType;
106 typedef std::vector<ConstantCandidate> ConstCandVecType;
107
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000108 const TargetTransformInfo *TTI;
109 DominatorTree *DT;
Juergen Ributzka5429c062014-03-21 06:04:36 +0000110 BasicBlock *Entry;
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000111
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000112 /// Keeps track of constant candidates found in the function.
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000113 ConstCandVecType ConstCandVec;
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000114
Juergen Ributzka5429c062014-03-21 06:04:36 +0000115 /// Keep track of cast instructions we already cloned.
116 SmallDenseMap<Instruction *, Instruction *> ClonedCastMap;
117
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000118 /// These are the final constants we decided to hoist.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000119 SmallVector<ConstantInfo, 8> ConstantVec;
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000120public:
121 static char ID; // Pass identification, replacement for typeid
Craig Topperf40110f2014-04-25 05:29:35 +0000122 ConstantHoisting() : FunctionPass(ID), TTI(nullptr), DT(nullptr),
123 Entry(nullptr) {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000124 initializeConstantHoistingPass(*PassRegistry::getPassRegistry());
125 }
126
Juergen Ributzka5429c062014-03-21 06:04:36 +0000127 bool runOnFunction(Function &Fn) override;
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000128
Craig Topper3e4c6972014-03-05 09:10:37 +0000129 const char *getPassName() const override { return "Constant Hoisting"; }
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000130
Craig Topper3e4c6972014-03-05 09:10:37 +0000131 void getAnalysisUsage(AnalysisUsage &AU) const override {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000132 AU.setPreservesCFG();
133 AU.addRequired<DominatorTreeWrapperPass>();
134 AU.addRequired<TargetTransformInfo>();
135 }
136
137private:
Juergen Ributzka5429c062014-03-21 06:04:36 +0000138 /// \brief Initialize the pass.
139 void setup(Function &Fn) {
140 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
141 TTI = &getAnalysis<TargetTransformInfo>();
142 Entry = &Fn.getEntryBlock();
143 }
144
145 /// \brief Cleanup.
146 void cleanup() {
147 ConstantVec.clear();
148 ClonedCastMap.clear();
149 ConstCandVec.clear();
Juergen Ributzka5429c062014-03-21 06:04:36 +0000150
151 TTI = nullptr;
152 DT = nullptr;
153 Entry = nullptr;
154 }
155
156 Instruction *findMatInsertPt(Instruction *Inst, unsigned Idx = ~0U) const;
157 Instruction *findConstantInsertionPoint(const ConstantInfo &ConstInfo) const;
Juergen Ributzka7be410f2014-03-25 21:21:10 +0000158 void collectConstantCandidates(ConstCandMapType &ConstCandMap,
159 Instruction *Inst, unsigned Idx,
Juergen Ributzka5429c062014-03-21 06:04:36 +0000160 ConstantInt *ConstInt);
Juergen Ributzka7be410f2014-03-25 21:21:10 +0000161 void collectConstantCandidates(ConstCandMapType &ConstCandMap,
162 Instruction *Inst);
Juergen Ributzka5429c062014-03-21 06:04:36 +0000163 void collectConstantCandidates(Function &Fn);
Juergen Ributzkab8489b32014-03-21 06:04:33 +0000164 void findAndMakeBaseConstant(ConstCandVecType::iterator S,
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000165 ConstCandVecType::iterator E);
Juergen Ributzkab8489b32014-03-21 06:04:33 +0000166 void findBaseConstants();
Juergen Ributzka5429c062014-03-21 06:04:36 +0000167 void emitBaseConstants(Instruction *Base, Constant *Offset,
168 const ConstantUser &ConstUser);
169 bool emitBaseConstants();
170 void deleteDeadCastInst() const;
171 bool optimizeConstants(Function &Fn);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000172};
173}
174
175char ConstantHoisting::ID = 0;
176INITIALIZE_PASS_BEGIN(ConstantHoisting, "consthoist", "Constant Hoisting",
177 false, false)
178INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
179INITIALIZE_AG_DEPENDENCY(TargetTransformInfo)
180INITIALIZE_PASS_END(ConstantHoisting, "consthoist", "Constant Hoisting",
181 false, false)
182
183FunctionPass *llvm::createConstantHoistingPass() {
184 return new ConstantHoisting();
185}
186
187/// \brief Perform the constant hoisting optimization for the given function.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000188bool ConstantHoisting::runOnFunction(Function &Fn) {
189 DEBUG(dbgs() << "********** Begin Constant Hoisting **********\n");
190 DEBUG(dbgs() << "********** Function: " << Fn.getName() << '\n');
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000191
Juergen Ributzka5429c062014-03-21 06:04:36 +0000192 setup(Fn);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000193
Juergen Ributzka5429c062014-03-21 06:04:36 +0000194 bool MadeChange = optimizeConstants(Fn);
195
196 if (MadeChange) {
197 DEBUG(dbgs() << "********** Function after Constant Hoisting: "
198 << Fn.getName() << '\n');
199 DEBUG(dbgs() << Fn);
200 }
201 DEBUG(dbgs() << "********** End Constant Hoisting **********\n");
202
203 cleanup();
204
205 return MadeChange;
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000206}
207
Juergen Ributzka5429c062014-03-21 06:04:36 +0000208
209/// \brief Find the constant materialization insertion point.
210Instruction *ConstantHoisting::findMatInsertPt(Instruction *Inst,
211 unsigned Idx) const {
Juergen Ributzka575bcb72014-04-22 18:06:58 +0000212 // If the operand is a cast instruction, then we have to materialize the
213 // constant before the cast instruction.
214 if (Idx != ~0U) {
215 Value *Opnd = Inst->getOperand(Idx);
216 if (auto CastInst = dyn_cast<Instruction>(Opnd))
217 if (CastInst->isCast())
218 return CastInst;
219 }
220
221 // The simple and common case. This also includes constant expressions.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000222 if (!isa<PHINode>(Inst) && !isa<LandingPadInst>(Inst))
223 return Inst;
224
225 // We can't insert directly before a phi node or landing pad. Insert before
226 // the terminator of the incoming or dominating block.
227 assert(Entry != Inst->getParent() && "PHI or landing pad in entry block!");
228 if (Idx != ~0U && isa<PHINode>(Inst))
229 return cast<PHINode>(Inst)->getIncomingBlock(Idx)->getTerminator();
230
231 BasicBlock *IDom = DT->getNode(Inst->getParent())->getIDom()->getBlock();
232 return IDom->getTerminator();
233}
234
235/// \brief Find an insertion point that dominates all uses.
236Instruction *ConstantHoisting::
237findConstantInsertionPoint(const ConstantInfo &ConstInfo) const {
238 assert(!ConstInfo.RebasedConstants.empty() && "Invalid constant info entry.");
Juergen Ributzkac81000b2014-04-03 01:38:47 +0000239 // Collect all basic blocks.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000240 SmallPtrSet<BasicBlock *, 8> BBs;
241 for (auto const &RCI : ConstInfo.RebasedConstants)
Juergen Ributzkac81000b2014-04-03 01:38:47 +0000242 for (auto const &U : RCI.Uses)
Juergen Ributzka575bcb72014-04-22 18:06:58 +0000243 BBs.insert(findMatInsertPt(U.Inst, U.OpndIdx)->getParent());
Juergen Ributzka5429c062014-03-21 06:04:36 +0000244
245 if (BBs.count(Entry))
246 return &Entry->front();
247
248 while (BBs.size() >= 2) {
249 BasicBlock *BB, *BB1, *BB2;
250 BB1 = *BBs.begin();
251 BB2 = *std::next(BBs.begin());
252 BB = DT->findNearestCommonDominator(BB1, BB2);
253 if (BB == Entry)
254 return &Entry->front();
255 BBs.erase(BB1);
256 BBs.erase(BB2);
257 BBs.insert(BB);
258 }
259 assert((BBs.size() == 1) && "Expected only one element.");
260 Instruction &FirstInst = (*BBs.begin())->front();
261 return findMatInsertPt(&FirstInst);
262}
263
264
265/// \brief Record constant integer ConstInt for instruction Inst at operand
266/// index Idx.
267///
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000268/// The operand at index Idx is not necessarily the constant integer itself. It
Juergen Ributzka5429c062014-03-21 06:04:36 +0000269/// could also be a cast instruction or a constant expression that uses the
270// constant integer.
Juergen Ributzka7be410f2014-03-25 21:21:10 +0000271void ConstantHoisting::collectConstantCandidates(ConstCandMapType &ConstCandMap,
272 Instruction *Inst,
Juergen Ributzka5429c062014-03-21 06:04:36 +0000273 unsigned Idx,
274 ConstantInt *ConstInt) {
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000275 unsigned Cost;
Juergen Ributzka5429c062014-03-21 06:04:36 +0000276 // Ask the target about the cost of materializing the constant for the given
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000277 // instruction and operand index.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000278 if (auto IntrInst = dyn_cast<IntrinsicInst>(Inst))
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000279 Cost = TTI->getIntImmCost(IntrInst->getIntrinsicID(), Idx,
Juergen Ributzka5429c062014-03-21 06:04:36 +0000280 ConstInt->getValue(), ConstInt->getType());
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000281 else
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000282 Cost = TTI->getIntImmCost(Inst->getOpcode(), Idx, ConstInt->getValue(),
Juergen Ributzka5429c062014-03-21 06:04:36 +0000283 ConstInt->getType());
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000284
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000285 // Ignore cheap integer constants.
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000286 if (Cost > TargetTransformInfo::TCC_Basic) {
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000287 ConstCandMapType::iterator Itr;
288 bool Inserted;
Juergen Ributzka5429c062014-03-21 06:04:36 +0000289 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(ConstInt, 0));
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000290 if (Inserted) {
Juergen Ributzka5429c062014-03-21 06:04:36 +0000291 ConstCandVec.push_back(ConstantCandidate(ConstInt));
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000292 Itr->second = ConstCandVec.size() - 1;
293 }
Juergen Ributzka5429c062014-03-21 06:04:36 +0000294 ConstCandVec[Itr->second].addUser(Inst, Idx, Cost);
295 DEBUG(if (isa<ConstantInt>(Inst->getOperand(Idx)))
296 dbgs() << "Collect constant " << *ConstInt << " from " << *Inst
297 << " with cost " << Cost << '\n';
298 else
299 dbgs() << "Collect constant " << *ConstInt << " indirectly from "
300 << *Inst << " via " << *Inst->getOperand(Idx) << " with cost "
301 << Cost << '\n';
302 );
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000303 }
304}
305
Juergen Ributzka5429c062014-03-21 06:04:36 +0000306/// \brief Scan the instruction for expensive integer constants and record them
307/// in the constant candidate vector.
Juergen Ributzka7be410f2014-03-25 21:21:10 +0000308void ConstantHoisting::collectConstantCandidates(ConstCandMapType &ConstCandMap,
309 Instruction *Inst) {
Juergen Ributzka5429c062014-03-21 06:04:36 +0000310 // Skip all cast instructions. They are visited indirectly later on.
311 if (Inst->isCast())
312 return;
313
314 // Can't handle inline asm. Skip it.
315 if (auto Call = dyn_cast<CallInst>(Inst))
316 if (isa<InlineAsm>(Call->getCalledValue()))
317 return;
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000318
319 // Scan all operands.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000320 for (unsigned Idx = 0, E = Inst->getNumOperands(); Idx != E; ++Idx) {
321 Value *Opnd = Inst->getOperand(Idx);
322
Juergen Ributzka7be410f2014-03-25 21:21:10 +0000323 // Visit constant integers.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000324 if (auto ConstInt = dyn_cast<ConstantInt>(Opnd)) {
Juergen Ributzka7be410f2014-03-25 21:21:10 +0000325 collectConstantCandidates(ConstCandMap, Inst, Idx, ConstInt);
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000326 continue;
327 }
Juergen Ributzka5429c062014-03-21 06:04:36 +0000328
329 // Visit cast instructions that have constant integers.
330 if (auto CastInst = dyn_cast<Instruction>(Opnd)) {
331 // Only visit cast instructions, which have been skipped. All other
332 // instructions should have already been visited.
333 if (!CastInst->isCast())
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000334 continue;
335
Juergen Ributzka5429c062014-03-21 06:04:36 +0000336 if (auto *ConstInt = dyn_cast<ConstantInt>(CastInst->getOperand(0))) {
337 // Pretend the constant is directly used by the instruction and ignore
338 // the cast instruction.
Juergen Ributzka7be410f2014-03-25 21:21:10 +0000339 collectConstantCandidates(ConstCandMap, Inst, Idx, ConstInt);
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000340 continue;
341 }
342 }
Juergen Ributzka5429c062014-03-21 06:04:36 +0000343
344 // Visit constant expressions that have constant integers.
345 if (auto ConstExpr = dyn_cast<ConstantExpr>(Opnd)) {
346 // Only visit constant cast expressions.
347 if (!ConstExpr->isCast())
348 continue;
349
350 if (auto ConstInt = dyn_cast<ConstantInt>(ConstExpr->getOperand(0))) {
351 // Pretend the constant is directly used by the instruction and ignore
352 // the constant expression.
Juergen Ributzka7be410f2014-03-25 21:21:10 +0000353 collectConstantCandidates(ConstCandMap, Inst, Idx, ConstInt);
Juergen Ributzka5429c062014-03-21 06:04:36 +0000354 continue;
355 }
356 }
357 } // end of for all operands
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000358}
359
360/// \brief Collect all integer constants in the function that cannot be folded
361/// into an instruction itself.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000362void ConstantHoisting::collectConstantCandidates(Function &Fn) {
Juergen Ributzka7be410f2014-03-25 21:21:10 +0000363 ConstCandMapType ConstCandMap;
Juergen Ributzka5429c062014-03-21 06:04:36 +0000364 for (Function::iterator BB : Fn)
365 for (BasicBlock::iterator Inst : *BB)
Juergen Ributzka7be410f2014-03-25 21:21:10 +0000366 collectConstantCandidates(ConstCandMap, Inst);
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000367}
368
369/// \brief Find the base constant within the given range and rebase all other
370/// constants with respect to the base constant.
Juergen Ributzkab8489b32014-03-21 06:04:33 +0000371void ConstantHoisting::findAndMakeBaseConstant(ConstCandVecType::iterator S,
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000372 ConstCandVecType::iterator E) {
Juergen Ributzka5429c062014-03-21 06:04:36 +0000373 auto MaxCostItr = S;
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000374 unsigned NumUses = 0;
375 // Use the constant that has the maximum cost as base constant.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000376 for (auto ConstCand = S; ConstCand != E; ++ConstCand) {
377 NumUses += ConstCand->Uses.size();
378 if (ConstCand->CumulativeCost > MaxCostItr->CumulativeCost)
379 MaxCostItr = ConstCand;
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000380 }
381
382 // Don't hoist constants that have only one use.
383 if (NumUses <= 1)
384 return;
385
Juergen Ributzka5429c062014-03-21 06:04:36 +0000386 ConstantInfo ConstInfo;
387 ConstInfo.BaseConstant = MaxCostItr->ConstInt;
388 Type *Ty = ConstInfo.BaseConstant->getType();
389
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000390 // Rebase the constants with respect to the base constant.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000391 for (auto ConstCand = S; ConstCand != E; ++ConstCand) {
392 APInt Diff = ConstCand->ConstInt->getValue() -
393 ConstInfo.BaseConstant->getValue();
394 Constant *Offset = Diff == 0 ? nullptr : ConstantInt::get(Ty, Diff);
395 ConstInfo.RebasedConstants.push_back(
396 RebasedConstantInfo(std::move(ConstCand->Uses), Offset));
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000397 }
Juergen Ributzka5429c062014-03-21 06:04:36 +0000398 ConstantVec.push_back(ConstInfo);
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000399}
400
Juergen Ributzka5429c062014-03-21 06:04:36 +0000401/// \brief Finds and combines constant candidates that can be easily
402/// rematerialized with an add from a common base constant.
Juergen Ributzkab8489b32014-03-21 06:04:33 +0000403void ConstantHoisting::findBaseConstants() {
Juergen Ributzka5429c062014-03-21 06:04:36 +0000404 // Sort the constants by value and type. This invalidates the mapping!
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000405 std::sort(ConstCandVec.begin(), ConstCandVec.end(),
406 [](const ConstantCandidate &LHS, const ConstantCandidate &RHS) {
407 if (LHS.ConstInt->getType() != RHS.ConstInt->getType())
408 return LHS.ConstInt->getType()->getBitWidth() <
409 RHS.ConstInt->getType()->getBitWidth();
410 return LHS.ConstInt->getValue().ult(RHS.ConstInt->getValue());
Juergen Ributzka46357932014-03-20 20:17:13 +0000411 });
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000412
Juergen Ributzka5429c062014-03-21 06:04:36 +0000413 // Simple linear scan through the sorted constant candidate vector for viable
414 // merge candidates.
415 auto MinValItr = ConstCandVec.begin();
416 for (auto CC = std::next(ConstCandVec.begin()), E = ConstCandVec.end();
417 CC != E; ++CC) {
418 if (MinValItr->ConstInt->getType() == CC->ConstInt->getType()) {
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000419 // Check if the constant is in range of an add with immediate.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000420 APInt Diff = CC->ConstInt->getValue() - MinValItr->ConstInt->getValue();
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000421 if ((Diff.getBitWidth() <= 64) &&
422 TTI->isLegalAddImmediate(Diff.getSExtValue()))
423 continue;
424 }
425 // We either have now a different constant type or the constant is not in
426 // range of an add with immediate anymore.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000427 findAndMakeBaseConstant(MinValItr, CC);
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000428 // Start a new base constant search.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000429 MinValItr = CC;
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000430 }
431 // Finalize the last base constant search.
Juergen Ributzkab8489b32014-03-21 06:04:33 +0000432 findAndMakeBaseConstant(MinValItr, ConstCandVec.end());
Juergen Ributzka46357932014-03-20 20:17:13 +0000433}
434
Juergen Ributzkae802d502014-03-22 01:49:27 +0000435/// \brief Updates the operand at Idx in instruction Inst with the result of
436/// instruction Mat. If the instruction is a PHI node then special
437/// handling for duplicate values form the same incomming basic block is
438/// required.
439/// \return The update will always succeed, but the return value indicated if
440/// Mat was used for the update or not.
441static bool updateOperand(Instruction *Inst, unsigned Idx, Instruction *Mat) {
442 if (auto PHI = dyn_cast<PHINode>(Inst)) {
443 // Check if any previous operand of the PHI node has the same incoming basic
444 // block. This is a very odd case that happens when the incoming basic block
445 // has a switch statement. In this case use the same value as the previous
446 // operand(s), otherwise we will fail verification due to different values.
447 // The values are actually the same, but the variable names are different
448 // and the verifier doesn't like that.
449 BasicBlock *IncomingBB = PHI->getIncomingBlock(Idx);
450 for (unsigned i = 0; i < Idx; ++i) {
451 if (PHI->getIncomingBlock(i) == IncomingBB) {
452 Value *IncomingVal = PHI->getIncomingValue(i);
453 Inst->setOperand(Idx, IncomingVal);
454 return false;
455 }
456 }
457 }
458
459 Inst->setOperand(Idx, Mat);
460 return true;
461}
462
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000463/// \brief Emit materialization code for all rebased constants and update their
464/// users.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000465void ConstantHoisting::emitBaseConstants(Instruction *Base, Constant *Offset,
466 const ConstantUser &ConstUser) {
467 Instruction *Mat = Base;
468 if (Offset) {
469 Instruction *InsertionPt = findMatInsertPt(ConstUser.Inst,
470 ConstUser.OpndIdx);
471 Mat = BinaryOperator::Create(Instruction::Add, Base, Offset,
472 "const_mat", InsertionPt);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000473
Juergen Ributzka5429c062014-03-21 06:04:36 +0000474 DEBUG(dbgs() << "Materialize constant (" << *Base->getOperand(0)
475 << " + " << *Offset << ") in BB "
476 << Mat->getParent()->getName() << '\n' << *Mat << '\n');
477 Mat->setDebugLoc(ConstUser.Inst->getDebugLoc());
478 }
479 Value *Opnd = ConstUser.Inst->getOperand(ConstUser.OpndIdx);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000480
Juergen Ributzka5429c062014-03-21 06:04:36 +0000481 // Visit constant integer.
482 if (isa<ConstantInt>(Opnd)) {
483 DEBUG(dbgs() << "Update: " << *ConstUser.Inst << '\n');
Juergen Ributzkae802d502014-03-22 01:49:27 +0000484 if (!updateOperand(ConstUser.Inst, ConstUser.OpndIdx, Mat) && Offset)
485 Mat->eraseFromParent();
Juergen Ributzka5429c062014-03-21 06:04:36 +0000486 DEBUG(dbgs() << "To : " << *ConstUser.Inst << '\n');
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000487 return;
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000488 }
Juergen Ributzka6dab5202014-03-20 19:55:52 +0000489
Juergen Ributzka5429c062014-03-21 06:04:36 +0000490 // Visit cast instruction.
491 if (auto CastInst = dyn_cast<Instruction>(Opnd)) {
492 assert(CastInst->isCast() && "Expected an cast instruction!");
493 // Check if we already have visited this cast instruction before to avoid
494 // unnecessary cloning.
495 Instruction *&ClonedCastInst = ClonedCastMap[CastInst];
496 if (!ClonedCastInst) {
497 ClonedCastInst = CastInst->clone();
498 ClonedCastInst->setOperand(0, Mat);
499 ClonedCastInst->insertAfter(CastInst);
500 // Use the same debug location as the original cast instruction.
501 ClonedCastInst->setDebugLoc(CastInst->getDebugLoc());
Juergen Ributzkaa1444b32014-04-22 18:06:51 +0000502 DEBUG(dbgs() << "Clone instruction: " << *CastInst << '\n'
503 << "To : " << *ClonedCastInst << '\n');
Juergen Ributzka46357932014-03-20 20:17:13 +0000504 }
Juergen Ributzka5429c062014-03-21 06:04:36 +0000505
506 DEBUG(dbgs() << "Update: " << *ConstUser.Inst << '\n');
Juergen Ributzkae802d502014-03-22 01:49:27 +0000507 updateOperand(ConstUser.Inst, ConstUser.OpndIdx, ClonedCastInst);
Juergen Ributzka5429c062014-03-21 06:04:36 +0000508 DEBUG(dbgs() << "To : " << *ConstUser.Inst << '\n');
509 return;
Juergen Ributzka46357932014-03-20 20:17:13 +0000510 }
Juergen Ributzka5429c062014-03-21 06:04:36 +0000511
512 // Visit constant expression.
513 if (auto ConstExpr = dyn_cast<ConstantExpr>(Opnd)) {
514 Instruction *ConstExprInst = ConstExpr->getAsInstruction();
515 ConstExprInst->setOperand(0, Mat);
516 ConstExprInst->insertBefore(findMatInsertPt(ConstUser.Inst,
517 ConstUser.OpndIdx));
518
519 // Use the same debug location as the instruction we are about to update.
520 ConstExprInst->setDebugLoc(ConstUser.Inst->getDebugLoc());
521
522 DEBUG(dbgs() << "Create instruction: " << *ConstExprInst << '\n'
523 << "From : " << *ConstExpr << '\n');
524 DEBUG(dbgs() << "Update: " << *ConstUser.Inst << '\n');
Juergen Ributzkae802d502014-03-22 01:49:27 +0000525 if (!updateOperand(ConstUser.Inst, ConstUser.OpndIdx, ConstExprInst)) {
526 ConstExprInst->eraseFromParent();
527 if (Offset)
528 Mat->eraseFromParent();
529 }
Juergen Ributzka5429c062014-03-21 06:04:36 +0000530 DEBUG(dbgs() << "To : " << *ConstUser.Inst << '\n');
531 return;
Juergen Ributzka4c8a0252014-02-08 00:20:45 +0000532 }
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000533}
534
535/// \brief Hoist and hide the base constant behind a bitcast and emit
536/// materialization code for derived constants.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000537bool ConstantHoisting::emitBaseConstants() {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000538 bool MadeChange = false;
Juergen Ributzka5429c062014-03-21 06:04:36 +0000539 for (auto const &ConstInfo : ConstantVec) {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000540 // Hoist and hide the base constant behind a bitcast.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000541 Instruction *IP = findConstantInsertionPoint(ConstInfo);
542 IntegerType *Ty = ConstInfo.BaseConstant->getType();
543 Instruction *Base =
544 new BitCastInst(ConstInfo.BaseConstant, Ty, "const", IP);
545 DEBUG(dbgs() << "Hoist constant (" << *ConstInfo.BaseConstant << ") to BB "
546 << IP->getParent()->getName() << '\n' << *Base << '\n');
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000547 NumConstantsHoisted++;
548
549 // Emit materialization code for all rebased constants.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000550 for (auto const &RCI : ConstInfo.RebasedConstants) {
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000551 NumConstantsRebased++;
Juergen Ributzka5429c062014-03-21 06:04:36 +0000552 for (auto const &U : RCI.Uses)
553 emitBaseConstants(Base, RCI.Offset, U);
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000554 }
555
556 // Use the same debug location as the last user of the constant.
557 assert(!Base->use_empty() && "The use list is empty!?");
Chandler Carruthcdf47882014-03-09 03:16:01 +0000558 assert(isa<Instruction>(Base->user_back()) &&
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000559 "All uses should be instructions.");
Chandler Carruthcdf47882014-03-09 03:16:01 +0000560 Base->setDebugLoc(cast<Instruction>(Base->user_back())->getDebugLoc());
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000561
562 // Correct for base constant, which we counted above too.
563 NumConstantsRebased--;
564 MadeChange = true;
565 }
566 return MadeChange;
567}
568
Juergen Ributzka5429c062014-03-21 06:04:36 +0000569/// \brief Check all cast instructions we made a copy of and remove them if they
570/// have no more users.
571void ConstantHoisting::deleteDeadCastInst() const {
572 for (auto const &I : ClonedCastMap)
573 if (I.first->use_empty())
Juergen Ributzkae4747522014-03-22 01:49:30 +0000574 I.first->eraseFromParent();
Juergen Ributzka5429c062014-03-21 06:04:36 +0000575}
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000576
Juergen Ributzka5429c062014-03-21 06:04:36 +0000577/// \brief Optimize expensive integer constants in the given function.
578bool ConstantHoisting::optimizeConstants(Function &Fn) {
Juergen Ributzka46357932014-03-20 20:17:13 +0000579 // Collect all constant candidates.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000580 collectConstantCandidates(Fn);
Juergen Ributzka46357932014-03-20 20:17:13 +0000581
Juergen Ributzkaa29a5b82014-03-21 06:04:30 +0000582 // There are no constant candidates to worry about.
583 if (ConstCandVec.empty())
584 return false;
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000585
586 // Combine constants that can be easily materialized with an add from a common
587 // base constant.
Juergen Ributzkab8489b32014-03-21 06:04:33 +0000588 findBaseConstants();
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000589
Juergen Ributzka5429c062014-03-21 06:04:36 +0000590 // There are no constants to emit.
591 if (ConstantVec.empty())
592 return false;
593
Juergen Ributzkaf0dff492014-03-21 06:04:45 +0000594 // Finally hoist the base constant and emit materialization code for dependent
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000595 // constants.
Juergen Ributzka5429c062014-03-21 06:04:36 +0000596 bool MadeChange = emitBaseConstants();
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000597
Juergen Ributzka5429c062014-03-21 06:04:36 +0000598 // Cleanup dead instructions.
599 deleteDeadCastInst();
Juergen Ributzkaf26beda2014-01-25 02:02:55 +0000600
601 return MadeChange;
602}