|
LLVM 23.0.0git
|
#include "RISCV.h"#include "RISCVSubtarget.h"#include "llvm/ADT/PostOrderIterator.h"#include "llvm/ADT/SetVector.h"#include "llvm/CodeGen/MachineDominators.h"#include "llvm/CodeGen/MachineFunctionPass.h"#include "llvm/InitializePasses.h"Go to the source code of this file.
Macros | |
| #define | DEBUG_TYPE "riscv-vl-optimizer" |
| #define | PASS_NAME "RISC-V VL Optimizer" |
| #define | VSEG_CASES(Prefix, EEW) |
| #define | VSSEG_CASES(EEW) |
| #define | VSSSEG_CASES(EEW) |
| #define | VSUXSEG_CASES(EEW) |
| #define | VSOXSEG_CASES(EEW) |
Functions | |
| static raw_ostream & | operator<< (raw_ostream &OS, const OperandInfo &OI) |
| static raw_ostream & | operator<< (raw_ostream &OS, const std::optional< OperandInfo > &OI) |
| static std::pair< unsigned, bool > | getEMULEqualsEEWDivSEWTimesLMUL (unsigned Log2EEW, const MachineInstr &MI) |
| Return EMUL = (EEW / SEW) * LMUL where EEW comes from Log2EEW and LMUL and SEW are from the TSFlags of MI. | |
| static unsigned | getIntegerExtensionOperandEEW (unsigned Factor, const MachineInstr &MI, const MachineOperand &MO) |
| Dest has EEW=SEW. | |
| static std::optional< unsigned > | getOperandLog2EEW (const MachineOperand &MO) |
| static std::optional< OperandInfo > | getOperandInfo (const MachineOperand &MO) |
| static bool | isTupleInsertInstr (const MachineInstr &MI) |
| Return true if MI is an instruction used for assembling registers for segmented store instructions, namely, RISCVISD::TUPLE_INSERT. | |
| static bool | isVectorOpUsedAsScalarOp (const MachineOperand &MO) |
| Return true if MO is a vector operand but is used as a scalar operand. | |
| static std::optional< DemandedVL > | getMinimumVLForVSLIDEDOWN_VX (const MachineOperand &UserOp, const MachineRegisterInfo *MRI) |
| Given a vslidedown.vx like: | |
| static bool | isSegmentedStoreInstr (const MachineInstr &MI) |
| static bool | isPhysical (const MachineOperand &MO) |
| #define DEBUG_TYPE "riscv-vl-optimizer" |
Definition at line 39 of file RISCVVLOptimizer.cpp.
| #define PASS_NAME "RISC-V VL Optimizer" |
Definition at line 40 of file RISCVVLOptimizer.cpp.
| #define VSEG_CASES | ( | Prefix, | |
| EEW ) |
Definition at line 222 of file RISCVVLOptimizer.cpp.
| #define VSOXSEG_CASES | ( | EEW | ) |
Definition at line 233 of file RISCVVLOptimizer.cpp.
Referenced by getOperandLog2EEW(), and isSegmentedStoreInstr().
| #define VSSEG_CASES | ( | EEW | ) |
Definition at line 230 of file RISCVVLOptimizer.cpp.
Referenced by getOperandLog2EEW(), and isSegmentedStoreInstr().
| #define VSSSEG_CASES | ( | EEW | ) |
Definition at line 231 of file RISCVVLOptimizer.cpp.
Referenced by getOperandLog2EEW(), and isSegmentedStoreInstr().
| #define VSUXSEG_CASES | ( | EEW | ) |
Definition at line 232 of file RISCVVLOptimizer.cpp.
Referenced by getOperandLog2EEW(), and isSegmentedStoreInstr().
|
static |
Return EMUL = (EEW / SEW) * LMUL where EEW comes from Log2EEW and LMUL and SEW are from the TSFlags of MI.
Definition at line 180 of file RISCVVLOptimizer.cpp.
References llvm::RISCVVType::decodeVLMUL(), llvm::RISCVII::getLMul(), llvm::RISCVII::getSEWOpNum(), and MI.
Referenced by getOperandInfo().
|
static |
Dest has EEW=SEW.
Source EEW=SEW/Factor (i.e. F2 => EEW/2). SEW comes from TSFlags of MI.
Definition at line 206 of file RISCVVLOptimizer.cpp.
References llvm::MachineOperand::getOperandNo(), llvm::RISCVII::getSEWOpNum(), llvm::Log2_32(), and MI.
Referenced by getOperandLog2EEW().
|
static |
Given a vslidedown.vx like:
slideamt = ADDI x, -1 v = PseudoVSLIDEDOWN_VX passthru, src, slideamt, avl=1
v will only read the first slideamt + 1 lanes of src, which = x. This is a common case when lowering extractelement.
Note that if x is 0, slideamt will be all ones. In this case src will be completely slid down and none of its lanes will be read (since slideamt is greater than the largest VLMAX of 65536) so we can demand any minimum VL.
Definition at line 1029 of file RISCVVLOptimizer.cpp.
References llvm::MachineOperand::getImm(), llvm::MachineInstr::getOpcode(), llvm::MachineInstr::getOperand(), llvm::MachineOperand::getOperandNo(), llvm::MachineOperand::getParent(), llvm::MachineOperand::getReg(), llvm::RISCV::getRVVMCOpcode(), llvm::MachineRegisterInfo::getUniqueVRegDef(), llvm::MachineOperand::isImm(), llvm::Register::isVirtual(), and MI.
|
static |
Definition at line 869 of file RISCVVLOptimizer.cpp.
References assert(), getEMULEqualsEEWDivSEWTimesLMUL(), getOperandLog2EEW(), llvm::MachineOperand::getOperandNo(), llvm::MachineOperand::getParent(), MI, and llvm::RVV.
|
static |
Dest EEW encoded in the instruction
Definition at line 235 of file RISCVVLOptimizer.cpp.
References assert(), getIntegerExtensionOperandEEW(), llvm::MachineOperand::getOperandNo(), llvm::MachineOperand::getParent(), llvm::RISCVII::getSEWOpNum(), llvm::RISCVII::isFirstDefTiedToFirstUse(), llvm::RISCVII::isTiedPseudo(), llvm_unreachable, MI, llvm::MCOI::OPERAND_REGISTER, llvm::RVV, VSOXSEG_CASES, VSSEG_CASES, VSSSEG_CASES, and VSUXSEG_CASES.
Referenced by getOperandInfo().
|
static |
Definition at line 1297 of file RISCVVLOptimizer.cpp.
References llvm::MachineOperand::getReg(), llvm::Register::isPhysical(), and llvm::MachineOperand::isReg().
Referenced by llvm::PPCInstrInfo::canInsertSelect(), llvm::MachineOperand::isRenamable(), llvm::MachineOperand::print(), and llvm::MachineOperand::setIsRenamable().
|
static |
Definition at line 1133 of file RISCVVLOptimizer.cpp.
References llvm::RISCV::getRVVMCOpcode(), MI, VSOXSEG_CASES, VSSEG_CASES, VSSSEG_CASES, and VSUXSEG_CASES.
|
static |
Return true if MI is an instruction used for assembling registers for segmented store instructions, namely, RISCVISD::TUPLE_INSERT.
Currently it's lowered to INSERT_SUBREG.
Definition at line 1112 of file RISCVVLOptimizer.cpp.
References assert(), llvm::RISCVVType::decodeVLMUL(), llvm::RISCVRI::getLMul(), llvm::RISCVRI::getNF(), llvm::MachineRegisterInfo::getRegClass(), llvm::MachineRegisterInfo::getTargetRegisterInfo(), llvm::RISCVRI::isVRegClass(), MI, llvm::RISCV::RVVBitsPerBlock, TRI, and llvm::TargetRegisterClass::TSFlags.
|
static |
Return true if MO is a vector operand but is used as a scalar operand.
Definition at line 937 of file RISCVVLOptimizer.cpp.
References llvm::MachineOperand::getOperandNo(), llvm::MachineOperand::getParent(), MI, and llvm::RVV.
|
static |
Definition at line 162 of file RISCVVLOptimizer.cpp.
|
static |
Definition at line 168 of file RISCVVLOptimizer.cpp.