reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65
   66
   67
; 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:    vcvtusi2sd %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:    vcvtusi2ss %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
}