mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:43:36 +01:00
a60037d732
This patch enables canonicalization of SPF_ABS and SPF_ABS to the abs intrinsic. This is a recommit, the original try was 05d4c4ebc2fb006b8a2bd05b24c6aba10dd2eef8, but it was reverted due to an apparent miscompile, which since then has just been fixed by the previous commit. Differential Revision: https://reviews.llvm.org/D87188
50 lines
1.5 KiB
LLVM
50 lines
1.5 KiB
LLVM
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
|
|
; RUN: opt < %s -instcombine -S | FileCheck %s
|
|
; Verify that the non-default calling conv doesn't prevent the libcall simplification
|
|
|
|
@.str = private unnamed_addr constant [4 x i8] c"abc\00", align 1
|
|
|
|
define arm_aapcscc i32 @_abs(i32 %i) nounwind readnone {
|
|
; CHECK-LABEL: @_abs(
|
|
; CHECK-NEXT: [[TMP1:%.*]] = call i32 @llvm.abs.i32(i32 [[I:%.*]], i1 true)
|
|
; CHECK-NEXT: ret i32 [[TMP1]]
|
|
;
|
|
%call = tail call arm_aapcscc i32 @abs(i32 %i) nounwind readnone
|
|
ret i32 %call
|
|
}
|
|
|
|
declare arm_aapcscc i32 @abs(i32) nounwind readnone
|
|
|
|
define arm_aapcscc i32 @_labs(i32 %i) nounwind readnone {
|
|
; CHECK-LABEL: @_labs(
|
|
; CHECK-NEXT: [[TMP1:%.*]] = call i32 @llvm.abs.i32(i32 [[I:%.*]], i1 true)
|
|
; CHECK-NEXT: ret i32 [[TMP1]]
|
|
;
|
|
%call = tail call arm_aapcscc i32 @labs(i32 %i) nounwind readnone
|
|
ret i32 %call
|
|
}
|
|
|
|
declare arm_aapcscc i32 @labs(i32) nounwind readnone
|
|
|
|
define arm_aapcscc i32 @_strlen1() {
|
|
; CHECK-LABEL: @_strlen1(
|
|
; CHECK-NEXT: ret i32 3
|
|
;
|
|
%call = tail call arm_aapcscc i32 @strlen(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0))
|
|
ret i32 %call
|
|
}
|
|
|
|
declare arm_aapcscc i32 @strlen(i8*)
|
|
|
|
define arm_aapcscc zeroext i1 @_strlen2(i8* %str) {
|
|
; CHECK-LABEL: @_strlen2(
|
|
; CHECK-NEXT: [[STRLENFIRST:%.*]] = load i8, i8* [[STR:%.*]], align 1
|
|
; CHECK-NEXT: [[CMP:%.*]] = icmp ne i8 [[STRLENFIRST]], 0
|
|
; CHECK-NEXT: ret i1 [[CMP]]
|
|
;
|
|
%call = tail call arm_aapcscc i32 @strlen(i8* %str)
|
|
%cmp = icmp ne i32 %call, 0
|
|
ret i1 %cmp
|
|
}
|
|
|