mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
9105f66d6f
I'm doing this in two phases for a better "git blame" record. This commit removes the previous AArch64 backend and redirects all functionality to ARM64. It also deduplicates test-lines and removes orphaned AArch64 tests. The next step will be "git mv ARM64 AArch64" and rewire most of the tests. Hopefully LLVM is still functional, though it would be even better if no-one ever had to care because the rename happens straight afterwards. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209576 91177308-0d34-0410-b5e6-96231b3b80d8
43 lines
1.6 KiB
ArmAsm
43 lines
1.6 KiB
ArmAsm
// RUN: llvm-mc -triple=arm64-none-linux-gnu -filetype=obj %s -o - | \
|
|
// RUN: llvm-readobj -r | FileCheck -check-prefix=OBJ %s
|
|
|
|
movz x0, #:abs_g0:some_label
|
|
movk x0, #:abs_g0_nc:some_label
|
|
|
|
movz x3, #:abs_g1:some_label
|
|
movk x5, #:abs_g1_nc:some_label
|
|
|
|
movz x3, #:abs_g2:some_label
|
|
movk x5, #:abs_g2_nc:some_label
|
|
|
|
movz x7, #:abs_g3:some_label
|
|
movk x11, #:abs_g3:some_label
|
|
|
|
movz x13, #:abs_g0_s:some_label
|
|
movn x17, #:abs_g0_s:some_label
|
|
|
|
movz x19, #:abs_g1_s:some_label
|
|
movn x19, #:abs_g1_s:some_label
|
|
|
|
movz x19, #:abs_g2_s:some_label
|
|
movn x19, #:abs_g2_s:some_label
|
|
|
|
// OBJ: Relocations [
|
|
// OBJ-NEXT: Section (2) .rela.text {
|
|
// OBJ-NEXT: 0x0 R_AARCH64_MOVW_UABS_G0 some_label 0x0
|
|
// OBJ-NEXT: 0x4 R_AARCH64_MOVW_UABS_G0_NC some_label 0x0
|
|
// OBJ-NEXT: 0x8 R_AARCH64_MOVW_UABS_G1 some_label 0x0
|
|
// OBJ-NEXT: 0xC R_AARCH64_MOVW_UABS_G1_NC some_label 0x0
|
|
// OBJ-NEXT: 0x10 R_AARCH64_MOVW_UABS_G2 some_label 0x0
|
|
// OBJ-NEXT: 0x14 R_AARCH64_MOVW_UABS_G2_NC some_label 0x0
|
|
// OBJ-NEXT: 0x18 R_AARCH64_MOVW_UABS_G3 some_label 0x0
|
|
// OBJ-NEXT: 0x1C R_AARCH64_MOVW_UABS_G3 some_label 0x0
|
|
// OBJ-NEXT: 0x20 R_AARCH64_MOVW_SABS_G0 some_label 0x0
|
|
// OBJ-NEXT: 0x24 R_AARCH64_MOVW_SABS_G0 some_label 0x0
|
|
// OBJ-NEXT: 0x28 R_AARCH64_MOVW_SABS_G1 some_label 0x0
|
|
// OBJ-NEXT: 0x2C R_AARCH64_MOVW_SABS_G1 some_label 0x0
|
|
// OBJ-NEXT: 0x30 R_AARCH64_MOVW_SABS_G2 some_label 0x0
|
|
// OBJ-NEXT: 0x34 R_AARCH64_MOVW_SABS_G2 some_label 0x0
|
|
// OBJ-NEXT: }
|
|
// OBJ-NEXT: ]
|