xref: /llvm-project/llvm/lib/Transforms/Scalar/DivRemPairs.cpp (revision a686c60c45d516cc8870b77af97fa66e3578807d)
1 //===- DivRemPairs.cpp - Hoist/[dr]ecompose division and remainder --------===//
2 //
3 // 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
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This pass hoists and/or decomposes/recomposes integer division and remainder
10 // instructions to enable CFG improvements and better codegen.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "llvm/Transforms/Scalar/DivRemPairs.h"
15 #include "llvm/ADT/DenseMap.h"
16 #include "llvm/ADT/MapVector.h"
17 #include "llvm/ADT/Statistic.h"
18 #include "llvm/Analysis/GlobalsModRef.h"
19 #include "llvm/Analysis/TargetTransformInfo.h"
20 #include "llvm/IR/Dominators.h"
21 #include "llvm/IR/Function.h"
22 #include "llvm/IR/PatternMatch.h"
23 #include "llvm/Pass.h"
24 #include "llvm/Support/DebugCounter.h"
25 #include "llvm/Transforms/Scalar.h"
26 #include "llvm/Transforms/Utils/BypassSlowDivision.h"
27 
28 using namespace llvm;
29 using namespace llvm::PatternMatch;
30 
31 #define DEBUG_TYPE "div-rem-pairs"
32 STATISTIC(NumPairs, "Number of div/rem pairs");
33 STATISTIC(NumRecomposed, "Number of instructions recomposed");
34 STATISTIC(NumHoisted, "Number of instructions hoisted");
35 STATISTIC(NumDecomposed, "Number of instructions decomposed");
36 DEBUG_COUNTER(DRPCounter, "div-rem-pairs-transform",
37               "Controls transformations in div-rem-pairs pass");
38 
39 namespace {
40 struct ExpandedMatch {
41   DivRemMapKey Key;
42   Instruction *Value;
43 };
44 } // namespace
45 
46 /// See if we can match: (which is the form we expand into)
47 ///   X - ((X ?/ Y) * Y)
48 /// which is equivalent to:
49 ///   X ?% Y
50 static llvm::Optional<ExpandedMatch> matchExpandedRem(Instruction &I) {
51   Value *Dividend, *XroundedDownToMultipleOfY;
52   if (!match(&I, m_Sub(m_Value(Dividend), m_Value(XroundedDownToMultipleOfY))))
53     return llvm::None;
54 
55   Value *Divisor;
56   Instruction *Div;
57   // Look for  ((X / Y) * Y)
58   if (!match(
59           XroundedDownToMultipleOfY,
60           m_c_Mul(m_CombineAnd(m_IDiv(m_Specific(Dividend), m_Value(Divisor)),
61                                m_Instruction(Div)),
62                   m_Deferred(Divisor))))
63     return llvm::None;
64 
65   ExpandedMatch M;
66   M.Key.SignedOp = Div->getOpcode() == Instruction::SDiv;
67   M.Key.Dividend = Dividend;
68   M.Key.Divisor = Divisor;
69   M.Value = &I;
70   return M;
71 }
72 
73 /// A thin wrapper to store two values that we matched as div-rem pair.
74 /// We want this extra indirection to avoid dealing with RAUW'ing the map keys.
75 struct DivRemPairWorklistEntry {
76   /// The actual udiv/sdiv instruction. Source of truth.
77   AssertingVH<Instruction> DivInst;
78 
79   /// The instruction that we have matched as a remainder instruction.
80   /// Should only be used as Value, don't introspect it.
81   AssertingVH<Instruction> RemInst;
82 
83   DivRemPairWorklistEntry(Instruction *DivInst_, Instruction *RemInst_)
84       : DivInst(DivInst_), RemInst(RemInst_) {
85     assert((DivInst->getOpcode() == Instruction::UDiv ||
86             DivInst->getOpcode() == Instruction::SDiv) &&
87            "Not a division.");
88     assert(DivInst->getType() == RemInst->getType() && "Types should match.");
89     // We can't check anything else about remainder instruction,
90     // it's not strictly required to be a urem/srem.
91   }
92 
93   /// The type for this pair, identical for both the div and rem.
94   Type *getType() const { return DivInst->getType(); }
95 
96   /// Is this pair signed or unsigned?
97   bool isSigned() const { return DivInst->getOpcode() == Instruction::SDiv; }
98 
99   /// In this pair, what are the divident and divisor?
100   Value *getDividend() const { return DivInst->getOperand(0); }
101   Value *getDivisor() const { return DivInst->getOperand(1); }
102 
103   bool isRemExpanded() const {
104     switch (RemInst->getOpcode()) {
105     case Instruction::SRem:
106     case Instruction::URem:
107       return false; // single 'rem' instruction - unexpanded form.
108     default:
109       return true; // anything else means we have remainder in expanded form.
110     }
111   }
112 };
113 using DivRemWorklistTy = SmallVector<DivRemPairWorklistEntry, 4>;
114 
115 /// Find matching pairs of integer div/rem ops (they have the same numerator,
116 /// denominator, and signedness). Place those pairs into a worklist for further
117 /// processing. This indirection is needed because we have to use TrackingVH<>
118 /// because we will be doing RAUW, and if one of the rem instructions we change
119 /// happens to be an input to another div/rem in the maps, we'd have problems.
120 static DivRemWorklistTy getWorklist(Function &F) {
121   // Insert all divide and remainder instructions into maps keyed by their
122   // operands and opcode (signed or unsigned).
123   DenseMap<DivRemMapKey, Instruction *> DivMap;
124   // Use a MapVector for RemMap so that instructions are moved/inserted in a
125   // deterministic order.
126   MapVector<DivRemMapKey, Instruction *> RemMap;
127   for (auto &BB : F) {
128     for (auto &I : BB) {
129       if (I.getOpcode() == Instruction::SDiv)
130         DivMap[DivRemMapKey(true, I.getOperand(0), I.getOperand(1))] = &I;
131       else if (I.getOpcode() == Instruction::UDiv)
132         DivMap[DivRemMapKey(false, I.getOperand(0), I.getOperand(1))] = &I;
133       else if (I.getOpcode() == Instruction::SRem)
134         RemMap[DivRemMapKey(true, I.getOperand(0), I.getOperand(1))] = &I;
135       else if (I.getOpcode() == Instruction::URem)
136         RemMap[DivRemMapKey(false, I.getOperand(0), I.getOperand(1))] = &I;
137       else if (auto Match = matchExpandedRem(I))
138         RemMap[Match->Key] = Match->Value;
139     }
140   }
141 
142   // We'll accumulate the matching pairs of div-rem instructions here.
143   DivRemWorklistTy Worklist;
144 
145   // We can iterate over either map because we are only looking for matched
146   // pairs. Choose remainders for efficiency because they are usually even more
147   // rare than division.
148   for (auto &RemPair : RemMap) {
149     // Find the matching division instruction from the division map.
150     Instruction *DivInst = DivMap[RemPair.first];
151     if (!DivInst)
152       continue;
153 
154     // We have a matching pair of div/rem instructions.
155     NumPairs++;
156     Instruction *RemInst = RemPair.second;
157 
158     // Place it in the worklist.
159     Worklist.emplace_back(DivInst, RemInst);
160   }
161 
162   return Worklist;
163 }
164 
165 /// Find matching pairs of integer div/rem ops (they have the same numerator,
166 /// denominator, and signedness). If they exist in different basic blocks, bring
167 /// them together by hoisting or replace the common division operation that is
168 /// implicit in the remainder:
169 /// X % Y <--> X - ((X / Y) * Y).
170 ///
171 /// We can largely ignore the normal safety and cost constraints on speculation
172 /// of these ops when we find a matching pair. This is because we are already
173 /// guaranteed that any exceptions and most cost are already incurred by the
174 /// first member of the pair.
175 ///
176 /// Note: This transform could be an oddball enhancement to EarlyCSE, GVN, or
177 /// SimplifyCFG, but it's split off on its own because it's different enough
178 /// that it doesn't quite match the stated objectives of those passes.
179 static bool optimizeDivRem(Function &F, const TargetTransformInfo &TTI,
180                            const DominatorTree &DT) {
181   bool Changed = false;
182 
183   // Get the matching pairs of div-rem instructions. We want this extra
184   // indirection to avoid dealing with having to RAUW the keys of the maps.
185   DivRemWorklistTy Worklist = getWorklist(F);
186 
187   // Process each entry in the worklist.
188   for (DivRemPairWorklistEntry &E : Worklist) {
189     if (!DebugCounter::shouldExecute(DRPCounter))
190       continue;
191 
192     bool HasDivRemOp = TTI.hasDivRemOp(E.getType(), E.isSigned());
193 
194     auto &DivInst = E.DivInst;
195     auto &RemInst = E.RemInst;
196 
197     const bool RemOriginallyWasInExpandedForm = E.isRemExpanded();
198 
199     if (HasDivRemOp && E.isRemExpanded()) {
200       // The target supports div+rem but the rem is expanded.
201       // We should recompose it first.
202       Value *X = E.getDividend();
203       Value *Y = E.getDivisor();
204       Instruction *RealRem = E.isSigned() ? BinaryOperator::CreateSRem(X, Y)
205                                           : BinaryOperator::CreateURem(X, Y);
206       // Note that we place it right next to the original expanded instruction,
207       // and letting further handling to move it if needed.
208       RealRem->setName(RemInst->getName() + ".recomposed");
209       RealRem->insertAfter(RemInst);
210       Instruction *OrigRemInst = RemInst;
211       // Update AssertingVH<> with new instruction so it doesn't assert.
212       RemInst = RealRem;
213       // And replace the original instruction with the new one.
214       OrigRemInst->replaceAllUsesWith(RealRem);
215       OrigRemInst->eraseFromParent();
216       NumRecomposed++;
217       // Note that we have left ((X / Y) * Y) around.
218       // If it had other uses we could rewrite it as X - X % Y
219     }
220 
221     assert((!E.isRemExpanded() || !HasDivRemOp) &&
222            "*If* the target supports div-rem, then by now the RemInst *is* "
223            "Instruction::[US]Rem.");
224 
225     // If the target supports div+rem and the instructions are in the same block
226     // already, there's nothing to do. The backend should handle this. If the
227     // target does not support div+rem, then we will decompose the rem.
228     if (HasDivRemOp && RemInst->getParent() == DivInst->getParent())
229       continue;
230 
231     bool DivDominates = DT.dominates(DivInst, RemInst);
232     if (!DivDominates && !DT.dominates(RemInst, DivInst)) {
233       // We have matching div-rem pair, but they are in two different blocks,
234       // neither of which dominates one another.
235       assert(!RemOriginallyWasInExpandedForm &&
236              "Won't happen for expanded-form rem.");
237       // FIXME: We could hoist both ops to the common predecessor block?
238       continue;
239     }
240 
241     // The target does not have a single div/rem operation,
242     // and the rem is already in expanded form. Nothing to do.
243     if (!HasDivRemOp && E.isRemExpanded())
244       continue;
245 
246     if (HasDivRemOp) {
247       // The target has a single div/rem operation. Hoist the lower instruction
248       // to make the matched pair visible to the backend.
249       if (DivDominates)
250         RemInst->moveAfter(DivInst);
251       else
252         DivInst->moveAfter(RemInst);
253       NumHoisted++;
254     } else {
255       // The target does not have a single div/rem operation,
256       // and the rem is *not* in a already-expanded form.
257       // Decompose the remainder calculation as:
258       // X % Y --> X - ((X / Y) * Y).
259 
260       assert(!RemOriginallyWasInExpandedForm &&
261              "We should not be expanding if the rem was in expanded form to "
262              "begin with.");
263 
264       Value *X = E.getDividend();
265       Value *Y = E.getDivisor();
266       Instruction *Mul = BinaryOperator::CreateMul(DivInst, Y);
267       Instruction *Sub = BinaryOperator::CreateSub(X, Mul);
268 
269       // If the remainder dominates, then hoist the division up to that block:
270       //
271       // bb1:
272       //   %rem = srem %x, %y
273       // bb2:
274       //   %div = sdiv %x, %y
275       // -->
276       // bb1:
277       //   %div = sdiv %x, %y
278       //   %mul = mul %div, %y
279       //   %rem = sub %x, %mul
280       //
281       // If the division dominates, it's already in the right place. The mul+sub
282       // will be in a different block because we don't assume that they are
283       // cheap to speculatively execute:
284       //
285       // bb1:
286       //   %div = sdiv %x, %y
287       // bb2:
288       //   %rem = srem %x, %y
289       // -->
290       // bb1:
291       //   %div = sdiv %x, %y
292       // bb2:
293       //   %mul = mul %div, %y
294       //   %rem = sub %x, %mul
295       //
296       // If the div and rem are in the same block, we do the same transform,
297       // but any code movement would be within the same block.
298 
299       if (!DivDominates)
300         DivInst->moveBefore(RemInst);
301       Mul->insertAfter(RemInst);
302       Sub->insertAfter(Mul);
303 
304       // Now kill the explicit remainder. We have replaced it with:
305       // (sub X, (mul (div X, Y), Y)
306       Sub->setName(RemInst->getName() + ".decomposed");
307       Instruction *OrigRemInst = RemInst;
308       // Update AssertingVH<> with new instruction so it doesn't assert.
309       RemInst = Sub;
310       // And replace the original instruction with the new one.
311       OrigRemInst->replaceAllUsesWith(Sub);
312       OrigRemInst->eraseFromParent();
313       NumDecomposed++;
314     }
315     Changed = true;
316   }
317 
318   return Changed;
319 }
320 
321 // Pass manager boilerplate below here.
322 
323 namespace {
324 struct DivRemPairsLegacyPass : public FunctionPass {
325   static char ID;
326   DivRemPairsLegacyPass() : FunctionPass(ID) {
327     initializeDivRemPairsLegacyPassPass(*PassRegistry::getPassRegistry());
328   }
329 
330   void getAnalysisUsage(AnalysisUsage &AU) const override {
331     AU.addRequired<DominatorTreeWrapperPass>();
332     AU.addRequired<TargetTransformInfoWrapperPass>();
333     AU.setPreservesCFG();
334     AU.addPreserved<DominatorTreeWrapperPass>();
335     AU.addPreserved<GlobalsAAWrapperPass>();
336     FunctionPass::getAnalysisUsage(AU);
337   }
338 
339   bool runOnFunction(Function &F) override {
340     if (skipFunction(F))
341       return false;
342     auto &TTI = getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
343     auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
344     return optimizeDivRem(F, TTI, DT);
345   }
346 };
347 } // namespace
348 
349 char DivRemPairsLegacyPass::ID = 0;
350 INITIALIZE_PASS_BEGIN(DivRemPairsLegacyPass, "div-rem-pairs",
351                       "Hoist/decompose integer division and remainder", false,
352                       false)
353 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
354 INITIALIZE_PASS_END(DivRemPairsLegacyPass, "div-rem-pairs",
355                     "Hoist/decompose integer division and remainder", false,
356                     false)
357 FunctionPass *llvm::createDivRemPairsPass() {
358   return new DivRemPairsLegacyPass();
359 }
360 
361 PreservedAnalyses DivRemPairsPass::run(Function &F,
362                                        FunctionAnalysisManager &FAM) {
363   TargetTransformInfo &TTI = FAM.getResult<TargetIRAnalysis>(F);
364   DominatorTree &DT = FAM.getResult<DominatorTreeAnalysis>(F);
365   if (!optimizeDivRem(F, TTI, DT))
366     return PreservedAnalyses::all();
367   // TODO: This pass just hoists/replaces math ops - all analyses are preserved?
368   PreservedAnalyses PA;
369   PA.preserveSet<CFGAnalyses>();
370   PA.preserve<GlobalsAA>();
371   return PA;
372 }
373