[llvm] [AMDGPU][True16][CodeGen] FLAT_load using D16 pseudo instruction (PR #114500)
Brox Chen via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 4 10:11:48 PST 2025
================
@@ -132,6 +133,35 @@ void AMDGPUMCInstLower::lower(const MachineInstr *MI, MCInst &OutMI) const {
OutMI.addOperand(Dest);
OutMI.addOperand(Src);
return;
+ } else if (const auto *Info = AMDGPU::getT16D16Helper(Opcode)) {
+ int VDataIdx = AMDGPU::getNamedOperandIdx(Opcode, AMDGPU::OpName::vdata);
+ int VDstOrVDataIdx = VDataIdx != -1 ? VDataIdx : 0;
+ MachineOperand MIVDstOrVData = MI->getOperand(VDstOrVDataIdx);
+ bool IsHi = AMDGPU::isHi16Reg(MIVDstOrVData.getReg(), TRI);
+ Opcode = IsHi ? Info->HiOp : Info->LoOp;
+ MIVDstOrVData.clearParent(); // Avoid use list error in setReg call
+ MIVDstOrVData.setReg(TRI.get32BitRegister(MIVDstOrVData.getReg()));
+
+ int MCOpcode = TII->pseudoToMCOpcode(Opcode);
+ assert(MCOpcode != -1 &&
+ "Pseudo instruction doesn't have a target-specific version");
+ OutMI.setOpcode(MCOpcode);
+ for (int I = 0, E = MI->getNumExplicitOperands(); I < E; I++) {
+ const MachineOperand &MO = MI->getOperand(I);
+ MCOperand MCOp;
+ if (I == VDstOrVDataIdx)
+ lowerOperand(MIVDstOrVData, MCOp);
+ else
+ lowerOperand(MO, MCOp);
+ OutMI.addOperand(MCOp);
+ }
+
----------------
broxigarchen wrote:
Hi Matt. This is lowering D16 pseudo opcode(load/store) into D16_lo/D16_hi MCInst base on the .l/.h of the VDst/VData. Added a helper function and add more comments
https://github.com/llvm/llvm-project/pull/114500
More information about the llvm-commits
mailing list