1 | //===-- RISCVLateBranchOpt.cpp - Late Stage Branch Optimization -----------===// |
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 provides RISC-V specific target optimizations, currently it's |
10 | /// limited to convert conditional branches into unconditional branches when |
11 | /// the condition can be statically evaluated. |
12 | /// |
13 | //===----------------------------------------------------------------------===// |
14 | |
15 | #include "RISCVInstrInfo.h" |
16 | #include "RISCVSubtarget.h" |
17 | |
18 | using namespace llvm; |
19 | |
20 | #define RISCV_LATE_BRANCH_OPT_NAME "RISC-V Late Branch Optimisation Pass" |
21 | |
22 | namespace { |
23 | |
24 | struct RISCVLateBranchOpt : public MachineFunctionPass { |
25 | static char ID; |
26 | |
27 | RISCVLateBranchOpt() : MachineFunctionPass(ID) {} |
28 | |
29 | StringRef getPassName() const override { return RISCV_LATE_BRANCH_OPT_NAME; } |
30 | |
31 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
32 | MachineFunctionPass::getAnalysisUsage(AU); |
33 | } |
34 | |
35 | bool runOnMachineFunction(MachineFunction &Fn) override; |
36 | |
37 | private: |
38 | bool runOnBasicBlock(MachineBasicBlock &MBB) const; |
39 | |
40 | const RISCVInstrInfo *RII = nullptr; |
41 | }; |
42 | } // namespace |
43 | |
44 | char RISCVLateBranchOpt::ID = 0; |
45 | INITIALIZE_PASS(RISCVLateBranchOpt, "riscv-late-branch-opt" , |
46 | RISCV_LATE_BRANCH_OPT_NAME, false, false) |
47 | |
48 | bool RISCVLateBranchOpt::runOnBasicBlock(MachineBasicBlock &MBB) const { |
49 | MachineBasicBlock *TBB, *FBB; |
50 | SmallVector<MachineOperand, 4> Cond; |
51 | if (RII->analyzeBranch(MBB, TBB, FBB, Cond, /*AllowModify=*/false)) |
52 | return false; |
53 | |
54 | if (!TBB || Cond.size() != 3) |
55 | return false; |
56 | |
57 | RISCVCC::CondCode CC = RISCVInstrInfo::getCondFromBranchOpc(Opc: Cond[0].getImm()); |
58 | assert(CC != RISCVCC::COND_INVALID); |
59 | |
60 | MachineRegisterInfo &MRI = MBB.getParent()->getRegInfo(); |
61 | |
62 | // Try and convert a conditional branch that can be evaluated statically |
63 | // into an unconditional branch. |
64 | int64_t C0, C1; |
65 | if (!RISCVInstrInfo::isFromLoadImm(MRI, Op: Cond[1], Imm&: C0) || |
66 | !RISCVInstrInfo::isFromLoadImm(MRI, Op: Cond[2], Imm&: C1)) |
67 | return false; |
68 | |
69 | MachineBasicBlock *Folded = |
70 | RISCVInstrInfo::evaluateCondBranch(CC, C0, C1) ? TBB : FBB; |
71 | |
72 | // At this point, its legal to optimize. |
73 | RII->removeBranch(MBB); |
74 | |
75 | // Only need to insert a branch if we're not falling through. |
76 | if (Folded) { |
77 | DebugLoc DL = MBB.findBranchDebugLoc(); |
78 | RII->insertBranch(MBB, TBB: Folded, FBB: nullptr, Cond: {}, dl: DL); |
79 | } |
80 | |
81 | // Update the successors. Remove them all and add back the correct one. |
82 | while (!MBB.succ_empty()) |
83 | MBB.removeSuccessor(I: MBB.succ_end() - 1); |
84 | |
85 | // If it's a fallthrough, we need to figure out where MBB is going. |
86 | if (!Folded) { |
87 | MachineFunction::iterator Fallthrough = ++MBB.getIterator(); |
88 | if (Fallthrough != MBB.getParent()->end()) |
89 | MBB.addSuccessor(Succ: &*Fallthrough); |
90 | } else |
91 | MBB.addSuccessor(Succ: Folded); |
92 | |
93 | return true; |
94 | } |
95 | |
96 | bool RISCVLateBranchOpt::runOnMachineFunction(MachineFunction &Fn) { |
97 | if (skipFunction(F: Fn.getFunction())) |
98 | return false; |
99 | |
100 | auto &ST = Fn.getSubtarget<RISCVSubtarget>(); |
101 | RII = ST.getInstrInfo(); |
102 | |
103 | bool Changed = false; |
104 | for (MachineBasicBlock &MBB : Fn) |
105 | Changed |= runOnBasicBlock(MBB); |
106 | return Changed; |
107 | } |
108 | |
109 | FunctionPass *llvm::createRISCVLateBranchOptPass() { |
110 | return new RISCVLateBranchOpt(); |
111 | } |
112 | |