39#include "AMDGPUGenMCPseudoLowering.inc"
44 Ctx(ctx), ST(st), AP(ap) { }
90 AP.getNameWithPrefix(SymbolName, GV);
91 MCSymbol *Sym = Ctx.getOrCreateSymbol(SymbolName);
135 unsigned Opcode =
MI->getOpcode();
136 const auto *
TII =
static_cast<const SIInstrInfo*
>(ST.getInstrInfo());
138 const auto *Info = AMDGPU::getT16D16Helper(Opcode);
140 llvm::AMDGPU::OpName
OpName;
141 if (
TII->isDS(Opcode)) {
143 OpName = llvm::AMDGPU::OpName::vdst;
144 else if (
MI->mayStore())
145 OpName = llvm::AMDGPU::OpName::data0;
150 ? llvm::AMDGPU::OpName::vdata
151 : llvm::AMDGPU::OpName::vdst;
155 int VDstOrVDataIdx = AMDGPU::getNamedOperandIdx(Opcode,
OpName);
160 Opcode = IsHi ? Info->HiOp : Info->LoOp;
162 int MCOpcode =
TII->pseudoToMCOpcode(Opcode);
164 "Pseudo instruction doesn't have a target-specific version");
168 for (
int I = 0, E =
MI->getNumExplicitOperands();
I < E;
I++) {
171 if (
I == VDstOrVDataIdx)
187 unsigned Opcode =
MI->getOpcode();
188 const auto *
TII =
static_cast<const SIInstrInfo *
>(ST.getInstrInfo());
191 int VDstIdx = AMDGPU::getNamedOperandIdx(Opcode, llvm::AMDGPU::OpName::vdst);
195 case AMDGPU::V_FMA_MIX_F16_t16:
196 Opcode = IsHi ? AMDGPU::V_FMA_MIXHI_F16 : AMDGPU::V_FMA_MIXLO_F16;
198 case AMDGPU::V_FMA_MIX_BF16_t16:
199 Opcode = IsHi ? AMDGPU::V_FMA_MIXHI_BF16 : AMDGPU::V_FMA_MIXLO_BF16;
202 int MCOpcode =
TII->pseudoToMCOpcode(Opcode);
204 "Pseudo instruction doesn't have a target-specific version");
208 for (
int I = 0, E =
MI->getNumExplicitOperands();
I < E;
I++) {
220 unsigned Opcode =
MI->getOpcode();
221 const auto *
TII =
static_cast<const SIInstrInfo *
>(ST.getInstrInfo());
226 if (Opcode == AMDGPU::S_SETPC_B64_return)
227 Opcode = AMDGPU::S_SETPC_B64;
228 else if (Opcode == AMDGPU::SI_CALL) {
231 OutMI.
setOpcode(
TII->pseudoToMCOpcode(AMDGPU::S_SWAPPC_B64));
238 }
else if (Opcode == AMDGPU::SI_TCRETURN ||
239 Opcode == AMDGPU::SI_TCRETURN_GFX ||
240 Opcode == AMDGPU::SI_TCRETURN_CHAIN) {
242 Opcode = AMDGPU::S_SETPC_B64;
243 }
else if (AMDGPU::getT16D16Helper(Opcode)) {
246 }
else if (Opcode == AMDGPU::V_FMA_MIX_F16_t16 ||
247 Opcode == AMDGPU::V_FMA_MIX_BF16_t16) {
252 int MCOpcode =
TII->pseudoToMCOpcode(Opcode);
253 if (MCOpcode == -1) {
255 C.emitError(
"AMDGPUMCInstLower::lower - Pseudo instruction doesn't have "
256 "a target-specific version: " +
Twine(
MI->getOpcode()));
268 int FIIdx = AMDGPU::getNamedOperandIdx(MCOpcode, AMDGPU::OpName::fi);
277 return MCInstLowering.lowerOperand(MO, MCOp);
286 if (std::optional<uint32_t>
Address =
309 TII->getNamedOperand(*
MI,
MI->mayLoad() ? AMDGPU::OpName::vdst
310 : AMDGPU::OpName::vdata)
312 Register FirstRegInBlock =
TRI->getSubReg(RegBlock, AMDGPU::sub0);
319 for (
unsigned I = 0;
I <
sizeof(Mask) * 8; ++
I) {
320 if (Mask & (1 <<
I)) {
322 .toVector(TransferredRegs);
331 collectCallEdge(*
MI);
348 C.emitError(
"Illegal instruction detected: " + Err);
352 if (
MI->isBundle()) {
355 while (
I !=
MBB->instr_end() &&
I->isInsideBundle()) {
363 if (
MI->getOpcode() == AMDGPU::SI_RETURN_TO_EPILOG) {
365 OutStreamer->emitRawComment(
" return to shader part epilog");
369 if (
MI->getOpcode() == AMDGPU::WAVE_BARRIER) {
375 if (
MI->getOpcode() == AMDGPU::ASYNCMARK) {
381 if (
MI->getOpcode() == AMDGPU::WAIT_ASYNCMARK) {
384 Twine(
MI->getOperand(0).getImm()) +
")");
389 if (
MI->getOpcode() == AMDGPU::SCHED_BARRIER) {
391 std::string HexString;
393 HexStream <<
format_hex(
MI->getOperand(0).getImm(), 10,
true);
394 OutStreamer->emitRawComment(
" sched_barrier mask(" + HexString +
")");
399 if (
MI->getOpcode() == AMDGPU::SCHED_GROUP_BARRIER) {
401 std::string HexString;
403 HexStream <<
format_hex(
MI->getOperand(0).getImm(), 10,
true);
405 " sched_group_barrier mask(" + HexString +
") size(" +
406 Twine(
MI->getOperand(1).getImm()) +
") SyncID(" +
407 Twine(
MI->getOperand(2).getImm()) +
")");
412 if (
MI->getOpcode() == AMDGPU::IGLP_OPT) {
414 std::string HexString;
416 HexStream <<
format_hex(
MI->getOperand(0).getImm(), 10,
true);
417 OutStreamer->emitRawComment(
" iglp_opt mask(" + HexString +
")");
422 if (
MI->getOpcode() == AMDGPU::SI_MASKED_UNREACHABLE) {
424 OutStreamer->emitRawComment(
" divergent unreachable");
428 if (
MI->isMetaInstruction()) {
434 unsigned Opc =
MI->getOpcode();
436 Opc == TargetOpcode::STACKMAP ||
437 Opc == TargetOpcode::PATCHPOINT)) {
439 Ctx.emitError(
"unhandled statepoint-like instruction");
440 OutStreamer->emitRawComment(
"unsupported statepoint/stackmap/patchpoint");
450 if (
isVerbose() && (
MI->getOpcode() == AMDGPU::S_SET_VGPR_MSB ||
451 (
MI->getOpcode() == AMDGPU::S_SETREG_IMM32_B32 &&
452 STI.has1024AddressableVGPRs()))) {
453 std::optional<unsigned> V;
454 if (
MI->getOpcode() == AMDGPU::S_SETREG_IMM32_B32)
456 STI.hasSetregVGPRMSBFixup());
458 V =
MI->getOperand(0).getImm() & 0xff;
461 " msbs: dst=" +
Twine(*V >> 6) +
" src0=" +
Twine(*V & 3) +
462 " src1=" +
Twine((*V >> 2) & 3) +
" src2=" +
Twine((*V >> 4) & 3));
466 MCInstLowering.lower(
MI, TmpInst);
469 if (DumpCodeInstEmitter) {
483 DumpCodeInstEmitter->encodeInstruction(
486 std::string &HexLine =
HexLines.back();
489 for (
size_t i = 0; i < CodeBytes.
size(); i += 4) {
490 unsigned int CodeDWord =
492 HexStream <<
format(
"%s%08X", (i > 0 ?
" " :
""), CodeDWord);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
AMDGPU Assembly printer class.
static void emitVGPRBlockComment(const MachineInstr *MI, const SIInstrInfo *TII, const TargetRegisterInfo *TRI, const SIMachineFunctionInfo *MFI, MCStreamer &OS)
Header of lower AMDGPU MachineInstrs to their corresponding MCInst.
Provides AMDGPU specific target descriptions.
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
#define LLVM_UNLIKELY(EXPR)
This file contains the declarations for the subclasses of Constant, which represent the different fla...
const HexagonInstrInfo * TII
Register const TargetRegisterInfo * TRI
static SDValue lowerAddrSpaceCast(SDValue Op, SelectionDAG &DAG)
std::vector< std::string > DisasmLines
std::vector< std::string > HexLines
bool lowerOperand(const MachineOperand &MO, MCOperand &MCOp) const
Wrapper for MCInstLowering.lowerOperand() for the tblgen'erated pseudo lowering.
bool lowerPseudoInstExpansion(const MachineInstr *MI, MCInst &Inst)
tblgen'erated driver function for lowering simple MI->MC pseudo instructions.
const MCExpr * lowerConstant(const Constant *CV, const Constant *BaseCV, uint64_t Offset) override
Lower the specified LLVM Constant to an MCExpr.
void emitInstruction(const MachineInstr *MI) override
Implemented in AMDGPUMCInstLower.cpp.
void printInst(const MCInst *MI, uint64_t Address, StringRef Annot, const MCSubtargetInfo &STI, raw_ostream &O) override
Print the specified MCInst to the specified raw_ostream.
void lowerT16FmaMixFP16(const MachineInstr *MI, MCInst &OutMI) const
bool lowerOperand(const MachineOperand &MO, MCOperand &MCOp) const
void lowerT16D16Helper(const MachineInstr *MI, MCInst &OutMI) const
AMDGPUMCInstLower(MCContext &ctx, const TargetSubtargetInfo &ST, const AsmPrinter &AP)
void lower(const MachineInstr *MI, MCInst &OutMI) const
Lower a MachineInstr to an MCInst.
static std::optional< uint32_t > getLDSAbsoluteAddress(const GlobalValue &GV)
This class is intended to be used as a driving class for all asm writers.
void EmitToStreamer(MCStreamer &S, const MCInst &Inst)
TargetMachine & TM
Target machine description.
MachineFunction * MF
The current machine function.
virtual const MCExpr * lowerConstant(const Constant *CV, const Constant *BaseCV=nullptr, uint64_t Offset=0)
Lower the specified LLVM Constant to an MCExpr.
MCContext & OutContext
This is the context for the output file that we are streaming.
std::unique_ptr< MCStreamer > OutStreamer
This is the MCStreamer object for the file we are generating.
bool isVerbose() const
Return true if assembly output should contain comments.
This is an important base class in LLVM.
const SIInstrInfo * getInstrInfo() const override
const SIRegisterInfo * getRegisterInfo() const override
This is an important class for using LLVM in a threaded context.
static const MCBinaryExpr * createAdd(const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx, SMLoc Loc=SMLoc())
static LLVM_ABI const MCConstantExpr * create(int64_t Value, MCContext &Ctx, bool PrintInHex=false, unsigned SizeInBytes=0)
Context object for machine code objects.
Base class for the full range of assembler expressions which are needed for parsing.
Instances of this class represent a single low-level machine instruction.
unsigned getNumOperands() const
void addOperand(const MCOperand Op)
void setOpcode(unsigned Op)
Instances of this class represent operands of the MCInst class.
static MCOperand createExpr(const MCExpr *Val)
static MCOperand createReg(MCRegister Reg)
static MCOperand createImm(int64_t Val)
Streaming machine code generation interface.
virtual void emitRawComment(const Twine &T, bool TabPrefix=true)
Print T and prefix it with the comment string (normally #) and optionally a tab.
Generic base class for all target subtargets.
Represent a reference to a symbol from inside an expression.
static const MCSymbolRefExpr * create(const MCSymbol *Symbol, MCContext &Ctx, SMLoc Loc=SMLoc())
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
const MCExpr * getVariableValue() const
Get the expression of the variable symbol.
LLVM_ABI MCSymbol * getSymbol() const
Return the MCSymbol for this basic block.
Instructions::const_iterator const_instr_iterator
Representation of each machine instruction.
MachineOperand class - Representation of each machine instruction operand.
const GlobalValue * getGlobal() const
MachineBasicBlock * getMBB() const
const BlockAddress * getBlockAddress() const
unsigned getTargetFlags() const
MachineOperandType getType() const
getType - Returns the MachineOperandType for this operand.
const char * getSymbolName() const
Register getReg() const
getReg - Returns the register number.
MCSymbol * getMCSymbol() const
@ MO_Immediate
Immediate operand.
@ MO_MCSymbol
MCSymbol reference (for debug/eh info)
@ MO_GlobalAddress
Address of a global value.
@ MO_RegisterMask
Mask of preserved registers.
@ MO_BlockAddress
Address of a basic block.
@ MO_MachineBasicBlock
MachineBasicBlock reference.
@ MO_Register
Register operand.
@ MO_ExternalSymbol
Name of external global symbol.
int64_t getOffset() const
Return the offset from the symbol in this operand.
Wrapper class representing virtual and physical registers.
bool verifyInstruction(const MachineInstr &MI, StringRef &ErrInfo) const override
static bool isBlockLoadStore(uint32_t Opcode)
This class keeps track of the SPI_SP_INPUT_ADDR config register, which tells the hardware which inter...
uint32_t getMaskForVGPRBlockOps(Register RegisterBlock) const
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
pointer data()
Return a pointer to the vector's buffer, even if empty().
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Represent a constant reference to a string, i.e.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
TargetSubtargetInfo - Generic base class for all target subtargets.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
static LLVM_ABI IntegerType * getInt32Ty(LLVMContext &C)
LLVMContext & getContext() const
All values hold a context through their type.
A raw_ostream that writes to an std::string.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
MCRegister getMCReg(MCRegister Reg, const MCSubtargetInfo &STI)
If Reg is a pseudo reg, return the correct hardware register given STI otherwise return Reg.
static std::optional< unsigned > convertSetRegImmToVgprMSBs(unsigned Imm, unsigned Simm16, bool HasSetregVGPRMSBFixup)
bool isHi16Reg(MCRegister Reg, const MCRegisterInfo &MRI)
LLVM_READONLY bool hasNamedOperand(uint64_t Opcode, OpName NamedIdx)
uint32_t read32le(const void *P)
This is an optimization pass for GlobalISel generic memory operations.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
FormattedNumber format_hex(uint64_t N, unsigned Width, bool Upper=false)
format_hex - Output N as a fixed width hexadecimal.
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
static uint16_t getSpecifier(const MCSymbolRefExpr *SRE)