mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
835f91f74c
This allows us to generate better code for selecting the fixup to load. Previously when the sign was set we had to load offset 0. And when it was clear we had to load offset 4. This required a testl, setns, zero extend, and finally a mul by 4. By switching the offsets we can just shift the sign bit into the lsb and multiply it by 4.
50 lines
1.6 KiB
LLVM
50 lines
1.6 KiB
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
; RUN: llc < %s -mtriple=i686-- -x86-asm-syntax=att -mattr=-sse2 | FileCheck %s
|
|
|
|
define fastcc double @sint64_to_fp(i64 %X) {
|
|
; CHECK-LABEL: sint64_to_fp:
|
|
; CHECK: # %bb.0:
|
|
; CHECK-NEXT: pushl %ebp
|
|
; CHECK-NEXT: .cfi_def_cfa_offset 8
|
|
; CHECK-NEXT: .cfi_offset %ebp, -8
|
|
; CHECK-NEXT: movl %esp, %ebp
|
|
; CHECK-NEXT: .cfi_def_cfa_register %ebp
|
|
; CHECK-NEXT: andl $-8, %esp
|
|
; CHECK-NEXT: subl $8, %esp
|
|
; CHECK-NEXT: movl %edx, {{[0-9]+}}(%esp)
|
|
; CHECK-NEXT: movl %ecx, (%esp)
|
|
; CHECK-NEXT: fildll (%esp)
|
|
; CHECK-NEXT: movl %ebp, %esp
|
|
; CHECK-NEXT: popl %ebp
|
|
; CHECK-NEXT: .cfi_def_cfa %esp, 4
|
|
; CHECK-NEXT: retl
|
|
%R = sitofp i64 %X to double ; <double> [#uses=1]
|
|
ret double %R
|
|
}
|
|
|
|
define fastcc double @uint64_to_fp(i64 %X) {
|
|
; CHECK-LABEL: uint64_to_fp:
|
|
; CHECK: # %bb.0:
|
|
; CHECK-NEXT: pushl %ebp
|
|
; CHECK-NEXT: .cfi_def_cfa_offset 8
|
|
; CHECK-NEXT: .cfi_offset %ebp, -8
|
|
; CHECK-NEXT: movl %esp, %ebp
|
|
; CHECK-NEXT: .cfi_def_cfa_register %ebp
|
|
; CHECK-NEXT: andl $-8, %esp
|
|
; CHECK-NEXT: subl $16, %esp
|
|
; CHECK-NEXT: movl %edx, {{[0-9]+}}(%esp)
|
|
; CHECK-NEXT: movl %ecx, (%esp)
|
|
; CHECK-NEXT: shrl $31, %edx
|
|
; CHECK-NEXT: fildll (%esp)
|
|
; CHECK-NEXT: fadds {{\.LCPI.*}}(,%edx,4)
|
|
; CHECK-NEXT: fstpl {{[0-9]+}}(%esp)
|
|
; CHECK-NEXT: fldl {{[0-9]+}}(%esp)
|
|
; CHECK-NEXT: movl %ebp, %esp
|
|
; CHECK-NEXT: popl %ebp
|
|
; CHECK-NEXT: .cfi_def_cfa %esp, 4
|
|
; CHECK-NEXT: retl
|
|
%R = uitofp i64 %X to double ; <double> [#uses=1]
|
|
ret double %R
|
|
}
|
|
|