blob: 82d186250df206906972d1d869ce869f7d1a7b5b [file] [log] [blame]
Clement Courbet65130e22017-09-01 10:56:34 +00001//===- MergeICmps.cpp - Optimize chains of integer comparisons ------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Clement Courbet65130e22017-09-01 10:56:34 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This pass turns chains of integer comparisons into memcmp (the memcmp is
10// later typically inlined as a chain of efficient hardware comparisons). This
11// typically benefits c++ member or nonmember operator==().
12//
Clement Courbetcc004df2019-02-15 12:58:06 +000013// The basic idea is to replace a longer chain of integer comparisons loaded
14// from contiguous memory locations into a shorter chain of larger integer
Clement Courbet65130e22017-09-01 10:56:34 +000015// comparisons. Benefits are double:
16// - There are less jumps, and therefore less opportunities for mispredictions
17// and I-cache misses.
18// - Code size is smaller, both because jumps are removed and because the
19// encoding of a 2*n byte compare is smaller than that of two n-byte
20// compares.
Clement Courbetcc004df2019-02-15 12:58:06 +000021//
22// Example:
23//
24// struct S {
25// int a;
26// char b;
27// char c;
28// uint16_t d;
29// bool operator==(const S& o) const {
30// return a == o.a && b == o.b && c == o.c && d == o.d;
31// }
32// };
33//
34// Is optimized as :
35//
36// bool S::operator==(const S& o) const {
37// return memcmp(this, &o, 8) == 0;
38// }
39//
40// Which will later be expanded (ExpandMemCmp) as a single 8-bytes icmp.
41//
Clement Courbet65130e22017-09-01 10:56:34 +000042//===----------------------------------------------------------------------===//
43
Eugene Zelenko5c2aece2017-10-26 01:25:14 +000044#include "llvm/Analysis/Loads.h"
45#include "llvm/Analysis/TargetLibraryInfo.h"
46#include "llvm/Analysis/TargetTransformInfo.h"
47#include "llvm/IR/Function.h"
48#include "llvm/IR/IRBuilder.h"
Eugene Zelenko5c2aece2017-10-26 01:25:14 +000049#include "llvm/Pass.h"
50#include "llvm/Transforms/Scalar.h"
Clement Courbetc4fdd712019-05-16 06:18:02 +000051#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Eugene Zelenko5c2aece2017-10-26 01:25:14 +000052#include "llvm/Transforms/Utils/BuildLibCalls.h"
Clement Courbetf7e84a22019-02-15 14:17:17 +000053#include <algorithm>
54#include <numeric>
55#include <utility>
56#include <vector>
Clement Courbet65130e22017-09-01 10:56:34 +000057
58using namespace llvm;
59
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000060namespace {
61
Eugene Zelenko5c2aece2017-10-26 01:25:14 +000062#define DEBUG_TYPE "mergeicmps"
63
Christy Leee9437482018-09-24 20:47:12 +000064// Returns true if the instruction is a simple load or a simple store
65static bool isSimpleLoadOrStore(const Instruction *I) {
66 if (const LoadInst *LI = dyn_cast<LoadInst>(I))
67 return LI->isSimple();
68 if (const StoreInst *SI = dyn_cast<StoreInst>(I))
69 return SI->isSimple();
70 return false;
71}
72
Clement Courbetcc004df2019-02-15 12:58:06 +000073// A BCE atom "Binary Compare Expression Atom" represents an integer load
74// that is a constant offset from a base value, e.g. `a` or `o.c` in the example
75// at the top.
Clement Courbet65130e22017-09-01 10:56:34 +000076struct BCEAtom {
Clement Courbetf7e84a22019-02-15 14:17:17 +000077 BCEAtom() = default;
78 BCEAtom(GetElementPtrInst *GEP, LoadInst *LoadI, int BaseId, APInt Offset)
79 : GEP(GEP), LoadI(LoadI), BaseId(BaseId), Offset(Offset) {}
Clement Courbetbc0c4452017-09-01 11:51:23 +000080
Clement Courbetf7e84a22019-02-15 14:17:17 +000081 // We want to order BCEAtoms by (Base, Offset). However we cannot use
82 // the pointer values for Base because these are non-deterministic.
83 // To make sure that the sort order is stable, we first assign to each atom
84 // base value an index based on its order of appearance in the chain of
85 // comparisons. We call this index `BaseOrdering`. For example, for:
86 // b[3] == c[2] && a[1] == d[1] && b[4] == c[3]
87 // | block 1 | | block 2 | | block 3 |
88 // b gets assigned index 0 and a index 1, because b appears as LHS in block 1,
89 // which is before block 2.
90 // We then sort by (BaseOrdering[LHS.Base()], LHS.Offset), which is stable.
Clement Courbet65130e22017-09-01 10:56:34 +000091 bool operator<(const BCEAtom &O) const {
Clement Courbetf7e84a22019-02-15 14:17:17 +000092 return BaseId != O.BaseId ? BaseId < O.BaseId : Offset.slt(O.Offset);
Clement Courbet65130e22017-09-01 10:56:34 +000093 }
94
Clement Courbetf7e84a22019-02-15 14:17:17 +000095 GetElementPtrInst *GEP = nullptr;
96 LoadInst *LoadI = nullptr;
97 unsigned BaseId = 0;
Clement Courbet65130e22017-09-01 10:56:34 +000098 APInt Offset;
99};
100
Clement Courbetf7e84a22019-02-15 14:17:17 +0000101// A class that assigns increasing ids to values in the order in which they are
102// seen. See comment in `BCEAtom::operator<()``.
103class BaseIdentifier {
104public:
105 // Returns the id for value `Base`, after assigning one if `Base` has not been
106 // seen before.
107 int getBaseId(const Value *Base) {
108 assert(Base && "invalid base");
109 const auto Insertion = BaseToIndex.try_emplace(Base, Order);
110 if (Insertion.second)
111 ++Order;
112 return Insertion.first->second;
113 }
114
115private:
116 unsigned Order = 1;
117 DenseMap<const Value*, int> BaseToIndex;
118};
119
Clement Courbet65130e22017-09-01 10:56:34 +0000120// If this value is a load from a constant offset w.r.t. a base address, and
Xin Tong256869d2018-02-28 12:09:53 +0000121// there are no other users of the load or address, returns the base address and
Clement Courbet65130e22017-09-01 10:56:34 +0000122// the offset.
Clement Courbetf7e84a22019-02-15 14:17:17 +0000123BCEAtom visitICmpLoadOperand(Value *const Val, BaseIdentifier &BaseId) {
124 auto *const LoadI = dyn_cast<LoadInst>(Val);
125 if (!LoadI)
126 return {};
127 LLVM_DEBUG(dbgs() << "load\n");
128 if (LoadI->isUsedOutsideOfBlock(LoadI->getParent())) {
129 LLVM_DEBUG(dbgs() << "used outside of block\n");
130 return {};
Clement Courbet65130e22017-09-01 10:56:34 +0000131 }
Clement Courbetf7e84a22019-02-15 14:17:17 +0000132 // Do not optimize atomic loads to non-atomic memcmp
133 if (!LoadI->isSimple()) {
134 LLVM_DEBUG(dbgs() << "volatile or atomic\n");
135 return {};
136 }
137 Value *const Addr = LoadI->getOperand(0);
138 auto *const GEP = dyn_cast<GetElementPtrInst>(Addr);
139 if (!GEP)
140 return {};
141 LLVM_DEBUG(dbgs() << "GEP\n");
142 if (GEP->isUsedOutsideOfBlock(LoadI->getParent())) {
143 LLVM_DEBUG(dbgs() << "used outside of block\n");
144 return {};
145 }
146 const auto &DL = GEP->getModule()->getDataLayout();
147 if (!isDereferenceablePointer(GEP, DL)) {
148 LLVM_DEBUG(dbgs() << "not dereferenceable\n");
149 // We need to make sure that we can do comparison in any order, so we
150 // require memory to be unconditionnally dereferencable.
151 return {};
152 }
153 APInt Offset = APInt(DL.getPointerTypeSizeInBits(GEP->getType()), 0);
154 if (!GEP->accumulateConstantOffset(DL, Offset))
155 return {};
156 return BCEAtom(GEP, LoadI, BaseId.getBaseId(GEP->getPointerOperand()),
157 Offset);
Clement Courbet65130e22017-09-01 10:56:34 +0000158}
159
Clement Courbetcc004df2019-02-15 12:58:06 +0000160// A basic block with a comparison between two BCE atoms, e.g. `a == o.a` in the
161// example at the top.
Xin Tong0efadbb2018-04-09 13:14:06 +0000162// The block might do extra work besides the atom comparison, in which case
163// doesOtherWork() returns true. Under some conditions, the block can be
164// split into the atom comparison part and the "other work" part
165// (see canSplit()).
Clement Courbet65130e22017-09-01 10:56:34 +0000166// Note: the terminology is misleading: the comparison is symmetric, so there
Clement Courbete2e8a5c2017-10-10 08:00:45 +0000167// is no real {l/r}hs. What we want though is to have the same base on the
168// left (resp. right), so that we can detect consecutive loads. To ensure this
169// we put the smallest atom on the left.
Clement Courbet65130e22017-09-01 10:56:34 +0000170class BCECmpBlock {
Eugene Zelenko5c2aece2017-10-26 01:25:14 +0000171 public:
172 BCECmpBlock() {}
Clement Courbet65130e22017-09-01 10:56:34 +0000173
174 BCECmpBlock(BCEAtom L, BCEAtom R, int SizeBits)
175 : Lhs_(L), Rhs_(R), SizeBits_(SizeBits) {
Clement Courbet98eaa882017-10-04 15:13:52 +0000176 if (Rhs_ < Lhs_) std::swap(Rhs_, Lhs_);
Clement Courbet65130e22017-09-01 10:56:34 +0000177 }
178
Clement Courbetf7e84a22019-02-15 14:17:17 +0000179 bool IsValid() const { return Lhs_.BaseId != 0 && Rhs_.BaseId != 0; }
Clement Courbet65130e22017-09-01 10:56:34 +0000180
Hiroshi Inoued24ddcd2018-01-19 10:55:29 +0000181 // Assert the block is consistent: If valid, it should also have
Clement Courbet65130e22017-09-01 10:56:34 +0000182 // non-null members besides Lhs_ and Rhs_.
183 void AssertConsistent() const {
184 if (IsValid()) {
185 assert(BB);
186 assert(CmpI);
187 assert(BranchI);
188 }
189 }
190
191 const BCEAtom &Lhs() const { return Lhs_; }
192 const BCEAtom &Rhs() const { return Rhs_; }
193 int SizeBits() const { return SizeBits_; }
194
195 // Returns true if the block does other works besides comparison.
196 bool doesOtherWork() const;
197
Xin Tong0efadbb2018-04-09 13:14:06 +0000198 // Returns true if the non-BCE-cmp instructions can be separated from BCE-cmp
199 // instructions in the block.
Christy Leee9437482018-09-24 20:47:12 +0000200 bool canSplit(AliasAnalysis *AA) const;
Xin Tong0efadbb2018-04-09 13:14:06 +0000201
202 // Return true if this all the relevant instructions in the BCE-cmp-block can
203 // be sunk below this instruction. By doing this, we know we can separate the
204 // BCE-cmp-block instructions from the non-BCE-cmp-block instructions in the
205 // block.
Christy Leee9437482018-09-24 20:47:12 +0000206 bool canSinkBCECmpInst(const Instruction *, DenseSet<Instruction *> &,
207 AliasAnalysis *AA) const;
Xin Tong0efadbb2018-04-09 13:14:06 +0000208
209 // We can separate the BCE-cmp-block instructions and the non-BCE-cmp-block
210 // instructions. Split the old block and move all non-BCE-cmp-insts into the
211 // new parent block.
Christy Leee9437482018-09-24 20:47:12 +0000212 void split(BasicBlock *NewParent, AliasAnalysis *AA) const;
Xin Tong0efadbb2018-04-09 13:14:06 +0000213
Clement Courbet65130e22017-09-01 10:56:34 +0000214 // The basic block where this comparison happens.
215 BasicBlock *BB = nullptr;
216 // The ICMP for this comparison.
217 ICmpInst *CmpI = nullptr;
218 // The terminating branch.
219 BranchInst *BranchI = nullptr;
Xin Tong0efadbb2018-04-09 13:14:06 +0000220 // The block requires splitting.
221 bool RequireSplit = false;
Clement Courbet65130e22017-09-01 10:56:34 +0000222
Xin Tong0efadbb2018-04-09 13:14:06 +0000223private:
Clement Courbet65130e22017-09-01 10:56:34 +0000224 BCEAtom Lhs_;
225 BCEAtom Rhs_;
226 int SizeBits_ = 0;
227};
228
Xin Tong0efadbb2018-04-09 13:14:06 +0000229bool BCECmpBlock::canSinkBCECmpInst(const Instruction *Inst,
Christy Leee9437482018-09-24 20:47:12 +0000230 DenseSet<Instruction *> &BlockInsts,
231 AliasAnalysis *AA) const {
Xin Tong0efadbb2018-04-09 13:14:06 +0000232 // If this instruction has side effects and its in middle of the BCE cmp block
233 // instructions, then bail for now.
Christy Leee9437482018-09-24 20:47:12 +0000234 if (Inst->mayHaveSideEffects()) {
235 // Bail if this is not a simple load or store
236 if (!isSimpleLoadOrStore(Inst))
237 return false;
238 // Disallow stores that might alias the BCE operands
239 MemoryLocation LLoc = MemoryLocation::get(Lhs_.LoadI);
240 MemoryLocation RLoc = MemoryLocation::get(Rhs_.LoadI);
241 if (isModSet(AA->getModRefInfo(Inst, LLoc)) ||
242 isModSet(AA->getModRefInfo(Inst, RLoc)))
243 return false;
244 }
Xin Tong0efadbb2018-04-09 13:14:06 +0000245 // Make sure this instruction does not use any of the BCE cmp block
246 // instructions as operand.
247 for (auto BI : BlockInsts) {
248 if (is_contained(Inst->operands(), BI))
249 return false;
250 }
251 return true;
252}
253
Christy Leee9437482018-09-24 20:47:12 +0000254void BCECmpBlock::split(BasicBlock *NewParent, AliasAnalysis *AA) const {
Xin Tong0efadbb2018-04-09 13:14:06 +0000255 DenseSet<Instruction *> BlockInsts(
256 {Lhs_.GEP, Rhs_.GEP, Lhs_.LoadI, Rhs_.LoadI, CmpI, BranchI});
257 llvm::SmallVector<Instruction *, 4> OtherInsts;
258 for (Instruction &Inst : *BB) {
259 if (BlockInsts.count(&Inst))
260 continue;
Christy Leee9437482018-09-24 20:47:12 +0000261 assert(canSinkBCECmpInst(&Inst, BlockInsts, AA) &&
262 "Split unsplittable block");
Xin Tong0efadbb2018-04-09 13:14:06 +0000263 // This is a non-BCE-cmp-block instruction. And it can be separated
264 // from the BCE-cmp-block instruction.
265 OtherInsts.push_back(&Inst);
266 }
267
268 // Do the actual spliting.
269 for (Instruction *Inst : reverse(OtherInsts)) {
270 Inst->moveBefore(&*NewParent->begin());
271 }
272}
273
Christy Leee9437482018-09-24 20:47:12 +0000274bool BCECmpBlock::canSplit(AliasAnalysis *AA) const {
Xin Tong0efadbb2018-04-09 13:14:06 +0000275 DenseSet<Instruction *> BlockInsts(
276 {Lhs_.GEP, Rhs_.GEP, Lhs_.LoadI, Rhs_.LoadI, CmpI, BranchI});
277 for (Instruction &Inst : *BB) {
278 if (!BlockInsts.count(&Inst)) {
Christy Leee9437482018-09-24 20:47:12 +0000279 if (!canSinkBCECmpInst(&Inst, BlockInsts, AA))
Xin Tong0efadbb2018-04-09 13:14:06 +0000280 return false;
281 }
282 }
283 return true;
284}
285
Clement Courbet65130e22017-09-01 10:56:34 +0000286bool BCECmpBlock::doesOtherWork() const {
287 AssertConsistent();
Xin Tong8fd561f2018-03-06 02:24:02 +0000288 // All the instructions we care about in the BCE cmp block.
289 DenseSet<Instruction *> BlockInsts(
290 {Lhs_.GEP, Rhs_.GEP, Lhs_.LoadI, Rhs_.LoadI, CmpI, BranchI});
Clement Courbet65130e22017-09-01 10:56:34 +0000291 // TODO(courbet): Can we allow some other things ? This is very conservative.
Hiroshi Inoueae179002018-04-14 08:59:00 +0000292 // We might be able to get away with anything does not have any side
Clement Courbet65130e22017-09-01 10:56:34 +0000293 // effects outside of the basic block.
294 // Note: The GEPs and/or loads are not necessarily in the same block.
295 for (const Instruction &Inst : *BB) {
Xin Tong8fd561f2018-03-06 02:24:02 +0000296 if (!BlockInsts.count(&Inst))
Clement Courbet65130e22017-09-01 10:56:34 +0000297 return true;
Clement Courbet65130e22017-09-01 10:56:34 +0000298 }
299 return false;
300}
301
302// Visit the given comparison. If this is a comparison between two valid
303// BCE atoms, returns the comparison.
Eugene Zelenko5c2aece2017-10-26 01:25:14 +0000304BCECmpBlock visitICmp(const ICmpInst *const CmpI,
Clement Courbetf7e84a22019-02-15 14:17:17 +0000305 const ICmpInst::Predicate ExpectedPredicate,
306 BaseIdentifier &BaseId) {
Clement Courbet9f0b3172018-03-13 07:05:55 +0000307 // The comparison can only be used once:
308 // - For intermediate blocks, as a branch condition.
309 // - For the final block, as an incoming value for the Phi.
310 // If there are any other uses of the comparison, we cannot merge it with
311 // other comparisons as we would create an orphan use of the value.
312 if (!CmpI->hasOneUse()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000313 LLVM_DEBUG(dbgs() << "cmp has several uses\n");
Clement Courbet9f0b3172018-03-13 07:05:55 +0000314 return {};
315 }
Clement Courbetf7e84a22019-02-15 14:17:17 +0000316 if (CmpI->getPredicate() != ExpectedPredicate)
317 return {};
318 LLVM_DEBUG(dbgs() << "cmp "
319 << (ExpectedPredicate == ICmpInst::ICMP_EQ ? "eq" : "ne")
320 << "\n");
321 auto Lhs = visitICmpLoadOperand(CmpI->getOperand(0), BaseId);
322 if (!Lhs.BaseId)
323 return {};
324 auto Rhs = visitICmpLoadOperand(CmpI->getOperand(1), BaseId);
325 if (!Rhs.BaseId)
326 return {};
327 const auto &DL = CmpI->getModule()->getDataLayout();
328 return BCECmpBlock(std::move(Lhs), std::move(Rhs),
329 DL.getTypeSizeInBits(CmpI->getOperand(0)->getType()));
Clement Courbet65130e22017-09-01 10:56:34 +0000330}
331
332// Visit the given comparison block. If this is a comparison between two valid
333// BCE atoms, returns the comparison.
Eugene Zelenko5c2aece2017-10-26 01:25:14 +0000334BCECmpBlock visitCmpBlock(Value *const Val, BasicBlock *const Block,
Clement Courbetf7e84a22019-02-15 14:17:17 +0000335 const BasicBlock *const PhiBlock,
336 BaseIdentifier &BaseId) {
Clement Courbet98eaa882017-10-04 15:13:52 +0000337 if (Block->empty()) return {};
Clement Courbet65130e22017-09-01 10:56:34 +0000338 auto *const BranchI = dyn_cast<BranchInst>(Block->getTerminator());
Clement Courbet98eaa882017-10-04 15:13:52 +0000339 if (!BranchI) return {};
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000340 LLVM_DEBUG(dbgs() << "branch\n");
Clement Courbet65130e22017-09-01 10:56:34 +0000341 if (BranchI->isUnconditional()) {
342 // In this case, we expect an incoming value which is the result of the
343 // comparison. This is the last link in the chain of comparisons (note
344 // that this does not mean that this is the last incoming value, blocks
345 // can be reordered).
346 auto *const CmpI = dyn_cast<ICmpInst>(Val);
Clement Courbet98eaa882017-10-04 15:13:52 +0000347 if (!CmpI) return {};
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000348 LLVM_DEBUG(dbgs() << "icmp\n");
Clement Courbetf7e84a22019-02-15 14:17:17 +0000349 auto Result = visitICmp(CmpI, ICmpInst::ICMP_EQ, BaseId);
Clement Courbet65130e22017-09-01 10:56:34 +0000350 Result.CmpI = CmpI;
351 Result.BranchI = BranchI;
352 return Result;
353 } else {
354 // In this case, we expect a constant incoming value (the comparison is
355 // chained).
356 const auto *const Const = dyn_cast<ConstantInt>(Val);
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000357 LLVM_DEBUG(dbgs() << "const\n");
Clement Courbet98eaa882017-10-04 15:13:52 +0000358 if (!Const->isZero()) return {};
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000359 LLVM_DEBUG(dbgs() << "false\n");
Clement Courbet65130e22017-09-01 10:56:34 +0000360 auto *const CmpI = dyn_cast<ICmpInst>(BranchI->getCondition());
Clement Courbet98eaa882017-10-04 15:13:52 +0000361 if (!CmpI) return {};
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000362 LLVM_DEBUG(dbgs() << "icmp\n");
Clement Courbet65130e22017-09-01 10:56:34 +0000363 assert(BranchI->getNumSuccessors() == 2 && "expecting a cond branch");
364 BasicBlock *const FalseBlock = BranchI->getSuccessor(1);
365 auto Result = visitICmp(
Clement Courbetf7e84a22019-02-15 14:17:17 +0000366 CmpI, FalseBlock == PhiBlock ? ICmpInst::ICMP_EQ : ICmpInst::ICMP_NE,
367 BaseId);
Clement Courbet65130e22017-09-01 10:56:34 +0000368 Result.CmpI = CmpI;
369 Result.BranchI = BranchI;
370 return Result;
371 }
372 return {};
373}
374
Xin Tong0efadbb2018-04-09 13:14:06 +0000375static inline void enqueueBlock(std::vector<BCECmpBlock> &Comparisons,
376 BCECmpBlock &Comparison) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000377 LLVM_DEBUG(dbgs() << "Block '" << Comparison.BB->getName()
378 << "': Found cmp of " << Comparison.SizeBits()
Clement Courbetf7e84a22019-02-15 14:17:17 +0000379 << " bits between " << Comparison.Lhs().BaseId << " + "
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000380 << Comparison.Lhs().Offset << " and "
Clement Courbetf7e84a22019-02-15 14:17:17 +0000381 << Comparison.Rhs().BaseId << " + "
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000382 << Comparison.Rhs().Offset << "\n");
383 LLVM_DEBUG(dbgs() << "\n");
Xin Tong0efadbb2018-04-09 13:14:06 +0000384 Comparisons.push_back(Comparison);
385}
386
Clement Courbet65130e22017-09-01 10:56:34 +0000387// A chain of comparisons.
388class BCECmpChain {
Eugene Zelenko5c2aece2017-10-26 01:25:14 +0000389 public:
Christy Leee9437482018-09-24 20:47:12 +0000390 BCECmpChain(const std::vector<BasicBlock *> &Blocks, PHINode &Phi,
391 AliasAnalysis *AA);
Clement Courbet65130e22017-09-01 10:56:34 +0000392
393 int size() const { return Comparisons_.size(); }
394
395#ifdef MERGEICMPS_DOT_ON
396 void dump() const;
397#endif // MERGEICMPS_DOT_ON
398
Christy Leee9437482018-09-24 20:47:12 +0000399 bool simplify(const TargetLibraryInfo *const TLI, AliasAnalysis *AA);
Clement Courbet65130e22017-09-01 10:56:34 +0000400
Eugene Zelenko5c2aece2017-10-26 01:25:14 +0000401 private:
Clement Courbet65130e22017-09-01 10:56:34 +0000402 static bool IsContiguous(const BCECmpBlock &First,
403 const BCECmpBlock &Second) {
Clement Courbetf7e84a22019-02-15 14:17:17 +0000404 return First.Lhs().BaseId == Second.Lhs().BaseId &&
405 First.Rhs().BaseId == Second.Rhs().BaseId &&
Clement Courbet65130e22017-09-01 10:56:34 +0000406 First.Lhs().Offset + First.SizeBits() / 8 == Second.Lhs().Offset &&
407 First.Rhs().Offset + First.SizeBits() / 8 == Second.Rhs().Offset;
408 }
409
Clement Courbet65130e22017-09-01 10:56:34 +0000410 PHINode &Phi_;
411 std::vector<BCECmpBlock> Comparisons_;
412 // The original entry block (before sorting);
413 BasicBlock *EntryBlock_;
414};
415
Christy Leee9437482018-09-24 20:47:12 +0000416BCECmpChain::BCECmpChain(const std::vector<BasicBlock *> &Blocks, PHINode &Phi,
417 AliasAnalysis *AA)
Clement Courbet65130e22017-09-01 10:56:34 +0000418 : Phi_(Phi) {
Clement Courbetc2109c82018-02-06 09:14:00 +0000419 assert(!Blocks.empty() && "a chain should have at least one block");
Clement Courbet65130e22017-09-01 10:56:34 +0000420 // Now look inside blocks to check for BCE comparisons.
421 std::vector<BCECmpBlock> Comparisons;
Clement Courbetf7e84a22019-02-15 14:17:17 +0000422 BaseIdentifier BaseId;
Clement Courbeta7a17462018-02-06 12:25:33 +0000423 for (size_t BlockIdx = 0; BlockIdx < Blocks.size(); ++BlockIdx) {
424 BasicBlock *const Block = Blocks[BlockIdx];
Clement Courbetc2109c82018-02-06 09:14:00 +0000425 assert(Block && "invalid block");
Clement Courbet65130e22017-09-01 10:56:34 +0000426 BCECmpBlock Comparison = visitCmpBlock(Phi.getIncomingValueForBlock(Block),
Clement Courbetf7e84a22019-02-15 14:17:17 +0000427 Block, Phi.getParent(), BaseId);
Clement Courbet65130e22017-09-01 10:56:34 +0000428 Comparison.BB = Block;
429 if (!Comparison.IsValid()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000430 LLVM_DEBUG(dbgs() << "chain with invalid BCECmpBlock, no merge.\n");
Clement Courbet65130e22017-09-01 10:56:34 +0000431 return;
432 }
433 if (Comparison.doesOtherWork()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000434 LLVM_DEBUG(dbgs() << "block '" << Comparison.BB->getName()
435 << "' does extra work besides compare\n");
Xin Tong8345c0e2018-03-05 13:54:47 +0000436 if (Comparisons.empty()) {
Xin Tong0efadbb2018-04-09 13:14:06 +0000437 // This is the initial block in the chain, in case this block does other
438 // work, we can try to split the block and move the irrelevant
439 // instructions to the predecessor.
440 //
441 // If this is not the initial block in the chain, splitting it wont
442 // work.
443 //
444 // As once split, there will still be instructions before the BCE cmp
445 // instructions that do other work in program order, i.e. within the
446 // chain before sorting. Unless we can abort the chain at this point
447 // and start anew.
448 //
Clement Courbetc4fdd712019-05-16 06:18:02 +0000449 // NOTE: we only handle blocks a with single predecessor for now.
Christy Leee9437482018-09-24 20:47:12 +0000450 if (Comparison.canSplit(AA)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000451 LLVM_DEBUG(dbgs()
452 << "Split initial block '" << Comparison.BB->getName()
453 << "' that does extra work besides compare\n");
Xin Tong0efadbb2018-04-09 13:14:06 +0000454 Comparison.RequireSplit = true;
455 enqueueBlock(Comparisons, Comparison);
456 } else {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000457 LLVM_DEBUG(dbgs()
458 << "ignoring initial block '" << Comparison.BB->getName()
459 << "' that does extra work besides compare\n");
Xin Tong0efadbb2018-04-09 13:14:06 +0000460 }
Clement Courbet65130e22017-09-01 10:56:34 +0000461 continue;
462 }
463 // TODO(courbet): Right now we abort the whole chain. We could be
464 // merging only the blocks that don't do other work and resume the
465 // chain from there. For example:
466 // if (a[0] == b[0]) { // bb1
467 // if (a[1] == b[1]) { // bb2
468 // some_value = 3; //bb3
469 // if (a[2] == b[2]) { //bb3
470 // do a ton of stuff //bb4
471 // }
472 // }
473 // }
474 //
475 // This is:
476 //
477 // bb1 --eq--> bb2 --eq--> bb3* -eq--> bb4 --+
478 // \ \ \ \
479 // ne ne ne \
480 // \ \ \ v
481 // +------------+-----------+----------> bb_phi
482 //
483 // We can only merge the first two comparisons, because bb3* does
484 // "other work" (setting some_value to 3).
485 // We could still merge bb1 and bb2 though.
486 return;
487 }
Xin Tong0efadbb2018-04-09 13:14:06 +0000488 enqueueBlock(Comparisons, Comparison);
Clement Courbet65130e22017-09-01 10:56:34 +0000489 }
Xin Tong8345c0e2018-03-05 13:54:47 +0000490
491 // It is possible we have no suitable comparison to merge.
492 if (Comparisons.empty()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000493 LLVM_DEBUG(dbgs() << "chain with no BCE basic blocks, no merge\n");
Xin Tong8345c0e2018-03-05 13:54:47 +0000494 return;
495 }
Clement Courbet65130e22017-09-01 10:56:34 +0000496 EntryBlock_ = Comparisons[0].BB;
497 Comparisons_ = std::move(Comparisons);
498#ifdef MERGEICMPS_DOT_ON
499 errs() << "BEFORE REORDERING:\n\n";
500 dump();
501#endif // MERGEICMPS_DOT_ON
502 // Reorder blocks by LHS. We can do that without changing the
503 // semantics because we are only accessing dereferencable memory.
Clement Courbetf7e84a22019-02-15 14:17:17 +0000504 llvm::sort(Comparisons_,
505 [](const BCECmpBlock &LhsBlock, const BCECmpBlock &RhsBlock) {
506 return LhsBlock.Lhs() < RhsBlock.Lhs();
507 });
Clement Courbet65130e22017-09-01 10:56:34 +0000508#ifdef MERGEICMPS_DOT_ON
509 errs() << "AFTER REORDERING:\n\n";
510 dump();
511#endif // MERGEICMPS_DOT_ON
512}
513
514#ifdef MERGEICMPS_DOT_ON
515void BCECmpChain::dump() const {
516 errs() << "digraph dag {\n";
517 errs() << " graph [bgcolor=transparent];\n";
518 errs() << " node [color=black,style=filled,fillcolor=lightyellow];\n";
519 errs() << " edge [color=black];\n";
520 for (size_t I = 0; I < Comparisons_.size(); ++I) {
521 const auto &Comparison = Comparisons_[I];
522 errs() << " \"" << I << "\" [label=\"%"
523 << Comparison.Lhs().Base()->getName() << " + "
524 << Comparison.Lhs().Offset << " == %"
525 << Comparison.Rhs().Base()->getName() << " + "
526 << Comparison.Rhs().Offset << " (" << (Comparison.SizeBits() / 8)
527 << " bytes)\"];\n";
528 const Value *const Val = Phi_.getIncomingValueForBlock(Comparison.BB);
Clement Courbet98eaa882017-10-04 15:13:52 +0000529 if (I > 0) errs() << " \"" << (I - 1) << "\" -> \"" << I << "\";\n";
Clement Courbet65130e22017-09-01 10:56:34 +0000530 errs() << " \"" << I << "\" -> \"Phi\" [label=\"" << *Val << "\"];\n";
531 }
532 errs() << " \"Phi\" [label=\"Phi\"];\n";
533 errs() << "}\n\n";
534}
535#endif // MERGEICMPS_DOT_ON
536
Clement Courbetc4fdd712019-05-16 06:18:02 +0000537namespace {
538
539// A class to compute the name of a set of merged basic blocks.
540// This is optimized for the common case of no block names.
541class MergedBlockName {
542 // Storage for the uncommon case of several named blocks.
543 SmallString<16> Scratch;
544
545public:
546 explicit MergedBlockName(ArrayRef<BCECmpBlock> Comparisons)
547 : Name(makeName(Comparisons)) {}
548 const StringRef Name;
549
550private:
551 StringRef makeName(ArrayRef<BCECmpBlock> Comparisons) {
552 assert(!Comparisons.empty() && "no basic block");
553 // Fast path: only one block, or no names at all.
554 if (Comparisons.size() == 1)
555 return Comparisons[0].BB->getName();
556 const int size = std::accumulate(Comparisons.begin(), Comparisons.end(), 0,
557 [](int i, const BCECmpBlock &Cmp) {
558 return i + Cmp.BB->getName().size();
559 });
560 if (size == 0)
561 return StringRef("", 0);
562
563 // Slow path: at least two blocks, at least one block with a name.
564 Scratch.clear();
565 // We'll have `size` bytes for name and `Comparisons.size() - 1` bytes for
566 // separators.
567 Scratch.reserve(size + Comparisons.size() - 1);
568 const auto append = [this](StringRef str) {
569 Scratch.append(str.begin(), str.end());
570 };
571 append(Comparisons[0].BB->getName());
572 for (int I = 1, E = Comparisons.size(); I < E; ++I) {
573 const BasicBlock *const BB = Comparisons[I].BB;
574 if (!BB->getName().empty()) {
575 append("+");
576 append(BB->getName());
Clement Courbeteaf44132019-05-15 14:21:59 +0000577 }
Clement Courbet157ae632019-05-15 13:04:24 +0000578 }
Clement Courbetc4fdd712019-05-16 06:18:02 +0000579 return StringRef(Scratch);
Clement Courbeteaf44132019-05-15 14:21:59 +0000580 }
Clement Courbetc4fdd712019-05-16 06:18:02 +0000581};
582} // namespace
Clement Courbet157ae632019-05-15 13:04:24 +0000583
Clement Courbetc4fdd712019-05-16 06:18:02 +0000584// Merges the given contiguous comparison blocks into one memcmp block.
585static BasicBlock *mergeComparisons(ArrayRef<BCECmpBlock> Comparisons,
586 BasicBlock *const NextCmpBlock,
587 PHINode &Phi,
588 const TargetLibraryInfo *const TLI,
589 AliasAnalysis *AA) {
590 assert(!Comparisons.empty() && "merging zero comparisons");
591 LLVMContext &Context = NextCmpBlock->getContext();
592 const BCECmpBlock &FirstCmp = Comparisons[0];
Clement Courbeteaf44132019-05-15 14:21:59 +0000593
Clement Courbetc4fdd712019-05-16 06:18:02 +0000594 // Create a new cmp block before next cmp block.
595 BasicBlock *const BB =
596 BasicBlock::Create(Context, MergedBlockName(Comparisons).Name,
597 NextCmpBlock->getParent(), NextCmpBlock);
598 IRBuilder<> Builder(BB);
599 // Add the GEPs from the first BCECmpBlock.
600 Value *const Lhs = Builder.Insert(FirstCmp.Lhs().GEP->clone());
601 Value *const Rhs = Builder.Insert(FirstCmp.Rhs().GEP->clone());
Clement Courbeteaf44132019-05-15 14:21:59 +0000602
Clement Courbetc4fdd712019-05-16 06:18:02 +0000603 Value *IsEqual = nullptr;
604 if (Comparisons.size() == 1) {
605 LLVM_DEBUG(dbgs() << "Only one comparison, updating branches\n");
606 Value *const LhsLoad =
607 Builder.CreateLoad(FirstCmp.Lhs().LoadI->getType(), Lhs);
608 Value *const RhsLoad =
609 Builder.CreateLoad(FirstCmp.Rhs().LoadI->getType(), Rhs);
610 // There are no blocks to merge, just do the comparison.
611 IsEqual = Builder.CreateICmpEQ(LhsLoad, RhsLoad);
612 } else {
613 LLVM_DEBUG(dbgs() << "Merging " << Comparisons.size() << " comparisons\n");
Clement Courbeteaf44132019-05-15 14:21:59 +0000614
Clement Courbeteaf44132019-05-15 14:21:59 +0000615 // If there is one block that requires splitting, we do it now, i.e.
616 // just before we know we will collapse the chain. The instructions
617 // can be executed before any of the instructions in the chain.
Clement Courbetc4fdd712019-05-16 06:18:02 +0000618 const auto ToSplit =
619 std::find_if(Comparisons.begin(), Comparisons.end(),
620 [](const BCECmpBlock &B) { return B.RequireSplit; });
621 if (ToSplit != Comparisons.end()) {
622 LLVM_DEBUG(dbgs() << "Splitting non_BCE work to header\n");
623 ToSplit->split(BB, AA);
624 }
Clement Courbeteaf44132019-05-15 14:21:59 +0000625
Clement Courbetc4fdd712019-05-16 06:18:02 +0000626 const unsigned TotalSizeBits = std::accumulate(
627 Comparisons.begin(), Comparisons.end(), 0u,
628 [](int Size, const BCECmpBlock &C) { return Size + C.SizeBits(); });
Clement Courbeteaf44132019-05-15 14:21:59 +0000629
Clement Courbetc4fdd712019-05-16 06:18:02 +0000630 // Create memcmp() == 0.
Clement Courbeteaf44132019-05-15 14:21:59 +0000631 const auto &DL = Phi.getModule()->getDataLayout();
632 Value *const MemCmpCall = emitMemCmp(
Clement Courbetc4fdd712019-05-16 06:18:02 +0000633 Lhs, Rhs,
634 ConstantInt::get(DL.getIntPtrType(Context), TotalSizeBits / 8), Builder,
635 DL, TLI);
636 IsEqual = Builder.CreateICmpEQ(
Clement Courbeteaf44132019-05-15 14:21:59 +0000637 MemCmpCall, ConstantInt::get(Type::getInt32Ty(Context), 0));
Clement Courbetc4fdd712019-05-16 06:18:02 +0000638 }
Clement Courbeteaf44132019-05-15 14:21:59 +0000639
Clement Courbetc4fdd712019-05-16 06:18:02 +0000640 BasicBlock *const PhiBB = Phi.getParent();
641 // Add a branch to the next basic block in the chain.
642 if (NextCmpBlock == PhiBB) {
643 // Continue to phi, passing it the comparison result.
644 Builder.CreateBr(Phi.getParent());
645 Phi.addIncoming(IsEqual, BB);
Clement Courbeteaf44132019-05-15 14:21:59 +0000646 } else {
Clement Courbetc4fdd712019-05-16 06:18:02 +0000647 // Continue to next block if equal, exit to phi else.
648 Builder.CreateCondBr(IsEqual, NextCmpBlock, PhiBB);
649 Phi.addIncoming(ConstantInt::getFalse(Context), BB);
650 }
651 return BB;
652}
653
654bool BCECmpChain::simplify(const TargetLibraryInfo *const TLI,
655 AliasAnalysis *AA) {
656 assert(Comparisons_.size() >= 2 && "simplifying trivial BCECmpChain");
657 // First pass to check if there is at least one merge. If not, we don't do
658 // anything and we keep analysis passes intact.
659 const auto AtLeastOneMerged = [this]() {
660 for (size_t I = 1; I < Comparisons_.size(); ++I) {
661 if (IsContiguous(Comparisons_[I - 1], Comparisons_[I]))
662 return true;
663 }
664 return false;
665 };
666 if (!AtLeastOneMerged())
667 return false;
668
669 // Effectively merge blocks. We go in the reverse direction from the phi block
670 // so that the next block is always available to branch to.
671 const auto mergeRange = [this, TLI, AA](int I, int Num, BasicBlock *Next) {
672 return mergeComparisons(makeArrayRef(Comparisons_).slice(I, Num), Next,
673 Phi_, TLI, AA);
674 };
675 int NumMerged = 1;
676 BasicBlock *NextCmpBlock = Phi_.getParent();
677 for (int I = static_cast<int>(Comparisons_.size()) - 2; I >= 0; --I) {
678 if (IsContiguous(Comparisons_[I], Comparisons_[I + 1])) {
679 ++NumMerged;
Clement Courbeteaf44132019-05-15 14:21:59 +0000680 } else {
Clement Courbetc4fdd712019-05-16 06:18:02 +0000681 NextCmpBlock = mergeRange(I + 1, NumMerged, NextCmpBlock);
682 NumMerged = 1;
Clement Courbeteaf44132019-05-15 14:21:59 +0000683 }
684 }
Clement Courbetc4fdd712019-05-16 06:18:02 +0000685 NextCmpBlock = mergeRange(0, NumMerged, NextCmpBlock);
686
687 // Replace the original cmp chain with the new cmp chain by pointing all
688 // predecessors of EntryBlock_ to NextCmpBlock instead. This makes all cmp
689 // blocks in the old chain unreachable.
690 for (BasicBlock *Pred : predecessors(EntryBlock_)) {
691 Pred->getTerminator()->replaceUsesOfWith(EntryBlock_, NextCmpBlock);
692 }
693 EntryBlock_ = nullptr;
694
695 // Delete merged blocks. This also removes incoming values in phi.
696 SmallVector<BasicBlock *, 16> DeadBlocks;
697 for (auto &Cmp : Comparisons_) {
698 DeadBlocks.push_back(Cmp.BB);
699 }
700 DeleteDeadBlocks(DeadBlocks);
701
702 Comparisons_.clear();
703 return true;
Clement Courbeteaf44132019-05-15 14:21:59 +0000704}
705
Eugene Zelenko5c2aece2017-10-26 01:25:14 +0000706std::vector<BasicBlock *> getOrderedBlocks(PHINode &Phi,
707 BasicBlock *const LastBlock,
708 int NumBlocks) {
Clement Courbet65130e22017-09-01 10:56:34 +0000709 // Walk up from the last block to find other blocks.
710 std::vector<BasicBlock *> Blocks(NumBlocks);
Clement Courbetc2109c82018-02-06 09:14:00 +0000711 assert(LastBlock && "invalid last block");
Clement Courbet65130e22017-09-01 10:56:34 +0000712 BasicBlock *CurBlock = LastBlock;
713 for (int BlockIndex = NumBlocks - 1; BlockIndex > 0; --BlockIndex) {
714 if (CurBlock->hasAddressTaken()) {
715 // Somebody is jumping to the block through an address, all bets are
716 // off.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000717 LLVM_DEBUG(dbgs() << "skip: block " << BlockIndex
718 << " has its address taken\n");
Clement Courbet65130e22017-09-01 10:56:34 +0000719 return {};
720 }
721 Blocks[BlockIndex] = CurBlock;
722 auto *SinglePredecessor = CurBlock->getSinglePredecessor();
723 if (!SinglePredecessor) {
724 // The block has two or more predecessors.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000725 LLVM_DEBUG(dbgs() << "skip: block " << BlockIndex
726 << " has two or more predecessors\n");
Clement Courbet65130e22017-09-01 10:56:34 +0000727 return {};
728 }
729 if (Phi.getBasicBlockIndex(SinglePredecessor) < 0) {
730 // The block does not link back to the phi.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000731 LLVM_DEBUG(dbgs() << "skip: block " << BlockIndex
732 << " does not link back to the phi\n");
Clement Courbet65130e22017-09-01 10:56:34 +0000733 return {};
734 }
735 CurBlock = SinglePredecessor;
736 }
737 Blocks[0] = CurBlock;
738 return Blocks;
739}
740
Christy Leee9437482018-09-24 20:47:12 +0000741bool processPhi(PHINode &Phi, const TargetLibraryInfo *const TLI,
742 AliasAnalysis *AA) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000743 LLVM_DEBUG(dbgs() << "processPhi()\n");
Clement Courbet65130e22017-09-01 10:56:34 +0000744 if (Phi.getNumIncomingValues() <= 1) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000745 LLVM_DEBUG(dbgs() << "skip: only one incoming value in phi\n");
Clement Courbet65130e22017-09-01 10:56:34 +0000746 return false;
747 }
748 // We are looking for something that has the following structure:
749 // bb1 --eq--> bb2 --eq--> bb3 --eq--> bb4 --+
750 // \ \ \ \
751 // ne ne ne \
752 // \ \ \ v
753 // +------------+-----------+----------> bb_phi
754 //
755 // - The last basic block (bb4 here) must branch unconditionally to bb_phi.
756 // It's the only block that contributes a non-constant value to the Phi.
757 // - All other blocks (b1, b2, b3) must have exactly two successors, one of
Hiroshi Inoued24ddcd2018-01-19 10:55:29 +0000758 // them being the phi block.
Clement Courbet65130e22017-09-01 10:56:34 +0000759 // - All intermediate blocks (bb2, bb3) must have only one predecessor.
760 // - Blocks cannot do other work besides the comparison, see doesOtherWork()
761
762 // The blocks are not necessarily ordered in the phi, so we start from the
763 // last block and reconstruct the order.
764 BasicBlock *LastBlock = nullptr;
765 for (unsigned I = 0; I < Phi.getNumIncomingValues(); ++I) {
Clement Courbet98eaa882017-10-04 15:13:52 +0000766 if (isa<ConstantInt>(Phi.getIncomingValue(I))) continue;
Clement Courbet65130e22017-09-01 10:56:34 +0000767 if (LastBlock) {
768 // There are several non-constant values.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000769 LLVM_DEBUG(dbgs() << "skip: several non-constant values\n");
Clement Courbet65130e22017-09-01 10:56:34 +0000770 return false;
771 }
Xin Tong8ba674e2018-02-28 12:08:00 +0000772 if (!isa<ICmpInst>(Phi.getIncomingValue(I)) ||
773 cast<ICmpInst>(Phi.getIncomingValue(I))->getParent() !=
774 Phi.getIncomingBlock(I)) {
775 // Non-constant incoming value is not from a cmp instruction or not
776 // produced by the last block. We could end up processing the value
777 // producing block more than once.
778 //
779 // This is an uncommon case, so we bail.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000780 LLVM_DEBUG(
Xin Tong8ba674e2018-02-28 12:08:00 +0000781 dbgs()
782 << "skip: non-constant value not from cmp or not from last block.\n");
783 return false;
784 }
Clement Courbet65130e22017-09-01 10:56:34 +0000785 LastBlock = Phi.getIncomingBlock(I);
786 }
787 if (!LastBlock) {
788 // There is no non-constant block.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000789 LLVM_DEBUG(dbgs() << "skip: no non-constant block\n");
Clement Courbet65130e22017-09-01 10:56:34 +0000790 return false;
791 }
792 if (LastBlock->getSingleSuccessor() != Phi.getParent()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000793 LLVM_DEBUG(dbgs() << "skip: last block non-phi successor\n");
Clement Courbet65130e22017-09-01 10:56:34 +0000794 return false;
795 }
796
797 const auto Blocks =
798 getOrderedBlocks(Phi, LastBlock, Phi.getNumIncomingValues());
Clement Courbet98eaa882017-10-04 15:13:52 +0000799 if (Blocks.empty()) return false;
Christy Leee9437482018-09-24 20:47:12 +0000800 BCECmpChain CmpChain(Blocks, Phi, AA);
Clement Courbet65130e22017-09-01 10:56:34 +0000801
802 if (CmpChain.size() < 2) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000803 LLVM_DEBUG(dbgs() << "skip: only one compare block\n");
Clement Courbet65130e22017-09-01 10:56:34 +0000804 return false;
805 }
806
Christy Leee9437482018-09-24 20:47:12 +0000807 return CmpChain.simplify(TLI, AA);
Clement Courbet65130e22017-09-01 10:56:34 +0000808}
809
810class MergeICmps : public FunctionPass {
Eugene Zelenko5c2aece2017-10-26 01:25:14 +0000811 public:
Clement Courbet65130e22017-09-01 10:56:34 +0000812 static char ID;
813
814 MergeICmps() : FunctionPass(ID) {
815 initializeMergeICmpsPass(*PassRegistry::getPassRegistry());
816 }
817
818 bool runOnFunction(Function &F) override {
819 if (skipFunction(F)) return false;
820 const auto &TLI = getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
Clement Courbete2e8a5c2017-10-10 08:00:45 +0000821 const auto &TTI = getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
Christy Leee9437482018-09-24 20:47:12 +0000822 AliasAnalysis *AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
823 auto PA = runImpl(F, &TLI, &TTI, AA);
Clement Courbet65130e22017-09-01 10:56:34 +0000824 return !PA.areAllPreserved();
825 }
826
Eugene Zelenko5c2aece2017-10-26 01:25:14 +0000827 private:
Clement Courbet65130e22017-09-01 10:56:34 +0000828 void getAnalysisUsage(AnalysisUsage &AU) const override {
829 AU.addRequired<TargetLibraryInfoWrapperPass>();
Clement Courbete2e8a5c2017-10-10 08:00:45 +0000830 AU.addRequired<TargetTransformInfoWrapperPass>();
Christy Leee9437482018-09-24 20:47:12 +0000831 AU.addRequired<AAResultsWrapperPass>();
Clement Courbet65130e22017-09-01 10:56:34 +0000832 }
833
Clement Courbete2e8a5c2017-10-10 08:00:45 +0000834 PreservedAnalyses runImpl(Function &F, const TargetLibraryInfo *TLI,
Christy Leee9437482018-09-24 20:47:12 +0000835 const TargetTransformInfo *TTI, AliasAnalysis *AA);
Clement Courbet65130e22017-09-01 10:56:34 +0000836};
837
Clement Courbete2e8a5c2017-10-10 08:00:45 +0000838PreservedAnalyses MergeICmps::runImpl(Function &F, const TargetLibraryInfo *TLI,
Christy Leee9437482018-09-24 20:47:12 +0000839 const TargetTransformInfo *TTI,
840 AliasAnalysis *AA) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000841 LLVM_DEBUG(dbgs() << "MergeICmpsPass: " << F.getName() << "\n");
Clement Courbet65130e22017-09-01 10:56:34 +0000842
Clement Courbete2e8a5c2017-10-10 08:00:45 +0000843 // We only try merging comparisons if the target wants to expand memcmp later.
844 // The rationale is to avoid turning small chains into memcmp calls.
Clement Courbetb2c3eb82017-10-30 14:19:33 +0000845 if (!TTI->enableMemCmpExpansion(true)) return PreservedAnalyses::all();
Clement Courbete2e8a5c2017-10-10 08:00:45 +0000846
Benjamin Kramera76b64f2018-05-19 12:51:59 +0000847 // If we don't have memcmp avaiable we can't emit calls to it.
848 if (!TLI->has(LibFunc_memcmp))
849 return PreservedAnalyses::all();
850
Clement Courbet65130e22017-09-01 10:56:34 +0000851 bool MadeChange = false;
852
853 for (auto BBIt = ++F.begin(); BBIt != F.end(); ++BBIt) {
854 // A Phi operation is always first in a basic block.
855 if (auto *const Phi = dyn_cast<PHINode>(&*BBIt->begin()))
Christy Leee9437482018-09-24 20:47:12 +0000856 MadeChange |= processPhi(*Phi, TLI, AA);
Clement Courbet65130e22017-09-01 10:56:34 +0000857 }
858
Clement Courbet98eaa882017-10-04 15:13:52 +0000859 if (MadeChange) return PreservedAnalyses::none();
Clement Courbet65130e22017-09-01 10:56:34 +0000860 return PreservedAnalyses::all();
861}
862
Eugene Zelenko5c2aece2017-10-26 01:25:14 +0000863} // namespace
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000864
Eugene Zelenko5c2aece2017-10-26 01:25:14 +0000865char MergeICmps::ID = 0;
Clement Courbet65130e22017-09-01 10:56:34 +0000866INITIALIZE_PASS_BEGIN(MergeICmps, "mergeicmps",
867 "Merge contiguous icmps into a memcmp", false, false)
868INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
Clement Courbete2e8a5c2017-10-10 08:00:45 +0000869INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
Christy Leee9437482018-09-24 20:47:12 +0000870INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass)
Clement Courbet65130e22017-09-01 10:56:34 +0000871INITIALIZE_PASS_END(MergeICmps, "mergeicmps",
872 "Merge contiguous icmps into a memcmp", false, false)
873
874Pass *llvm::createMergeICmpsPass() { return new MergeICmps(); }