mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +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
85 lines
2.3 KiB
LLVM
85 lines
2.3 KiB
LLVM
; RUN: llc -verify-machineinstrs -o - %s -mtriple=arm64-apple-ios7.0 | FileCheck %s
|
|
|
|
@var32 = global i32 0
|
|
@var64 = global i64 0
|
|
|
|
define void @test_and(i32 %in32, i64 %in64) {
|
|
; CHECK-LABEL: test_and:
|
|
|
|
%val0 = and i32 %in32, 2863311530
|
|
store volatile i32 %val0, i32* @var32
|
|
; CHECK: and {{w[0-9]+}}, {{w[0-9]+}}, #0xaaaaaaaa
|
|
|
|
%val1 = and i32 %in32, 4293984240
|
|
store volatile i32 %val1, i32* @var32
|
|
; CHECK: and {{w[0-9]+}}, {{w[0-9]+}}, #0xfff0fff0
|
|
|
|
%val2 = and i64 %in64, 9331882296111890817
|
|
store volatile i64 %val2, i64* @var64
|
|
; CHECK: and {{x[0-9]+}}, {{x[0-9]+}}, #0x8181818181818181
|
|
|
|
%val3 = and i64 %in64, 18429855317404942275
|
|
store volatile i64 %val3, i64* @var64
|
|
; CHECK: and {{x[0-9]+}}, {{x[0-9]+}}, #0xffc3ffc3ffc3ffc3
|
|
|
|
ret void
|
|
}
|
|
|
|
define void @test_orr(i32 %in32, i64 %in64) {
|
|
; CHECK-LABEL: test_orr:
|
|
|
|
%val0 = or i32 %in32, 2863311530
|
|
store volatile i32 %val0, i32* @var32
|
|
; CHECK: orr {{w[0-9]+}}, {{w[0-9]+}}, #0xaaaaaaaa
|
|
|
|
%val1 = or i32 %in32, 4293984240
|
|
store volatile i32 %val1, i32* @var32
|
|
; CHECK: orr {{w[0-9]+}}, {{w[0-9]+}}, #0xfff0fff0
|
|
|
|
%val2 = or i64 %in64, 9331882296111890817
|
|
store volatile i64 %val2, i64* @var64
|
|
; CHECK: orr {{x[0-9]+}}, {{x[0-9]+}}, #0x8181818181818181
|
|
|
|
%val3 = or i64 %in64, 18429855317404942275
|
|
store volatile i64 %val3, i64* @var64
|
|
; CHECK: orr {{x[0-9]+}}, {{x[0-9]+}}, #0xffc3ffc3ffc3ffc3
|
|
|
|
ret void
|
|
}
|
|
|
|
define void @test_eor(i32 %in32, i64 %in64) {
|
|
; CHECK-LABEL: test_eor:
|
|
|
|
%val0 = xor i32 %in32, 2863311530
|
|
store volatile i32 %val0, i32* @var32
|
|
; CHECK: eor {{w[0-9]+}}, {{w[0-9]+}}, #0xaaaaaaaa
|
|
|
|
%val1 = xor i32 %in32, 4293984240
|
|
store volatile i32 %val1, i32* @var32
|
|
; CHECK: eor {{w[0-9]+}}, {{w[0-9]+}}, #0xfff0fff0
|
|
|
|
%val2 = xor i64 %in64, 9331882296111890817
|
|
store volatile i64 %val2, i64* @var64
|
|
; CHECK: eor {{x[0-9]+}}, {{x[0-9]+}}, #0x8181818181818181
|
|
|
|
%val3 = xor i64 %in64, 18429855317404942275
|
|
store volatile i64 %val3, i64* @var64
|
|
; CHECK: eor {{x[0-9]+}}, {{x[0-9]+}}, #0xffc3ffc3ffc3ffc3
|
|
|
|
ret void
|
|
}
|
|
|
|
define void @test_mov(i32 %in32, i64 %in64) {
|
|
; CHECK-LABEL: test_mov:
|
|
%val0 = add i32 %in32, 2863311530
|
|
store i32 %val0, i32* @var32
|
|
; CHECK: orr {{w[0-9]+}}, wzr, #0xaaaaaaaa
|
|
|
|
%val1 = add i64 %in64, 11068046444225730969
|
|
store i64 %val1, i64* @var64
|
|
; CHECK: orr {{x[0-9]+}}, xzr, #0x9999999999999999
|
|
|
|
ret void
|
|
; CHECK: ret
|
|
}
|