mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-31 10:34:17 +00:00
Add some new instructions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22036 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f5a5a6c666
commit
2b3d56ee72
@ -191,6 +191,13 @@ let isCall = 1 in
|
|||||||
def CALL32m : I<0xFF, MRM2m, (ops i32mem:$dst), "call {*}$dst">;
|
def CALL32m : I<0xFF, MRM2m, (ops i32mem:$dst), "call {*}$dst">;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// calltarget instead of i32imm?
|
||||||
|
let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
|
||||||
|
def TAILJMPd : IBr<0xE9, (ops i32imm:$dst), "jmp $dst">;
|
||||||
|
let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
|
||||||
|
def TAILJMPr : I<0xFF, MRM4r, (ops R32:$dst), "jmp {*}$dst">;
|
||||||
|
let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
|
||||||
|
def TAILJMPm : I<0xFF, MRM4m, (ops i32mem:$dst), "jmp {*}$dst">;
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// Miscellaneous Instructions...
|
// Miscellaneous Instructions...
|
||||||
|
@ -507,8 +507,16 @@ void X86RegisterInfo::emitEpilogue(MachineFunction &MF,
|
|||||||
const MachineFrameInfo *MFI = MF.getFrameInfo();
|
const MachineFrameInfo *MFI = MF.getFrameInfo();
|
||||||
MachineBasicBlock::iterator MBBI = prior(MBB.end());
|
MachineBasicBlock::iterator MBBI = prior(MBB.end());
|
||||||
MachineInstr *MI;
|
MachineInstr *MI;
|
||||||
assert((MBBI->getOpcode() == X86::RET || MBBI->getOpcode() == X86::RETI) &&
|
|
||||||
"Can only insert epilog into returning blocks");
|
switch (MBBI->getOpcode()) {
|
||||||
|
case X86::RET:
|
||||||
|
case X86::RETI:
|
||||||
|
case X86::TAILJMPd:
|
||||||
|
case X86::TAILJMPr:
|
||||||
|
case X86::TAILJMPm: break; // These are ok
|
||||||
|
default:
|
||||||
|
assert(0 && "Can only insert epilog into returning blocks");
|
||||||
|
}
|
||||||
|
|
||||||
if (hasFP(MF)) {
|
if (hasFP(MF)) {
|
||||||
// Get the offset of the stack slot for the EBP register... which is
|
// Get the offset of the stack slot for the EBP register... which is
|
||||||
|
Loading…
x
Reference in New Issue
Block a user