LLVM 22.0.0git
AArch64ConditionOptimizer.cpp
Go to the documentation of this file.
1//=- AArch64ConditionOptimizer.cpp - Remove useless comparisons for AArch64 -=//
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 tries to make consecutive compares of values use same operands to
10// allow CSE pass to remove duplicated instructions. For this it analyzes
11// branches and adjusts comparisons with immediate values by converting:
12// * GE -> GT
13// * GT -> GE
14// * LT -> LE
15// * LE -> LT
16// and adjusting immediate values appropriately. It basically corrects two
17// immediate values towards each other to make them equal.
18//
19// Consider the following example in C:
20//
21// if ((a < 5 && ...) || (a > 5 && ...)) {
22// ~~~~~ ~~~~~
23// ^ ^
24// x y
25//
26// Here both "x" and "y" expressions compare "a" with "5". When "x" evaluates
27// to "false", "y" can just check flags set by the first comparison. As a
28// result of the canonicalization employed by
29// SelectionDAGBuilder::visitSwitchCase, DAGCombine, and other target-specific
30// code, assembly ends up in the form that is not CSE friendly:
31//
32// ...
33// cmp w8, #4
34// b.gt .LBB0_3
35// ...
36// .LBB0_3:
37// cmp w8, #6
38// b.lt .LBB0_6
39// ...
40//
41// Same assembly after the pass:
42//
43// ...
44// cmp w8, #5
45// b.ge .LBB0_3
46// ...
47// .LBB0_3:
48// cmp w8, #5 // <-- CSE pass removes this instruction
49// b.le .LBB0_6
50// ...
51//
52// Currently only SUBS and ADDS followed by b.?? are supported.
53//
54// TODO: maybe handle TBNZ/TBZ the same way as CMP when used instead for "a < 0"
55// TODO: handle other conditional instructions (e.g. CSET)
56// TODO: allow second branching to be anything if it doesn't require adjusting
57//
58//===----------------------------------------------------------------------===//
59
60#include "AArch64.h"
63#include "llvm/ADT/ArrayRef.h"
66#include "llvm/ADT/Statistic.h"
78#include "llvm/Pass.h"
79#include "llvm/Support/Debug.h"
82#include <cassert>
83#include <cstdlib>
84#include <tuple>
85
86using namespace llvm;
87
88#define DEBUG_TYPE "aarch64-condopt"
89
90STATISTIC(NumConditionsAdjusted, "Number of conditions adjusted");
91
92namespace {
93
94class AArch64ConditionOptimizer : public MachineFunctionPass {
95 const TargetInstrInfo *TII;
96 MachineDominatorTree *DomTree;
98
99public:
100 // Stores immediate, compare instruction opcode and branch condition (in this
101 // order) of adjusted comparison.
102 using CmpInfo = std::tuple<int, unsigned, AArch64CC::CondCode>;
103
104 static char ID;
105
106 AArch64ConditionOptimizer() : MachineFunctionPass(ID) {}
107
108 void getAnalysisUsage(AnalysisUsage &AU) const override;
109 MachineInstr *findSuitableCompare(MachineBasicBlock *MBB);
110 CmpInfo adjustCmp(MachineInstr *CmpMI, AArch64CC::CondCode Cmp);
111 void modifyCmp(MachineInstr *CmpMI, const CmpInfo &Info);
112 bool adjustTo(MachineInstr *CmpMI, AArch64CC::CondCode Cmp, MachineInstr *To,
113 int ToImm);
114 bool runOnMachineFunction(MachineFunction &MF) override;
115
116 StringRef getPassName() const override {
117 return "AArch64 Condition Optimizer";
118 }
119};
120
121} // end anonymous namespace
122
123char AArch64ConditionOptimizer::ID = 0;
124
125INITIALIZE_PASS_BEGIN(AArch64ConditionOptimizer, "aarch64-condopt",
126 "AArch64 CondOpt Pass", false, false)
128INITIALIZE_PASS_END(AArch64ConditionOptimizer, "aarch64-condopt",
129 "AArch64 CondOpt Pass", false, false)
130
132 return new AArch64ConditionOptimizer();
133}
134
135void AArch64ConditionOptimizer::getAnalysisUsage(AnalysisUsage &AU) const {
139}
140
141// Finds compare instruction that corresponds to supported types of branching.
142// Returns the instruction or nullptr on failures or detecting unsupported
143// instructions.
144MachineInstr *AArch64ConditionOptimizer::findSuitableCompare(
145 MachineBasicBlock *MBB) {
147 if (Term == MBB->end())
148 return nullptr;
149
150 if (Term->getOpcode() != AArch64::Bcc)
151 return nullptr;
152
153 // Since we may modify cmp of this MBB, make sure NZCV does not live out.
154 for (auto *SuccBB : MBB->successors())
155 if (SuccBB->isLiveIn(AArch64::NZCV))
156 return nullptr;
157
158 // Now find the instruction controlling the terminator.
159 for (MachineBasicBlock::iterator B = MBB->begin(), It = Term; It != B;) {
160 It = prev_nodbg(It, B);
161 MachineInstr &I = *It;
162 assert(!I.isTerminator() && "Spurious terminator");
163 // Check if there is any use of NZCV between CMP and Bcc.
164 if (I.readsRegister(AArch64::NZCV, /*TRI=*/nullptr))
165 return nullptr;
166 switch (I.getOpcode()) {
167 // cmp is an alias for subs with a dead destination register.
168 case AArch64::SUBSWri:
169 case AArch64::SUBSXri:
170 // cmn is an alias for adds with a dead destination register.
171 case AArch64::ADDSWri:
172 case AArch64::ADDSXri: {
173 unsigned ShiftAmt = AArch64_AM::getShiftValue(I.getOperand(3).getImm());
174 if (!I.getOperand(2).isImm()) {
175 LLVM_DEBUG(dbgs() << "Immediate of cmp is symbolic, " << I << '\n');
176 return nullptr;
177 } else if (I.getOperand(2).getImm() << ShiftAmt >= 0xfff) {
178 LLVM_DEBUG(dbgs() << "Immediate of cmp may be out of range, " << I
179 << '\n');
180 return nullptr;
181 } else if (!MRI->use_nodbg_empty(I.getOperand(0).getReg())) {
182 LLVM_DEBUG(dbgs() << "Destination of cmp is not dead, " << I << '\n');
183 return nullptr;
184 }
185 return &I;
186 }
187 // Prevent false positive case like:
188 // cmp w19, #0
189 // cinc w0, w19, gt
190 // ...
191 // fcmp d8, #0.0
192 // b.gt .LBB0_5
193 case AArch64::FCMPDri:
194 case AArch64::FCMPSri:
195 case AArch64::FCMPESri:
196 case AArch64::FCMPEDri:
197
198 case AArch64::SUBSWrr:
199 case AArch64::SUBSXrr:
200 case AArch64::ADDSWrr:
201 case AArch64::ADDSXrr:
202 case AArch64::FCMPSrr:
203 case AArch64::FCMPDrr:
204 case AArch64::FCMPESrr:
205 case AArch64::FCMPEDrr:
206 // Skip comparison instructions without immediate operands.
207 return nullptr;
208 }
209 }
210 LLVM_DEBUG(dbgs() << "Flags not defined in " << printMBBReference(*MBB)
211 << '\n');
212 return nullptr;
213}
214
215// Changes opcode adds <-> subs considering register operand width.
216static int getComplementOpc(int Opc) {
217 switch (Opc) {
218 case AArch64::ADDSWri: return AArch64::SUBSWri;
219 case AArch64::ADDSXri: return AArch64::SUBSXri;
220 case AArch64::SUBSWri: return AArch64::ADDSWri;
221 case AArch64::SUBSXri: return AArch64::ADDSXri;
222 default:
223 llvm_unreachable("Unexpected opcode");
224 }
225}
226
227// Changes form of comparison inclusive <-> exclusive.
229 switch (Cmp) {
230 case AArch64CC::GT: return AArch64CC::GE;
231 case AArch64CC::GE: return AArch64CC::GT;
232 case AArch64CC::LT: return AArch64CC::LE;
233 case AArch64CC::LE: return AArch64CC::LT;
234 default:
235 llvm_unreachable("Unexpected condition code");
236 }
237}
238
239// Transforms GT -> GE, GE -> GT, LT -> LE, LE -> LT by updating comparison
240// operator and condition code.
241AArch64ConditionOptimizer::CmpInfo AArch64ConditionOptimizer::adjustCmp(
242 MachineInstr *CmpMI, AArch64CC::CondCode Cmp) {
243 unsigned Opc = CmpMI->getOpcode();
244
245 // CMN (compare with negative immediate) is an alias to ADDS (as
246 // "operand - negative" == "operand + positive")
247 bool Negative = (Opc == AArch64::ADDSWri || Opc == AArch64::ADDSXri);
248
249 int Correction = (Cmp == AArch64CC::GT) ? 1 : -1;
250 // Negate Correction value for comparison with negative immediate (CMN).
251 if (Negative) {
252 Correction = -Correction;
253 }
254
255 const int OldImm = (int)CmpMI->getOperand(2).getImm();
256 const int NewImm = std::abs(OldImm + Correction);
257
258 // Handle +0 -> -1 and -0 -> +1 (CMN with 0 immediate) transitions by
259 // adjusting compare instruction opcode.
260 if (OldImm == 0 && ((Negative && Correction == 1) ||
261 (!Negative && Correction == -1))) {
263 }
264
265 return CmpInfo(NewImm, Opc, getAdjustedCmp(Cmp));
266}
267
268// Applies changes to comparison instruction suggested by adjustCmp().
269void AArch64ConditionOptimizer::modifyCmp(MachineInstr *CmpMI,
270 const CmpInfo &Info) {
271 int Imm;
272 unsigned Opc;
274 std::tie(Imm, Opc, Cmp) = Info;
275
276 MachineBasicBlock *const MBB = CmpMI->getParent();
277
278 // Change immediate in comparison instruction (ADDS or SUBS).
279 BuildMI(*MBB, CmpMI, CmpMI->getDebugLoc(), TII->get(Opc))
280 .add(CmpMI->getOperand(0))
281 .add(CmpMI->getOperand(1))
282 .addImm(Imm)
283 .add(CmpMI->getOperand(3));
284 CmpMI->eraseFromParent();
285
286 // The fact that this comparison was picked ensures that it's related to the
287 // first terminator instruction.
288 MachineInstr &BrMI = *MBB->getFirstTerminator();
289
290 // Change condition in branch instruction.
291 BuildMI(*MBB, BrMI, BrMI.getDebugLoc(), TII->get(AArch64::Bcc))
292 .addImm(Cmp)
293 .add(BrMI.getOperand(1));
294 BrMI.eraseFromParent();
295
296 ++NumConditionsAdjusted;
297}
298
299// Parse a condition code returned by analyzeBranch, and compute the CondCode
300// corresponding to TBB.
301// Returns true if parsing was successful, otherwise false is returned.
303 // A normal br.cond simply has the condition code.
304 if (Cond[0].getImm() != -1) {
305 assert(Cond.size() == 1 && "Unknown Cond array format");
306 CC = (AArch64CC::CondCode)(int)Cond[0].getImm();
307 return true;
308 }
309 return false;
310}
311
312// Adjusts one cmp instruction to another one if result of adjustment will allow
313// CSE. Returns true if compare instruction was changed, otherwise false is
314// returned.
315bool AArch64ConditionOptimizer::adjustTo(MachineInstr *CmpMI,
316 AArch64CC::CondCode Cmp, MachineInstr *To, int ToImm)
317{
318 CmpInfo Info = adjustCmp(CmpMI, Cmp);
319 if (std::get<0>(Info) == ToImm && std::get<1>(Info) == To->getOpcode()) {
320 modifyCmp(CmpMI, Info);
321 return true;
322 }
323 return false;
324}
325
326bool AArch64ConditionOptimizer::runOnMachineFunction(MachineFunction &MF) {
327 LLVM_DEBUG(dbgs() << "********** AArch64 Conditional Compares **********\n"
328 << "********** Function: " << MF.getName() << '\n');
329 if (skipFunction(MF.getFunction()))
330 return false;
331
333 DomTree = &getAnalysis<MachineDominatorTreeWrapperPass>().getDomTree();
334 MRI = &MF.getRegInfo();
335
336 bool Changed = false;
337
338 // Visit blocks in dominator tree pre-order. The pre-order enables multiple
339 // cmp-conversions from the same head block.
340 // Note that updateDomTree() modifies the children of the DomTree node
341 // currently being visited. The df_iterator supports that; it doesn't look at
342 // child_begin() / child_end() until after a node has been visited.
343 for (MachineDomTreeNode *I : depth_first(DomTree)) {
344 MachineBasicBlock *HBB = I->getBlock();
345
347 MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
348 if (TII->analyzeBranch(*HBB, TBB, FBB, HeadCond)) {
349 continue;
350 }
351
352 // Equivalence check is to skip loops.
353 if (!TBB || TBB == HBB) {
354 continue;
355 }
356
358 MachineBasicBlock *TBB_TBB = nullptr, *TBB_FBB = nullptr;
359 if (TII->analyzeBranch(*TBB, TBB_TBB, TBB_FBB, TrueCond)) {
360 continue;
361 }
362
363 MachineInstr *HeadCmpMI = findSuitableCompare(HBB);
364 if (!HeadCmpMI) {
365 continue;
366 }
367
368 MachineInstr *TrueCmpMI = findSuitableCompare(TBB);
369 if (!TrueCmpMI) {
370 continue;
371 }
372
373 AArch64CC::CondCode HeadCmp;
374 if (HeadCond.empty() || !parseCond(HeadCond, HeadCmp)) {
375 continue;
376 }
377
378 AArch64CC::CondCode TrueCmp;
379 if (TrueCond.empty() || !parseCond(TrueCond, TrueCmp)) {
380 continue;
381 }
382
383 const int HeadImm = (int)HeadCmpMI->getOperand(2).getImm();
384 const int TrueImm = (int)TrueCmpMI->getOperand(2).getImm();
385
386 LLVM_DEBUG(dbgs() << "Head branch:\n");
387 LLVM_DEBUG(dbgs() << "\tcondition: " << AArch64CC::getCondCodeName(HeadCmp)
388 << '\n');
389 LLVM_DEBUG(dbgs() << "\timmediate: " << HeadImm << '\n');
390
391 LLVM_DEBUG(dbgs() << "True branch:\n");
392 LLVM_DEBUG(dbgs() << "\tcondition: " << AArch64CC::getCondCodeName(TrueCmp)
393 << '\n');
394 LLVM_DEBUG(dbgs() << "\timmediate: " << TrueImm << '\n');
395
396 if (((HeadCmp == AArch64CC::GT && TrueCmp == AArch64CC::LT) ||
397 (HeadCmp == AArch64CC::LT && TrueCmp == AArch64CC::GT)) &&
398 std::abs(TrueImm - HeadImm) == 2) {
399 // This branch transforms machine instructions that correspond to
400 //
401 // 1) (a > {TrueImm} && ...) || (a < {HeadImm} && ...)
402 // 2) (a < {TrueImm} && ...) || (a > {HeadImm} && ...)
403 //
404 // into
405 //
406 // 1) (a >= {NewImm} && ...) || (a <= {NewImm} && ...)
407 // 2) (a <= {NewImm} && ...) || (a >= {NewImm} && ...)
408
409 CmpInfo HeadCmpInfo = adjustCmp(HeadCmpMI, HeadCmp);
410 CmpInfo TrueCmpInfo = adjustCmp(TrueCmpMI, TrueCmp);
411 if (std::get<0>(HeadCmpInfo) == std::get<0>(TrueCmpInfo) &&
412 std::get<1>(HeadCmpInfo) == std::get<1>(TrueCmpInfo)) {
413 modifyCmp(HeadCmpMI, HeadCmpInfo);
414 modifyCmp(TrueCmpMI, TrueCmpInfo);
415 Changed = true;
416 }
417 } else if (((HeadCmp == AArch64CC::GT && TrueCmp == AArch64CC::GT) ||
418 (HeadCmp == AArch64CC::LT && TrueCmp == AArch64CC::LT)) &&
419 std::abs(TrueImm - HeadImm) == 1) {
420 // This branch transforms machine instructions that correspond to
421 //
422 // 1) (a > {TrueImm} && ...) || (a > {HeadImm} && ...)
423 // 2) (a < {TrueImm} && ...) || (a < {HeadImm} && ...)
424 //
425 // into
426 //
427 // 1) (a <= {NewImm} && ...) || (a > {NewImm} && ...)
428 // 2) (a < {NewImm} && ...) || (a >= {NewImm} && ...)
429
430 // GT -> GE transformation increases immediate value, so picking the
431 // smaller one; LT -> LE decreases immediate value so invert the choice.
432 bool adjustHeadCond = (HeadImm < TrueImm);
433 if (HeadCmp == AArch64CC::LT) {
434 adjustHeadCond = !adjustHeadCond;
435 }
436
437 if (adjustHeadCond) {
438 Changed |= adjustTo(HeadCmpMI, HeadCmp, TrueCmpMI, TrueImm);
439 } else {
440 Changed |= adjustTo(TrueCmpMI, TrueCmp, HeadCmpMI, HeadImm);
441 }
442 }
443 // Other transformation cases almost never occur due to generation of < or >
444 // comparisons instead of <= and >=.
445 }
446
447 return Changed;
448}
unsigned const MachineRegisterInfo * MRI
static int getComplementOpc(int Opc)
static AArch64CC::CondCode getAdjustedCmp(AArch64CC::CondCode Cmp)
static bool parseCond(ArrayRef< MachineOperand > Cond, AArch64CC::CondCode &CC)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock & MBB
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
Analysis containing CSE Info
Definition CSEInfo.cpp:27
This file builds on the ADT/GraphTraits.h file to build generic depth first graph iterator.
const HexagonInstrInfo * TII
#define I(x, y, z)
Definition MD5.cpp:58
#define INITIALIZE_PASS_DEPENDENCY(depName)
Definition PassSupport.h:42
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
Definition PassSupport.h:44
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
Definition PassSupport.h:39
const SmallVectorImpl< MachineOperand > MachineBasicBlock * TBB
const SmallVectorImpl< MachineOperand > & Cond
This file defines the SmallVector class.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
Definition Statistic.h:167
#define LLVM_DEBUG(...)
Definition Debug.h:114
Represent the analysis usage information of a pass.
AnalysisUsage & addRequired()
AnalysisUsage & addPreserved()
Add the specified Pass class to the set of analyses preserved by this pass.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:41
FunctionPass class - This class is used to implement most global optimizations.
Definition Pass.h:314
bool analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB, SmallVectorImpl< MachineOperand > &Cond, bool AllowModify) const override
Analyze the branching code at the end of MBB, returning true if it cannot be understood (e....
LLVM_ABI iterator getFirstTerminator()
Returns an iterator to the first terminator instruction of this basic block.
iterator_range< succ_iterator > successors()
MachineInstrBundleIterator< MachineInstr > iterator
Analysis pass which computes a MachineDominatorTree.
DominatorTree Class - Concrete subclass of DominatorTreeBase that is used to compute a normal dominat...
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
StringRef getName() const
getName - Return the name of the corresponding LLVM function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Function & getFunction()
Return the LLVM function that this machine code represents.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & add(const MachineOperand &MO) const
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
const MachineBasicBlock * getParent() const
const DebugLoc & getDebugLoc() const
Returns the debug location id of this MachineInstr.
LLVM_ABI void eraseFromParent()
Unlink 'this' from the containing basic block and delete it.
const MachineOperand & getOperand(unsigned i) const
int64_t getImm() const
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
TargetInstrInfo - Interface to description of machine instruction set.
virtual const TargetInstrInfo * getInstrInfo() const
Changed
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
static const char * getCondCodeName(CondCode Code)
static unsigned getShiftValue(unsigned Imm)
getShiftValue - Extract the shift value.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
This is an optimization pass for GlobalISel generic memory operations.
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
MachineInstr * getImm(const MachineOperand &MO, const MachineRegisterInfo *MRI)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:207
FunctionPass * createAArch64ConditionOptimizerPass()
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
DomTreeNodeBase< MachineBasicBlock > MachineDomTreeNode
iterator_range< df_iterator< T > > depth_first(const T &G)
IterT prev_nodbg(IterT It, IterT Begin, bool SkipPseudoOp=true)
Decrement It, then continue decrementing it while it points to a debug instruction.
LLVM_ABI Printable printMBBReference(const MachineBasicBlock &MBB)
Prints a machine basic block reference.