mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
[SystemZ] Match operands to fields by name rather than by order
The SystemZ port currently relies on the order of the instruction operands matching the order of the instruction field lists. This isn't desirable for disassembly, where the two are matched only by name. E.g. the R1 and R2 fields of an RR instruction should have corresponding R1 and R2 operands. The main complication is that addresses are compound operands, and as far as I know there is no mechanism to allow individual suboperands to be selected by name in "let Inst{...} = ..." assignments. Luckily it doesn't really matter though. The SystemZ instruction encoding groups all address fields together in a predictable order, so it's just as valid to see the entire compound address operand as a single field. That's the approach taken in this patch. Matching by name in turn means that the operands to COPY SIGN and CONVERT TO FIXED instructions can be given in natural order. (It was easier to do this at the same time as the rename, since otherwise the intermediate step was too confusing.) No functional change intended. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181771 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
055ac429cc
commit
f917bc0406
@ -250,46 +250,6 @@ public:
|
||||
bool isS32Imm() const { return isImm(-(1LL << 31), (1LL << 31) - 1); }
|
||||
};
|
||||
|
||||
// Maps of asm register numbers to LLVM register numbers, with 0 indicating
|
||||
// an invalid register. We don't use register class directly because that
|
||||
// specifies the allocation order.
|
||||
static const unsigned GR32Regs[] = {
|
||||
SystemZ::R0W, SystemZ::R1W, SystemZ::R2W, SystemZ::R3W,
|
||||
SystemZ::R4W, SystemZ::R5W, SystemZ::R6W, SystemZ::R7W,
|
||||
SystemZ::R8W, SystemZ::R9W, SystemZ::R10W, SystemZ::R11W,
|
||||
SystemZ::R12W, SystemZ::R13W, SystemZ::R14W, SystemZ::R15W
|
||||
};
|
||||
static const unsigned GR64Regs[] = {
|
||||
SystemZ::R0D, SystemZ::R1D, SystemZ::R2D, SystemZ::R3D,
|
||||
SystemZ::R4D, SystemZ::R5D, SystemZ::R6D, SystemZ::R7D,
|
||||
SystemZ::R8D, SystemZ::R9D, SystemZ::R10D, SystemZ::R11D,
|
||||
SystemZ::R12D, SystemZ::R13D, SystemZ::R14D, SystemZ::R15D
|
||||
};
|
||||
static const unsigned GR128Regs[] = {
|
||||
SystemZ::R0Q, 0, SystemZ::R2Q, 0,
|
||||
SystemZ::R4Q, 0, SystemZ::R6Q, 0,
|
||||
SystemZ::R8Q, 0, SystemZ::R10Q, 0,
|
||||
SystemZ::R12Q, 0, SystemZ::R14Q, 0
|
||||
};
|
||||
static const unsigned FP32Regs[] = {
|
||||
SystemZ::F0S, SystemZ::F1S, SystemZ::F2S, SystemZ::F3S,
|
||||
SystemZ::F4S, SystemZ::F5S, SystemZ::F6S, SystemZ::F7S,
|
||||
SystemZ::F8S, SystemZ::F9S, SystemZ::F10S, SystemZ::F11S,
|
||||
SystemZ::F12S, SystemZ::F13S, SystemZ::F14S, SystemZ::F15S
|
||||
};
|
||||
static const unsigned FP64Regs[] = {
|
||||
SystemZ::F0D, SystemZ::F1D, SystemZ::F2D, SystemZ::F3D,
|
||||
SystemZ::F4D, SystemZ::F5D, SystemZ::F6D, SystemZ::F7D,
|
||||
SystemZ::F8D, SystemZ::F9D, SystemZ::F10D, SystemZ::F11D,
|
||||
SystemZ::F12D, SystemZ::F13D, SystemZ::F14D, SystemZ::F15D
|
||||
};
|
||||
static const unsigned FP128Regs[] = {
|
||||
SystemZ::F0Q, SystemZ::F1Q, 0, 0,
|
||||
SystemZ::F4Q, SystemZ::F5Q, 0, 0,
|
||||
SystemZ::F8Q, SystemZ::F9Q, 0, 0,
|
||||
SystemZ::F12Q, SystemZ::F13Q, 0, 0
|
||||
};
|
||||
|
||||
class SystemZAsmParser : public MCTargetAsmParser {
|
||||
#define GET_ASSEMBLER_HEADER
|
||||
#include "SystemZGenAsmMatcher.inc"
|
||||
@ -349,25 +309,28 @@ public:
|
||||
// Used by the TableGen code to parse particular operand types.
|
||||
OperandMatchResultTy
|
||||
parseGR32(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
||||
return parseRegister(Operands, 'r', GR32Regs, SystemZOperand::GR32Reg);
|
||||
return parseRegister(Operands, 'r', SystemZMC::GR32Regs,
|
||||
SystemZOperand::GR32Reg);
|
||||
}
|
||||
OperandMatchResultTy
|
||||
parseGR64(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
||||
return parseRegister(Operands, 'r', GR64Regs, SystemZOperand::GR64Reg);
|
||||
return parseRegister(Operands, 'r', SystemZMC::GR64Regs,
|
||||
SystemZOperand::GR64Reg);
|
||||
}
|
||||
OperandMatchResultTy
|
||||
parseGR128(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
||||
return parseRegister(Operands, 'r', GR128Regs, SystemZOperand::GR128Reg);
|
||||
return parseRegister(Operands, 'r', SystemZMC::GR128Regs,
|
||||
SystemZOperand::GR128Reg);
|
||||
}
|
||||
OperandMatchResultTy
|
||||
parseADDR32(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
||||
return parseRegister(Operands, 'r', GR32Regs, SystemZOperand::ADDR32Reg,
|
||||
true);
|
||||
return parseRegister(Operands, 'r', SystemZMC::GR32Regs,
|
||||
SystemZOperand::ADDR32Reg, true);
|
||||
}
|
||||
OperandMatchResultTy
|
||||
parseADDR64(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
||||
return parseRegister(Operands, 'r', GR64Regs, SystemZOperand::ADDR64Reg,
|
||||
true);
|
||||
return parseRegister(Operands, 'r', SystemZMC::GR64Regs,
|
||||
SystemZOperand::ADDR64Reg, true);
|
||||
}
|
||||
OperandMatchResultTy
|
||||
parseADDR128(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
||||
@ -375,27 +338,33 @@ public:
|
||||
}
|
||||
OperandMatchResultTy
|
||||
parseFP32(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
||||
return parseRegister(Operands, 'f', FP32Regs, SystemZOperand::FP32Reg);
|
||||
return parseRegister(Operands, 'f', SystemZMC::FP32Regs,
|
||||
SystemZOperand::FP32Reg);
|
||||
}
|
||||
OperandMatchResultTy
|
||||
parseFP64(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
||||
return parseRegister(Operands, 'f', FP64Regs, SystemZOperand::FP64Reg);
|
||||
return parseRegister(Operands, 'f', SystemZMC::FP64Regs,
|
||||
SystemZOperand::FP64Reg);
|
||||
}
|
||||
OperandMatchResultTy
|
||||
parseFP128(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
||||
return parseRegister(Operands, 'f', FP128Regs, SystemZOperand::FP128Reg);
|
||||
return parseRegister(Operands, 'f', SystemZMC::FP128Regs,
|
||||
SystemZOperand::FP128Reg);
|
||||
}
|
||||
OperandMatchResultTy
|
||||
parseBDAddr32(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
||||
return parseAddress(Operands, GR32Regs, SystemZOperand::ADDR32Reg, false);
|
||||
return parseAddress(Operands, SystemZMC::GR32Regs,
|
||||
SystemZOperand::ADDR32Reg, false);
|
||||
}
|
||||
OperandMatchResultTy
|
||||
parseBDAddr64(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
||||
return parseAddress(Operands, GR64Regs, SystemZOperand::ADDR64Reg, false);
|
||||
return parseAddress(Operands, SystemZMC::GR64Regs,
|
||||
SystemZOperand::ADDR64Reg, false);
|
||||
}
|
||||
OperandMatchResultTy
|
||||
parseBDXAddr64(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
||||
return parseAddress(Operands, GR64Regs, SystemZOperand::ADDR64Reg, true);
|
||||
return parseAddress(Operands, SystemZMC::GR64Regs,
|
||||
SystemZOperand::ADDR64Reg, true);
|
||||
}
|
||||
OperandMatchResultTy
|
||||
parseAccessReg(SmallVectorImpl<MCParsedAsmOperand*> &Operands);
|
||||
@ -502,7 +471,8 @@ SystemZAsmParser::parseAddress(SmallVectorImpl<MCParsedAsmOperand*> &Operands,
|
||||
|
||||
// Parse the first register.
|
||||
Register Reg;
|
||||
OperandMatchResultTy Result = parseRegister(Reg, 'r', GR64Regs, true);
|
||||
OperandMatchResultTy Result = parseRegister(Reg, 'r', SystemZMC::GR64Regs,
|
||||
true);
|
||||
if (Result != MatchOperand_Success)
|
||||
return Result;
|
||||
|
||||
@ -517,7 +487,7 @@ SystemZAsmParser::parseAddress(SmallVectorImpl<MCParsedAsmOperand*> &Operands,
|
||||
}
|
||||
|
||||
Index = Reg.Number;
|
||||
Result = parseRegister(Reg, 'r', GR64Regs, true);
|
||||
Result = parseRegister(Reg, 'r', SystemZMC::GR64Regs, true);
|
||||
if (Result != MatchOperand_Success)
|
||||
return Result;
|
||||
}
|
||||
@ -546,9 +516,9 @@ bool SystemZAsmParser::ParseRegister(unsigned &RegNo, SMLoc &StartLoc,
|
||||
if (parseRegister(Reg))
|
||||
return Error(Reg.StartLoc, "register expected");
|
||||
if (Reg.Prefix == 'r' && Reg.Number < 16)
|
||||
RegNo = GR64Regs[Reg.Number];
|
||||
RegNo = SystemZMC::GR64Regs[Reg.Number];
|
||||
else if (Reg.Prefix == 'f' && Reg.Number < 16)
|
||||
RegNo = FP64Regs[Reg.Number];
|
||||
RegNo = SystemZMC::FP64Regs[Reg.Number];
|
||||
else
|
||||
return Error(Reg.StartLoc, "invalid register");
|
||||
StartLoc = Reg.StartLoc;
|
||||
|
@ -27,6 +27,48 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
const unsigned SystemZMC::GR32Regs[16] = {
|
||||
SystemZ::R0W, SystemZ::R1W, SystemZ::R2W, SystemZ::R3W,
|
||||
SystemZ::R4W, SystemZ::R5W, SystemZ::R6W, SystemZ::R7W,
|
||||
SystemZ::R8W, SystemZ::R9W, SystemZ::R10W, SystemZ::R11W,
|
||||
SystemZ::R12W, SystemZ::R13W, SystemZ::R14W, SystemZ::R15W
|
||||
};
|
||||
|
||||
const unsigned SystemZMC::GR64Regs[16] = {
|
||||
SystemZ::R0D, SystemZ::R1D, SystemZ::R2D, SystemZ::R3D,
|
||||
SystemZ::R4D, SystemZ::R5D, SystemZ::R6D, SystemZ::R7D,
|
||||
SystemZ::R8D, SystemZ::R9D, SystemZ::R10D, SystemZ::R11D,
|
||||
SystemZ::R12D, SystemZ::R13D, SystemZ::R14D, SystemZ::R15D
|
||||
};
|
||||
|
||||
const unsigned SystemZMC::GR128Regs[16] = {
|
||||
SystemZ::R0Q, 0, SystemZ::R2Q, 0,
|
||||
SystemZ::R4Q, 0, SystemZ::R6Q, 0,
|
||||
SystemZ::R8Q, 0, SystemZ::R10Q, 0,
|
||||
SystemZ::R12Q, 0, SystemZ::R14Q, 0
|
||||
};
|
||||
|
||||
const unsigned SystemZMC::FP32Regs[16] = {
|
||||
SystemZ::F0S, SystemZ::F1S, SystemZ::F2S, SystemZ::F3S,
|
||||
SystemZ::F4S, SystemZ::F5S, SystemZ::F6S, SystemZ::F7S,
|
||||
SystemZ::F8S, SystemZ::F9S, SystemZ::F10S, SystemZ::F11S,
|
||||
SystemZ::F12S, SystemZ::F13S, SystemZ::F14S, SystemZ::F15S
|
||||
};
|
||||
|
||||
const unsigned SystemZMC::FP64Regs[16] = {
|
||||
SystemZ::F0D, SystemZ::F1D, SystemZ::F2D, SystemZ::F3D,
|
||||
SystemZ::F4D, SystemZ::F5D, SystemZ::F6D, SystemZ::F7D,
|
||||
SystemZ::F8D, SystemZ::F9D, SystemZ::F10D, SystemZ::F11D,
|
||||
SystemZ::F12D, SystemZ::F13D, SystemZ::F14D, SystemZ::F15D
|
||||
};
|
||||
|
||||
const unsigned SystemZMC::FP128Regs[16] = {
|
||||
SystemZ::F0Q, SystemZ::F1Q, 0, 0,
|
||||
SystemZ::F4Q, SystemZ::F5Q, 0, 0,
|
||||
SystemZ::F8Q, SystemZ::F9Q, 0, 0,
|
||||
SystemZ::F12Q, SystemZ::F13Q, 0, 0
|
||||
};
|
||||
|
||||
static MCAsmInfo *createSystemZMCAsmInfo(const MCRegisterInfo &MRI,
|
||||
StringRef TT) {
|
||||
MCAsmInfo *MAI = new SystemZMCAsmInfo(TT);
|
||||
|
@ -34,6 +34,16 @@ namespace SystemZMC {
|
||||
|
||||
// The offset of the DWARF CFA from the incoming stack pointer.
|
||||
const int64_t CFAOffsetFromInitialSP = CallFrameSize;
|
||||
|
||||
// Maps of asm register numbers to LLVM register numbers, with 0 indicating
|
||||
// an invalid register. We don't use the register classes directly because
|
||||
// they specify the allocation order.
|
||||
extern const unsigned GR32Regs[16];
|
||||
extern const unsigned GR64Regs[16];
|
||||
extern const unsigned GR128Regs[16];
|
||||
extern const unsigned FP32Regs[16];
|
||||
extern const unsigned FP64Regs[16];
|
||||
extern const unsigned FP128Regs[16];
|
||||
}
|
||||
|
||||
MCCodeEmitter *createSystemZMCCodeEmitter(const MCInstrInfo &MCII,
|
||||
|
Loading…
Reference in New Issue
Block a user