mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
Pattern for f32 to i64 conversion.
llvm-svn: 148869
This commit is contained in:
parent
012239e10a
commit
12cdcf3bc6
@ -337,6 +337,7 @@ let Predicates = [IsFP64bit] in {
|
||||
(CVT_D64_L (DMTC1 CPU64Regs:$src))>;
|
||||
|
||||
def : Pat<(i32 (fp_to_sint FGR64:$src)), (MFC1 (TRUNC_W_D64 FGR64:$src))>;
|
||||
def : Pat<(i64 (fp_to_sint FGR32:$src)), (DMFC1 (TRUNC_L_S FGR32:$src))>;
|
||||
def : Pat<(i64 (fp_to_sint FGR64:$src)), (DMFC1 (TRUNC_L_D64 FGR64:$src))>;
|
||||
|
||||
def : Pat<(f32 (fround FGR64:$src)), (CVT_S_D64 FGR64:$src)>;
|
||||
|
@ -17,3 +17,10 @@ entry:
|
||||
ret i64 %conv
|
||||
}
|
||||
|
||||
define i64 @i64_float(float %f) nounwind readnone {
|
||||
entry:
|
||||
; CHECK: trunc.l.s
|
||||
%conv = fptosi float %f to i64
|
||||
ret i64 %conv
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user