LLVM 23.0.0git
DivisionByConstantInfo.cpp
Go to the documentation of this file.
1//===----- DivisionByConstantInfo.cpp - division by constant -*- C++ -*----===//
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 file implements support for optimizing divisions by a constant
10///
11//===----------------------------------------------------------------------===//
12
14
15using namespace llvm;
16
17/// Calculate the magic numbers required to implement a signed integer division
18/// by a constant as a sequence of multiplies, adds and shifts. Requires that
19/// the divisor not be 0, 1, or -1. Taken from "Hacker's Delight", Henry S.
20/// Warren, Jr., Chapter 10.
22 assert(!D.isZero() && "Precondition violation.");
23
24 // We'd be endlessly stuck in the loop.
25 assert(D.getBitWidth() >= 3 && "Does not work at smaller bitwidths.");
26
27 APInt Delta;
28 APInt SignedMin = APInt::getSignedMinValue(D.getBitWidth());
29 struct SignedDivisionByConstantInfo Retval;
30
31 APInt AD = D.abs();
32 APInt T = SignedMin + (D.lshr(D.getBitWidth() - 1));
33 APInt ANC = T - 1 - T.urem(AD); // absolute value of NC
34 unsigned P = D.getBitWidth() - 1; // initialize P
35 APInt Q1, R1, Q2, R2;
36 // initialize Q1 = 2P/abs(NC); R1 = rem(2P,abs(NC))
37 APInt::udivrem(SignedMin, ANC, Q1, R1);
38 // initialize Q2 = 2P/abs(D); R2 = rem(2P,abs(D))
39 APInt::udivrem(SignedMin, AD, Q2, R2);
40 do {
41 P = P + 1;
42 Q1 <<= 1; // update Q1 = 2P/abs(NC)
43 R1 <<= 1; // update R1 = rem(2P/abs(NC))
44 if (R1.uge(ANC)) { // must be unsigned comparison
45 ++Q1;
46 R1 -= ANC;
47 }
48 Q2 <<= 1; // update Q2 = 2P/abs(D)
49 R2 <<= 1; // update R2 = rem(2P/abs(D))
50 if (R2.uge(AD)) { // must be unsigned comparison
51 ++Q2;
52 R2 -= AD;
53 }
54 // Delta = AD - R2
55 Delta = AD;
56 Delta -= R2;
57 } while (Q1.ult(Delta) || (Q1 == Delta && R1.isZero()));
58
59 Retval.Magic = std::move(Q2);
60 ++Retval.Magic;
61 if (D.isNegative())
62 Retval.Magic.negate(); // resulting magic number
63 Retval.ShiftAmount = P - D.getBitWidth(); // resulting shift
64 return Retval;
65}
66
67/// Calculate the magic numbers required to implement an unsigned integer
68/// division by a constant as a sequence of multiplies, adds and shifts.
69/// Requires that the divisor not be 0. Taken from "Hacker's Delight", Henry
70/// S. Warren, Jr., chapter 10.
71/// LeadingZeros can be used to simplify the calculation if the upper bits
72/// of the divided value are known zero.
74UnsignedDivisionByConstantInfo::get(const APInt &D, unsigned LeadingZeros,
75 bool AllowEvenDivisorOptimization,
76 bool AllowWidenOptimization) {
77 assert(!D.isZero() && !D.isOne() && "Precondition violation.");
78 assert(D.getBitWidth() > 1 && "Does not work at smaller bitwidths.");
79
80 APInt Delta;
82 Retval.IsAdd = false; // initialize "add" indicator
83 Retval.Widen = false; // initialize widen indicator
85 APInt::getLowBitsSet(D.getBitWidth(), D.getBitWidth() - LeadingZeros);
86 APInt SignedMin = APInt::getSignedMinValue(D.getBitWidth());
87 APInt SignedMax = APInt::getSignedMaxValue(D.getBitWidth());
88
89 // Calculate NC, the largest dividend such that NC.urem(D) == D-1.
90 APInt NC = AllOnes - (AllOnes + 1 - D).urem(D);
91 assert(NC.urem(D) == D - 1 && "Unexpected NC value");
92 unsigned P = D.getBitWidth() - 1; // initialize P
93 APInt Q1, R1, Q2, R2;
94 // initialize Q1 = 2P/NC; R1 = rem(2P,NC)
95 APInt::udivrem(SignedMin, NC, Q1, R1);
96 // initialize Q2 = (2P-1)/D; R2 = rem((2P-1),D)
97 APInt::udivrem(SignedMax, D, Q2, R2);
98 do {
99 P = P + 1;
100 if (R1.uge(NC - R1)) {
101 // update Q1
102 Q1 <<= 1;
103 ++Q1;
104 // update R1
105 R1 <<= 1;
106 R1 -= NC;
107 } else {
108 Q1 <<= 1; // update Q1
109 R1 <<= 1; // update R1
110 }
111 if ((R2 + 1).uge(D - R2)) {
112 if (Q2.uge(SignedMax))
113 Retval.IsAdd = true;
114 // update Q2
115 Q2 <<= 1;
116 ++Q2;
117 // update R2
118 R2 <<= 1;
119 ++R2;
120 R2 -= D;
121 } else {
122 if (Q2.uge(SignedMin))
123 Retval.IsAdd = true;
124 // update Q2
125 Q2 <<= 1;
126 // update R2
127 R2 <<= 1;
128 ++R2;
129 }
130 // Delta = D - 1 - R2
131 Delta = D;
132 --Delta;
133 Delta -= R2;
134 } while (P < D.getBitWidth() * 2 &&
135 (Q1.ult(Delta) || (Q1 == Delta && R1.isZero())));
136
137 if (Retval.IsAdd && !D[0] && AllowEvenDivisorOptimization) {
138 unsigned PreShift = D.countr_zero();
139 APInt ShiftedD = D.lshr(PreShift);
140 Retval =
141 UnsignedDivisionByConstantInfo::get(ShiftedD, LeadingZeros + PreShift);
142 assert(Retval.IsAdd == 0 && Retval.PreShift == 0);
143 Retval.PreShift = PreShift;
144 return Retval;
145 }
146
147 Retval.Magic = std::move(Q2); // resulting magic number
148 ++Retval.Magic;
149 Retval.PostShift = P - D.getBitWidth(); // resulting shift
150 // Reduce shift amount for IsAdd.
151 if (Retval.IsAdd) {
152 assert(Retval.PostShift > 0 && "Unexpected shift");
153 Retval.PostShift -= 1;
154 }
155 Retval.PreShift = 0;
156
157 // For IsAdd case with AllowWidenOptimization, compute widened magic.
158 // This is for optimizing 32-bit division using 64-bit multiplication.
159 // The actual magic constant is 2^W + Magic ((W+1)-bit).
160 // We pre-shift it left by (W*2 - OriginalShift) to avoid runtime shift.
161 if (Retval.IsAdd && AllowWidenOptimization) {
162 unsigned W = D.getBitWidth();
163 unsigned OriginalShift = Retval.PostShift + W + 1;
164 // Since PostShift >= 1, shift amount is at most W-2, so W*2 bits suffice.
165 Retval.Magic = (APInt(W * 2, 1).shl(W) + Retval.Magic.zext(W * 2))
166 .shl(W * 2 - OriginalShift);
167 Retval.IsAdd = false;
168 Retval.PostShift = 0;
169 Retval.Widen = true;
170 }
171
172 return Retval;
173}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
#define R2(n)
#define T
#define P(N)
Class for arbitrary precision integers.
Definition APInt.h:78
static LLVM_ABI void udivrem(const APInt &LHS, const APInt &RHS, APInt &Quotient, APInt &Remainder)
Dual division/remainder interface.
Definition APInt.cpp:1769
LLVM_ABI APInt zext(unsigned width) const
Zero extend to a new width.
Definition APInt.cpp:1023
bool isZero() const
Determine if this value is zero, i.e. all bits are clear.
Definition APInt.h:381
bool ult(const APInt &RHS) const
Unsigned less than comparison.
Definition APInt.h:1118
static APInt getSignedMaxValue(unsigned numBits)
Gets maximum signed value of APInt for a specific bit width.
Definition APInt.h:210
void negate()
Negate this APInt in place.
Definition APInt.h:1483
static APInt getSignedMinValue(unsigned numBits)
Gets minimum signed value of APInt for a specific bit width.
Definition APInt.h:220
APInt shl(unsigned shiftAmt) const
Left-shift function.
Definition APInt.h:880
static APInt getLowBitsSet(unsigned numBits, unsigned loBitsSet)
Constructs an APInt value that has the bottom loBitsSet bits set.
Definition APInt.h:307
bool uge(const APInt &RHS) const
Unsigned greater or equal comparison.
Definition APInt.h:1228
This is an optimization pass for GlobalISel generic memory operations.
Definition Types.h:26
#define NC
Definition regutils.h:42
Magic data for optimising signed division by a constant.
static LLVM_ABI SignedDivisionByConstantInfo get(const APInt &D)
Calculate the magic numbers required to implement a signed integer division by a constant as a sequen...
Magic data for optimising unsigned division by a constant.
static LLVM_ABI UnsignedDivisionByConstantInfo get(const APInt &D, unsigned LeadingZeros=0, bool AllowEvenDivisorOptimization=true, bool AllowWidenOptimization=false)
Calculate the magic numbers required to implement an unsigned integer division by a constant as a seq...