mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
Revert "[MSP430] Update register names"
This reverts commit 8f6620f663031da2bb35b788239f4b607271af84.
This commit is contained in:
parent
c18ae8a43a
commit
2379b4e67b
@ -562,7 +562,7 @@ static unsigned convertGR16ToGR8(unsigned Reg) {
|
||||
case MSP430::SP: return MSP430::SPB;
|
||||
case MSP430::SR: return MSP430::SRB;
|
||||
case MSP430::CG: return MSP430::CGB;
|
||||
case MSP430::R4: return MSP430::R4B;
|
||||
case MSP430::FP: return MSP430::FPB;
|
||||
case MSP430::R5: return MSP430::R5B;
|
||||
case MSP430::R6: return MSP430::R6B;
|
||||
case MSP430::R7: return MSP430::R7B;
|
||||
|
@ -65,7 +65,7 @@ extern "C" LLVM_EXTERNAL_VISIBILITY void LLVMInitializeMSP430Disassembler() {
|
||||
|
||||
static const unsigned GR8DecoderTable[] = {
|
||||
MSP430::PCB, MSP430::SPB, MSP430::SRB, MSP430::CGB,
|
||||
MSP430::R4B, MSP430::R5B, MSP430::R6B, MSP430::R7B,
|
||||
MSP430::FPB, MSP430::R5B, MSP430::R6B, MSP430::R7B,
|
||||
MSP430::R8B, MSP430::R9B, MSP430::R10B, MSP430::R11B,
|
||||
MSP430::R12B, MSP430::R13B, MSP430::R14B, MSP430::R15B
|
||||
};
|
||||
@ -83,7 +83,7 @@ static DecodeStatus DecodeGR8RegisterClass(MCInst &MI, uint64_t RegNo,
|
||||
|
||||
static const unsigned GR16DecoderTable[] = {
|
||||
MSP430::PC, MSP430::SP, MSP430::SR, MSP430::CG,
|
||||
MSP430::R4, MSP430::R5, MSP430::R6, MSP430::R7,
|
||||
MSP430::FP, MSP430::R5, MSP430::R6, MSP430::R7,
|
||||
MSP430::R8, MSP430::R9, MSP430::R10, MSP430::R11,
|
||||
MSP430::R12, MSP430::R13, MSP430::R14, MSP430::R15
|
||||
};
|
||||
|
@ -64,16 +64,16 @@ void MSP430FrameLowering::emitPrologue(MachineFunction &MF,
|
||||
|
||||
// Save FP into the appropriate stack slot...
|
||||
BuildMI(MBB, MBBI, DL, TII.get(MSP430::PUSH16r))
|
||||
.addReg(MSP430::R4, RegState::Kill);
|
||||
.addReg(MSP430::FP, RegState::Kill);
|
||||
|
||||
// Update FP with the new base value...
|
||||
BuildMI(MBB, MBBI, DL, TII.get(MSP430::MOV16rr), MSP430::R4)
|
||||
BuildMI(MBB, MBBI, DL, TII.get(MSP430::MOV16rr), MSP430::FP)
|
||||
.addReg(MSP430::SP);
|
||||
|
||||
// Mark the FramePtr as live-in in every block except the entry.
|
||||
for (MachineFunction::iterator I = std::next(MF.begin()), E = MF.end();
|
||||
I != E; ++I)
|
||||
I->addLiveIn(MSP430::R4);
|
||||
I->addLiveIn(MSP430::FP);
|
||||
|
||||
} else
|
||||
NumBytes = StackSize - MSP430FI->getCalleeSavedFrameSize();
|
||||
@ -132,7 +132,7 @@ void MSP430FrameLowering::emitEpilogue(MachineFunction &MF,
|
||||
NumBytes = FrameSize - CSSize;
|
||||
|
||||
// pop FP.
|
||||
BuildMI(MBB, MBBI, DL, TII.get(MSP430::POP16r), MSP430::R4);
|
||||
BuildMI(MBB, MBBI, DL, TII.get(MSP430::POP16r), MSP430::FP);
|
||||
} else
|
||||
NumBytes = StackSize - CSSize;
|
||||
|
||||
@ -154,7 +154,7 @@ void MSP430FrameLowering::emitEpilogue(MachineFunction &MF,
|
||||
|
||||
if (MFI.hasVarSizedObjects()) {
|
||||
BuildMI(MBB, MBBI, DL,
|
||||
TII.get(MSP430::MOV16rr), MSP430::SP).addReg(MSP430::R4);
|
||||
TII.get(MSP430::MOV16rr), MSP430::SP).addReg(MSP430::FP);
|
||||
if (CSSize) {
|
||||
MachineInstr *MI =
|
||||
BuildMI(MBB, MBBI, DL,
|
||||
|
@ -1300,7 +1300,7 @@ SDValue MSP430TargetLowering::LowerFRAMEADDR(SDValue Op,
|
||||
SDLoc dl(Op); // FIXME probably not meaningful
|
||||
unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
|
||||
SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
|
||||
MSP430::R4, VT);
|
||||
MSP430::FP, VT);
|
||||
while (Depth--)
|
||||
FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
|
||||
MachinePointerInfo());
|
||||
|
@ -39,7 +39,7 @@ MSP430RegisterInfo::getCalleeSavedRegs(const MachineFunction *MF) const {
|
||||
const MSP430FrameLowering *TFI = getFrameLowering(*MF);
|
||||
const Function* F = &MF->getFunction();
|
||||
static const MCPhysReg CalleeSavedRegs[] = {
|
||||
MSP430::R4, MSP430::R5, MSP430::R6, MSP430::R7,
|
||||
MSP430::FP, MSP430::R5, MSP430::R6, MSP430::R7,
|
||||
MSP430::R8, MSP430::R9, MSP430::R10,
|
||||
0
|
||||
};
|
||||
@ -49,7 +49,7 @@ MSP430RegisterInfo::getCalleeSavedRegs(const MachineFunction *MF) const {
|
||||
0
|
||||
};
|
||||
static const MCPhysReg CalleeSavedRegsIntr[] = {
|
||||
MSP430::R4, MSP430::R5, MSP430::R6, MSP430::R7,
|
||||
MSP430::FP, MSP430::R5, MSP430::R6, MSP430::R7,
|
||||
MSP430::R8, MSP430::R9, MSP430::R10, MSP430::R11,
|
||||
MSP430::R12, MSP430::R13, MSP430::R14, MSP430::R15,
|
||||
0
|
||||
@ -86,8 +86,8 @@ BitVector MSP430RegisterInfo::getReservedRegs(const MachineFunction &MF) const {
|
||||
|
||||
// Mark frame pointer as reserved if needed.
|
||||
if (TFI->hasFP(MF)) {
|
||||
Reserved.set(MSP430::R4B);
|
||||
Reserved.set(MSP430::R4);
|
||||
Reserved.set(MSP430::FPB);
|
||||
Reserved.set(MSP430::FP);
|
||||
}
|
||||
|
||||
return Reserved;
|
||||
@ -112,7 +112,7 @@ MSP430RegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II,
|
||||
DebugLoc dl = MI.getDebugLoc();
|
||||
int FrameIndex = MI.getOperand(FIOperandNum).getIndex();
|
||||
|
||||
unsigned BasePtr = (TFI->hasFP(MF) ? MSP430::R4 : MSP430::SP);
|
||||
unsigned BasePtr = (TFI->hasFP(MF) ? MSP430::FP : MSP430::SP);
|
||||
int Offset = MF.getFrameInfo().getObjectOffset(FrameIndex);
|
||||
|
||||
// Skip the saved PC
|
||||
@ -156,5 +156,5 @@ MSP430RegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II,
|
||||
|
||||
Register MSP430RegisterInfo::getFrameRegister(const MachineFunction &MF) const {
|
||||
const MSP430FrameLowering *TFI = getFrameLowering(MF);
|
||||
return TFI->hasFP(MF) ? MSP430::R4 : MSP430::SP;
|
||||
return TFI->hasFP(MF) ? MSP430::FP : MSP430::SP;
|
||||
}
|
||||
|
@ -36,7 +36,7 @@ def PCB : MSP430Reg<0, "r0", ["pc"]>;
|
||||
def SPB : MSP430Reg<1, "r1", ["sp"]>;
|
||||
def SRB : MSP430Reg<2, "r2", ["sr"]>;
|
||||
def CGB : MSP430Reg<3, "r3", ["cg"]>;
|
||||
def R4B : MSP430Reg<4, "r4", ["fp"]>;
|
||||
def FPB : MSP430Reg<4, "r4", ["fp"]>;
|
||||
def R5B : MSP430Reg<5, "r5">;
|
||||
def R6B : MSP430Reg<6, "r6">;
|
||||
def R7B : MSP430Reg<7, "r7">;
|
||||
@ -56,7 +56,7 @@ def PC : MSP430RegWithSubregs<0, "r0", [PCB], ["pc"]>;
|
||||
def SP : MSP430RegWithSubregs<1, "r1", [SPB], ["sp"]>;
|
||||
def SR : MSP430RegWithSubregs<2, "r2", [SRB], ["sr"]>;
|
||||
def CG : MSP430RegWithSubregs<3, "r3", [CGB], ["cg"]>;
|
||||
def R4 : MSP430RegWithSubregs<4, "r4", [R4B], ["fp"]>;
|
||||
def FP : MSP430RegWithSubregs<4, "r4", [FPB], ["fp"]>;
|
||||
def R5 : MSP430RegWithSubregs<5, "r5", [R5B]>;
|
||||
def R6 : MSP430RegWithSubregs<6, "r6", [R6B]>;
|
||||
def R7 : MSP430RegWithSubregs<7, "r7", [R7B]>;
|
||||
@ -74,7 +74,7 @@ def GR8 : RegisterClass<"MSP430", [i8], 8,
|
||||
// Volatile registers
|
||||
(add R12B, R13B, R14B, R15B, R11B, R10B, R9B, R8B, R7B, R6B, R5B,
|
||||
// Frame pointer, sometimes allocable
|
||||
R4B,
|
||||
FPB,
|
||||
// Volatile, but not allocable
|
||||
PCB, SPB, SRB, CGB)>;
|
||||
|
||||
@ -82,6 +82,6 @@ def GR16 : RegisterClass<"MSP430", [i16], 16,
|
||||
// Volatile registers
|
||||
(add R12, R13, R14, R15, R11, R10, R9, R8, R7, R6, R5,
|
||||
// Frame pointer, sometimes allocable
|
||||
R4,
|
||||
FP,
|
||||
// Volatile, but not allocable
|
||||
PC, SP, SR, CG)>;
|
||||
|
@ -3,52 +3,9 @@
|
||||
target datalayout = "e-m:e-p:16:16-i32:16:32-a:16-n8:16"
|
||||
target triple = "msp430---elf"
|
||||
|
||||
define void @test_no_clobber() {
|
||||
define void @test() {
|
||||
entry:
|
||||
; CHECK-LABEL: test_no_clobber
|
||||
; CHECK-NOT: push
|
||||
call void asm sideeffect "", ""()
|
||||
; CHECK-NOT: pop
|
||||
ret void
|
||||
; CHECK: -- End function
|
||||
}
|
||||
|
||||
define void @test_1() {
|
||||
entry:
|
||||
; CHECK-LABEL: test_1:
|
||||
; CHECK: push r8
|
||||
; CHECK: push r6
|
||||
; CHECK: push r4
|
||||
call void asm sideeffect "", "~{r4},~{r6},~{r8}"()
|
||||
; CHECK: pop r4
|
||||
; CHECK: pop r6
|
||||
; CHECK: pop r8
|
||||
ret void
|
||||
}
|
||||
|
||||
define void @test_2() {
|
||||
entry:
|
||||
; CHECK-LABEL: test_2:
|
||||
; CHECK: push r9
|
||||
; CHECK: push r7
|
||||
; CHECK: push r5
|
||||
call void asm sideeffect "", "~{r5},~{r7},~{r9}"()
|
||||
; CHECK: pop r5
|
||||
; CHECK: pop r7
|
||||
; CHECK: pop r9
|
||||
ret void
|
||||
}
|
||||
|
||||
; The r10 register is special because the sequence
|
||||
; pop r10
|
||||
; ret
|
||||
; can be replaced with
|
||||
; jmp __mspabi_func_epilog_1
|
||||
; or other such function (depending on previous instructions).
|
||||
; Still, it is not replaced *yet*.
|
||||
define void @test_r10() {
|
||||
entry:
|
||||
; CHECK-LABEL: test_r10:
|
||||
; CHECK-LABEL: test:
|
||||
; CHECK: push r10
|
||||
call void asm sideeffect "", "~{r10}"()
|
||||
; CHECK: pop r10
|
||||
|
@ -1,59 +0,0 @@
|
||||
; RUN: llc < %s | FileCheck %s
|
||||
target datalayout = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"
|
||||
target triple = "msp430-generic-generic"
|
||||
|
||||
; Test that correct register names are accepted *inside* inline asm listings.
|
||||
; Tested with PUSH instruction since it does not support memory operands.
|
||||
|
||||
define void @accepted_rN() nounwind {
|
||||
; CHECK-LABEL: accepted_rN
|
||||
call void asm sideeffect "push r0", ""() nounwind
|
||||
; CHECK: push r0
|
||||
call void asm sideeffect "push r1", ""() nounwind
|
||||
; CHECK: push r1
|
||||
call void asm sideeffect "push r2", ""() nounwind
|
||||
; CHECK: push r2
|
||||
call void asm sideeffect "push r3", ""() nounwind
|
||||
; CHECK: push r3
|
||||
call void asm sideeffect "push r4", ""() nounwind
|
||||
; CHECK: push r4
|
||||
call void asm sideeffect "push r5", ""() nounwind
|
||||
; CHECK: push r5
|
||||
call void asm sideeffect "push r6", ""() nounwind
|
||||
; CHECK: push r6
|
||||
call void asm sideeffect "push r7", ""() nounwind
|
||||
; CHECK: push r7
|
||||
call void asm sideeffect "push r8", ""() nounwind
|
||||
; CHECK: push r8
|
||||
call void asm sideeffect "push r9", ""() nounwind
|
||||
; CHECK: push r9
|
||||
call void asm sideeffect "push r10", ""() nounwind
|
||||
; CHECK: push r10
|
||||
call void asm sideeffect "push r11", ""() nounwind
|
||||
; CHECK: push r11
|
||||
call void asm sideeffect "push r12", ""() nounwind
|
||||
; CHECK: push r12
|
||||
call void asm sideeffect "push r13", ""() nounwind
|
||||
; CHECK: push r13
|
||||
call void asm sideeffect "push r14", ""() nounwind
|
||||
; CHECK: push r14
|
||||
call void asm sideeffect "push r15", ""() nounwind
|
||||
; CHECK: push r15
|
||||
ret void
|
||||
}
|
||||
|
||||
define void @accepted_reg_aliases() nounwind {
|
||||
; CHECK-LABEL: accepted_reg_aliases
|
||||
; Ensure register aliases are renamed as expected
|
||||
call void asm sideeffect "push pc", ""() nounwind
|
||||
; CHECK: push r0
|
||||
call void asm sideeffect "push sp", ""() nounwind
|
||||
; CHECK: push r1
|
||||
call void asm sideeffect "push sr", ""() nounwind
|
||||
; CHECK: push r2
|
||||
call void asm sideeffect "push cg", ""() nounwind
|
||||
; CHECK: push r3
|
||||
call void asm sideeffect "push fp", ""() nounwind
|
||||
; CHECK: push r4
|
||||
ret void
|
||||
}
|
Loading…
Reference in New Issue
Block a user