diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2015-04-23 19:33:48 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2015-04-23 19:33:48 +0000 |
commit | 7130ef49cb5c56868b151afb1110e6b71c430359 (patch) | |
tree | 6fd64e8de892c790c90ab8b49eb85c1eaa1a38bf /llvm/lib/Target/R600/AsmParser/AMDGPUAsmParser.cpp | |
parent | 9447de37a9e8720cdf097037c648390b798a0116 (diff) | |
download | bcm5719-llvm-7130ef49cb5c56868b151afb1110e6b71c430359.tar.gz bcm5719-llvm-7130ef49cb5c56868b151afb1110e6b71c430359.zip |
R600/SI: Improve AsmParser support for forced e64 encoding
We can now force e64 encoding even when the operands would be legal
for e32 encoding.
llvm-svn: 235626
Diffstat (limited to 'llvm/lib/Target/R600/AsmParser/AMDGPUAsmParser.cpp')
-rw-r--r-- | llvm/lib/Target/R600/AsmParser/AMDGPUAsmParser.cpp | 50 |
1 files changed, 45 insertions, 5 deletions
diff --git a/llvm/lib/Target/R600/AsmParser/AMDGPUAsmParser.cpp b/llvm/lib/Target/R600/AsmParser/AMDGPUAsmParser.cpp index aaf9b325e66..01a56ee7e03 100644 --- a/llvm/lib/Target/R600/AsmParser/AMDGPUAsmParser.cpp +++ b/llvm/lib/Target/R600/AsmParser/AMDGPUAsmParser.cpp @@ -80,6 +80,7 @@ public: unsigned RegNo; int Modifiers; const MCRegisterInfo *TRI; + bool IsForcedVOP3; }; union { @@ -109,7 +110,8 @@ public: } void addRegWithInputModsOperands(MCInst &Inst, unsigned N) const { - Inst.addOperand(MCOperand::CreateImm(Reg.Modifiers)); + Inst.addOperand(MCOperand::CreateImm( + Reg.Modifiers == -1 ? 0 : Reg.Modifiers)); addRegOperands(Inst, N); } @@ -163,12 +165,16 @@ public: return Imm.Type; } + bool isRegKind() const { + return Kind == Register; + } + bool isReg() const override { return Kind == Register && Reg.Modifiers == -1; } bool isRegWithInputMods() const { - return Kind == Register && Reg.Modifiers != -1; + return Kind == Register && (Reg.IsForcedVOP3 || Reg.Modifiers != -1); } void setModifiers(unsigned Mods) { @@ -176,6 +182,11 @@ public: Reg.Modifiers = Mods; } + bool hasModifiers() const { + assert(isRegKind()); + return Reg.Modifiers != -1; + } + unsigned getReg() const override { return Reg.RegNo; } @@ -263,11 +274,13 @@ public: static std::unique_ptr<AMDGPUOperand> CreateReg(unsigned RegNo, SMLoc S, SMLoc E, - const MCRegisterInfo *TRI) { + const MCRegisterInfo *TRI, + bool ForceVOP3) { auto Op = llvm::make_unique<AMDGPUOperand>(Register); Op->Reg.RegNo = RegNo; Op->Reg.TRI = TRI; Op->Reg.Modifiers = -1; + Op->Reg.IsForcedVOP3 = ForceVOP3; Op->StartLoc = S; Op->EndLoc = E; return Op; @@ -324,6 +337,10 @@ public: ForcedEncodingSize = Size; } + bool isForcedVOP3() const { + return ForcedEncodingSize == 64; + } + bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override; unsigned checkTargetMatchPredicate(MCInst &Inst) override; bool MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode, @@ -525,6 +542,28 @@ bool AMDGPUAsmParser::MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode, SMLoc ErrorLoc = IDLoc; if (ErrorInfo != ~0ULL) { if (ErrorInfo >= Operands.size()) { + if (isForcedVOP3()) { + // If 64-bit encoding has been forced we can end up with no + // clamp or omod operands if none of the registers have modifiers, + // so we need to add these to the operand list. + AMDGPUOperand &LastOp = + ((AMDGPUOperand &)*Operands[Operands.size() - 1]); + if (LastOp.isRegKind() || + (LastOp.isImm() && + LastOp.getImmTy() != AMDGPUOperand::ImmTyNone)) { + SMLoc S = Parser.getTok().getLoc(); + Operands.push_back(AMDGPUOperand::CreateImm(0, S, + AMDGPUOperand::ImmTyClamp)); + Operands.push_back(AMDGPUOperand::CreateImm(0, S, + AMDGPUOperand::ImmTyOMod)); + bool Res = MatchAndEmitInstruction(IDLoc, Opcode, Operands, + Out, ErrorInfo, + MatchingInlineAsm); + if (!Res) + return Res; + } + + } return Error(IDLoc, "too few operands for instruction"); } @@ -546,7 +585,7 @@ static bool operandsHaveModifiers(const OperandVector &Operands) { for (unsigned i = 0, e = Operands.size(); i != e; ++i) { const AMDGPUOperand &Op = ((AMDGPUOperand&)*Operands[i]); - if (Op.isRegWithInputMods()) + if (Op.isRegKind() && Op.hasModifiers()) return true; if (Op.isImm() && (Op.getImmTy() == AMDGPUOperand::ImmTyOMod || Op.getImmTy() == AMDGPUOperand::ImmTyClamp)) @@ -647,7 +686,8 @@ AMDGPUAsmParser::parseOperand(OperandVector &Operands, StringRef Mnemonic) { Operands.push_back(AMDGPUOperand::CreateReg( - RegNo, S, E, getContext().getRegisterInfo())); + RegNo, S, E, getContext().getRegisterInfo(), + isForcedVOP3())); if (HasModifiers || Modifiers) { AMDGPUOperand &RegOp = ((AMDGPUOperand&)*Operands[Operands.size() - 1]); |