Thanks to visit codestin.com
Credit goes to llvm.org

LLVM 22.0.0git
RISCVLateBranchOpt.cpp
Go to the documentation of this file.
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
18using namespace llvm;
19
20#define RISCV_LATE_BRANCH_OPT_NAME "RISC-V Late Branch Optimisation Pass"
21
22namespace {
23
24struct 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 {
33 }
34
35 bool runOnMachineFunction(MachineFunction &Fn) override;
36
37private:
39
40 const RISCVInstrInfo *RII = nullptr;
41};
42} // namespace
43
44char RISCVLateBranchOpt::ID = 0;
45INITIALIZE_PASS(RISCVLateBranchOpt, "riscv-late-branch-opt",
46 RISCV_LATE_BRANCH_OPT_NAME, false, false)
47
48bool RISCVLateBranchOpt::runOnBasicBlock(MachineBasicBlock &MBB) const {
51 if (RII->analyzeBranch(MBB, TBB, FBB, Cond, /*AllowModify=*/false))
52 return false;
53
54 if (!TBB || Cond.size() != 3)
55 return false;
56
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;
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, Folded, nullptr, {}, DL);
79 }
80
81 // Update the successors. Remove them all and add back the correct one.
82 while (!MBB.succ_empty())
83 MBB.removeSuccessor(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(&*Fallthrough);
90 } else
91 MBB.addSuccessor(Folded);
92
93 return true;
94}
95
96bool RISCVLateBranchOpt::runOnMachineFunction(MachineFunction &Fn) {
97 if (skipFunction(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)
106 return Changed;
107}
108
110 return new RISCVLateBranchOpt();
111}
unsigned const MachineRegisterInfo * MRI
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static bool runOnBasicBlock(MachineBasicBlock *MBB, unsigned BasicBlockNum, VRegRenamer &Renamer)
if(PassOpts->AAPipeline)
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition PassSupport.h:56
#define RISCV_LATE_BRANCH_OPT_NAME
const SmallVectorImpl< MachineOperand > MachineBasicBlock * TBB
const SmallVectorImpl< MachineOperand > & Cond
Represent the analysis usage information of a pass.
A debug info location.
Definition DebugLoc.h:124
FunctionPass class - This class is used to implement most global optimizations.
Definition Pass.h:314
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.
Function & getFunction()
Return the LLVM function that this machine code represents.
BasicBlockListType::iterator iterator
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
static RISCVCC::CondCode getCondFromBranchOpc(unsigned Opc)
static bool evaluateCondBranch(RISCVCC::CondCode CC, int64_t C0, int64_t C1)
Return the result of the evaluation of C0 CC C1, where CC is a RISCVCC::CondCode.
static bool isFromLoadImm(const MachineRegisterInfo &MRI, const MachineOperand &Op, int64_t &Imm)
Return true if the operand is a load immediate instruction and sets Imm to the immediate value.
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
Changed
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.
FunctionPass * createRISCVLateBranchOptPass()