mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
Range checking for 16-bit immediates in ARM assembly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135071 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d1863560cb
commit
fff76ee7ef
@ -256,9 +256,12 @@ def lo16AllZero : PatLeaf<(i32 imm), [{
|
||||
}], hi16>;
|
||||
|
||||
/// imm0_65535 - An immediate is in the range [0.65535].
|
||||
def Imm0_65535AsmOperand: AsmOperandClass { let Name = "Imm0_65535"; }
|
||||
def imm0_65535 : Operand<i32>, ImmLeaf<i32, [{
|
||||
return Imm >= 0 && Imm < 65536;
|
||||
}]>;
|
||||
}]> {
|
||||
let ParserMatchClass = Imm0_65535AsmOperand;
|
||||
}
|
||||
|
||||
class BinOpFrag<dag res> : PatFrag<(ops node:$LHS, node:$RHS), res>;
|
||||
class UnOpFrag <dag res> : PatFrag<(ops node:$Src), res>;
|
||||
|
@ -386,6 +386,14 @@ public:
|
||||
int64_t Value = CE->getValue();
|
||||
return Value >= 0 && Value < 256;
|
||||
}
|
||||
bool isImm0_65535() const {
|
||||
if (Kind != Immediate)
|
||||
return false;
|
||||
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
||||
if (!CE) return false;
|
||||
int64_t Value = CE->getValue();
|
||||
return Value >= 0 && Value < 65536;
|
||||
}
|
||||
bool isT2SOImm() const {
|
||||
if (Kind != Immediate)
|
||||
return false;
|
||||
@ -577,6 +585,11 @@ public:
|
||||
addExpr(Inst, getImm());
|
||||
}
|
||||
|
||||
void addImm0_65535Operands(MCInst &Inst, unsigned N) const {
|
||||
assert(N == 1 && "Invalid number of operands!");
|
||||
addExpr(Inst, getImm());
|
||||
}
|
||||
|
||||
void addT2SOImmOperands(MCInst &Inst, unsigned N) const {
|
||||
assert(N == 1 && "Invalid number of operands!");
|
||||
addExpr(Inst, getImm());
|
||||
|
@ -316,6 +316,5 @@ _func:
|
||||
bkpt #10
|
||||
bkpt #65535
|
||||
|
||||
@ CHECK: bkpt #10 @ encoding: [0x7a,0x00,0x20,0xe1]
|
||||
@ CHECK: bkpt #65535 @ encoding: [0x7f,0xff,0x2f,0xe1]
|
||||
|
||||
@ CHECK: bkpt #10 @ encoding: [0x7a,0x00,0x20,0xe1]
|
||||
@ CHECK: bkpt #65535 @ encoding: [0x7f,0xff,0x2f,0xe1]
|
||||
|
@ -40,4 +40,9 @@
|
||||
@ CHECK-ERRORS: ^
|
||||
@ CHECK-ERRORS: error: immediate shift value out of range
|
||||
@ CHECK-ERRORS: adc r4, r5, r6, ror #32
|
||||
@ CHECK-ERRORS: ^
|
||||
|
||||
|
||||
@ Out of range 16-bit immediate on BKPT
|
||||
bkpt #65536
|
||||
|
||||
@ CHECK-ERRORS: error: invalid operand for instruction
|
||||
|
Loading…
Reference in New Issue
Block a user