forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ARM64] Fixup ADR/ADRP parsing such that they accept immediates and a…
…ll labels types git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205888 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Showing
3 changed files
with
99 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// RUN: not llvm-mc -triple arm64 -show-encoding < %s 2>%t | FileCheck %s | ||
// RUN: FileCheck --check-prefix=CHECK-ERRORS < %t %s | ||
|
||
adr x0, #0 | ||
adr x0, #1 | ||
adr x0, 1f | ||
adr x0, foo | ||
// CHECK: adr x0, #0 // encoding: [0x00,0x00,0x00,0x10] | ||
// CHECK: adr x0, #1 // encoding: [0x00,0x00,0x00,0x30] | ||
// CHECK: adr x0, .Ltmp0 // encoding: [A,A,A,0x10'A'] | ||
// CHECK-NEXT: // fixup A - offset: 0, value: .Ltmp0, kind: fixup_arm64_pcrel_adr_imm21 | ||
// CHECK: adr x0, foo // encoding: [A,A,A,0x10'A'] | ||
// CHECK-NEXT: // fixup A - offset: 0, value: foo, kind: fixup_arm64_pcrel_adr_imm21 | ||
|
||
adrp x0, #0 | ||
adrp x0, #4096 | ||
adrp x0, 1f | ||
adrp x0, foo | ||
// CHECK: adrp x0, #0 // encoding: [0x00,0x00,0x00,0x90] | ||
// CHECK: adrp x0, #4096 // encoding: [0x00,0x00,0x00,0xb0] | ||
// CHECK: adrp x0, .Ltmp0 // encoding: [A,A,A,0x90'A'] | ||
// CHECK-NEXT: // fixup A - offset: 0, value: .Ltmp0, kind: fixup_arm64_pcrel_adrp_imm21 | ||
// CHECK: adrp x0, foo // encoding: [A,A,A,0x90'A'] | ||
// CHECK-NEXT: // fixup A - offset: 0, value: foo, kind: fixup_arm64_pcrel_adrp_imm21 | ||
|
||
adr x0, #0xffffffff | ||
adrp x0, #0xffffffff | ||
adrp x0, #1 | ||
// CHECK-ERRORS: error: expected label or encodable integer pc offset | ||
// CHECK-ERRORS: error: expected label or encodable integer pc offset | ||
// CHECK-ERRORS: error: expected label or encodable integer pc offset |