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
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -O2 -mcpu=nehalem     | FileCheck %s --check-prefix=SCALAR-EST --check-prefix=VECTOR-EST
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -O2 -mcpu=sandybridge | FileCheck %s --check-prefix=SCALAR-ACC --check-prefix=VECTOR-EST
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -O2 -mcpu=broadwell   | FileCheck %s --check-prefix=SCALAR-ACC --check-prefix=VECTOR-EST
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -O2 -mcpu=skylake     | FileCheck %s --check-prefix=SCALAR-ACC --check-prefix=VECTOR-ACC

; RUN: llc < %s -mtriple=x86_64-unknown-unknown -O2 -mattr=+fast-scalar-fsqrt,-fast-vector-fsqrt | FileCheck %s --check-prefix=SCALAR-ACC --check-prefix=VECTOR-EST
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -O2 -mattr=-fast-scalar-fsqrt,+fast-vector-fsqrt | FileCheck %s --check-prefix=SCALAR-EST --check-prefix=VECTOR-ACC

declare float @llvm.sqrt.f32(float) #0
declare <4 x float> @llvm.sqrt.v4f32(<4 x float>) #0
declare <8 x float> @llvm.sqrt.v8f32(<8 x float>) #0

define float @foo_x1(float %f) #0 {
; SCALAR-EST-LABEL: foo_x1:
; SCALAR-EST:       # %bb.0:
; SCALAR-EST-NEXT:    rsqrtss %xmm0
; SCALAR-EST:         retq
;
; SCALAR-ACC-LABEL: foo_x1:
; SCALAR-ACC:       # %bb.0:
; SCALAR-ACC-NEXT:    {{^ *v?sqrtss %xmm0}}
; SCALAR-ACC-NEXT:    retq
  %call = tail call float @llvm.sqrt.f32(float %f) #1
  ret float %call
}

define <4 x float> @foo_x4(<4 x float> %f) #0 {
; VECTOR-EST-LABEL: foo_x4:
; VECTOR-EST:       # %bb.0:
; VECTOR-EST-NEXT:    rsqrtps %xmm0
; VECTOR-EST:         retq
;
; VECTOR-ACC-LABEL: foo_x4:
; VECTOR-ACC:       # %bb.0:
; VECTOR-ACC-NEXT:    {{^ *v?sqrtps %xmm0}}
; VECTOR-ACC-NEXT:    retq
  %call = tail call <4 x float> @llvm.sqrt.v4f32(<4 x float> %f) #1
  ret <4 x float> %call
}

define <8 x float> @foo_x8(<8 x float> %f) #0 {
; VECTOR-EST-LABEL: foo_x8:
; VECTOR-EST:       # %bb.0:
; VECTOR-EST-NEXT:    rsqrtps
; VECTOR-EST:         retq
;
; VECTOR-ACC-LABEL: foo_x8:
; VECTOR-ACC:       # %bb.0:
; VECTOR-ACC-NEXT:    {{^ *v?sqrtps %[xy]mm0}}
; VECTOR-ACC-NOT:     rsqrt
; VECTOR-ACC:         retq
  %call = tail call <8 x float> @llvm.sqrt.v8f32(<8 x float> %f) #1
  ret <8 x float> %call
}

attributes #0 = { "unsafe-fp-math"="true" }
attributes #1 = { nounwind readnone }