mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-21 21:29:41 +00:00
[mips] Delete register class HWRegs64.
No functionality change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188016 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d76adee1b2
commit
94a88c49b0
@ -96,9 +96,6 @@ class MipsAsmParser : public MCTargetAsmParser {
|
||||
MipsAsmParser::OperandMatchResultTy
|
||||
parseHWRegs(SmallVectorImpl<MCParsedAsmOperand*> &Operands);
|
||||
|
||||
MipsAsmParser::OperandMatchResultTy
|
||||
parseHW64Regs(SmallVectorImpl<MCParsedAsmOperand*> &Operands);
|
||||
|
||||
MipsAsmParser::OperandMatchResultTy
|
||||
parseCCRRegs(SmallVectorImpl<MCParsedAsmOperand*> &Operands);
|
||||
|
||||
@ -221,7 +218,6 @@ public:
|
||||
Kind_GPR32,
|
||||
Kind_GPR64,
|
||||
Kind_HWRegs,
|
||||
Kind_HW64Regs,
|
||||
Kind_FGR32Regs,
|
||||
Kind_FGR64Regs,
|
||||
Kind_AFGR64Regs,
|
||||
@ -388,11 +384,6 @@ public:
|
||||
return Reg.Kind == Kind_HWRegs;
|
||||
}
|
||||
|
||||
bool isHW64RegsAsm() const {
|
||||
assert((Kind == k_Register) && "Invalid access!");
|
||||
return Reg.Kind == Kind_HW64Regs;
|
||||
}
|
||||
|
||||
bool isCCRAsm() const {
|
||||
assert((Kind == k_Register) && "Invalid access!");
|
||||
return Reg.Kind == Kind_CCRRegs;
|
||||
@ -1497,36 +1488,6 @@ MipsAsmParser::parseHWRegs(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
||||
return MatchOperand_Success;
|
||||
}
|
||||
|
||||
MipsAsmParser::OperandMatchResultTy
|
||||
MipsAsmParser::parseHW64Regs(
|
||||
SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
||||
|
||||
if (!isMips64())
|
||||
return MatchOperand_NoMatch;
|
||||
// If the first token is not '$' we have an error.
|
||||
if (Parser.getTok().isNot(AsmToken::Dollar))
|
||||
return MatchOperand_NoMatch;
|
||||
SMLoc S = Parser.getTok().getLoc();
|
||||
Parser.Lex(); // Eat $
|
||||
|
||||
const AsmToken &Tok = Parser.getTok(); // Get the next token.
|
||||
if (Tok.isNot(AsmToken::Integer))
|
||||
return MatchOperand_NoMatch;
|
||||
|
||||
unsigned RegNum = Tok.getIntVal();
|
||||
// At the moment only hwreg29 is supported.
|
||||
if (RegNum != 29)
|
||||
return MatchOperand_ParseFail;
|
||||
|
||||
MipsOperand *op = MipsOperand::CreateReg(Mips::HWR29_64, S,
|
||||
Parser.getTok().getLoc());
|
||||
op->setRegKind(MipsOperand::Kind_HW64Regs);
|
||||
Operands.push_back(op);
|
||||
|
||||
Parser.Lex(); // Eat the register number.
|
||||
return MatchOperand_Success;
|
||||
}
|
||||
|
||||
MipsAsmParser::OperandMatchResultTy
|
||||
MipsAsmParser::parseCCRRegs(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
||||
// If the first token is not '$' we have an error.
|
||||
|
@ -224,7 +224,7 @@ def DSHD : SubwordSwap<"dshd", GPR64Opnd>, SEB_FM<5, 0x24>;
|
||||
def LEA_ADDiu64 : EffectiveAddress<"daddiu", GPR64Opnd, mem_ea_64>, LW_FM<0x19>;
|
||||
|
||||
let isCodeGenOnly = 1 in
|
||||
def RDHWR64 : ReadHardware<GPR64Opnd, HW64RegsOpnd>, RDHWR_FM;
|
||||
def RDHWR64 : ReadHardware<GPR64Opnd, HWRegsOpnd>, RDHWR_FM;
|
||||
|
||||
def DEXT : ExtBase<"dext", GPR64Opnd>, EXT_FM<3>;
|
||||
let Pattern = []<dag> in {
|
||||
|
@ -146,7 +146,6 @@ getReservedRegs(const MachineFunction &MF) const {
|
||||
|
||||
// Reserve hardware registers.
|
||||
Reserved.set(Mips::HWR29);
|
||||
Reserved.set(Mips::HWR29_64);
|
||||
|
||||
// Reserve DSP control register.
|
||||
Reserved.set(Mips::DSPPos);
|
||||
|
@ -190,7 +190,6 @@ let Namespace = "Mips" in {
|
||||
|
||||
// Hardware register $29
|
||||
def HWR29 : MipsReg<29, "29">;
|
||||
def HWR29_64 : MipsReg<29, "29">;
|
||||
|
||||
// Accum registers
|
||||
def AC0 : ACC<0, "ac0", [LO, HI]>;
|
||||
@ -313,7 +312,6 @@ def HIRegs64 : RegisterClass<"Mips", [i64], 64, (add HI64)>;
|
||||
|
||||
// Hardware registers
|
||||
def HWRegs : RegisterClass<"Mips", [i32], 32, (add HWR29)>, Unallocatable;
|
||||
def HWRegs64 : RegisterClass<"Mips", [i64], 64, (add HWR29_64)>, Unallocatable;
|
||||
|
||||
// Accumulator Registers
|
||||
def ACRegs : RegisterClass<"Mips", [untyped], 64, (add AC0)> {
|
||||
@ -392,19 +390,10 @@ def HWRegsAsmOperand : MipsAsmRegOperand {
|
||||
let ParserMethod = "parseHWRegs";
|
||||
}
|
||||
|
||||
def HW64RegsAsmOperand : MipsAsmRegOperand {
|
||||
let Name = "HW64RegsAsm";
|
||||
let ParserMethod = "parseHW64Regs";
|
||||
}
|
||||
|
||||
def HWRegsOpnd : RegisterOperand<HWRegs> {
|
||||
let ParserMatchClass = HWRegsAsmOperand;
|
||||
}
|
||||
|
||||
def HW64RegsOpnd : RegisterOperand<HWRegs64> {
|
||||
let ParserMatchClass = HW64RegsAsmOperand;
|
||||
}
|
||||
|
||||
def AFGR64RegsOpnd : RegisterOperand<AFGR64> {
|
||||
let ParserMatchClass = AFGR64AsmOperand;
|
||||
}
|
||||
|
@ -403,22 +403,20 @@ std::pair<bool, SDNode*> MipsSEDAGToDAGISel::selectNode(SDNode *Node) {
|
||||
|
||||
case MipsISD::ThreadPointer: {
|
||||
EVT PtrVT = getTargetLowering()->getPointerTy();
|
||||
unsigned RdhwrOpc, SrcReg, DestReg;
|
||||
unsigned RdhwrOpc, DestReg;
|
||||
|
||||
if (PtrVT == MVT::i32) {
|
||||
RdhwrOpc = Mips::RDHWR;
|
||||
SrcReg = Mips::HWR29;
|
||||
DestReg = Mips::V1;
|
||||
} else {
|
||||
RdhwrOpc = Mips::RDHWR64;
|
||||
SrcReg = Mips::HWR29_64;
|
||||
DestReg = Mips::V1_64;
|
||||
}
|
||||
|
||||
SDNode *Rdhwr =
|
||||
CurDAG->getMachineNode(RdhwrOpc, SDLoc(Node),
|
||||
Node->getValueType(0),
|
||||
CurDAG->getRegister(SrcReg, PtrVT));
|
||||
CurDAG->getRegister(Mips::HWR29, MVT::i32));
|
||||
SDValue Chain = CurDAG->getCopyToReg(CurDAG->getEntryNode(), DL, DestReg,
|
||||
SDValue(Rdhwr, 0));
|
||||
SDValue ResNode = CurDAG->getCopyFromReg(Chain, DL, DestReg, PtrVT);
|
||||
|
Loading…
x
Reference in New Issue
Block a user