mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
5efe040582
Initialize all AArch64-specific passes in the TargetMachine so they can be run by llc. This can lead to conflicts in opt with some command line options that share the same name as the pass, so I took this opportunity to do some cleanups: * rename all relevant command line options from "aarch64-blah" to "aarch64-enable-blah" and update the tests accordingly * run clang-format on their declarations * move all these declarations to a common place (the TargetMachine) as opposed to having them scattered around (AArch64BranchRelaxation and AArch64AddressTypePromotion were the only offenders) llvm-svn: 277322
71 lines
1.4 KiB
LLVM
71 lines
1.4 KiB
LLVM
; RUN: llc -fast-isel -fast-isel-abort=1 -aarch64-enable-atomic-cfg-tidy=0 -verify-machineinstrs -mtriple=aarch64-apple-darwin < %s | FileCheck %s
|
|
|
|
define i32 @icmp_eq_i1(i1 %a) {
|
|
; CHECK-LABEL: icmp_eq_i1
|
|
; CHECK: tbz w0, #0, {{LBB.+_2}}
|
|
%1 = icmp eq i1 %a, 0
|
|
br i1 %1, label %bb1, label %bb2
|
|
bb2:
|
|
ret i32 1
|
|
bb1:
|
|
ret i32 0
|
|
}
|
|
|
|
define i32 @icmp_eq_i8(i8 %a) {
|
|
; CHECK-LABEL: icmp_eq_i8
|
|
; CHECK: uxtb [[REG:w[0-9]+]], w0
|
|
; CHECK: cbz [[REG]], {{LBB.+_2}}
|
|
%1 = icmp eq i8 %a, 0
|
|
br i1 %1, label %bb1, label %bb2
|
|
bb2:
|
|
ret i32 1
|
|
bb1:
|
|
ret i32 0
|
|
}
|
|
|
|
define i32 @icmp_eq_i16(i16 %a) {
|
|
; CHECK-LABEL: icmp_eq_i16
|
|
; CHECK: uxth [[REG:w[0-9]+]], w0
|
|
; CHECK: cbz [[REG]], {{LBB.+_2}}
|
|
%1 = icmp eq i16 %a, 0
|
|
br i1 %1, label %bb1, label %bb2
|
|
bb2:
|
|
ret i32 1
|
|
bb1:
|
|
ret i32 0
|
|
}
|
|
|
|
define i32 @icmp_eq_i32(i32 %a) {
|
|
; CHECK-LABEL: icmp_eq_i32
|
|
; CHECK: cbz w0, {{LBB.+_2}}
|
|
%1 = icmp eq i32 %a, 0
|
|
br i1 %1, label %bb1, label %bb2
|
|
bb2:
|
|
ret i32 1
|
|
bb1:
|
|
ret i32 0
|
|
}
|
|
|
|
define i32 @icmp_eq_i64(i64 %a) {
|
|
; CHECK-LABEL: icmp_eq_i64
|
|
; CHECK: cbz x0, {{LBB.+_2}}
|
|
%1 = icmp eq i64 %a, 0
|
|
br i1 %1, label %bb1, label %bb2
|
|
bb2:
|
|
ret i32 1
|
|
bb1:
|
|
ret i32 0
|
|
}
|
|
|
|
define i32 @icmp_eq_ptr(i8* %a) {
|
|
; CHECK-LABEL: icmp_eq_ptr
|
|
; CHECK: cbz x0, {{LBB.+_2}}
|
|
%1 = icmp eq i8* %a, null
|
|
br i1 %1, label %bb1, label %bb2
|
|
bb2:
|
|
ret i32 1
|
|
bb1:
|
|
ret i32 0
|
|
}
|
|
|