mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
[XCore] Remove '-' from back branch asm syntax.
Instead operands are treated as negative immediates where the sign bit is implicit in the instruction encoding. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181151 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e210df20d3
commit
1114b0ec15
@ -97,6 +97,9 @@ static DecodeStatus DecodeRRegsRegisterClass(MCInst &Inst,
|
||||
static DecodeStatus DecodeBitpOperand(MCInst &Inst, unsigned Val,
|
||||
uint64_t Address, const void *Decoder);
|
||||
|
||||
static DecodeStatus DecodeNegImmOperand(MCInst &Inst, unsigned Val,
|
||||
uint64_t Address, const void *Decoder);
|
||||
|
||||
static DecodeStatus Decode2RInstruction(MCInst &Inst,
|
||||
unsigned Insn,
|
||||
uint64_t Address,
|
||||
@ -239,6 +242,12 @@ static DecodeStatus DecodeBitpOperand(MCInst &Inst, unsigned Val,
|
||||
return MCDisassembler::Success;
|
||||
}
|
||||
|
||||
static DecodeStatus DecodeNegImmOperand(MCInst &Inst, unsigned Val,
|
||||
uint64_t Address, const void *Decoder) {
|
||||
Inst.addOperand(MCOperand::CreateImm(-(int64_t)Val));
|
||||
return MCDisassembler::Success;
|
||||
}
|
||||
|
||||
static DecodeStatus
|
||||
Decode2OpInstruction(unsigned Insn, unsigned &Op1, unsigned &Op2) {
|
||||
unsigned Combined = fieldFromInstruction(Insn, 6, 5);
|
||||
|
@ -170,6 +170,9 @@ def ldawb : PatFrag<(ops node:$addr, node:$offset),
|
||||
// Instruction operand types
|
||||
def calltarget : Operand<i32>;
|
||||
def brtarget : Operand<OtherVT>;
|
||||
def brtarget_neg : Operand<OtherVT> {
|
||||
let DecoderMethod = "DecodeNegImmOperand";
|
||||
}
|
||||
|
||||
// Addressing modes
|
||||
def ADDRspii : ComplexPattern<i32, 2, "SelectADDRspii", [add, frameindex], []>;
|
||||
@ -267,10 +270,10 @@ multiclass FRU6_LRU6_branch<bits<6> opc, string OpcStr> {
|
||||
}
|
||||
|
||||
multiclass FRU6_LRU6_backwards_branch<bits<6> opc, string OpcStr> {
|
||||
def _ru6: _FRU6<opc, (outs), (ins GRRegs:$a, brtarget:$b),
|
||||
!strconcat(OpcStr, " $a, -$b"), []>;
|
||||
def _lru6: _FLRU6<opc, (outs), (ins GRRegs:$a, brtarget:$b),
|
||||
!strconcat(OpcStr, " $a, -$b"), []>;
|
||||
def _ru6: _FRU6<opc, (outs), (ins GRRegs:$a, brtarget_neg:$b),
|
||||
!strconcat(OpcStr, " $a, $b"), []>;
|
||||
def _lru6: _FLRU6<opc, (outs), (ins GRRegs:$a, brtarget_neg:$b),
|
||||
!strconcat(OpcStr, " $a, $b"), []>;
|
||||
}
|
||||
|
||||
multiclass FRU6_LRU6_cp<bits<6> opc, string OpcStr> {
|
||||
@ -608,9 +611,9 @@ let Uses = [R11], isCall=1 in
|
||||
defm BLAT : FU6_LU6_np<0b0111001101, "blat">;
|
||||
|
||||
let isBranch = 1, isTerminator = 1, isBarrier = 1 in {
|
||||
def BRBU_u6 : _FU6<0b0111011100, (outs), (ins brtarget:$a), "bu -$a", []>;
|
||||
def BRBU_u6 : _FU6<0b0111011100, (outs), (ins brtarget_neg:$a), "bu $a", []>;
|
||||
|
||||
def BRBU_lu6 : _FLU6<0b0111011100, (outs), (ins brtarget:$a), "bu -$a", []>;
|
||||
def BRBU_lu6 : _FLU6<0b0111011100, (outs), (ins brtarget_neg:$a), "bu $a", []>;
|
||||
|
||||
def BRFU_u6 : _FU6<0b0111001100, (outs), (ins brtarget:$a), "bu $a", []>;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user