mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-25 14:32:53 +00:00
[Sparc] Add support for decoding 'swap' instruction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203424 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f749c23912
commit
08da01c741
@ -211,6 +211,8 @@ static DecodeStatus DecodeJMPL(MCInst &Inst, unsigned insn, uint64_t Address,
|
|||||||
const void *Decoder);
|
const void *Decoder);
|
||||||
static DecodeStatus DecodeReturn(MCInst &MI, unsigned insn, uint64_t Address,
|
static DecodeStatus DecodeReturn(MCInst &MI, unsigned insn, uint64_t Address,
|
||||||
const void *Decoder);
|
const void *Decoder);
|
||||||
|
static DecodeStatus DecodeSWAP(MCInst &Inst, unsigned insn, uint64_t Address,
|
||||||
|
const void *Decoder);
|
||||||
|
|
||||||
#include "SparcGenDisassemblerTables.inc"
|
#include "SparcGenDisassemblerTables.inc"
|
||||||
|
|
||||||
@ -445,3 +447,37 @@ static DecodeStatus DecodeReturn(MCInst &MI, unsigned insn, uint64_t Address,
|
|||||||
}
|
}
|
||||||
return MCDisassembler::Success;
|
return MCDisassembler::Success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static DecodeStatus DecodeSWAP(MCInst &MI, unsigned insn, uint64_t Address,
|
||||||
|
const void *Decoder) {
|
||||||
|
|
||||||
|
unsigned rd = fieldFromInstruction(insn, 25, 5);
|
||||||
|
unsigned rs1 = fieldFromInstruction(insn, 14, 5);
|
||||||
|
unsigned isImm = fieldFromInstruction(insn, 13, 1);
|
||||||
|
unsigned rs2 = 0;
|
||||||
|
unsigned simm13 = 0;
|
||||||
|
if (isImm)
|
||||||
|
simm13 = SignExtend32<13>(fieldFromInstruction(insn, 0, 13));
|
||||||
|
else
|
||||||
|
rs2 = fieldFromInstruction(insn, 0, 5);
|
||||||
|
|
||||||
|
// Decode RD.
|
||||||
|
DecodeStatus status = DecodeIntRegsRegisterClass(MI, rd, Address, Decoder);
|
||||||
|
if (status != MCDisassembler::Success)
|
||||||
|
return status;
|
||||||
|
|
||||||
|
// Decode RS1.
|
||||||
|
status = DecodeIntRegsRegisterClass(MI, rs1, Address, Decoder);
|
||||||
|
if (status != MCDisassembler::Success)
|
||||||
|
return status;
|
||||||
|
|
||||||
|
// Decode RS1 | SIMM13.
|
||||||
|
if (isImm)
|
||||||
|
MI.addOperand(MCOperand::CreateImm(simm13));
|
||||||
|
else {
|
||||||
|
status = DecodeIntRegsRegisterClass(MI, rs2, Address, Decoder);
|
||||||
|
if (status != MCDisassembler::Success)
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
return MCDisassembler::Success;
|
||||||
|
}
|
||||||
|
@ -1107,7 +1107,7 @@ let Predicates = [HasV9], hasSideEffects = 1, rd = 0, rs1 = 0b01111 in
|
|||||||
def MEMBARi : F3_2<2, 0b101000, (outs), (ins simm13Op:$simm13),
|
def MEMBARi : F3_2<2, 0b101000, (outs), (ins simm13Op:$simm13),
|
||||||
"membar $simm13", []>;
|
"membar $simm13", []>;
|
||||||
|
|
||||||
let Constraints = "$val = $dst" in {
|
let Constraints = "$val = $dst", DecoderMethod = "DecodeSWAP" in {
|
||||||
def SWAPrr : F3_1<3, 0b001111,
|
def SWAPrr : F3_1<3, 0b001111,
|
||||||
(outs IntRegs:$dst), (ins MEMrr:$addr, IntRegs:$val),
|
(outs IntRegs:$dst), (ins MEMrr:$addr, IntRegs:$val),
|
||||||
"swap [$addr], $dst",
|
"swap [$addr], $dst",
|
||||||
|
@ -152,3 +152,12 @@
|
|||||||
|
|
||||||
# CHECK: stx %o2, [%g1]
|
# CHECK: stx %o2, [%g1]
|
||||||
0xd4 0x70 0x60 0x00
|
0xd4 0x70 0x60 0x00
|
||||||
|
|
||||||
|
# CHECK: swap [%i0+%l6], %o2
|
||||||
|
0xd4 0x7e 0x00 0x16
|
||||||
|
|
||||||
|
# CHECK: swap [%i0+32], %o2
|
||||||
|
0xd4 0x7e 0x20 0x20
|
||||||
|
|
||||||
|
# CHECK: swap [%g1], %o2
|
||||||
|
0xd4 0x78 0x60 0x00
|
||||||
|
Loading…
Reference in New Issue
Block a user