Files
clang-p2996/llvm/test/CodeGen/X86/fast-isel-uint-float-conversion-x86-64.ll
Craig Topper 61da80584d [X86] Don't prevent load folding for cvtsi2ss/cvtsi2sd based on hasPartialRegUpdate.
Preventing the load fold won't fix the partial register update since the
input we can fold is a GPR. So it will do nothing to prevent a false dependency
on an XMM register.

llvm-svn: 354193
2019-02-16 03:34:54 +00:00

68 lines
1.7 KiB
LLVM

; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc -verify-machineinstrs -mtriple=x86_64-unknown-unknown -mcpu=generic -mattr=+avx512f -fast-isel --fast-isel-abort=1 < %s | FileCheck %s --check-prefix=ALL --check-prefix=AVX
define double @long_to_double_rr(i64 %a) {
; ALL-LABEL: long_to_double_rr:
; ALL: # %bb.0: # %entry
; ALL-NEXT: vcvtusi2sdq %rdi, %xmm0, %xmm0
; ALL-NEXT: retq
entry:
%0 = uitofp i64 %a to double
ret double %0
}
define double @long_to_double_rm(i64* %a) {
; ALL-LABEL: long_to_double_rm:
; ALL: # %bb.0: # %entry
; ALL-NEXT: vcvtusi2sdq (%rdi), %xmm0, %xmm0
; ALL-NEXT: retq
entry:
%0 = load i64, i64* %a
%1 = uitofp i64 %0 to double
ret double %1
}
define double @long_to_double_rm_optsize(i64* %a) optsize {
; ALL-LABEL: long_to_double_rm_optsize:
; ALL: # %bb.0: # %entry
; ALL-NEXT: vcvtusi2sdq (%rdi), %xmm0, %xmm0
; ALL-NEXT: retq
entry:
%0 = load i64, i64* %a
%1 = uitofp i64 %0 to double
ret double %1
}
define float @long_to_float_rr(i64 %a) {
; ALL-LABEL: long_to_float_rr:
; ALL: # %bb.0: # %entry
; ALL-NEXT: vcvtusi2ssq %rdi, %xmm0, %xmm0
; ALL-NEXT: retq
entry:
%0 = uitofp i64 %a to float
ret float %0
}
define float @long_to_float_rm(i64* %a) {
; ALL-LABEL: long_to_float_rm:
; ALL: # %bb.0: # %entry
; ALL-NEXT: vcvtusi2ssq (%rdi), %xmm0, %xmm0
; ALL-NEXT: retq
entry:
%0 = load i64, i64* %a
%1 = uitofp i64 %0 to float
ret float %1
}
define float @long_to_float_rm_optsize(i64* %a) optsize {
; ALL-LABEL: long_to_float_rm_optsize:
; ALL: # %bb.0: # %entry
; ALL-NEXT: vcvtusi2ssq (%rdi), %xmm0, %xmm0
; ALL-NEXT: retq
entry:
%0 = load i64, i64* %a
%1 = uitofp i64 %0 to float
ret float %1
}