mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
This patch add the ISD::LRINT and ISD::LLRINT along with new intrinsics. The changes are straightforward as for other floating-point rounding functions, with just some adjustments required to handle the return value being an interger. The idea is to optimize lrint/llrint generation for AArch64 in a subsequent patch. Current semantic is just route it to libm symbol. Reviewed By: craig.topper Differential Revision: https://reviews.llvm.org/D62017 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@361875 91177308-0d34-0410-b5e6-96231b3b80d8
57 lines
1.3 KiB
LLVM
57 lines
1.3 KiB
LLVM
; RUN: llc < %s -mtriple=powerpc64le | FileCheck %s
|
|
|
|
; CHECK-LABEL: testmsws:
|
|
; CHECK: bl llrintf
|
|
define signext i32 @testmsws(float %x) {
|
|
entry:
|
|
%0 = tail call i64 @llvm.llrint.f32(float %x)
|
|
%conv = trunc i64 %0 to i32
|
|
ret i32 %conv
|
|
}
|
|
|
|
; CHECK-LABEL: testmsxs:
|
|
; CHECK: bl llrintf
|
|
define i64 @testmsxs(float %x) {
|
|
entry:
|
|
%0 = tail call i64 @llvm.llrint.f32(float %x)
|
|
ret i64 %0
|
|
}
|
|
|
|
; CHECK-LABEL: testmswd:
|
|
; CHECK: bl llrint
|
|
define signext i32 @testmswd(double %x) {
|
|
entry:
|
|
%0 = tail call i64 @llvm.llrint.f64(double %x)
|
|
%conv = trunc i64 %0 to i32
|
|
ret i32 %conv
|
|
}
|
|
|
|
; CHECK-LABEL: testmsxd:
|
|
; CHECK: bl llrint
|
|
define i64 @testmsxd(double %x) {
|
|
entry:
|
|
%0 = tail call i64 @llvm.llrint.f64(double %x)
|
|
ret i64 %0
|
|
}
|
|
|
|
; CHECK-LABEL: testmswl:
|
|
; CHECK: bl llrintl
|
|
define signext i32 @testmswl(ppc_fp128 %x) {
|
|
entry:
|
|
%0 = tail call i64 @llvm.llrint.ppcf128(ppc_fp128 %x)
|
|
%conv = trunc i64 %0 to i32
|
|
ret i32 %conv
|
|
}
|
|
|
|
; CHECK-LABEL: testmsll:
|
|
; CHECK: bl llrintl
|
|
define i64 @testmsll(ppc_fp128 %x) {
|
|
entry:
|
|
%0 = tail call i64 @llvm.llrint.ppcf128(ppc_fp128 %x)
|
|
ret i64 %0
|
|
}
|
|
|
|
declare i64 @llvm.llrint.f32(float) nounwind readnone
|
|
declare i64 @llvm.llrint.f64(double) nounwind readnone
|
|
declare i64 @llvm.llrint.ppcf128(ppc_fp128) nounwind readnone
|