23#define DEBUG_TYPE "riscv-insert-read-write-csr" 
   24#define RISCV_INSERT_READ_WRITE_CSR_NAME "RISC-V Insert Read/Write CSR Pass" 
   29                        cl::desc(
"Disable optimized frm insertion."));
 
   41  bool runOnMachineFunction(MachineFunction &MF) 
override;
 
   43  void getAnalysisUsage(AnalysisUsage &AU)
 const override {
 
   48  StringRef getPassName()
 const override {
 
   53  bool emitWriteRoundingMode(MachineBasicBlock &
MBB);
 
   54  bool emitWriteRoundingModeOpt(MachineBasicBlock &
MBB);
 
   59char RISCVInsertReadWriteCSR::ID = 0;
 
   72    if (
MI.getOpcode() == RISCV::SwapFRMImm ||
 
   73        MI.getOpcode() == RISCV::WriteFRMImm) {
 
   74      CurrentRM = 
MI.getOperand(0).getImm();
 
   79    if (
MI.getOpcode() == RISCV::WriteFRM) {
 
   85    if (
MI.isCall() || 
MI.isInlineAsm() ||
 
   86        MI.readsRegister(RISCV::FRM, 
nullptr)) {
 
   96    assert(!
MI.modifiesRegister(RISCV::FRM, 
nullptr) &&
 
   97           "Expected that MI could not modify FRM.");
 
  102    unsigned InstrRM = 
MI.getOperand(FRMIdx).getImm();
 
  104    LastFRMChanger = &
MI;
 
  112    if (InstrRM == CurrentRM)
 
  118      SavedFRM = 
MRI->createVirtualRegister(&RISCV::GPRRegClass);
 
  131    assert(LastFRMChanger && 
"Expected valid pointer.");
 
  132    MachineInstrBuilder MIB =
 
  133        BuildMI(*MBB.getParent(), {}, 
TII->get(RISCV::WriteFRM))
 
  135    MBB.insertAfter(LastFRMChanger, MIB);
 
 
  145  for (MachineInstr &
MI : 
MBB) {
 
  150    unsigned FRMImm = 
MI.getOperand(FRMIdx).getImm();
 
  160    Register SavedFRM = 
MRI->createVirtualRegister(&RISCV::GPRRegClass);
 
  167    MachineInstrBuilder MIB =
 
  175bool RISCVInsertReadWriteCSR::runOnMachineFunction(MachineFunction &MF) {
 
  178  if (!
ST.hasVInstructions())
 
  181  TII = 
ST.getInstrInfo();
 
  185  for (MachineBasicBlock &
MBB : MF) {
 
  196  return new RISCVInsertReadWriteCSR();
 
 
unsigned const MachineRegisterInfo * MRI
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
const HexagonInstrInfo * TII
Promote Memory to Register
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
#define RISCV_INSERT_READ_WRITE_CSR_NAME
static cl::opt< bool > DisableFRMInsertOpt("riscv-disable-frm-insert-opt", cl::init(false), cl::Hidden, cl::desc("Disable optimized frm insertion."))
LLVM_ABI void setPreservesCFG()
This function should be called by the pass, iff they do not:
FunctionPass class - This class is used to implement most global optimizations.
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
iterator insertAfter(iterator I, MachineInstr *MI)
Insert MI into the instruction list after I.
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.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & addReg(Register RegNo, unsigned flags=0, unsigned SubReg=0) const
Add a new virtual register operand.
Representation of each machine instruction.
static MachineOperand CreateReg(Register Reg, bool isDef, bool isImp=false, bool isKill=false, bool isDead=false, bool isUndef=false, bool isEarlyClobber=false, unsigned SubReg=0, bool isDebug=false, bool isInternalRead=false, bool isRenamable=false)
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
Wrapper class representing virtual and physical registers.
constexpr bool isValid() const
TargetInstrInfo - Interface to description of machine instruction set.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
static int getFRMOpNum(const MCInstrDesc &Desc)
initializer< Ty > init(const Ty &Val)
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.
FunctionPass * createRISCVInsertReadWriteCSRPass()