Home | History | Annotate | Download | only in AArch64
      1 //=- AArch64ConditionOptimizer.cpp - Remove useless comparisons for AArch64 -=//
      2 //
      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 // This pass tries to make consecutive compares of values use same operands to
     11 // allow CSE pass to remove duplicated instructions.  For this it analyzes
     12 // branches and adjusts comparisons with immediate values by converting:
     13 //  * GE -> GT
     14 //  * GT -> GE
     15 //  * LT -> LE
     16 //  * LE -> LT
     17 // and adjusting immediate values appropriately.  It basically corrects two
     18 // immediate values towards each other to make them equal.
     19 //
     20 // Consider the following example in C:
     21 //
     22 //   if ((a < 5 && ...) || (a > 5 && ...)) {
     23 //        ~~~~~             ~~~~~
     24 //          ^                 ^
     25 //          x                 y
     26 //
     27 // Here both "x" and "y" expressions compare "a" with "5".  When "x" evaluates
     28 // to "false", "y" can just check flags set by the first comparison.  As a
     29 // result of the canonicalization employed by
     30 // SelectionDAGBuilder::visitSwitchCase, DAGCombine, and other target-specific
     31 // code, assembly ends up in the form that is not CSE friendly:
     32 //
     33 //     ...
     34 //     cmp      w8, #4
     35 //     b.gt     .LBB0_3
     36 //     ...
     37 //   .LBB0_3:
     38 //     cmp      w8, #6
     39 //     b.lt     .LBB0_6
     40 //     ...
     41 //
     42 // Same assembly after the pass:
     43 //
     44 //     ...
     45 //     cmp      w8, #5
     46 //     b.ge     .LBB0_3
     47 //     ...
     48 //   .LBB0_3:
     49 //     cmp      w8, #5     // <-- CSE pass removes this instruction
     50 //     b.le     .LBB0_6
     51 //     ...
     52 //
     53 // Currently only SUBS and ADDS followed by b.?? are supported.
     54 //
     55 // TODO: maybe handle TBNZ/TBZ the same way as CMP when used instead for "a < 0"
     56 // TODO: handle other conditional instructions (e.g. CSET)
     57 // TODO: allow second branching to be anything if it doesn't require adjusting
     58 //
     59 //===----------------------------------------------------------------------===//
     60 
     61 #include "AArch64.h"
     62 #include "llvm/ADT/DepthFirstIterator.h"
     63 #include "llvm/ADT/SmallVector.h"
     64 #include "llvm/ADT/Statistic.h"
     65 #include "llvm/CodeGen/LiveIntervalAnalysis.h"
     66 #include "llvm/CodeGen/MachineDominators.h"
     67 #include "llvm/CodeGen/MachineFunction.h"
     68 #include "llvm/CodeGen/MachineFunctionPass.h"
     69 #include "llvm/CodeGen/MachineInstrBuilder.h"
     70 #include "llvm/CodeGen/Passes.h"
     71 #include "llvm/Support/CommandLine.h"
     72 #include "llvm/Support/Debug.h"
     73 #include "llvm/Support/raw_ostream.h"
     74 #include "llvm/Target/TargetInstrInfo.h"
     75 #include "llvm/Target/TargetSubtargetInfo.h"
     76 #include <cstdlib>
     77 #include <tuple>
     78 
     79 using namespace llvm;
     80 
     81 #define DEBUG_TYPE "aarch64-condopt"
     82 
     83 STATISTIC(NumConditionsAdjusted, "Number of conditions adjusted");
     84 
     85 namespace {
     86 class AArch64ConditionOptimizer : public MachineFunctionPass {
     87   const TargetInstrInfo *TII;
     88   MachineDominatorTree *DomTree;
     89 
     90 public:
     91   // Stores immediate, compare instruction opcode and branch condition (in this
     92   // order) of adjusted comparison.
     93   typedef std::tuple<int, int, AArch64CC::CondCode> CmpInfo;
     94 
     95   static char ID;
     96   AArch64ConditionOptimizer() : MachineFunctionPass(ID) {}
     97   void getAnalysisUsage(AnalysisUsage &AU) const override;
     98   MachineInstr *findSuitableCompare(MachineBasicBlock *MBB);
     99   CmpInfo adjustCmp(MachineInstr *CmpMI, AArch64CC::CondCode Cmp);
    100   void modifyCmp(MachineInstr *CmpMI, const CmpInfo &Info);
    101   bool adjustTo(MachineInstr *CmpMI, AArch64CC::CondCode Cmp, MachineInstr *To,
    102                 int ToImm);
    103   bool runOnMachineFunction(MachineFunction &MF) override;
    104   const char *getPassName() const override {
    105     return "AArch64 Condition Optimizer";
    106   }
    107 };
    108 } // end anonymous namespace
    109 
    110 char AArch64ConditionOptimizer::ID = 0;
    111 
    112 namespace llvm {
    113 void initializeAArch64ConditionOptimizerPass(PassRegistry &);
    114 }
    115 
    116 INITIALIZE_PASS_BEGIN(AArch64ConditionOptimizer, "aarch64-condopt",
    117                       "AArch64 CondOpt Pass", false, false)
    118 INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
    119 INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
    120 INITIALIZE_PASS_END(AArch64ConditionOptimizer, "aarch64-condopt",
    121                     "AArch64 CondOpt Pass", false, false)
    122 
    123 FunctionPass *llvm::createAArch64ConditionOptimizerPass() {
    124   return new AArch64ConditionOptimizer();
    125 }
    126 
    127 void AArch64ConditionOptimizer::getAnalysisUsage(AnalysisUsage &AU) const {
    128   AU.addRequired<MachineDominatorTree>();
    129   AU.addPreserved<MachineDominatorTree>();
    130   AU.addRequired<LiveIntervals>();
    131   AU.addPreserved<LiveIntervals>();
    132   MachineFunctionPass::getAnalysisUsage(AU);
    133 }
    134 
    135 // Finds compare instruction that corresponds to supported types of branching.
    136 // Returns the instruction or nullptr on failures or detecting unsupported
    137 // instructions.
    138 MachineInstr *AArch64ConditionOptimizer::findSuitableCompare(
    139     MachineBasicBlock *MBB) {
    140   MachineBasicBlock::iterator I = MBB->getFirstTerminator();
    141   if (I == MBB->end())
    142     return nullptr;
    143 
    144   if (I->getOpcode() != AArch64::Bcc)
    145     return nullptr;
    146 
    147   // Now find the instruction controlling the terminator.
    148   for (MachineBasicBlock::iterator B = MBB->begin(); I != B;) {
    149     --I;
    150     assert(!I->isTerminator() && "Spurious terminator");
    151     switch (I->getOpcode()) {
    152     // cmp is an alias for subs with a dead destination register.
    153     case AArch64::SUBSWri:
    154     case AArch64::SUBSXri:
    155     // cmn is an alias for adds with a dead destination register.
    156     case AArch64::ADDSWri:
    157     case AArch64::ADDSXri:
    158       if (I->getOperand(0).isDead())
    159         return I;
    160 
    161       DEBUG(dbgs() << "Destination of cmp is not dead, " << *I << '\n');
    162       return nullptr;
    163 
    164     // Prevent false positive case like:
    165     // cmp      w19, #0
    166     // cinc     w0, w19, gt
    167     // ...
    168     // fcmp     d8, #0.0
    169     // b.gt     .LBB0_5
    170     case AArch64::FCMPDri:
    171     case AArch64::FCMPSri:
    172     case AArch64::FCMPESri:
    173     case AArch64::FCMPEDri:
    174 
    175     case AArch64::SUBSWrr:
    176     case AArch64::SUBSXrr:
    177     case AArch64::ADDSWrr:
    178     case AArch64::ADDSXrr:
    179     case AArch64::FCMPSrr:
    180     case AArch64::FCMPDrr:
    181     case AArch64::FCMPESrr:
    182     case AArch64::FCMPEDrr:
    183       // Skip comparison instructions without immediate operands.
    184       return nullptr;
    185     }
    186   }
    187   DEBUG(dbgs() << "Flags not defined in BB#" << MBB->getNumber() << '\n');
    188   return nullptr;
    189 }
    190 
    191 // Changes opcode adds <-> subs considering register operand width.
    192 static int getComplementOpc(int Opc) {
    193   switch (Opc) {
    194   case AArch64::ADDSWri: return AArch64::SUBSWri;
    195   case AArch64::ADDSXri: return AArch64::SUBSXri;
    196   case AArch64::SUBSWri: return AArch64::ADDSWri;
    197   case AArch64::SUBSXri: return AArch64::ADDSXri;
    198   default:
    199     llvm_unreachable("Unexpected opcode");
    200   }
    201 }
    202 
    203 // Changes form of comparison inclusive <-> exclusive.
    204 static AArch64CC::CondCode getAdjustedCmp(AArch64CC::CondCode Cmp) {
    205   switch (Cmp) {
    206   case AArch64CC::GT: return AArch64CC::GE;
    207   case AArch64CC::GE: return AArch64CC::GT;
    208   case AArch64CC::LT: return AArch64CC::LE;
    209   case AArch64CC::LE: return AArch64CC::LT;
    210   default:
    211     llvm_unreachable("Unexpected condition code");
    212   }
    213 }
    214 
    215 // Transforms GT -> GE, GE -> GT, LT -> LE, LE -> LT by updating comparison
    216 // operator and condition code.
    217 AArch64ConditionOptimizer::CmpInfo AArch64ConditionOptimizer::adjustCmp(
    218     MachineInstr *CmpMI, AArch64CC::CondCode Cmp) {
    219   int Opc = CmpMI->getOpcode();
    220 
    221   // CMN (compare with negative immediate) is an alias to ADDS (as
    222   // "operand - negative" == "operand + positive")
    223   bool Negative = (Opc == AArch64::ADDSWri || Opc == AArch64::ADDSXri);
    224 
    225   int Correction = (Cmp == AArch64CC::GT) ? 1 : -1;
    226   // Negate Correction value for comparison with negative immediate (CMN).
    227   if (Negative) {
    228     Correction = -Correction;
    229   }
    230 
    231   const int OldImm = (int)CmpMI->getOperand(2).getImm();
    232   const int NewImm = std::abs(OldImm + Correction);
    233 
    234   // Handle +0 -> -1 and -0 -> +1 (CMN with 0 immediate) transitions by
    235   // adjusting compare instruction opcode.
    236   if (OldImm == 0 && ((Negative && Correction == 1) ||
    237                       (!Negative && Correction == -1))) {
    238     Opc = getComplementOpc(Opc);
    239   }
    240 
    241   return CmpInfo(NewImm, Opc, getAdjustedCmp(Cmp));
    242 }
    243 
    244 // Applies changes to comparison instruction suggested by adjustCmp().
    245 void AArch64ConditionOptimizer::modifyCmp(MachineInstr *CmpMI,
    246     const CmpInfo &Info) {
    247   int Imm;
    248   int Opc;
    249   AArch64CC::CondCode Cmp;
    250   std::tie(Imm, Opc, Cmp) = Info;
    251 
    252   MachineBasicBlock *const MBB = CmpMI->getParent();
    253 
    254   // Change immediate in comparison instruction (ADDS or SUBS).
    255   BuildMI(*MBB, CmpMI, CmpMI->getDebugLoc(), TII->get(Opc))
    256       .addOperand(CmpMI->getOperand(0))
    257       .addOperand(CmpMI->getOperand(1))
    258       .addImm(Imm)
    259       .addOperand(CmpMI->getOperand(3));
    260   CmpMI->eraseFromParent();
    261 
    262   // The fact that this comparison was picked ensures that it's related to the
    263   // first terminator instruction.
    264   MachineInstr *BrMI = MBB->getFirstTerminator();
    265 
    266   // Change condition in branch instruction.
    267   BuildMI(*MBB, BrMI, BrMI->getDebugLoc(), TII->get(AArch64::Bcc))
    268       .addImm(Cmp)
    269       .addOperand(BrMI->getOperand(1));
    270   BrMI->eraseFromParent();
    271 
    272   MBB->updateTerminator();
    273 
    274   ++NumConditionsAdjusted;
    275 }
    276 
    277 // Parse a condition code returned by AnalyzeBranch, and compute the CondCode
    278 // corresponding to TBB.
    279 // Returns true if parsing was successful, otherwise false is returned.
    280 static bool parseCond(ArrayRef<MachineOperand> Cond, AArch64CC::CondCode &CC) {
    281   // A normal br.cond simply has the condition code.
    282   if (Cond[0].getImm() != -1) {
    283     assert(Cond.size() == 1 && "Unknown Cond array format");
    284     CC = (AArch64CC::CondCode)(int)Cond[0].getImm();
    285     return true;
    286   }
    287   return false;
    288 }
    289 
    290 // Adjusts one cmp instruction to another one if result of adjustment will allow
    291 // CSE.  Returns true if compare instruction was changed, otherwise false is
    292 // returned.
    293 bool AArch64ConditionOptimizer::adjustTo(MachineInstr *CmpMI,
    294   AArch64CC::CondCode Cmp, MachineInstr *To, int ToImm)
    295 {
    296   CmpInfo Info = adjustCmp(CmpMI, Cmp);
    297   if (std::get<0>(Info) == ToImm && std::get<1>(Info) == To->getOpcode()) {
    298     modifyCmp(CmpMI, Info);
    299     return true;
    300   }
    301   return false;
    302 }
    303 
    304 bool AArch64ConditionOptimizer::runOnMachineFunction(MachineFunction &MF) {
    305   DEBUG(dbgs() << "********** AArch64 Conditional Compares **********\n"
    306                << "********** Function: " << MF.getName() << '\n');
    307   TII = MF.getSubtarget().getInstrInfo();
    308   DomTree = &getAnalysis<MachineDominatorTree>();
    309 
    310   bool Changed = false;
    311 
    312   // Visit blocks in dominator tree pre-order. The pre-order enables multiple
    313   // cmp-conversions from the same head block.
    314   // Note that updateDomTree() modifies the children of the DomTree node
    315   // currently being visited. The df_iterator supports that; it doesn't look at
    316   // child_begin() / child_end() until after a node has been visited.
    317   for (MachineDomTreeNode *I : depth_first(DomTree)) {
    318     MachineBasicBlock *HBB = I->getBlock();
    319 
    320     SmallVector<MachineOperand, 4> HeadCond;
    321     MachineBasicBlock *TBB = nullptr, *FBB = nullptr;
    322     if (TII->AnalyzeBranch(*HBB, TBB, FBB, HeadCond)) {
    323       continue;
    324     }
    325 
    326     // Equivalence check is to skip loops.
    327     if (!TBB || TBB == HBB) {
    328       continue;
    329     }
    330 
    331     SmallVector<MachineOperand, 4> TrueCond;
    332     MachineBasicBlock *TBB_TBB = nullptr, *TBB_FBB = nullptr;
    333     if (TII->AnalyzeBranch(*TBB, TBB_TBB, TBB_FBB, TrueCond)) {
    334       continue;
    335     }
    336 
    337     MachineInstr *HeadCmpMI = findSuitableCompare(HBB);
    338     if (!HeadCmpMI) {
    339       continue;
    340     }
    341 
    342     MachineInstr *TrueCmpMI = findSuitableCompare(TBB);
    343     if (!TrueCmpMI) {
    344       continue;
    345     }
    346 
    347     AArch64CC::CondCode HeadCmp;
    348     if (HeadCond.empty() || !parseCond(HeadCond, HeadCmp)) {
    349       continue;
    350     }
    351 
    352     AArch64CC::CondCode TrueCmp;
    353     if (TrueCond.empty() || !parseCond(TrueCond, TrueCmp)) {
    354       continue;
    355     }
    356 
    357     const int HeadImm = (int)HeadCmpMI->getOperand(2).getImm();
    358     const int TrueImm = (int)TrueCmpMI->getOperand(2).getImm();
    359 
    360     DEBUG(dbgs() << "Head branch:\n");
    361     DEBUG(dbgs() << "\tcondition: "
    362           << AArch64CC::getCondCodeName(HeadCmp) << '\n');
    363     DEBUG(dbgs() << "\timmediate: " << HeadImm << '\n');
    364 
    365     DEBUG(dbgs() << "True branch:\n");
    366     DEBUG(dbgs() << "\tcondition: "
    367           << AArch64CC::getCondCodeName(TrueCmp) << '\n');
    368     DEBUG(dbgs() << "\timmediate: " << TrueImm << '\n');
    369 
    370     if (((HeadCmp == AArch64CC::GT && TrueCmp == AArch64CC::LT) ||
    371          (HeadCmp == AArch64CC::LT && TrueCmp == AArch64CC::GT)) &&
    372         std::abs(TrueImm - HeadImm) == 2) {
    373       // This branch transforms machine instructions that correspond to
    374       //
    375       // 1) (a > {TrueImm} && ...) || (a < {HeadImm} && ...)
    376       // 2) (a < {TrueImm} && ...) || (a > {HeadImm} && ...)
    377       //
    378       // into
    379       //
    380       // 1) (a >= {NewImm} && ...) || (a <= {NewImm} && ...)
    381       // 2) (a <= {NewImm} && ...) || (a >= {NewImm} && ...)
    382 
    383       CmpInfo HeadCmpInfo = adjustCmp(HeadCmpMI, HeadCmp);
    384       CmpInfo TrueCmpInfo = adjustCmp(TrueCmpMI, TrueCmp);
    385       if (std::get<0>(HeadCmpInfo) == std::get<0>(TrueCmpInfo) &&
    386           std::get<1>(HeadCmpInfo) == std::get<1>(TrueCmpInfo)) {
    387         modifyCmp(HeadCmpMI, HeadCmpInfo);
    388         modifyCmp(TrueCmpMI, TrueCmpInfo);
    389         Changed = true;
    390       }
    391     } else if (((HeadCmp == AArch64CC::GT && TrueCmp == AArch64CC::GT) ||
    392                 (HeadCmp == AArch64CC::LT && TrueCmp == AArch64CC::LT)) &&
    393                 std::abs(TrueImm - HeadImm) == 1) {
    394       // This branch transforms machine instructions that correspond to
    395       //
    396       // 1) (a > {TrueImm} && ...) || (a > {HeadImm} && ...)
    397       // 2) (a < {TrueImm} && ...) || (a < {HeadImm} && ...)
    398       //
    399       // into
    400       //
    401       // 1) (a <= {NewImm} && ...) || (a >  {NewImm} && ...)
    402       // 2) (a <  {NewImm} && ...) || (a >= {NewImm} && ...)
    403 
    404       // GT -> GE transformation increases immediate value, so picking the
    405       // smaller one; LT -> LE decreases immediate value so invert the choice.
    406       bool adjustHeadCond = (HeadImm < TrueImm);
    407       if (HeadCmp == AArch64CC::LT) {
    408           adjustHeadCond = !adjustHeadCond;
    409       }
    410 
    411       if (adjustHeadCond) {
    412         Changed |= adjustTo(HeadCmpMI, HeadCmp, TrueCmpMI, TrueImm);
    413       } else {
    414         Changed |= adjustTo(TrueCmpMI, TrueCmp, HeadCmpMI, HeadImm);
    415       }
    416     }
    417     // Other transformation cases almost never occur due to generation of < or >
    418     // comparisons instead of <= and >=.
    419   }
    420 
    421   return Changed;
    422 }
    423