mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
26d628d6ce
Summary: Currently fast-isel-abort will only abort for regular instructions, and just warn for function calls, terminators, function arguments. There is already fast-isel-abort-args but nothing for calls and terminators. This change turns the fast-isel-abort options into an integer option, so that multiple levels of strictness can be defined. This will help no being surprised when the "abort" option indeed does not abort, and enables the possibility to write test that verifies that no intrinsics are forgotten by fast-isel. Reviewers: resistor, echristo Subscribers: jfb, llvm-commits Differential Revision: http://reviews.llvm.org/D7941 From: Mehdi Amini <mehdi.amini@apple.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230775 91177308-0d34-0410-b5e6-96231b3b80d8
59 lines
1.3 KiB
LLVM
59 lines
1.3 KiB
LLVM
; RUN: llc < %s -O0 -fast-isel-abort=1 -relocation-model=dynamic-no-pic -mtriple=armv7-apple-ios -verify-machineinstrs | FileCheck %s
|
|
; RUN: llc < %s -O0 -fast-isel-abort=1 -relocation-model=dynamic-no-pic -mtriple=armv7-linux-gnueabi -verify-machineinstrs | FileCheck %s
|
|
; RUN: llc < %s -O0 -fast-isel-abort=1 -relocation-model=dynamic-no-pic -mtriple=thumbv7-apple-ios -verify-machineinstrs | FileCheck %s
|
|
|
|
; Sign-extend of i1 currently not supported by fast-isel
|
|
;define signext i1 @ret0(i1 signext %a) nounwind uwtable ssp {
|
|
;entry:
|
|
; ret i1 %a
|
|
;}
|
|
|
|
define zeroext i1 @ret1(i1 signext %a) nounwind uwtable ssp {
|
|
entry:
|
|
; CHECK: ret1
|
|
; CHECK: and r0, r0, #1
|
|
; CHECK: bx lr
|
|
ret i1 %a
|
|
}
|
|
|
|
define signext i8 @ret2(i8 signext %a) nounwind uwtable ssp {
|
|
entry:
|
|
; CHECK: ret2
|
|
; CHECK: sxtb r0, r0
|
|
; CHECK: bx lr
|
|
ret i8 %a
|
|
}
|
|
|
|
define zeroext i8 @ret3(i8 signext %a) nounwind uwtable ssp {
|
|
entry:
|
|
; CHECK: ret3
|
|
; CHECK: and r0, r0, #255
|
|
; CHECK: bx lr
|
|
ret i8 %a
|
|
}
|
|
|
|
define signext i16 @ret4(i16 signext %a) nounwind uwtable ssp {
|
|
entry:
|
|
; CHECK: ret4
|
|
; CHECK: sxth r0, r0
|
|
; CHECK: bx lr
|
|
ret i16 %a
|
|
}
|
|
|
|
define zeroext i16 @ret5(i16 signext %a) nounwind uwtable ssp {
|
|
entry:
|
|
; CHECK: ret5
|
|
; CHECK: uxth r0, r0
|
|
; CHECK: bx lr
|
|
ret i16 %a
|
|
}
|
|
|
|
define i16 @ret6(i16 %a) nounwind uwtable ssp {
|
|
entry:
|
|
; CHECK: ret6
|
|
; CHECK-NOT: uxth
|
|
; CHECK-NOT: sxth
|
|
; CHECK: bx lr
|
|
ret i16 %a
|
|
}
|