181ad6265SDimitry Andric //===-- RISCVMakeCompressible.cpp - Make more instructions compressible ---===//
281ad6265SDimitry Andric //
381ad6265SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
481ad6265SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
581ad6265SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
681ad6265SDimitry Andric //
781ad6265SDimitry Andric //===----------------------------------------------------------------------===//
881ad6265SDimitry Andric //
981ad6265SDimitry Andric // This pass searches for instructions that are prevented from being compressed
1081ad6265SDimitry Andric // by one of the following:
1181ad6265SDimitry Andric //
1281ad6265SDimitry Andric //   1. The use of a single uncompressed register.
1381ad6265SDimitry Andric //   2. A base register + offset where the offset is too large to be compressed
1481ad6265SDimitry Andric //   and the base register may or may not be compressed.
1581ad6265SDimitry Andric //
1681ad6265SDimitry Andric //
1781ad6265SDimitry Andric // For case 1, if a compressed register is available, then the uncompressed
1881ad6265SDimitry Andric // register is copied to the compressed register and its uses are replaced.
1981ad6265SDimitry Andric //
2081ad6265SDimitry Andric // For example, storing zero uses the uncompressible zero register:
2181ad6265SDimitry Andric //   sw zero, 0(a0)   # if zero
2281ad6265SDimitry Andric //   sw zero, 8(a0)   # if zero
2381ad6265SDimitry Andric //   sw zero, 4(a0)   # if zero
2481ad6265SDimitry Andric //   sw zero, 24(a0)   # if zero
2581ad6265SDimitry Andric //
2681ad6265SDimitry Andric // If a compressed register (e.g. a1) is available, the above can be transformed
2781ad6265SDimitry Andric // to the following to improve code size:
2881ad6265SDimitry Andric //   li a1, 0
2981ad6265SDimitry Andric //   c.sw a1, 0(a0)
3081ad6265SDimitry Andric //   c.sw a1, 8(a0)
3181ad6265SDimitry Andric //   c.sw a1, 4(a0)
3281ad6265SDimitry Andric //   c.sw a1, 24(a0)
3381ad6265SDimitry Andric //
3481ad6265SDimitry Andric //
3581ad6265SDimitry Andric // For case 2, if a compressed register is available, then the original base
3681ad6265SDimitry Andric // is copied and adjusted such that:
3781ad6265SDimitry Andric //
3881ad6265SDimitry Andric //   new_base_register = base_register + adjustment
3981ad6265SDimitry Andric //   base_register + large_offset = new_base_register + small_offset
4081ad6265SDimitry Andric //
4181ad6265SDimitry Andric // For example, the following offsets are too large for c.sw:
4281ad6265SDimitry Andric //   lui a2, 983065
4381ad6265SDimitry Andric //   sw  a1, -236(a2)
4481ad6265SDimitry Andric //   sw  a1, -240(a2)
4581ad6265SDimitry Andric //   sw  a1, -244(a2)
4681ad6265SDimitry Andric //   sw  a1, -248(a2)
4781ad6265SDimitry Andric //   sw  a1, -252(a2)
4881ad6265SDimitry Andric //   sw  a0, -256(a2)
4981ad6265SDimitry Andric //
5081ad6265SDimitry Andric // If a compressed register is available (e.g. a3), a new base could be created
5181ad6265SDimitry Andric // such that the addresses can accessed with a compressible offset, thus
5281ad6265SDimitry Andric // improving code size:
5381ad6265SDimitry Andric //   lui a2, 983065
5481ad6265SDimitry Andric //   addi  a3, a2, -256
5581ad6265SDimitry Andric //   c.sw  a1, 20(a3)
5681ad6265SDimitry Andric //   c.sw  a1, 16(a3)
5781ad6265SDimitry Andric //   c.sw  a1, 12(a3)
5881ad6265SDimitry Andric //   c.sw  a1, 8(a3)
5981ad6265SDimitry Andric //   c.sw  a1, 4(a3)
6081ad6265SDimitry Andric //   c.sw  a0, 0(a3)
6181ad6265SDimitry Andric //
6281ad6265SDimitry Andric //
6381ad6265SDimitry Andric // This optimization is only applied if there are enough uses of the copied
6481ad6265SDimitry Andric // register for code size to be reduced.
6581ad6265SDimitry Andric //
6681ad6265SDimitry Andric //===----------------------------------------------------------------------===//
6781ad6265SDimitry Andric 
6881ad6265SDimitry Andric #include "RISCV.h"
6981ad6265SDimitry Andric #include "RISCVSubtarget.h"
7081ad6265SDimitry Andric #include "llvm/CodeGen/Passes.h"
7181ad6265SDimitry Andric #include "llvm/CodeGen/RegisterScavenging.h"
7281ad6265SDimitry Andric #include "llvm/MC/TargetRegistry.h"
7381ad6265SDimitry Andric #include "llvm/Support/Debug.h"
7481ad6265SDimitry Andric 
7581ad6265SDimitry Andric using namespace llvm;
7681ad6265SDimitry Andric 
7781ad6265SDimitry Andric #define DEBUG_TYPE "riscv-make-compressible"
7806c3fb27SDimitry Andric #define RISCV_COMPRESS_INSTRS_NAME "RISC-V Make Compressible"
7981ad6265SDimitry Andric 
8081ad6265SDimitry Andric namespace {
8181ad6265SDimitry Andric 
8281ad6265SDimitry Andric struct RISCVMakeCompressibleOpt : public MachineFunctionPass {
8381ad6265SDimitry Andric   static char ID;
8481ad6265SDimitry Andric 
8581ad6265SDimitry Andric   bool runOnMachineFunction(MachineFunction &Fn) override;
8681ad6265SDimitry Andric 
RISCVMakeCompressibleOpt__anon1e5963510111::RISCVMakeCompressibleOpt87*5f757f3fSDimitry Andric   RISCVMakeCompressibleOpt() : MachineFunctionPass(ID) {}
8881ad6265SDimitry Andric 
getPassName__anon1e5963510111::RISCVMakeCompressibleOpt8981ad6265SDimitry Andric   StringRef getPassName() const override { return RISCV_COMPRESS_INSTRS_NAME; }
9081ad6265SDimitry Andric };
9181ad6265SDimitry Andric } // namespace
9281ad6265SDimitry Andric 
9381ad6265SDimitry Andric char RISCVMakeCompressibleOpt::ID = 0;
9481ad6265SDimitry Andric INITIALIZE_PASS(RISCVMakeCompressibleOpt, "riscv-make-compressible",
9581ad6265SDimitry Andric                 RISCV_COMPRESS_INSTRS_NAME, false, false)
9681ad6265SDimitry Andric 
9781ad6265SDimitry Andric // Return log2(widthInBytes) of load/store done by Opcode.
log2LdstWidth(unsigned Opcode)9881ad6265SDimitry Andric static unsigned log2LdstWidth(unsigned Opcode) {
9981ad6265SDimitry Andric   switch (Opcode) {
10081ad6265SDimitry Andric   default:
10181ad6265SDimitry Andric     llvm_unreachable("Unexpected opcode");
10281ad6265SDimitry Andric   case RISCV::LW:
10381ad6265SDimitry Andric   case RISCV::SW:
10481ad6265SDimitry Andric   case RISCV::FLW:
10581ad6265SDimitry Andric   case RISCV::FSW:
10681ad6265SDimitry Andric     return 2;
10781ad6265SDimitry Andric   case RISCV::LD:
10881ad6265SDimitry Andric   case RISCV::SD:
10981ad6265SDimitry Andric   case RISCV::FLD:
11081ad6265SDimitry Andric   case RISCV::FSD:
11181ad6265SDimitry Andric     return 3;
11281ad6265SDimitry Andric   }
11381ad6265SDimitry Andric }
11481ad6265SDimitry Andric 
11581ad6265SDimitry Andric // Return a mask for the offset bits of a non-stack-pointer based compressed
11681ad6265SDimitry Andric // load/store.
compressedLDSTOffsetMask(unsigned Opcode)11781ad6265SDimitry Andric static uint8_t compressedLDSTOffsetMask(unsigned Opcode) {
11881ad6265SDimitry Andric   return 0x1f << log2LdstWidth(Opcode);
11981ad6265SDimitry Andric }
12081ad6265SDimitry Andric 
12181ad6265SDimitry Andric // Return true if Offset fits within a compressed stack-pointer based
12281ad6265SDimitry Andric // load/store.
compressibleSPOffset(int64_t Offset,unsigned Opcode)12381ad6265SDimitry Andric static bool compressibleSPOffset(int64_t Offset, unsigned Opcode) {
12481ad6265SDimitry Andric   return log2LdstWidth(Opcode) == 2 ? isShiftedUInt<6, 2>(Offset)
12581ad6265SDimitry Andric                                     : isShiftedUInt<6, 3>(Offset);
12681ad6265SDimitry Andric }
12781ad6265SDimitry Andric 
12881ad6265SDimitry Andric // Given an offset for a load/store, return the adjustment required to the base
12981ad6265SDimitry Andric // register such that the address can be accessed with a compressible offset.
13081ad6265SDimitry Andric // This will return 0 if the offset is already compressible.
getBaseAdjustForCompression(int64_t Offset,unsigned Opcode)13181ad6265SDimitry Andric static int64_t getBaseAdjustForCompression(int64_t Offset, unsigned Opcode) {
13281ad6265SDimitry Andric   // Return the excess bits that do not fit in a compressible offset.
13381ad6265SDimitry Andric   return Offset & ~compressedLDSTOffsetMask(Opcode);
13481ad6265SDimitry Andric }
13581ad6265SDimitry Andric 
13681ad6265SDimitry Andric // Return true if Reg is in a compressed register class.
isCompressedReg(Register Reg)13781ad6265SDimitry Andric static bool isCompressedReg(Register Reg) {
13881ad6265SDimitry Andric   return RISCV::GPRCRegClass.contains(Reg) ||
13981ad6265SDimitry Andric          RISCV::FPR32CRegClass.contains(Reg) ||
14081ad6265SDimitry Andric          RISCV::FPR64CRegClass.contains(Reg);
14181ad6265SDimitry Andric }
14281ad6265SDimitry Andric 
14381ad6265SDimitry Andric // Return true if MI is a load for which there exists a compressed version.
isCompressibleLoad(const MachineInstr & MI)14481ad6265SDimitry Andric static bool isCompressibleLoad(const MachineInstr &MI) {
14581ad6265SDimitry Andric   const RISCVSubtarget &STI = MI.getMF()->getSubtarget<RISCVSubtarget>();
14681ad6265SDimitry Andric   const unsigned Opcode = MI.getOpcode();
14781ad6265SDimitry Andric 
14881ad6265SDimitry Andric   return Opcode == RISCV::LW || (!STI.is64Bit() && Opcode == RISCV::FLW) ||
14981ad6265SDimitry Andric          Opcode == RISCV::LD || Opcode == RISCV::FLD;
15081ad6265SDimitry Andric }
15181ad6265SDimitry Andric 
15281ad6265SDimitry Andric // Return true if MI is a store for which there exists a compressed version.
isCompressibleStore(const MachineInstr & MI)15381ad6265SDimitry Andric static bool isCompressibleStore(const MachineInstr &MI) {
15481ad6265SDimitry Andric   const RISCVSubtarget &STI = MI.getMF()->getSubtarget<RISCVSubtarget>();
15581ad6265SDimitry Andric   const unsigned Opcode = MI.getOpcode();
15681ad6265SDimitry Andric 
15781ad6265SDimitry Andric   return Opcode == RISCV::SW || (!STI.is64Bit() && Opcode == RISCV::FSW) ||
15881ad6265SDimitry Andric          Opcode == RISCV::SD || Opcode == RISCV::FSD;
15981ad6265SDimitry Andric }
16081ad6265SDimitry Andric 
16181ad6265SDimitry Andric // Find a single register and/or large offset which, if compressible, would
16281ad6265SDimitry Andric // allow the given instruction to be compressed.
16381ad6265SDimitry Andric //
16481ad6265SDimitry Andric // Possible return values:
16581ad6265SDimitry Andric //
16681ad6265SDimitry Andric //   {Reg, 0}               - Uncompressed Reg needs replacing with a compressed
16781ad6265SDimitry Andric //                            register.
16881ad6265SDimitry Andric //   {Reg, N}               - Reg needs replacing with a compressed register and
16981ad6265SDimitry Andric //                            N needs adding to the new register. (Reg may be
17081ad6265SDimitry Andric //                            compressed or uncompressed).
17181ad6265SDimitry Andric //   {RISCV::NoRegister, 0} - No suitable optimization found for this
17281ad6265SDimitry Andric //   instruction.
getRegImmPairPreventingCompression(const MachineInstr & MI)17381ad6265SDimitry Andric static RegImmPair getRegImmPairPreventingCompression(const MachineInstr &MI) {
17481ad6265SDimitry Andric   const unsigned Opcode = MI.getOpcode();
17581ad6265SDimitry Andric 
17681ad6265SDimitry Andric   if (isCompressibleLoad(MI) || isCompressibleStore(MI)) {
17781ad6265SDimitry Andric     const MachineOperand &MOImm = MI.getOperand(2);
17881ad6265SDimitry Andric     if (!MOImm.isImm())
17981ad6265SDimitry Andric       return RegImmPair(RISCV::NoRegister, 0);
18081ad6265SDimitry Andric 
18181ad6265SDimitry Andric     int64_t Offset = MOImm.getImm();
18281ad6265SDimitry Andric     int64_t NewBaseAdjust = getBaseAdjustForCompression(Offset, Opcode);
18381ad6265SDimitry Andric     Register Base = MI.getOperand(1).getReg();
18481ad6265SDimitry Andric 
18581ad6265SDimitry Andric     // Memory accesses via the stack pointer do not have a requirement for
18681ad6265SDimitry Andric     // either of the registers to be compressible and can take a larger offset.
18781ad6265SDimitry Andric     if (RISCV::SPRegClass.contains(Base)) {
18881ad6265SDimitry Andric       if (!compressibleSPOffset(Offset, Opcode) && NewBaseAdjust)
18981ad6265SDimitry Andric         return RegImmPair(Base, NewBaseAdjust);
19081ad6265SDimitry Andric     } else {
19181ad6265SDimitry Andric       Register SrcDest = MI.getOperand(0).getReg();
19281ad6265SDimitry Andric       bool SrcDestCompressed = isCompressedReg(SrcDest);
19381ad6265SDimitry Andric       bool BaseCompressed = isCompressedReg(Base);
19481ad6265SDimitry Andric 
19581ad6265SDimitry Andric       // If only Base and/or offset prevent compression, then return Base and
19681ad6265SDimitry Andric       // any adjustment required to make the offset compressible.
19781ad6265SDimitry Andric       if ((!BaseCompressed || NewBaseAdjust) && SrcDestCompressed)
19881ad6265SDimitry Andric         return RegImmPair(Base, NewBaseAdjust);
19981ad6265SDimitry Andric 
20081ad6265SDimitry Andric       // For loads, we can only change the base register since dest is defined
20181ad6265SDimitry Andric       // rather than used.
20281ad6265SDimitry Andric       //
20381ad6265SDimitry Andric       // For stores, we can change SrcDest (and Base if SrcDest == Base) but
20481ad6265SDimitry Andric       // cannot resolve an uncompressible offset in this case.
20581ad6265SDimitry Andric       if (isCompressibleStore(MI)) {
20681ad6265SDimitry Andric         if (!SrcDestCompressed && (BaseCompressed || SrcDest == Base) &&
20781ad6265SDimitry Andric             !NewBaseAdjust)
20881ad6265SDimitry Andric           return RegImmPair(SrcDest, NewBaseAdjust);
20981ad6265SDimitry Andric       }
21081ad6265SDimitry Andric     }
21181ad6265SDimitry Andric   }
21281ad6265SDimitry Andric   return RegImmPair(RISCV::NoRegister, 0);
21381ad6265SDimitry Andric }
21481ad6265SDimitry Andric 
21581ad6265SDimitry Andric // Check all uses after FirstMI of the given register, keeping a vector of
21681ad6265SDimitry Andric // instructions that would be compressible if the given register (and offset if
21781ad6265SDimitry Andric // applicable) were compressible.
21881ad6265SDimitry Andric //
21981ad6265SDimitry Andric // If there are enough uses for this optimization to improve code size and a
22081ad6265SDimitry Andric // compressed register is available, return that compressed register.
analyzeCompressibleUses(MachineInstr & FirstMI,RegImmPair RegImm,SmallVectorImpl<MachineInstr * > & MIs)22181ad6265SDimitry Andric static Register analyzeCompressibleUses(MachineInstr &FirstMI,
22281ad6265SDimitry Andric                                         RegImmPair RegImm,
22381ad6265SDimitry Andric                                         SmallVectorImpl<MachineInstr *> &MIs) {
22481ad6265SDimitry Andric   MachineBasicBlock &MBB = *FirstMI.getParent();
22581ad6265SDimitry Andric   const TargetRegisterInfo *TRI =
22681ad6265SDimitry Andric       MBB.getParent()->getSubtarget().getRegisterInfo();
22781ad6265SDimitry Andric 
22881ad6265SDimitry Andric   for (MachineBasicBlock::instr_iterator I = FirstMI.getIterator(),
22981ad6265SDimitry Andric                                          E = MBB.instr_end();
23081ad6265SDimitry Andric        I != E; ++I) {
23181ad6265SDimitry Andric     MachineInstr &MI = *I;
23281ad6265SDimitry Andric 
23381ad6265SDimitry Andric     // Determine if this is an instruction which would benefit from using the
23481ad6265SDimitry Andric     // new register.
23581ad6265SDimitry Andric     RegImmPair CandidateRegImm = getRegImmPairPreventingCompression(MI);
23606c3fb27SDimitry Andric     if (CandidateRegImm.Reg == RegImm.Reg && CandidateRegImm.Imm == RegImm.Imm)
23781ad6265SDimitry Andric       MIs.push_back(&MI);
23881ad6265SDimitry Andric 
23981ad6265SDimitry Andric     // If RegImm.Reg is modified by this instruction, then we cannot optimize
24081ad6265SDimitry Andric     // past this instruction. If the register is already compressed, then it may
24181ad6265SDimitry Andric     // possible to optimize a large offset in the current instruction - this
24281ad6265SDimitry Andric     // will have been detected by the preceeding call to
24381ad6265SDimitry Andric     // getRegImmPairPreventingCompression.
24481ad6265SDimitry Andric     if (MI.modifiesRegister(RegImm.Reg, TRI))
24581ad6265SDimitry Andric       break;
24681ad6265SDimitry Andric   }
24781ad6265SDimitry Andric 
24881ad6265SDimitry Andric   // Adjusting the base costs one new uncompressed addi and therefore three uses
24981ad6265SDimitry Andric   // are required for a code size reduction. If no base adjustment is required,
25081ad6265SDimitry Andric   // then copying the register costs one new c.mv (or c.li Rd, 0 for "copying"
25181ad6265SDimitry Andric   // the zero register) and therefore two uses are required for a code size
25281ad6265SDimitry Andric   // reduction.
25381ad6265SDimitry Andric   if (MIs.size() < 2 || (RegImm.Imm != 0 && MIs.size() < 3))
25481ad6265SDimitry Andric     return RISCV::NoRegister;
25581ad6265SDimitry Andric 
25681ad6265SDimitry Andric   // Find a compressible register which will be available from the first
25781ad6265SDimitry Andric   // instruction we care about to the last.
25881ad6265SDimitry Andric   const TargetRegisterClass *RCToScavenge;
25981ad6265SDimitry Andric 
26081ad6265SDimitry Andric   // Work out the compressed register class from which to scavenge.
26181ad6265SDimitry Andric   if (RISCV::GPRRegClass.contains(RegImm.Reg))
26281ad6265SDimitry Andric     RCToScavenge = &RISCV::GPRCRegClass;
26381ad6265SDimitry Andric   else if (RISCV::FPR32RegClass.contains(RegImm.Reg))
26481ad6265SDimitry Andric     RCToScavenge = &RISCV::FPR32CRegClass;
26581ad6265SDimitry Andric   else if (RISCV::FPR64RegClass.contains(RegImm.Reg))
26681ad6265SDimitry Andric     RCToScavenge = &RISCV::FPR64CRegClass;
26781ad6265SDimitry Andric   else
26881ad6265SDimitry Andric     return RISCV::NoRegister;
26981ad6265SDimitry Andric 
27006c3fb27SDimitry Andric   RegScavenger RS;
27106c3fb27SDimitry Andric   RS.enterBasicBlockEnd(MBB);
272*5f757f3fSDimitry Andric   RS.backward(std::next(MIs.back()->getIterator()));
27381ad6265SDimitry Andric   return RS.scavengeRegisterBackwards(*RCToScavenge, FirstMI.getIterator(),
27481ad6265SDimitry Andric                                       /*RestoreAfter=*/false, /*SPAdj=*/0,
27581ad6265SDimitry Andric                                       /*AllowSpill=*/false);
27681ad6265SDimitry Andric }
27781ad6265SDimitry Andric 
27881ad6265SDimitry Andric // Update uses of the old register in the given instruction to the new register.
updateOperands(MachineInstr & MI,RegImmPair OldRegImm,Register NewReg)27981ad6265SDimitry Andric static void updateOperands(MachineInstr &MI, RegImmPair OldRegImm,
28081ad6265SDimitry Andric                            Register NewReg) {
28181ad6265SDimitry Andric   unsigned Opcode = MI.getOpcode();
28281ad6265SDimitry Andric 
28381ad6265SDimitry Andric   // If this pass is extended to support more instructions, the check for
28481ad6265SDimitry Andric   // definedness may need to be strengthened.
28581ad6265SDimitry Andric   assert((isCompressibleLoad(MI) || isCompressibleStore(MI)) &&
28681ad6265SDimitry Andric          "Unsupported instruction for this optimization.");
28781ad6265SDimitry Andric 
288753f127fSDimitry Andric   int SkipN = 0;
289753f127fSDimitry Andric 
290753f127fSDimitry Andric   // Skip the first (value) operand to a store instruction (except if the store
291753f127fSDimitry Andric   // offset is zero) in order to avoid an incorrect transformation.
292753f127fSDimitry Andric   // e.g. sd a0, 808(a0) to addi a2, a0, 768; sd a2, 40(a2)
293753f127fSDimitry Andric   if (isCompressibleStore(MI) && OldRegImm.Imm != 0)
294753f127fSDimitry Andric     SkipN = 1;
295753f127fSDimitry Andric 
29681ad6265SDimitry Andric   // Update registers
297753f127fSDimitry Andric   for (MachineOperand &MO : drop_begin(MI.operands(), SkipN))
29881ad6265SDimitry Andric     if (MO.isReg() && MO.getReg() == OldRegImm.Reg) {
29981ad6265SDimitry Andric       // Do not update operands that define the old register.
30081ad6265SDimitry Andric       //
30181ad6265SDimitry Andric       // The new register was scavenged for the range of instructions that are
30281ad6265SDimitry Andric       // being updated, therefore it should not be defined within this range
30381ad6265SDimitry Andric       // except possibly in the final instruction.
30481ad6265SDimitry Andric       if (MO.isDef()) {
30581ad6265SDimitry Andric         assert(isCompressibleLoad(MI));
30681ad6265SDimitry Andric         continue;
30781ad6265SDimitry Andric       }
30881ad6265SDimitry Andric       // Update reg
30981ad6265SDimitry Andric       MO.setReg(NewReg);
31081ad6265SDimitry Andric     }
31181ad6265SDimitry Andric 
31281ad6265SDimitry Andric   // Update offset
31381ad6265SDimitry Andric   MachineOperand &MOImm = MI.getOperand(2);
31481ad6265SDimitry Andric   int64_t NewOffset = MOImm.getImm() & compressedLDSTOffsetMask(Opcode);
31581ad6265SDimitry Andric   MOImm.setImm(NewOffset);
31681ad6265SDimitry Andric }
31781ad6265SDimitry Andric 
runOnMachineFunction(MachineFunction & Fn)31881ad6265SDimitry Andric bool RISCVMakeCompressibleOpt::runOnMachineFunction(MachineFunction &Fn) {
31981ad6265SDimitry Andric   // This is a size optimization.
32081ad6265SDimitry Andric   if (skipFunction(Fn.getFunction()) || !Fn.getFunction().hasMinSize())
32181ad6265SDimitry Andric     return false;
32281ad6265SDimitry Andric 
32381ad6265SDimitry Andric   const RISCVSubtarget &STI = Fn.getSubtarget<RISCVSubtarget>();
32481ad6265SDimitry Andric   const RISCVInstrInfo &TII = *STI.getInstrInfo();
32581ad6265SDimitry Andric 
32681ad6265SDimitry Andric   // This optimization only makes sense if compressed instructions are emitted.
327bdd1243dSDimitry Andric   // FIXME: Support Zca, Zcf, Zcd granularity.
32881ad6265SDimitry Andric   if (!STI.hasStdExtC())
32981ad6265SDimitry Andric     return false;
33081ad6265SDimitry Andric 
33181ad6265SDimitry Andric   for (MachineBasicBlock &MBB : Fn) {
33281ad6265SDimitry Andric     LLVM_DEBUG(dbgs() << "MBB: " << MBB.getName() << "\n");
33381ad6265SDimitry Andric     for (MachineInstr &MI : MBB) {
33481ad6265SDimitry Andric       // Determine if this instruction would otherwise be compressed if not for
33581ad6265SDimitry Andric       // an uncompressible register or offset.
33681ad6265SDimitry Andric       RegImmPair RegImm = getRegImmPairPreventingCompression(MI);
33781ad6265SDimitry Andric       if (!RegImm.Reg && RegImm.Imm == 0)
33881ad6265SDimitry Andric         continue;
33981ad6265SDimitry Andric 
34081ad6265SDimitry Andric       // Determine if there is a set of instructions for which replacing this
34181ad6265SDimitry Andric       // register with a compressed register (and compressible offset if
34281ad6265SDimitry Andric       // applicable) is possible and will allow compression.
34381ad6265SDimitry Andric       SmallVector<MachineInstr *, 8> MIs;
34481ad6265SDimitry Andric       Register NewReg = analyzeCompressibleUses(MI, RegImm, MIs);
34581ad6265SDimitry Andric       if (!NewReg)
34681ad6265SDimitry Andric         continue;
34781ad6265SDimitry Andric 
34881ad6265SDimitry Andric       // Create the appropriate copy and/or offset.
34981ad6265SDimitry Andric       if (RISCV::GPRRegClass.contains(RegImm.Reg)) {
35081ad6265SDimitry Andric         assert(isInt<12>(RegImm.Imm));
35181ad6265SDimitry Andric         BuildMI(MBB, MI, MI.getDebugLoc(), TII.get(RISCV::ADDI), NewReg)
35281ad6265SDimitry Andric             .addReg(RegImm.Reg)
35381ad6265SDimitry Andric             .addImm(RegImm.Imm);
35481ad6265SDimitry Andric       } else {
35581ad6265SDimitry Andric         // If we are looking at replacing an FPR register we don't expect to
35681ad6265SDimitry Andric         // have any offset. The only compressible FP instructions with an offset
35781ad6265SDimitry Andric         // are loads and stores, for which the offset applies to the GPR operand
35881ad6265SDimitry Andric         // not the FPR operand.
35981ad6265SDimitry Andric         assert(RegImm.Imm == 0);
36081ad6265SDimitry Andric         unsigned Opcode = RISCV::FPR32RegClass.contains(RegImm.Reg)
36181ad6265SDimitry Andric                               ? RISCV::FSGNJ_S
36281ad6265SDimitry Andric                               : RISCV::FSGNJ_D;
36381ad6265SDimitry Andric         BuildMI(MBB, MI, MI.getDebugLoc(), TII.get(Opcode), NewReg)
36481ad6265SDimitry Andric             .addReg(RegImm.Reg)
36581ad6265SDimitry Andric             .addReg(RegImm.Reg);
36681ad6265SDimitry Andric       }
36781ad6265SDimitry Andric 
36881ad6265SDimitry Andric       // Update the set of instructions to use the compressed register and
36981ad6265SDimitry Andric       // compressible offset instead. These instructions should now be
37081ad6265SDimitry Andric       // compressible.
37181ad6265SDimitry Andric       // TODO: Update all uses if RegImm.Imm == 0? Not just those that are
37281ad6265SDimitry Andric       // expected to become compressible.
37381ad6265SDimitry Andric       for (MachineInstr *UpdateMI : MIs)
37481ad6265SDimitry Andric         updateOperands(*UpdateMI, RegImm, NewReg);
37581ad6265SDimitry Andric     }
37681ad6265SDimitry Andric   }
37781ad6265SDimitry Andric   return true;
37881ad6265SDimitry Andric }
37981ad6265SDimitry Andric 
38081ad6265SDimitry Andric /// Returns an instance of the Make Compressible Optimization pass.
createRISCVMakeCompressibleOptPass()38181ad6265SDimitry Andric FunctionPass *llvm::createRISCVMakeCompressibleOptPass() {
38281ad6265SDimitry Andric   return new RISCVMakeCompressibleOpt();
38381ad6265SDimitry Andric }
384