mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-21 01:06:46 +00:00
[ARM] Add diag string for movw/movt immediates in assembly
This adds diagnostics for invalid immediate operands to the MOVW and MOVT instructions (ARM and Thumb). Differential revision: https://reviews.llvm.org/D31879 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@314888 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7426522d8b
commit
78762a19e4
@ -822,6 +822,7 @@ def imm0_65535_neg : Operand<i32>, ImmLeaf<i32, [{
|
||||
def Imm0_65535ExprAsmOperand: AsmOperandClass {
|
||||
let Name = "Imm0_65535Expr";
|
||||
let RenderMethod = "addImmOperands";
|
||||
let DiagnosticString = "operand must be an immediate in the range [0,0xffff] or a relocatable expression";
|
||||
}
|
||||
|
||||
def imm0_65535_expr : Operand<i32> {
|
||||
|
@ -175,7 +175,7 @@
|
||||
|
||||
@ Out of range immediate for MOV
|
||||
movw r9, 0x10000
|
||||
@ CHECK-ERRORS: error: invalid operand for instruction
|
||||
@ CHECK-ERRORS: error: operand must be an immediate in the range [0,0xffff] or a relocatable expression
|
||||
@ CHECK-ERRORS: movw r9, 0x10000
|
||||
@ CHECK-ERRORS: ^
|
||||
|
||||
@ -187,7 +187,7 @@
|
||||
|
||||
@ Out of range immediate for MOVT
|
||||
movt r9, 0x10000
|
||||
@ CHECK-ERRORS: error: invalid operand for instruction
|
||||
@ CHECK-ERRORS: error: operand must be an immediate in the range [0,0xffff] or a relocatable expression
|
||||
@ CHECK-ERRORS: movt r9, 0x10000
|
||||
@ CHECK-ERRORS: ^
|
||||
|
||||
|
@ -80,10 +80,14 @@
|
||||
foo2:
|
||||
movw r0, foo2
|
||||
movt r0, foo2
|
||||
movt r0, #0x10000
|
||||
movt r0, #0x10000
|
||||
@ CHECK-ERRORS: error: immediate expression for mov requires :lower16: or :upper16
|
||||
@ CHECK-ERRORS: ^
|
||||
@ CHECK-ERRORS: immediate expression for mov requires :lower16: or :upper16
|
||||
@ CHECK-ERRORS: ^
|
||||
@ CHECK-ERRORS: error: operand must be an immediate in the range [0,0xffff] or a relocatable expression
|
||||
@ CHECK-ERRORS: error: operand must be an immediate in the range [0,0xffff] or a relocatable expression
|
||||
|
||||
and sp, r1, #80008000
|
||||
and pc, r1, #80008000
|
||||
|
Loading…
x
Reference in New Issue
Block a user