blob: 967f4a42a8fb79c410ce7fbba33d352b91e65d34 [file] [log] [blame]
Eugene Zelenko5adb96c2017-10-26 00:55:39 +00001//===- SeparateConstOffsetFromGEP.cpp -------------------------------------===//
Eli Benderskya108a652014-05-01 18:38:36 +00002//
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// Loop unrolling may create many similar GEPs for array accesses.
11// e.g., a 2-level loop
12//
13// float a[32][32]; // global variable
14//
15// for (int i = 0; i < 2; ++i) {
16// for (int j = 0; j < 2; ++j) {
17// ...
18// ... = a[x + i][y + j];
19// ...
20// }
21// }
22//
23// will probably be unrolled to:
24//
25// gep %a, 0, %x, %y; load
26// gep %a, 0, %x, %y + 1; load
27// gep %a, 0, %x + 1, %y; load
28// gep %a, 0, %x + 1, %y + 1; load
29//
30// LLVM's GVN does not use partial redundancy elimination yet, and is thus
31// unable to reuse (gep %a, 0, %x, %y). As a result, this misoptimization incurs
32// significant slowdown in targets with limited addressing modes. For instance,
33// because the PTX target does not support the reg+reg addressing mode, the
34// NVPTX backend emits PTX code that literally computes the pointer address of
35// each GEP, wasting tons of registers. It emits the following PTX for the
36// first load and similar PTX for other loads.
37//
38// mov.u32 %r1, %x;
39// mov.u32 %r2, %y;
40// mul.wide.u32 %rl2, %r1, 128;
41// mov.u64 %rl3, a;
42// add.s64 %rl4, %rl3, %rl2;
43// mul.wide.u32 %rl5, %r2, 4;
44// add.s64 %rl6, %rl4, %rl5;
45// ld.global.f32 %f1, [%rl6];
46//
47// To reduce the register pressure, the optimization implemented in this file
48// merges the common part of a group of GEPs, so we can compute each pointer
49// address by adding a simple offset to the common part, saving many registers.
50//
51// It works by splitting each GEP into a variadic base and a constant offset.
52// The variadic base can be computed once and reused by multiple GEPs, and the
53// constant offsets can be nicely folded into the reg+immediate addressing mode
54// (supported by most targets) without using any extra register.
55//
56// For instance, we transform the four GEPs and four loads in the above example
57// into:
58//
59// base = gep a, 0, x, y
60// load base
61// laod base + 1 * sizeof(float)
62// load base + 32 * sizeof(float)
63// load base + 33 * sizeof(float)
64//
65// Given the transformed IR, a backend that supports the reg+immediate
66// addressing mode can easily fold the pointer arithmetics into the loads. For
67// example, the NVPTX backend can easily fold the pointer arithmetics into the
68// ld.global.f32 instructions, and the resultant PTX uses much fewer registers.
69//
70// mov.u32 %r1, %tid.x;
71// mov.u32 %r2, %tid.y;
72// mul.wide.u32 %rl2, %r1, 128;
73// mov.u64 %rl3, a;
74// add.s64 %rl4, %rl3, %rl2;
75// mul.wide.u32 %rl5, %r2, 4;
76// add.s64 %rl6, %rl4, %rl5;
77// ld.global.f32 %f1, [%rl6]; // so far the same as unoptimized PTX
78// ld.global.f32 %f2, [%rl6+4]; // much better
79// ld.global.f32 %f3, [%rl6+128]; // much better
80// ld.global.f32 %f4, [%rl6+132]; // much better
81//
Hao Liu1d2a0612014-11-19 06:24:44 +000082// Another improvement enabled by the LowerGEP flag is to lower a GEP with
83// multiple indices to either multiple GEPs with a single index or arithmetic
84// operations (depending on whether the target uses alias analysis in codegen).
85// Such transformation can have following benefits:
86// (1) It can always extract constants in the indices of structure type.
87// (2) After such Lowering, there are more optimization opportunities such as
88// CSE, LICM and CGP.
89//
90// E.g. The following GEPs have multiple indices:
91// BB1:
92// %p = getelementptr [10 x %struct]* %ptr, i64 %i, i64 %j1, i32 3
93// load %p
94// ...
95// BB2:
96// %p2 = getelementptr [10 x %struct]* %ptr, i64 %i, i64 %j1, i32 2
97// load %p2
98// ...
99//
Haicheng Wu5b106ef2017-12-19 18:49:21 +0000100// We can not do CSE to the common part related to index "i64 %i". Lowering
Hao Liu1d2a0612014-11-19 06:24:44 +0000101// GEPs can achieve such goals.
102// If the target does not use alias analysis in codegen, this pass will
103// lower a GEP with multiple indices into arithmetic operations:
104// BB1:
105// %1 = ptrtoint [10 x %struct]* %ptr to i64 ; CSE opportunity
106// %2 = mul i64 %i, length_of_10xstruct ; CSE opportunity
107// %3 = add i64 %1, %2 ; CSE opportunity
108// %4 = mul i64 %j1, length_of_struct
109// %5 = add i64 %3, %4
110// %6 = add i64 %3, struct_field_3 ; Constant offset
111// %p = inttoptr i64 %6 to i32*
112// load %p
113// ...
114// BB2:
115// %7 = ptrtoint [10 x %struct]* %ptr to i64 ; CSE opportunity
116// %8 = mul i64 %i, length_of_10xstruct ; CSE opportunity
117// %9 = add i64 %7, %8 ; CSE opportunity
118// %10 = mul i64 %j2, length_of_struct
119// %11 = add i64 %9, %10
120// %12 = add i64 %11, struct_field_2 ; Constant offset
121// %p = inttoptr i64 %12 to i32*
122// load %p2
123// ...
124//
125// If the target uses alias analysis in codegen, this pass will lower a GEP
126// with multiple indices into multiple GEPs with a single index:
127// BB1:
128// %1 = bitcast [10 x %struct]* %ptr to i8* ; CSE opportunity
129// %2 = mul i64 %i, length_of_10xstruct ; CSE opportunity
130// %3 = getelementptr i8* %1, i64 %2 ; CSE opportunity
131// %4 = mul i64 %j1, length_of_struct
132// %5 = getelementptr i8* %3, i64 %4
133// %6 = getelementptr i8* %5, struct_field_3 ; Constant offset
134// %p = bitcast i8* %6 to i32*
135// load %p
136// ...
137// BB2:
138// %7 = bitcast [10 x %struct]* %ptr to i8* ; CSE opportunity
139// %8 = mul i64 %i, length_of_10xstruct ; CSE opportunity
140// %9 = getelementptr i8* %7, i64 %8 ; CSE opportunity
141// %10 = mul i64 %j2, length_of_struct
142// %11 = getelementptr i8* %9, i64 %10
143// %12 = getelementptr i8* %11, struct_field_2 ; Constant offset
144// %p2 = bitcast i8* %12 to i32*
145// load %p2
146// ...
147//
148// Lowering GEPs can also benefit other passes such as LICM and CGP.
149// LICM (Loop Invariant Code Motion) can not hoist/sink a GEP of multiple
150// indices if one of the index is variant. If we lower such GEP into invariant
151// parts and variant parts, LICM can hoist/sink those invariant parts.
152// CGP (CodeGen Prepare) tries to sink address calculations that match the
153// target's addressing modes. A GEP with multiple indices may not match and will
154// not be sunk. If we lower such GEP into smaller parts, CGP may sink some of
155// them. So we end up with a better addressing mode.
156//
Eli Benderskya108a652014-05-01 18:38:36 +0000157//===----------------------------------------------------------------------===//
158
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000159#include "llvm/ADT/APInt.h"
160#include "llvm/ADT/DenseMap.h"
161#include "llvm/ADT/DepthFirstIterator.h"
162#include "llvm/ADT/SmallVector.h"
Lawrence Hucac0b892015-09-23 19:25:30 +0000163#include "llvm/Analysis/LoopInfo.h"
164#include "llvm/Analysis/MemoryBuiltins.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +0000165#include "llvm/Analysis/ScalarEvolution.h"
Lawrence Hucac0b892015-09-23 19:25:30 +0000166#include "llvm/Analysis/TargetLibraryInfo.h"
Eli Benderskya108a652014-05-01 18:38:36 +0000167#include "llvm/Analysis/TargetTransformInfo.h"
David Blaikie31b98d22018-06-04 21:23:21 +0000168#include "llvm/Transforms/Utils/Local.h"
Eli Benderskya108a652014-05-01 18:38:36 +0000169#include "llvm/Analysis/ValueTracking.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000170#include "llvm/IR/BasicBlock.h"
171#include "llvm/IR/Constant.h"
Eli Benderskya108a652014-05-01 18:38:36 +0000172#include "llvm/IR/Constants.h"
173#include "llvm/IR/DataLayout.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000174#include "llvm/IR/DerivedTypes.h"
Jingyue Wuca321902015-05-14 23:53:19 +0000175#include "llvm/IR/Dominators.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000176#include "llvm/IR/Function.h"
177#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +0000178#include "llvm/IR/IRBuilder.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000179#include "llvm/IR/Instruction.h"
Eli Benderskya108a652014-05-01 18:38:36 +0000180#include "llvm/IR/Instructions.h"
Eli Benderskya108a652014-05-01 18:38:36 +0000181#include "llvm/IR/Module.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +0000182#include "llvm/IR/PatternMatch.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000183#include "llvm/IR/Type.h"
184#include "llvm/IR/User.h"
185#include "llvm/IR/Value.h"
186#include "llvm/Pass.h"
187#include "llvm/Support/Casting.h"
Eli Benderskya108a652014-05-01 18:38:36 +0000188#include "llvm/Support/CommandLine.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000189#include "llvm/Support/ErrorHandling.h"
Eli Benderskya108a652014-05-01 18:38:36 +0000190#include "llvm/Support/raw_ostream.h"
Hao Liu1d2a0612014-11-19 06:24:44 +0000191#include "llvm/Target/TargetMachine.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +0000192#include "llvm/Transforms/Scalar.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000193#include <cassert>
194#include <cstdint>
195#include <string>
Eli Benderskya108a652014-05-01 18:38:36 +0000196
197using namespace llvm;
Jingyue Wu1238f342015-08-14 02:02:05 +0000198using namespace llvm::PatternMatch;
Eli Benderskya108a652014-05-01 18:38:36 +0000199
200static cl::opt<bool> DisableSeparateConstOffsetFromGEP(
201 "disable-separate-const-offset-from-gep", cl::init(false),
202 cl::desc("Do not separate the constant offset from a GEP instruction"),
203 cl::Hidden);
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000204
Jingyue Wuf763c3f2015-04-21 19:53:18 +0000205// Setting this flag may emit false positives when the input module already
206// contains dead instructions. Therefore, we set it only in unit tests that are
207// free of dead code.
208static cl::opt<bool>
209 VerifyNoDeadCode("reassociate-geps-verify-no-dead-code", cl::init(false),
210 cl::desc("Verify this pass produces no dead code"),
211 cl::Hidden);
Eli Benderskya108a652014-05-01 18:38:36 +0000212
213namespace {
214
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000215/// A helper class for separating a constant offset from a GEP index.
Eli Benderskya108a652014-05-01 18:38:36 +0000216///
217/// In real programs, a GEP index may be more complicated than a simple addition
218/// of something and a constant integer which can be trivially splitted. For
219/// example, to split ((a << 3) | 5) + b, we need to search deeper for the
Alp Tokerbeaca192014-05-15 01:52:21 +0000220/// constant offset, so that we can separate the index to (a << 3) + b and 5.
Eli Benderskya108a652014-05-01 18:38:36 +0000221///
222/// Therefore, this class looks into the expression that computes a given GEP
223/// index, and tries to find a constant integer that can be hoisted to the
224/// outermost level of the expression as an addition. Not every constant in an
225/// expression can jump out. e.g., we cannot transform (b * (a + 5)) to (b * a +
226/// 5); nor can we transform (3 * (a + 5)) to (3 * a + 5), however in this case,
227/// -instcombine probably already optimized (3 * (a + 5)) to (3 * a + 15).
228class ConstantOffsetExtractor {
Jingyue Wuca321902015-05-14 23:53:19 +0000229public:
Hao Liu1d2a0612014-11-19 06:24:44 +0000230 /// Extracts a constant offset from the given GEP index. It returns the
Eli Benderskya108a652014-05-01 18:38:36 +0000231 /// new index representing the remainder (equal to the original index minus
Hao Liu1d2a0612014-11-19 06:24:44 +0000232 /// the constant offset), or nullptr if we cannot extract a constant offset.
Jingyue Wuf763c3f2015-04-21 19:53:18 +0000233 /// \p Idx The given GEP index
234 /// \p GEP The given GEP
235 /// \p UserChainTail Outputs the tail of UserChain so that we can
236 /// garbage-collect unused instructions in UserChain.
Jingyue Wuca321902015-05-14 23:53:19 +0000237 static Value *Extract(Value *Idx, GetElementPtrInst *GEP,
238 User *&UserChainTail, const DominatorTree *DT);
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000239
Hao Liu1d2a0612014-11-19 06:24:44 +0000240 /// Looks for a constant offset from the given GEP index without extracting
241 /// it. It returns the numeric value of the extracted constant offset (0 if
242 /// failed). The meaning of the arguments are the same as Extract.
Jingyue Wuca321902015-05-14 23:53:19 +0000243 static int64_t Find(Value *Idx, GetElementPtrInst *GEP,
244 const DominatorTree *DT);
Eli Benderskya108a652014-05-01 18:38:36 +0000245
Jingyue Wuca321902015-05-14 23:53:19 +0000246private:
247 ConstantOffsetExtractor(Instruction *InsertionPt, const DominatorTree *DT)
248 : IP(InsertionPt), DL(InsertionPt->getModule()->getDataLayout()), DT(DT) {
249 }
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000250
Jingyue Wu84465472014-06-05 22:07:33 +0000251 /// Searches the expression that computes V for a non-zero constant C s.t.
252 /// V can be reassociated into the form V' + C. If the searching is
253 /// successful, returns C and update UserChain as a def-use chain from C to V;
254 /// otherwise, UserChain is empty.
Eli Benderskya108a652014-05-01 18:38:36 +0000255 ///
Jingyue Wu84465472014-06-05 22:07:33 +0000256 /// \p V The given expression
257 /// \p SignExtended Whether V will be sign-extended in the computation of the
258 /// GEP index
259 /// \p ZeroExtended Whether V will be zero-extended in the computation of the
260 /// GEP index
261 /// \p NonNegative Whether V is guaranteed to be non-negative. For example,
262 /// an index of an inbounds GEP is guaranteed to be
263 /// non-negative. Levaraging this, we can better split
264 /// inbounds GEPs.
265 APInt find(Value *V, bool SignExtended, bool ZeroExtended, bool NonNegative);
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000266
Jingyue Wu84465472014-06-05 22:07:33 +0000267 /// A helper function to look into both operands of a binary operator.
268 APInt findInEitherOperand(BinaryOperator *BO, bool SignExtended,
269 bool ZeroExtended);
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000270
Jingyue Wu84465472014-06-05 22:07:33 +0000271 /// After finding the constant offset C from the GEP index I, we build a new
272 /// index I' s.t. I' + C = I. This function builds and returns the new
273 /// index I' according to UserChain produced by function "find".
274 ///
275 /// The building conceptually takes two steps:
276 /// 1) iteratively distribute s/zext towards the leaves of the expression tree
277 /// that computes I
278 /// 2) reassociate the expression tree to the form I' + C.
279 ///
280 /// For example, to extract the 5 from sext(a + (b + 5)), we first distribute
281 /// sext to a, b and 5 so that we have
282 /// sext(a) + (sext(b) + 5).
283 /// Then, we reassociate it to
284 /// (sext(a) + sext(b)) + 5.
285 /// Given this form, we know I' is sext(a) + sext(b).
286 Value *rebuildWithoutConstOffset();
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000287
Jingyue Wu84465472014-06-05 22:07:33 +0000288 /// After the first step of rebuilding the GEP index without the constant
289 /// offset, distribute s/zext to the operands of all operators in UserChain.
290 /// e.g., zext(sext(a + (b + 5)) (assuming no overflow) =>
291 /// zext(sext(a)) + (zext(sext(b)) + zext(sext(5))).
292 ///
293 /// The function also updates UserChain to point to new subexpressions after
294 /// distributing s/zext. e.g., the old UserChain of the above example is
295 /// 5 -> b + 5 -> a + (b + 5) -> sext(...) -> zext(sext(...)),
296 /// and the new UserChain is
297 /// zext(sext(5)) -> zext(sext(b)) + zext(sext(5)) ->
298 /// zext(sext(a)) + (zext(sext(b)) + zext(sext(5))
299 ///
300 /// \p ChainIndex The index to UserChain. ChainIndex is initially
301 /// UserChain.size() - 1, and is decremented during
302 /// the recursion.
303 Value *distributeExtsAndCloneChain(unsigned ChainIndex);
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000304
Jingyue Wu84465472014-06-05 22:07:33 +0000305 /// Reassociates the GEP index to the form I' + C and returns I'.
306 Value *removeConstOffset(unsigned ChainIndex);
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000307
Jingyue Wu84465472014-06-05 22:07:33 +0000308 /// A helper function to apply ExtInsts, a list of s/zext, to value V.
309 /// e.g., if ExtInsts = [sext i32 to i64, zext i16 to i32], this function
310 /// returns "sext i32 (zext i16 V to i32) to i64".
311 Value *applyExts(Value *V);
Eli Benderskya108a652014-05-01 18:38:36 +0000312
Jingyue Wu84465472014-06-05 22:07:33 +0000313 /// A helper function that returns whether we can trace into the operands
314 /// of binary operator BO for a constant offset.
315 ///
316 /// \p SignExtended Whether BO is surrounded by sext
317 /// \p ZeroExtended Whether BO is surrounded by zext
318 /// \p NonNegative Whether BO is known to be non-negative, e.g., an in-bound
319 /// array index.
320 bool CanTraceInto(bool SignExtended, bool ZeroExtended, BinaryOperator *BO,
321 bool NonNegative);
Eli Benderskya108a652014-05-01 18:38:36 +0000322
323 /// The path from the constant offset to the old GEP index. e.g., if the GEP
324 /// index is "a * b + (c + 5)". After running function find, UserChain[0] will
325 /// be the constant 5, UserChain[1] will be the subexpression "c + 5", and
326 /// UserChain[2] will be the entire expression "a * b + (c + 5)".
327 ///
Jingyue Wu84465472014-06-05 22:07:33 +0000328 /// This path helps to rebuild the new GEP index.
Eli Benderskya108a652014-05-01 18:38:36 +0000329 SmallVector<User *, 8> UserChain;
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000330
Jingyue Wu84465472014-06-05 22:07:33 +0000331 /// A data structure used in rebuildWithoutConstOffset. Contains all
332 /// sext/zext instructions along UserChain.
333 SmallVector<CastInst *, 16> ExtInsts;
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000334
335 /// Insertion position of cloned instructions.
336 Instruction *IP;
337
Jingyue Wuca321902015-05-14 23:53:19 +0000338 const DataLayout &DL;
339 const DominatorTree *DT;
Eli Benderskya108a652014-05-01 18:38:36 +0000340};
341
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000342/// A pass that tries to split every GEP in the function into a variadic
Alp Tokerbeaca192014-05-15 01:52:21 +0000343/// base and a constant offset. It is a FunctionPass because searching for the
Eli Benderskya108a652014-05-01 18:38:36 +0000344/// constant offset may inspect other basic blocks.
345class SeparateConstOffsetFromGEP : public FunctionPass {
Jingyue Wuca321902015-05-14 23:53:19 +0000346public:
Eli Benderskya108a652014-05-01 18:38:36 +0000347 static char ID;
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000348
David Blaikie8ad9a972018-03-28 22:28:50 +0000349 SeparateConstOffsetFromGEP(bool LowerGEP = false)
350 : FunctionPass(ID), LowerGEP(LowerGEP) {
Eli Benderskya108a652014-05-01 18:38:36 +0000351 initializeSeparateConstOffsetFromGEPPass(*PassRegistry::getPassRegistry());
352 }
353
354 void getAnalysisUsage(AnalysisUsage &AU) const override {
Jingyue Wuca321902015-05-14 23:53:19 +0000355 AU.addRequired<DominatorTreeWrapperPass>();
Chandler Carruth2f1fd162015-08-17 02:08:17 +0000356 AU.addRequired<ScalarEvolutionWrapperPass>();
Chandler Carruth705b1852015-01-31 03:43:40 +0000357 AU.addRequired<TargetTransformInfoWrapperPass>();
Lawrence Hucac0b892015-09-23 19:25:30 +0000358 AU.addRequired<LoopInfoWrapperPass>();
Jingyue Wu6e091c82015-02-01 02:33:02 +0000359 AU.setPreservesCFG();
Lawrence Hucac0b892015-09-23 19:25:30 +0000360 AU.addRequired<TargetLibraryInfoWrapperPass>();
Eli Benderskya108a652014-05-01 18:38:36 +0000361 }
Jingyue Wu48a5abe2014-06-08 20:15:45 +0000362
Jingyue Wuca321902015-05-14 23:53:19 +0000363 bool doInitialization(Module &M) override {
364 DL = &M.getDataLayout();
365 return false;
366 }
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000367
Eli Benderskya108a652014-05-01 18:38:36 +0000368 bool runOnFunction(Function &F) override;
369
Jingyue Wuca321902015-05-14 23:53:19 +0000370private:
Eli Benderskya108a652014-05-01 18:38:36 +0000371 /// Tries to split the given GEP into a variadic base and a constant offset,
372 /// and returns true if the splitting succeeds.
373 bool splitGEP(GetElementPtrInst *GEP);
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000374
Hao Liu1d2a0612014-11-19 06:24:44 +0000375 /// Lower a GEP with multiple indices into multiple GEPs with a single index.
376 /// Function splitGEP already split the original GEP into a variadic part and
377 /// a constant offset (i.e., AccumulativeByteOffset). This function lowers the
378 /// variadic part into a set of GEPs with a single index and applies
379 /// AccumulativeByteOffset to it.
380 /// \p Variadic The variadic part of the original GEP.
381 /// \p AccumulativeByteOffset The constant offset.
382 void lowerToSingleIndexGEPs(GetElementPtrInst *Variadic,
383 int64_t AccumulativeByteOffset);
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000384
Hao Liu1d2a0612014-11-19 06:24:44 +0000385 /// Lower a GEP with multiple indices into ptrtoint+arithmetics+inttoptr form.
386 /// Function splitGEP already split the original GEP into a variadic part and
387 /// a constant offset (i.e., AccumulativeByteOffset). This function lowers the
388 /// variadic part into a set of arithmetic operations and applies
389 /// AccumulativeByteOffset to it.
390 /// \p Variadic The variadic part of the original GEP.
391 /// \p AccumulativeByteOffset The constant offset.
392 void lowerToArithmetics(GetElementPtrInst *Variadic,
393 int64_t AccumulativeByteOffset);
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000394
Hao Liu1d2a0612014-11-19 06:24:44 +0000395 /// Finds the constant offset within each index and accumulates them. If
396 /// LowerGEP is true, it finds in indices of both sequential and structure
397 /// types, otherwise it only finds in sequential indices. The output
398 /// NeedsExtraction indicates whether we successfully find a non-zero constant
399 /// offset.
Jingyue Wu48a5abe2014-06-08 20:15:45 +0000400 int64_t accumulateByteOffset(GetElementPtrInst *GEP, bool &NeedsExtraction);
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000401
Jingyue Wu48a5abe2014-06-08 20:15:45 +0000402 /// Canonicalize array indices to pointer-size integers. This helps to
403 /// simplify the logic of splitting a GEP. For example, if a + b is a
404 /// pointer-size integer, we have
405 /// gep base, a + b = gep (gep base, a), b
406 /// However, this equality may not hold if the size of a + b is smaller than
407 /// the pointer size, because LLVM conceptually sign-extends GEP indices to
408 /// pointer size before computing the address
409 /// (http://llvm.org/docs/LangRef.html#id181).
410 ///
411 /// This canonicalization is very likely already done in clang and
412 /// instcombine. Therefore, the program will probably remain the same.
413 ///
Jingyue Wu5c7b1ae2014-06-08 23:49:34 +0000414 /// Returns true if the module changes.
415 ///
Jingyue Wu48a5abe2014-06-08 20:15:45 +0000416 /// Verified in @i32_add in split-gep.ll
417 bool canonicalizeArrayIndicesToPointerSize(GetElementPtrInst *GEP);
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000418
Jingyue Wu1238f342015-08-14 02:02:05 +0000419 /// Optimize sext(a)+sext(b) to sext(a+b) when a+b can't sign overflow.
420 /// SeparateConstOffsetFromGEP distributes a sext to leaves before extracting
421 /// the constant offset. After extraction, it becomes desirable to reunion the
422 /// distributed sexts. For example,
423 ///
424 /// &a[sext(i +nsw (j +nsw 5)]
425 /// => distribute &a[sext(i) +nsw (sext(j) +nsw 5)]
426 /// => constant extraction &a[sext(i) + sext(j)] + 5
427 /// => reunion &a[sext(i +nsw j)] + 5
428 bool reuniteExts(Function &F);
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000429
Jingyue Wu1238f342015-08-14 02:02:05 +0000430 /// A helper that reunites sexts in an instruction.
431 bool reuniteExts(Instruction *I);
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000432
Jingyue Wu1238f342015-08-14 02:02:05 +0000433 /// Find the closest dominator of <Dominatee> that is equivalent to <Key>.
434 Instruction *findClosestMatchingDominator(const SCEV *Key,
435 Instruction *Dominatee);
Jingyue Wuf763c3f2015-04-21 19:53:18 +0000436 /// Verify F is free of dead code.
437 void verifyNoDeadCode(Function &F);
Jingyue Wu48a5abe2014-06-08 20:15:45 +0000438
Lawrence Hucac0b892015-09-23 19:25:30 +0000439 bool hasMoreThanOneUseInLoop(Value *v, Loop *L);
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000440
Lawrence Hucac0b892015-09-23 19:25:30 +0000441 // Swap the index operand of two GEP.
442 void swapGEPOperand(GetElementPtrInst *First, GetElementPtrInst *Second);
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000443
Lawrence Hucac0b892015-09-23 19:25:30 +0000444 // Check if it is safe to swap operand of two GEP.
445 bool isLegalToSwapOperand(GetElementPtrInst *First, GetElementPtrInst *Second,
446 Loop *CurLoop);
447
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000448 const DataLayout *DL = nullptr;
449 DominatorTree *DT = nullptr;
Jingyue Wu1238f342015-08-14 02:02:05 +0000450 ScalarEvolution *SE;
Lawrence Hucac0b892015-09-23 19:25:30 +0000451
452 LoopInfo *LI;
453 TargetLibraryInfo *TLI;
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000454
Hao Liu1d2a0612014-11-19 06:24:44 +0000455 /// Whether to lower a GEP with multiple indices into arithmetic operations or
456 /// multiple GEPs with a single index.
457 bool LowerGEP;
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000458
Jingyue Wu1238f342015-08-14 02:02:05 +0000459 DenseMap<const SCEV *, SmallVector<Instruction *, 2>> DominatingExprs;
Eli Benderskya108a652014-05-01 18:38:36 +0000460};
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000461
462} // end anonymous namespace
Eli Benderskya108a652014-05-01 18:38:36 +0000463
464char SeparateConstOffsetFromGEP::ID = 0;
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000465
Eli Benderskya108a652014-05-01 18:38:36 +0000466INITIALIZE_PASS_BEGIN(
467 SeparateConstOffsetFromGEP, "separate-const-offset-from-gep",
468 "Split GEPs to a variadic base and a constant offset for better CSE", false,
469 false)
Jingyue Wuca321902015-05-14 23:53:19 +0000470INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Chandler Carruth2f1fd162015-08-17 02:08:17 +0000471INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass)
Chandler Carruth705b1852015-01-31 03:43:40 +0000472INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
Lawrence Hucac0b892015-09-23 19:25:30 +0000473INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
474INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
Eli Benderskya108a652014-05-01 18:38:36 +0000475INITIALIZE_PASS_END(
476 SeparateConstOffsetFromGEP, "separate-const-offset-from-gep",
477 "Split GEPs to a variadic base and a constant offset for better CSE", false,
478 false)
479
David Blaikie8ad9a972018-03-28 22:28:50 +0000480FunctionPass *llvm::createSeparateConstOffsetFromGEPPass(bool LowerGEP) {
481 return new SeparateConstOffsetFromGEP(LowerGEP);
Eli Benderskya108a652014-05-01 18:38:36 +0000482}
483
Jingyue Wu84465472014-06-05 22:07:33 +0000484bool ConstantOffsetExtractor::CanTraceInto(bool SignExtended,
485 bool ZeroExtended,
486 BinaryOperator *BO,
487 bool NonNegative) {
488 // We only consider ADD, SUB and OR, because a non-zero constant found in
489 // expressions composed of these operations can be easily hoisted as a
490 // constant offset by reassociation.
491 if (BO->getOpcode() != Instruction::Add &&
492 BO->getOpcode() != Instruction::Sub &&
493 BO->getOpcode() != Instruction::Or) {
494 return false;
495 }
496
497 Value *LHS = BO->getOperand(0), *RHS = BO->getOperand(1);
498 // Do not trace into "or" unless it is equivalent to "add". If LHS and RHS
499 // don't have common bits, (LHS | RHS) is equivalent to (LHS + RHS).
Roman Lebedev25cbb622018-04-15 18:59:27 +0000500 // FIXME: this does not appear to be covered by any tests
501 // (with x86/aarch64 backends at least)
Jingyue Wuca321902015-05-14 23:53:19 +0000502 if (BO->getOpcode() == Instruction::Or &&
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000503 !haveNoCommonBitsSet(LHS, RHS, DL, nullptr, BO, DT))
Jingyue Wu84465472014-06-05 22:07:33 +0000504 return false;
505
506 // In addition, tracing into BO requires that its surrounding s/zext (if
507 // any) is distributable to both operands.
508 //
509 // Suppose BO = A op B.
510 // SignExtended | ZeroExtended | Distributable?
511 // --------------+--------------+----------------------------------
512 // 0 | 0 | true because no s/zext exists
513 // 0 | 1 | zext(BO) == zext(A) op zext(B)
514 // 1 | 0 | sext(BO) == sext(A) op sext(B)
515 // 1 | 1 | zext(sext(BO)) ==
516 // | | zext(sext(A)) op zext(sext(B))
Jingyue Wu01ceeb12014-06-08 20:19:38 +0000517 if (BO->getOpcode() == Instruction::Add && !ZeroExtended && NonNegative) {
Jingyue Wu84465472014-06-05 22:07:33 +0000518 // If a + b >= 0 and (a >= 0 or b >= 0), then
Jingyue Wu01ceeb12014-06-08 20:19:38 +0000519 // sext(a + b) = sext(a) + sext(b)
Jingyue Wu84465472014-06-05 22:07:33 +0000520 // even if the addition is not marked nsw.
521 //
522 // Leveraging this invarient, we can trace into an sext'ed inbound GEP
523 // index if the constant offset is non-negative.
524 //
525 // Verified in @sext_add in split-gep.ll.
526 if (ConstantInt *ConstLHS = dyn_cast<ConstantInt>(LHS)) {
527 if (!ConstLHS->isNegative())
528 return true;
529 }
530 if (ConstantInt *ConstRHS = dyn_cast<ConstantInt>(RHS)) {
531 if (!ConstRHS->isNegative())
532 return true;
533 }
534 }
Jingyue Wu80a738d2014-05-27 18:00:00 +0000535
536 // sext (add/sub nsw A, B) == add/sub nsw (sext A), (sext B)
537 // zext (add/sub nuw A, B) == add/sub nuw (zext A), (zext B)
538 if (BO->getOpcode() == Instruction::Add ||
539 BO->getOpcode() == Instruction::Sub) {
Jingyue Wu84465472014-06-05 22:07:33 +0000540 if (SignExtended && !BO->hasNoSignedWrap())
541 return false;
542 if (ZeroExtended && !BO->hasNoUnsignedWrap())
543 return false;
Jingyue Wu80a738d2014-05-27 18:00:00 +0000544 }
545
Jingyue Wu84465472014-06-05 22:07:33 +0000546 return true;
Jingyue Wu80a738d2014-05-27 18:00:00 +0000547}
548
Jingyue Wu84465472014-06-05 22:07:33 +0000549APInt ConstantOffsetExtractor::findInEitherOperand(BinaryOperator *BO,
550 bool SignExtended,
551 bool ZeroExtended) {
552 // BO being non-negative does not shed light on whether its operands are
553 // non-negative. Clear the NonNegative flag here.
554 APInt ConstantOffset = find(BO->getOperand(0), SignExtended, ZeroExtended,
555 /* NonNegative */ false);
Eli Benderskya108a652014-05-01 18:38:36 +0000556 // If we found a constant offset in the left operand, stop and return that.
557 // This shortcut might cause us to miss opportunities of combining the
558 // constant offsets in both operands, e.g., (a + 4) + (b + 5) => (a + b) + 9.
559 // However, such cases are probably already handled by -instcombine,
560 // given this pass runs after the standard optimizations.
561 if (ConstantOffset != 0) return ConstantOffset;
Jingyue Wu84465472014-06-05 22:07:33 +0000562 ConstantOffset = find(BO->getOperand(1), SignExtended, ZeroExtended,
563 /* NonNegative */ false);
Eli Benderskya108a652014-05-01 18:38:36 +0000564 // If U is a sub operator, negate the constant offset found in the right
565 // operand.
Jingyue Wu84465472014-06-05 22:07:33 +0000566 if (BO->getOpcode() == Instruction::Sub)
567 ConstantOffset = -ConstantOffset;
568 return ConstantOffset;
Eli Benderskya108a652014-05-01 18:38:36 +0000569}
570
Jingyue Wu84465472014-06-05 22:07:33 +0000571APInt ConstantOffsetExtractor::find(Value *V, bool SignExtended,
572 bool ZeroExtended, bool NonNegative) {
573 // TODO(jingyue): We could trace into integer/pointer casts, such as
Eli Benderskya108a652014-05-01 18:38:36 +0000574 // inttoptr, ptrtoint, bitcast, and addrspacecast. We choose to handle only
575 // integers because it gives good enough results for our benchmarks.
Jingyue Wu84465472014-06-05 22:07:33 +0000576 unsigned BitWidth = cast<IntegerType>(V->getType())->getBitWidth();
Eli Benderskya108a652014-05-01 18:38:36 +0000577
Jingyue Wu84465472014-06-05 22:07:33 +0000578 // We cannot do much with Values that are not a User, such as an Argument.
Eli Benderskya108a652014-05-01 18:38:36 +0000579 User *U = dyn_cast<User>(V);
Jingyue Wu84465472014-06-05 22:07:33 +0000580 if (U == nullptr) return APInt(BitWidth, 0);
Eli Benderskya108a652014-05-01 18:38:36 +0000581
Jingyue Wu84465472014-06-05 22:07:33 +0000582 APInt ConstantOffset(BitWidth, 0);
583 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Eli Benderskya108a652014-05-01 18:38:36 +0000584 // Hooray, we found it!
Jingyue Wu84465472014-06-05 22:07:33 +0000585 ConstantOffset = CI->getValue();
586 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(V)) {
587 // Trace into subexpressions for more hoisting opportunities.
Jingyue Wuca321902015-05-14 23:53:19 +0000588 if (CanTraceInto(SignExtended, ZeroExtended, BO, NonNegative))
Jingyue Wu84465472014-06-05 22:07:33 +0000589 ConstantOffset = findInEitherOperand(BO, SignExtended, ZeroExtended);
Artem Belevichc2cd5d52018-05-11 21:13:19 +0000590 } else if (isa<TruncInst>(V)) {
591 ConstantOffset =
592 find(U->getOperand(0), SignExtended, ZeroExtended, NonNegative)
593 .trunc(BitWidth);
Jingyue Wu84465472014-06-05 22:07:33 +0000594 } else if (isa<SExtInst>(V)) {
595 ConstantOffset = find(U->getOperand(0), /* SignExtended */ true,
596 ZeroExtended, NonNegative).sext(BitWidth);
597 } else if (isa<ZExtInst>(V)) {
598 // As an optimization, we can clear the SignExtended flag because
599 // sext(zext(a)) = zext(a). Verified in @sext_zext in split-gep.ll.
600 //
601 // Clear the NonNegative flag, because zext(a) >= 0 does not imply a >= 0.
Jingyue Wu84465472014-06-05 22:07:33 +0000602 ConstantOffset =
603 find(U->getOperand(0), /* SignExtended */ false,
604 /* ZeroExtended */ true, /* NonNegative */ false).zext(BitWidth);
Eli Benderskya108a652014-05-01 18:38:36 +0000605 }
Jingyue Wu84465472014-06-05 22:07:33 +0000606
607 // If we found a non-zero constant offset, add it to the path for
608 // rebuildWithoutConstOffset. Zero is a valid constant offset, but doesn't
609 // help this optimization.
Eli Benderskya108a652014-05-01 18:38:36 +0000610 if (ConstantOffset != 0)
611 UserChain.push_back(U);
612 return ConstantOffset;
613}
614
Jingyue Wu84465472014-06-05 22:07:33 +0000615Value *ConstantOffsetExtractor::applyExts(Value *V) {
616 Value *Current = V;
617 // ExtInsts is built in the use-def order. Therefore, we apply them to V
618 // in the reversed order.
619 for (auto I = ExtInsts.rbegin(), E = ExtInsts.rend(); I != E; ++I) {
620 if (Constant *C = dyn_cast<Constant>(Current)) {
621 // If Current is a constant, apply s/zext using ConstantExpr::getCast.
622 // ConstantExpr::getCast emits a ConstantInt if C is a ConstantInt.
623 Current = ConstantExpr::getCast((*I)->getOpcode(), C, (*I)->getType());
624 } else {
625 Instruction *Ext = (*I)->clone();
626 Ext->setOperand(0, Current);
627 Ext->insertBefore(IP);
628 Current = Ext;
629 }
Eli Benderskya108a652014-05-01 18:38:36 +0000630 }
Jingyue Wu84465472014-06-05 22:07:33 +0000631 return Current;
Eli Benderskya108a652014-05-01 18:38:36 +0000632}
633
Jingyue Wu84465472014-06-05 22:07:33 +0000634Value *ConstantOffsetExtractor::rebuildWithoutConstOffset() {
635 distributeExtsAndCloneChain(UserChain.size() - 1);
636 // Remove all nullptrs (used to be s/zext) from UserChain.
637 unsigned NewSize = 0;
Benjamin Kramer135f7352016-06-26 12:28:59 +0000638 for (User *I : UserChain) {
639 if (I != nullptr) {
640 UserChain[NewSize] = I;
Jingyue Wu84465472014-06-05 22:07:33 +0000641 NewSize++;
642 }
Eli Benderskya108a652014-05-01 18:38:36 +0000643 }
Jingyue Wu84465472014-06-05 22:07:33 +0000644 UserChain.resize(NewSize);
645 return removeConstOffset(UserChain.size() - 1);
Eli Benderskya108a652014-05-01 18:38:36 +0000646}
647
Jingyue Wu84465472014-06-05 22:07:33 +0000648Value *
649ConstantOffsetExtractor::distributeExtsAndCloneChain(unsigned ChainIndex) {
650 User *U = UserChain[ChainIndex];
651 if (ChainIndex == 0) {
652 assert(isa<ConstantInt>(U));
653 // If U is a ConstantInt, applyExts will return a ConstantInt as well.
654 return UserChain[ChainIndex] = cast<ConstantInt>(applyExts(U));
655 }
Eli Benderskya108a652014-05-01 18:38:36 +0000656
Jingyue Wu84465472014-06-05 22:07:33 +0000657 if (CastInst *Cast = dyn_cast<CastInst>(U)) {
Artem Belevichc2cd5d52018-05-11 21:13:19 +0000658 assert(
659 (isa<SExtInst>(Cast) || isa<ZExtInst>(Cast) || isa<TruncInst>(Cast)) &&
660 "Only following instructions can be traced: sext, zext & trunc");
Jingyue Wu84465472014-06-05 22:07:33 +0000661 ExtInsts.push_back(Cast);
662 UserChain[ChainIndex] = nullptr;
663 return distributeExtsAndCloneChain(ChainIndex - 1);
664 }
665
666 // Function find only trace into BinaryOperator and CastInst.
667 BinaryOperator *BO = cast<BinaryOperator>(U);
668 // OpNo = which operand of BO is UserChain[ChainIndex - 1]
669 unsigned OpNo = (BO->getOperand(0) == UserChain[ChainIndex - 1] ? 0 : 1);
670 Value *TheOther = applyExts(BO->getOperand(1 - OpNo));
671 Value *NextInChain = distributeExtsAndCloneChain(ChainIndex - 1);
672
673 BinaryOperator *NewBO = nullptr;
674 if (OpNo == 0) {
675 NewBO = BinaryOperator::Create(BO->getOpcode(), NextInChain, TheOther,
676 BO->getName(), IP);
677 } else {
678 NewBO = BinaryOperator::Create(BO->getOpcode(), TheOther, NextInChain,
679 BO->getName(), IP);
680 }
681 return UserChain[ChainIndex] = NewBO;
Eli Benderskya108a652014-05-01 18:38:36 +0000682}
683
Jingyue Wu84465472014-06-05 22:07:33 +0000684Value *ConstantOffsetExtractor::removeConstOffset(unsigned ChainIndex) {
685 if (ChainIndex == 0) {
686 assert(isa<ConstantInt>(UserChain[ChainIndex]));
687 return ConstantInt::getNullValue(UserChain[ChainIndex]->getType());
688 }
Eli Benderskya108a652014-05-01 18:38:36 +0000689
Jingyue Wu84465472014-06-05 22:07:33 +0000690 BinaryOperator *BO = cast<BinaryOperator>(UserChain[ChainIndex]);
Jingyue Wuf763c3f2015-04-21 19:53:18 +0000691 assert(BO->getNumUses() <= 1 &&
692 "distributeExtsAndCloneChain clones each BinaryOperator in "
693 "UserChain, so no one should be used more than "
694 "once");
695
Jingyue Wu84465472014-06-05 22:07:33 +0000696 unsigned OpNo = (BO->getOperand(0) == UserChain[ChainIndex - 1] ? 0 : 1);
697 assert(BO->getOperand(OpNo) == UserChain[ChainIndex - 1]);
698 Value *NextInChain = removeConstOffset(ChainIndex - 1);
699 Value *TheOther = BO->getOperand(1 - OpNo);
700
701 // If NextInChain is 0 and not the LHS of a sub, we can simplify the
702 // sub-expression to be just TheOther.
703 if (ConstantInt *CI = dyn_cast<ConstantInt>(NextInChain)) {
704 if (CI->isZero() && !(BO->getOpcode() == Instruction::Sub && OpNo == 0))
705 return TheOther;
706 }
707
Jingyue Wuf763c3f2015-04-21 19:53:18 +0000708 BinaryOperator::BinaryOps NewOp = BO->getOpcode();
Jingyue Wu84465472014-06-05 22:07:33 +0000709 if (BO->getOpcode() == Instruction::Or) {
710 // Rebuild "or" as "add", because "or" may be invalid for the new
Hiroshi Inouef2096492018-06-14 05:41:49 +0000711 // expression.
Jingyue Wu84465472014-06-05 22:07:33 +0000712 //
713 // For instance, given
714 // a | (b + 5) where a and b + 5 have no common bits,
715 // we can extract 5 as the constant offset.
716 //
717 // However, reusing the "or" in the new index would give us
718 // (a | b) + 5
719 // which does not equal a | (b + 5).
720 //
721 // Replacing the "or" with "add" is fine, because
722 // a | (b + 5) = a + (b + 5) = (a + b) + 5
Jingyue Wuf763c3f2015-04-21 19:53:18 +0000723 NewOp = Instruction::Add;
Jingyue Wu84465472014-06-05 22:07:33 +0000724 }
725
Jingyue Wuf763c3f2015-04-21 19:53:18 +0000726 BinaryOperator *NewBO;
727 if (OpNo == 0) {
728 NewBO = BinaryOperator::Create(NewOp, NextInChain, TheOther, "", IP);
729 } else {
730 NewBO = BinaryOperator::Create(NewOp, TheOther, NextInChain, "", IP);
731 }
732 NewBO->takeName(BO);
733 return NewBO;
Eli Benderskya108a652014-05-01 18:38:36 +0000734}
735
Jingyue Wuf763c3f2015-04-21 19:53:18 +0000736Value *ConstantOffsetExtractor::Extract(Value *Idx, GetElementPtrInst *GEP,
Jingyue Wuca321902015-05-14 23:53:19 +0000737 User *&UserChainTail,
738 const DominatorTree *DT) {
739 ConstantOffsetExtractor Extractor(GEP, DT);
Eli Benderskya108a652014-05-01 18:38:36 +0000740 // Find a non-zero constant offset first.
Jingyue Wu84465472014-06-05 22:07:33 +0000741 APInt ConstantOffset =
742 Extractor.find(Idx, /* SignExtended */ false, /* ZeroExtended */ false,
743 GEP->isInBounds());
Jingyue Wuf763c3f2015-04-21 19:53:18 +0000744 if (ConstantOffset == 0) {
745 UserChainTail = nullptr;
Hao Liu1d2a0612014-11-19 06:24:44 +0000746 return nullptr;
Jingyue Wuf763c3f2015-04-21 19:53:18 +0000747 }
Hao Liu1d2a0612014-11-19 06:24:44 +0000748 // Separates the constant offset from the GEP index.
Jingyue Wuf763c3f2015-04-21 19:53:18 +0000749 Value *IdxWithoutConstOffset = Extractor.rebuildWithoutConstOffset();
750 UserChainTail = Extractor.UserChain.back();
751 return IdxWithoutConstOffset;
Eli Benderskya108a652014-05-01 18:38:36 +0000752}
753
Jingyue Wuca321902015-05-14 23:53:19 +0000754int64_t ConstantOffsetExtractor::Find(Value *Idx, GetElementPtrInst *GEP,
755 const DominatorTree *DT) {
Jingyue Wu84465472014-06-05 22:07:33 +0000756 // If Idx is an index of an inbound GEP, Idx is guaranteed to be non-negative.
Jingyue Wuca321902015-05-14 23:53:19 +0000757 return ConstantOffsetExtractor(GEP, DT)
Jingyue Wu84465472014-06-05 22:07:33 +0000758 .find(Idx, /* SignExtended */ false, /* ZeroExtended */ false,
759 GEP->isInBounds())
760 .getSExtValue();
Eli Benderskya108a652014-05-01 18:38:36 +0000761}
762
Jingyue Wu48a5abe2014-06-08 20:15:45 +0000763bool SeparateConstOffsetFromGEP::canonicalizeArrayIndicesToPointerSize(
764 GetElementPtrInst *GEP) {
765 bool Changed = false;
Jingyue Wuca321902015-05-14 23:53:19 +0000766 Type *IntPtrTy = DL->getIntPtrType(GEP->getType());
Jingyue Wu48a5abe2014-06-08 20:15:45 +0000767 gep_type_iterator GTI = gep_type_begin(*GEP);
768 for (User::op_iterator I = GEP->op_begin() + 1, E = GEP->op_end();
769 I != E; ++I, ++GTI) {
770 // Skip struct member indices which must be i32.
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000771 if (GTI.isSequential()) {
Jingyue Wu48a5abe2014-06-08 20:15:45 +0000772 if ((*I)->getType() != IntPtrTy) {
773 *I = CastInst::CreateIntegerCast(*I, IntPtrTy, true, "idxprom", GEP);
774 Changed = true;
775 }
776 }
777 }
778 return Changed;
779}
780
781int64_t
782SeparateConstOffsetFromGEP::accumulateByteOffset(GetElementPtrInst *GEP,
783 bool &NeedsExtraction) {
Eli Benderskya108a652014-05-01 18:38:36 +0000784 NeedsExtraction = false;
785 int64_t AccumulativeByteOffset = 0;
786 gep_type_iterator GTI = gep_type_begin(*GEP);
787 for (unsigned I = 1, E = GEP->getNumOperands(); I != E; ++I, ++GTI) {
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000788 if (GTI.isSequential()) {
Eli Benderskya108a652014-05-01 18:38:36 +0000789 // Tries to extract a constant offset from this GEP index.
790 int64_t ConstantOffset =
Jingyue Wuca321902015-05-14 23:53:19 +0000791 ConstantOffsetExtractor::Find(GEP->getOperand(I), GEP, DT);
Eli Benderskya108a652014-05-01 18:38:36 +0000792 if (ConstantOffset != 0) {
793 NeedsExtraction = true;
794 // A GEP may have multiple indices. We accumulate the extracted
795 // constant offset to a byte offset, and later offset the remainder of
796 // the original GEP with this byte offset.
797 AccumulativeByteOffset +=
Jingyue Wuca321902015-05-14 23:53:19 +0000798 ConstantOffset * DL->getTypeAllocSize(GTI.getIndexedType());
Eli Benderskya108a652014-05-01 18:38:36 +0000799 }
Hao Liu1d2a0612014-11-19 06:24:44 +0000800 } else if (LowerGEP) {
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000801 StructType *StTy = GTI.getStructType();
Hao Liu1d2a0612014-11-19 06:24:44 +0000802 uint64_t Field = cast<ConstantInt>(GEP->getOperand(I))->getZExtValue();
803 // Skip field 0 as the offset is always 0.
804 if (Field != 0) {
805 NeedsExtraction = true;
806 AccumulativeByteOffset +=
Jingyue Wuca321902015-05-14 23:53:19 +0000807 DL->getStructLayout(StTy)->getElementOffset(Field);
Hao Liu1d2a0612014-11-19 06:24:44 +0000808 }
Eli Benderskya108a652014-05-01 18:38:36 +0000809 }
810 }
811 return AccumulativeByteOffset;
812}
813
Hao Liu1d2a0612014-11-19 06:24:44 +0000814void SeparateConstOffsetFromGEP::lowerToSingleIndexGEPs(
815 GetElementPtrInst *Variadic, int64_t AccumulativeByteOffset) {
816 IRBuilder<> Builder(Variadic);
Jingyue Wuca321902015-05-14 23:53:19 +0000817 Type *IntPtrTy = DL->getIntPtrType(Variadic->getType());
Hao Liu1d2a0612014-11-19 06:24:44 +0000818
819 Type *I8PtrTy =
820 Builder.getInt8PtrTy(Variadic->getType()->getPointerAddressSpace());
821 Value *ResultPtr = Variadic->getOperand(0);
Lawrence Hucac0b892015-09-23 19:25:30 +0000822 Loop *L = LI->getLoopFor(Variadic->getParent());
823 // Check if the base is not loop invariant or used more than once.
824 bool isSwapCandidate =
825 L && L->isLoopInvariant(ResultPtr) &&
826 !hasMoreThanOneUseInLoop(ResultPtr, L);
827 Value *FirstResult = nullptr;
828
Hao Liu1d2a0612014-11-19 06:24:44 +0000829 if (ResultPtr->getType() != I8PtrTy)
830 ResultPtr = Builder.CreateBitCast(ResultPtr, I8PtrTy);
831
832 gep_type_iterator GTI = gep_type_begin(*Variadic);
833 // Create an ugly GEP for each sequential index. We don't create GEPs for
834 // structure indices, as they are accumulated in the constant offset index.
835 for (unsigned I = 1, E = Variadic->getNumOperands(); I != E; ++I, ++GTI) {
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000836 if (GTI.isSequential()) {
Hao Liu1d2a0612014-11-19 06:24:44 +0000837 Value *Idx = Variadic->getOperand(I);
838 // Skip zero indices.
839 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx))
840 if (CI->isZero())
841 continue;
842
843 APInt ElementSize = APInt(IntPtrTy->getIntegerBitWidth(),
Jingyue Wuca321902015-05-14 23:53:19 +0000844 DL->getTypeAllocSize(GTI.getIndexedType()));
Hao Liu1d2a0612014-11-19 06:24:44 +0000845 // Scale the index by element size.
846 if (ElementSize != 1) {
847 if (ElementSize.isPowerOf2()) {
848 Idx = Builder.CreateShl(
849 Idx, ConstantInt::get(IntPtrTy, ElementSize.logBase2()));
850 } else {
851 Idx = Builder.CreateMul(Idx, ConstantInt::get(IntPtrTy, ElementSize));
852 }
853 }
854 // Create an ugly GEP with a single index for each index.
David Blaikie93c54442015-04-03 19:41:44 +0000855 ResultPtr =
856 Builder.CreateGEP(Builder.getInt8Ty(), ResultPtr, Idx, "uglygep");
Lawrence Hucac0b892015-09-23 19:25:30 +0000857 if (FirstResult == nullptr)
858 FirstResult = ResultPtr;
Hao Liu1d2a0612014-11-19 06:24:44 +0000859 }
860 }
861
862 // Create a GEP with the constant offset index.
863 if (AccumulativeByteOffset != 0) {
864 Value *Offset = ConstantInt::get(IntPtrTy, AccumulativeByteOffset);
David Blaikie93c54442015-04-03 19:41:44 +0000865 ResultPtr =
866 Builder.CreateGEP(Builder.getInt8Ty(), ResultPtr, Offset, "uglygep");
Lawrence Hucac0b892015-09-23 19:25:30 +0000867 } else
868 isSwapCandidate = false;
869
870 // If we created a GEP with constant index, and the base is loop invariant,
871 // then we swap the first one with it, so LICM can move constant GEP out
872 // later.
Lawrence Hu84e6f1d2016-02-19 02:17:07 +0000873 GetElementPtrInst *FirstGEP = dyn_cast_or_null<GetElementPtrInst>(FirstResult);
874 GetElementPtrInst *SecondGEP = dyn_cast_or_null<GetElementPtrInst>(ResultPtr);
Lawrence Hucac0b892015-09-23 19:25:30 +0000875 if (isSwapCandidate && isLegalToSwapOperand(FirstGEP, SecondGEP, L))
876 swapGEPOperand(FirstGEP, SecondGEP);
877
Hao Liu1d2a0612014-11-19 06:24:44 +0000878 if (ResultPtr->getType() != Variadic->getType())
879 ResultPtr = Builder.CreateBitCast(ResultPtr, Variadic->getType());
880
881 Variadic->replaceAllUsesWith(ResultPtr);
882 Variadic->eraseFromParent();
883}
884
885void
886SeparateConstOffsetFromGEP::lowerToArithmetics(GetElementPtrInst *Variadic,
887 int64_t AccumulativeByteOffset) {
888 IRBuilder<> Builder(Variadic);
Jingyue Wuca321902015-05-14 23:53:19 +0000889 Type *IntPtrTy = DL->getIntPtrType(Variadic->getType());
Hao Liu1d2a0612014-11-19 06:24:44 +0000890
891 Value *ResultPtr = Builder.CreatePtrToInt(Variadic->getOperand(0), IntPtrTy);
892 gep_type_iterator GTI = gep_type_begin(*Variadic);
893 // Create ADD/SHL/MUL arithmetic operations for each sequential indices. We
894 // don't create arithmetics for structure indices, as they are accumulated
895 // in the constant offset index.
896 for (unsigned I = 1, E = Variadic->getNumOperands(); I != E; ++I, ++GTI) {
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000897 if (GTI.isSequential()) {
Hao Liu1d2a0612014-11-19 06:24:44 +0000898 Value *Idx = Variadic->getOperand(I);
899 // Skip zero indices.
900 if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx))
901 if (CI->isZero())
902 continue;
903
904 APInt ElementSize = APInt(IntPtrTy->getIntegerBitWidth(),
Jingyue Wuca321902015-05-14 23:53:19 +0000905 DL->getTypeAllocSize(GTI.getIndexedType()));
Hao Liu1d2a0612014-11-19 06:24:44 +0000906 // Scale the index by element size.
907 if (ElementSize != 1) {
908 if (ElementSize.isPowerOf2()) {
909 Idx = Builder.CreateShl(
910 Idx, ConstantInt::get(IntPtrTy, ElementSize.logBase2()));
911 } else {
912 Idx = Builder.CreateMul(Idx, ConstantInt::get(IntPtrTy, ElementSize));
913 }
914 }
915 // Create an ADD for each index.
916 ResultPtr = Builder.CreateAdd(ResultPtr, Idx);
917 }
918 }
919
920 // Create an ADD for the constant offset index.
921 if (AccumulativeByteOffset != 0) {
922 ResultPtr = Builder.CreateAdd(
923 ResultPtr, ConstantInt::get(IntPtrTy, AccumulativeByteOffset));
924 }
925
926 ResultPtr = Builder.CreateIntToPtr(ResultPtr, Variadic->getType());
927 Variadic->replaceAllUsesWith(ResultPtr);
928 Variadic->eraseFromParent();
929}
930
Eli Benderskya108a652014-05-01 18:38:36 +0000931bool SeparateConstOffsetFromGEP::splitGEP(GetElementPtrInst *GEP) {
932 // Skip vector GEPs.
933 if (GEP->getType()->isVectorTy())
934 return false;
935
936 // The backend can already nicely handle the case where all indices are
937 // constant.
938 if (GEP->hasAllConstantIndices())
939 return false;
940
Jingyue Wu0bdc0272014-07-16 23:25:00 +0000941 bool Changed = canonicalizeArrayIndicesToPointerSize(GEP);
Eli Benderskya108a652014-05-01 18:38:36 +0000942
Eli Benderskya108a652014-05-01 18:38:36 +0000943 bool NeedsExtraction;
Jingyue Wu48a5abe2014-06-08 20:15:45 +0000944 int64_t AccumulativeByteOffset = accumulateByteOffset(GEP, NeedsExtraction);
Eli Benderskya108a652014-05-01 18:38:36 +0000945
946 if (!NeedsExtraction)
947 return Changed;
David Blaikie8ad9a972018-03-28 22:28:50 +0000948
949 TargetTransformInfo &TTI =
950 getAnalysis<TargetTransformInfoWrapperPass>().getTTI(*GEP->getFunction());
951
Hao Liu1d2a0612014-11-19 06:24:44 +0000952 // If LowerGEP is disabled, before really splitting the GEP, check whether the
953 // backend supports the addressing mode we are about to produce. If no, this
954 // splitting probably won't be beneficial.
955 // If LowerGEP is enabled, even the extracted constant offset can not match
956 // the addressing mode, we can still do optimizations to other lowered parts
957 // of variable indices. Therefore, we don't check for addressing modes in that
958 // case.
959 if (!LowerGEP) {
Matt Arsenaulte81944f2015-06-07 20:17:44 +0000960 unsigned AddrSpace = GEP->getPointerAddressSpace();
Eduard Burtescu19eb0312016-01-19 17:28:00 +0000961 if (!TTI.isLegalAddressingMode(GEP->getResultElementType(),
Hao Liu1d2a0612014-11-19 06:24:44 +0000962 /*BaseGV=*/nullptr, AccumulativeByteOffset,
Matt Arsenaulte81944f2015-06-07 20:17:44 +0000963 /*HasBaseReg=*/true, /*Scale=*/0,
964 AddrSpace)) {
Hao Liu1d2a0612014-11-19 06:24:44 +0000965 return Changed;
966 }
Eli Benderskya108a652014-05-01 18:38:36 +0000967 }
968
Hao Liu1d2a0612014-11-19 06:24:44 +0000969 // Remove the constant offset in each sequential index. The resultant GEP
970 // computes the variadic base.
971 // Notice that we don't remove struct field indices here. If LowerGEP is
972 // disabled, a structure index is not accumulated and we still use the old
973 // one. If LowerGEP is enabled, a structure index is accumulated in the
974 // constant offset. LowerToSingleIndexGEPs or lowerToArithmetics will later
975 // handle the constant offset and won't need a new structure index.
Jingyue Wu48a5abe2014-06-08 20:15:45 +0000976 gep_type_iterator GTI = gep_type_begin(*GEP);
Eli Benderskya108a652014-05-01 18:38:36 +0000977 for (unsigned I = 1, E = GEP->getNumOperands(); I != E; ++I, ++GTI) {
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000978 if (GTI.isSequential()) {
Hao Liu1d2a0612014-11-19 06:24:44 +0000979 // Splits this GEP index into a variadic part and a constant offset, and
980 // uses the variadic part as the new index.
Jingyue Wuf763c3f2015-04-21 19:53:18 +0000981 Value *OldIdx = GEP->getOperand(I);
982 User *UserChainTail;
983 Value *NewIdx =
Jingyue Wuca321902015-05-14 23:53:19 +0000984 ConstantOffsetExtractor::Extract(OldIdx, GEP, UserChainTail, DT);
Hao Liu1d2a0612014-11-19 06:24:44 +0000985 if (NewIdx != nullptr) {
Jingyue Wuf763c3f2015-04-21 19:53:18 +0000986 // Switches to the index with the constant offset removed.
Eli Benderskya108a652014-05-01 18:38:36 +0000987 GEP->setOperand(I, NewIdx);
Jingyue Wuf763c3f2015-04-21 19:53:18 +0000988 // After switching to the new index, we can garbage-collect UserChain
989 // and the old index if they are not used.
990 RecursivelyDeleteTriviallyDeadInstructions(UserChainTail);
991 RecursivelyDeleteTriviallyDeadInstructions(OldIdx);
Eli Benderskya108a652014-05-01 18:38:36 +0000992 }
993 }
994 }
Hao Liu1d2a0612014-11-19 06:24:44 +0000995
Jingyue Wu84465472014-06-05 22:07:33 +0000996 // Clear the inbounds attribute because the new index may be off-bound.
997 // e.g.,
998 //
Jingyue Wu1238f342015-08-14 02:02:05 +0000999 // b = add i64 a, 5
1000 // addr = gep inbounds float, float* p, i64 b
Jingyue Wu84465472014-06-05 22:07:33 +00001001 //
1002 // is transformed to:
1003 //
Jingyue Wu1238f342015-08-14 02:02:05 +00001004 // addr2 = gep float, float* p, i64 a ; inbounds removed
1005 // addr = gep inbounds float, float* addr2, i64 5
Jingyue Wu84465472014-06-05 22:07:33 +00001006 //
1007 // If a is -4, although the old index b is in bounds, the new index a is
1008 // off-bound. http://llvm.org/docs/LangRef.html#id181 says "if the
1009 // inbounds keyword is not present, the offsets are added to the base
1010 // address with silently-wrapping two's complement arithmetic".
1011 // Therefore, the final code will be a semantically equivalent.
1012 //
1013 // TODO(jingyue): do some range analysis to keep as many inbounds as
1014 // possible. GEPs with inbounds are more friendly to alias analysis.
Jingyue Wu13a80ea2015-08-13 18:48:49 +00001015 bool GEPWasInBounds = GEP->isInBounds();
Jingyue Wu84465472014-06-05 22:07:33 +00001016 GEP->setIsInBounds(false);
Eli Benderskya108a652014-05-01 18:38:36 +00001017
Hao Liu1d2a0612014-11-19 06:24:44 +00001018 // Lowers a GEP to either GEPs with a single index or arithmetic operations.
1019 if (LowerGEP) {
1020 // As currently BasicAA does not analyze ptrtoint/inttoptr, do not lower to
1021 // arithmetic operations if the target uses alias analysis in codegen.
David Blaikie8ad9a972018-03-28 22:28:50 +00001022 if (TTI.useAA())
Hao Liu1d2a0612014-11-19 06:24:44 +00001023 lowerToSingleIndexGEPs(GEP, AccumulativeByteOffset);
1024 else
1025 lowerToArithmetics(GEP, AccumulativeByteOffset);
1026 return true;
1027 }
1028
1029 // No need to create another GEP if the accumulative byte offset is 0.
1030 if (AccumulativeByteOffset == 0)
1031 return true;
1032
Eli Benderskya108a652014-05-01 18:38:36 +00001033 // Offsets the base with the accumulative byte offset.
1034 //
1035 // %gep ; the base
1036 // ... %gep ...
1037 //
1038 // => add the offset
1039 //
1040 // %gep2 ; clone of %gep
Jingyue Wubbb6e4a2014-05-23 18:39:40 +00001041 // %new.gep = gep %gep2, <offset / sizeof(*%gep)>
Eli Benderskya108a652014-05-01 18:38:36 +00001042 // %gep ; will be removed
1043 // ... %gep ...
1044 //
1045 // => replace all uses of %gep with %new.gep and remove %gep
1046 //
1047 // %gep2 ; clone of %gep
Jingyue Wubbb6e4a2014-05-23 18:39:40 +00001048 // %new.gep = gep %gep2, <offset / sizeof(*%gep)>
Eli Benderskya108a652014-05-01 18:38:36 +00001049 // ... %new.gep ...
1050 //
Jingyue Wubbb6e4a2014-05-23 18:39:40 +00001051 // If AccumulativeByteOffset is not a multiple of sizeof(*%gep), we emit an
1052 // uglygep (http://llvm.org/docs/GetElementPtr.html#what-s-an-uglygep):
1053 // bitcast %gep2 to i8*, add the offset, and bitcast the result back to the
1054 // type of %gep.
Eli Benderskya108a652014-05-01 18:38:36 +00001055 //
Jingyue Wubbb6e4a2014-05-23 18:39:40 +00001056 // %gep2 ; clone of %gep
1057 // %0 = bitcast %gep2 to i8*
1058 // %uglygep = gep %0, <offset>
1059 // %new.gep = bitcast %uglygep to <type of %gep>
1060 // ... %new.gep ...
Eli Benderskya108a652014-05-01 18:38:36 +00001061 Instruction *NewGEP = GEP->clone();
1062 NewGEP->insertBefore(GEP);
Eli Benderskya108a652014-05-01 18:38:36 +00001063
Jingyue Wufe72fce2014-10-25 18:34:03 +00001064 // Per ANSI C standard, signed / unsigned = unsigned and signed % unsigned =
1065 // unsigned.. Therefore, we cast ElementTypeSizeOfGEP to signed because it is
1066 // used with unsigned integers later.
1067 int64_t ElementTypeSizeOfGEP = static_cast<int64_t>(
Eduard Burtescu19eb0312016-01-19 17:28:00 +00001068 DL->getTypeAllocSize(GEP->getResultElementType()));
Jingyue Wuca321902015-05-14 23:53:19 +00001069 Type *IntPtrTy = DL->getIntPtrType(GEP->getType());
Jingyue Wubbb6e4a2014-05-23 18:39:40 +00001070 if (AccumulativeByteOffset % ElementTypeSizeOfGEP == 0) {
Hiroshi Inouef2096492018-06-14 05:41:49 +00001071 // Very likely. As long as %gep is naturally aligned, the byte offset we
Jingyue Wubbb6e4a2014-05-23 18:39:40 +00001072 // extracted should be a multiple of sizeof(*%gep).
Jingyue Wufe72fce2014-10-25 18:34:03 +00001073 int64_t Index = AccumulativeByteOffset / ElementTypeSizeOfGEP;
David Blaikie741c8f82015-03-14 01:53:18 +00001074 NewGEP = GetElementPtrInst::Create(GEP->getResultElementType(), NewGEP,
1075 ConstantInt::get(IntPtrTy, Index, true),
1076 GEP->getName(), GEP);
Marek Olsak8e7d1492018-01-31 20:17:52 +00001077 NewGEP->copyMetadata(*GEP);
Jingyue Wu13a80ea2015-08-13 18:48:49 +00001078 // Inherit the inbounds attribute of the original GEP.
1079 cast<GetElementPtrInst>(NewGEP)->setIsInBounds(GEPWasInBounds);
Jingyue Wubbb6e4a2014-05-23 18:39:40 +00001080 } else {
1081 // Unlikely but possible. For example,
1082 // #pragma pack(1)
1083 // struct S {
1084 // int a[3];
1085 // int64 b[8];
1086 // };
1087 // #pragma pack()
1088 //
1089 // Suppose the gep before extraction is &s[i + 1].b[j + 3]. After
1090 // extraction, it becomes &s[i].b[j] and AccumulativeByteOffset is
1091 // sizeof(S) + 3 * sizeof(int64) = 100, which is not a multiple of
1092 // sizeof(int64).
1093 //
1094 // Emit an uglygep in this case.
1095 Type *I8PtrTy = Type::getInt8PtrTy(GEP->getContext(),
1096 GEP->getPointerAddressSpace());
1097 NewGEP = new BitCastInst(NewGEP, I8PtrTy, "", GEP);
1098 NewGEP = GetElementPtrInst::Create(
David Blaikie741c8f82015-03-14 01:53:18 +00001099 Type::getInt8Ty(GEP->getContext()), NewGEP,
1100 ConstantInt::get(IntPtrTy, AccumulativeByteOffset, true), "uglygep",
1101 GEP);
Marek Olsak8e7d1492018-01-31 20:17:52 +00001102 NewGEP->copyMetadata(*GEP);
Jingyue Wu13a80ea2015-08-13 18:48:49 +00001103 // Inherit the inbounds attribute of the original GEP.
1104 cast<GetElementPtrInst>(NewGEP)->setIsInBounds(GEPWasInBounds);
Jingyue Wubbb6e4a2014-05-23 18:39:40 +00001105 if (GEP->getType() != I8PtrTy)
1106 NewGEP = new BitCastInst(NewGEP, GEP->getType(), GEP->getName(), GEP);
1107 }
1108
1109 GEP->replaceAllUsesWith(NewGEP);
Eli Benderskya108a652014-05-01 18:38:36 +00001110 GEP->eraseFromParent();
1111
1112 return true;
1113}
1114
1115bool SeparateConstOffsetFromGEP::runOnFunction(Function &F) {
Andrew Kayloraa641a52016-04-22 22:06:11 +00001116 if (skipFunction(F))
Jingyue Wu6c26bb62015-02-01 02:34:41 +00001117 return false;
1118
Eli Benderskya108a652014-05-01 18:38:36 +00001119 if (DisableSeparateConstOffsetFromGEP)
1120 return false;
1121
Jingyue Wuca321902015-05-14 23:53:19 +00001122 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Chandler Carruth2f1fd162015-08-17 02:08:17 +00001123 SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE();
Lawrence Hucac0b892015-09-23 19:25:30 +00001124 LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
1125 TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
Eli Benderskya108a652014-05-01 18:38:36 +00001126 bool Changed = false;
Benjamin Kramer135f7352016-06-26 12:28:59 +00001127 for (BasicBlock &B : F) {
1128 for (BasicBlock::iterator I = B.begin(), IE = B.end(); I != IE;)
Lawrence Hucac0b892015-09-23 19:25:30 +00001129 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I++))
Eli Benderskya108a652014-05-01 18:38:36 +00001130 Changed |= splitGEP(GEP);
Lawrence Hucac0b892015-09-23 19:25:30 +00001131 // No need to split GEP ConstantExprs because all its indices are constant
1132 // already.
Eli Benderskya108a652014-05-01 18:38:36 +00001133 }
Jingyue Wuf763c3f2015-04-21 19:53:18 +00001134
Jingyue Wu1238f342015-08-14 02:02:05 +00001135 Changed |= reuniteExts(F);
1136
Jingyue Wuf763c3f2015-04-21 19:53:18 +00001137 if (VerifyNoDeadCode)
1138 verifyNoDeadCode(F);
1139
Eli Benderskya108a652014-05-01 18:38:36 +00001140 return Changed;
1141}
Jingyue Wuf763c3f2015-04-21 19:53:18 +00001142
Jingyue Wu1238f342015-08-14 02:02:05 +00001143Instruction *SeparateConstOffsetFromGEP::findClosestMatchingDominator(
1144 const SCEV *Key, Instruction *Dominatee) {
1145 auto Pos = DominatingExprs.find(Key);
1146 if (Pos == DominatingExprs.end())
1147 return nullptr;
1148
1149 auto &Candidates = Pos->second;
1150 // Because we process the basic blocks in pre-order of the dominator tree, a
1151 // candidate that doesn't dominate the current instruction won't dominate any
1152 // future instruction either. Therefore, we pop it out of the stack. This
1153 // optimization makes the algorithm O(n).
1154 while (!Candidates.empty()) {
1155 Instruction *Candidate = Candidates.back();
1156 if (DT->dominates(Candidate, Dominatee))
1157 return Candidate;
1158 Candidates.pop_back();
1159 }
1160 return nullptr;
1161}
1162
1163bool SeparateConstOffsetFromGEP::reuniteExts(Instruction *I) {
1164 if (!SE->isSCEVable(I->getType()))
1165 return false;
1166
1167 // Dom: LHS+RHS
1168 // I: sext(LHS)+sext(RHS)
1169 // If Dom can't sign overflow and Dom dominates I, optimize I to sext(Dom).
1170 // TODO: handle zext
1171 Value *LHS = nullptr, *RHS = nullptr;
1172 if (match(I, m_Add(m_SExt(m_Value(LHS)), m_SExt(m_Value(RHS)))) ||
1173 match(I, m_Sub(m_SExt(m_Value(LHS)), m_SExt(m_Value(RHS))))) {
1174 if (LHS->getType() == RHS->getType()) {
1175 const SCEV *Key =
1176 SE->getAddExpr(SE->getUnknown(LHS), SE->getUnknown(RHS));
1177 if (auto *Dom = findClosestMatchingDominator(Key, I)) {
1178 Instruction *NewSExt = new SExtInst(Dom, I->getType(), "", I);
1179 NewSExt->takeName(I);
1180 I->replaceAllUsesWith(NewSExt);
1181 RecursivelyDeleteTriviallyDeadInstructions(I);
1182 return true;
1183 }
1184 }
1185 }
1186
1187 // Add I to DominatingExprs if it's an add/sub that can't sign overflow.
1188 if (match(I, m_NSWAdd(m_Value(LHS), m_Value(RHS))) ||
1189 match(I, m_NSWSub(m_Value(LHS), m_Value(RHS)))) {
Sanjoy Das08989c72017-04-30 19:41:19 +00001190 if (programUndefinedIfFullPoison(I)) {
Jingyue Wu1238f342015-08-14 02:02:05 +00001191 const SCEV *Key =
1192 SE->getAddExpr(SE->getUnknown(LHS), SE->getUnknown(RHS));
1193 DominatingExprs[Key].push_back(I);
1194 }
1195 }
1196 return false;
1197}
1198
1199bool SeparateConstOffsetFromGEP::reuniteExts(Function &F) {
1200 bool Changed = false;
1201 DominatingExprs.clear();
Daniel Berlin11da66f2016-08-19 22:18:38 +00001202 for (const auto Node : depth_first(DT)) {
1203 BasicBlock *BB = Node->getBlock();
1204 for (auto I = BB->begin(); I != BB->end(); ) {
1205 Instruction *Cur = &*I++;
1206 Changed |= reuniteExts(Cur);
1207 }
1208 }
Jingyue Wu1238f342015-08-14 02:02:05 +00001209 return Changed;
1210}
1211
Jingyue Wuf763c3f2015-04-21 19:53:18 +00001212void SeparateConstOffsetFromGEP::verifyNoDeadCode(Function &F) {
Benjamin Kramer135f7352016-06-26 12:28:59 +00001213 for (BasicBlock &B : F) {
1214 for (Instruction &I : B) {
Jingyue Wuf763c3f2015-04-21 19:53:18 +00001215 if (isInstructionTriviallyDead(&I)) {
1216 std::string ErrMessage;
1217 raw_string_ostream RSO(ErrMessage);
1218 RSO << "Dead instruction detected!\n" << I << "\n";
1219 llvm_unreachable(RSO.str().c_str());
1220 }
1221 }
1222 }
1223}
Lawrence Hucac0b892015-09-23 19:25:30 +00001224
1225bool SeparateConstOffsetFromGEP::isLegalToSwapOperand(
1226 GetElementPtrInst *FirstGEP, GetElementPtrInst *SecondGEP, Loop *CurLoop) {
1227 if (!FirstGEP || !FirstGEP->hasOneUse())
1228 return false;
1229
1230 if (!SecondGEP || FirstGEP->getParent() != SecondGEP->getParent())
1231 return false;
1232
1233 if (FirstGEP == SecondGEP)
1234 return false;
1235
1236 unsigned FirstNum = FirstGEP->getNumOperands();
1237 unsigned SecondNum = SecondGEP->getNumOperands();
1238 // Give up if the number of operands are not 2.
1239 if (FirstNum != SecondNum || FirstNum != 2)
1240 return false;
1241
1242 Value *FirstBase = FirstGEP->getOperand(0);
1243 Value *SecondBase = SecondGEP->getOperand(0);
1244 Value *FirstOffset = FirstGEP->getOperand(1);
1245 // Give up if the index of the first GEP is loop invariant.
1246 if (CurLoop->isLoopInvariant(FirstOffset))
1247 return false;
1248
1249 // Give up if base doesn't have same type.
1250 if (FirstBase->getType() != SecondBase->getType())
1251 return false;
1252
1253 Instruction *FirstOffsetDef = dyn_cast<Instruction>(FirstOffset);
1254
1255 // Check if the second operand of first GEP has constant coefficient.
1256 // For an example, for the following code, we won't gain anything by
1257 // hoisting the second GEP out because the second GEP can be folded away.
1258 // %scevgep.sum.ur159 = add i64 %idxprom48.ur, 256
1259 // %67 = shl i64 %scevgep.sum.ur159, 2
1260 // %uglygep160 = getelementptr i8* %65, i64 %67
1261 // %uglygep161 = getelementptr i8* %uglygep160, i64 -1024
1262
1263 // Skip constant shift instruction which may be generated by Splitting GEPs.
1264 if (FirstOffsetDef && FirstOffsetDef->isShift() &&
Craig Topper66059c92015-11-18 07:07:59 +00001265 isa<ConstantInt>(FirstOffsetDef->getOperand(1)))
Lawrence Hucac0b892015-09-23 19:25:30 +00001266 FirstOffsetDef = dyn_cast<Instruction>(FirstOffsetDef->getOperand(0));
1267
1268 // Give up if FirstOffsetDef is an Add or Sub with constant.
1269 // Because it may not profitable at all due to constant folding.
1270 if (FirstOffsetDef)
1271 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(FirstOffsetDef)) {
1272 unsigned opc = BO->getOpcode();
1273 if ((opc == Instruction::Add || opc == Instruction::Sub) &&
Craig Topper66059c92015-11-18 07:07:59 +00001274 (isa<ConstantInt>(BO->getOperand(0)) ||
1275 isa<ConstantInt>(BO->getOperand(1))))
Lawrence Hucac0b892015-09-23 19:25:30 +00001276 return false;
1277 }
1278 return true;
1279}
1280
1281bool SeparateConstOffsetFromGEP::hasMoreThanOneUseInLoop(Value *V, Loop *L) {
1282 int UsesInLoop = 0;
1283 for (User *U : V->users()) {
1284 if (Instruction *User = dyn_cast<Instruction>(U))
1285 if (L->contains(User))
1286 if (++UsesInLoop > 1)
1287 return true;
1288 }
1289 return false;
1290}
1291
1292void SeparateConstOffsetFromGEP::swapGEPOperand(GetElementPtrInst *First,
1293 GetElementPtrInst *Second) {
1294 Value *Offset1 = First->getOperand(1);
1295 Value *Offset2 = Second->getOperand(1);
1296 First->setOperand(1, Offset2);
1297 Second->setOperand(1, Offset1);
1298
1299 // We changed p+o+c to p+c+o, p+c may not be inbound anymore.
1300 const DataLayout &DAL = First->getModule()->getDataLayout();
Elena Demikhovsky945b7e52018-02-14 06:58:08 +00001301 APInt Offset(DAL.getIndexSizeInBits(
Lawrence Hucac0b892015-09-23 19:25:30 +00001302 cast<PointerType>(First->getType())->getAddressSpace()),
1303 0);
1304 Value *NewBase =
1305 First->stripAndAccumulateInBoundsConstantOffsets(DAL, Offset);
1306 uint64_t ObjectSize;
1307 if (!getObjectSize(NewBase, ObjectSize, DAL, TLI) ||
1308 Offset.ugt(ObjectSize)) {
1309 First->setIsInBounds(false);
1310 Second->setIsInBounds(false);
1311 } else
1312 First->setIsInBounds(true);
1313}