aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/fast-isel-fptrunc-fpext.ll
blob: 308a4c3ec2951be79da2c5182c54a712e1b0e295 (plain)
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
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+sse2 -fast-isel -fast-isel-abort | FileCheck %s --check-prefix=ALL --check-prefix=SSE
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+avx -fast-isel -fast-isel-abort | FileCheck %s --check-prefix=ALL --check-prefix=AVX
;
; Verify that fast-isel doesn't select legacy SSE instructions on targets that
; feature AVX.
;
; Test cases are obtained from the following code snippet:
; ///
; double single_to_double_rr(float x) {
;   return (double)x;
; }
; float double_to_single_rr(double x) {
;   return (float)x;
; }
; double single_to_double_rm(float *x) {
;   return (double)*x;
; }
; float double_to_single_rm(double *x) {
;   return (float)*x;
; }
; ///

define double @single_to_double_rr(float %x) {
; ALL-LABEL: single_to_double_rr:
; SSE-NOT: vcvtss2sd
; AVX: vcvtss2sd %xmm0, %xmm0, %xmm0
; ALL: ret
entry:
  %conv = fpext float %x to double
  ret double %conv
}

define float @double_to_single_rr(double %x) {
; ALL-LABEL: double_to_single_rr:
; SSE-NOT: vcvtsd2ss
; AVX: vcvtsd2ss %xmm0, %xmm0, %xmm0
; ALL: ret
entry:
  %conv = fptrunc double %x to float
  ret float %conv
}

define double @single_to_double_rm(float* %x) {
; ALL-LABEL: single_to_double_rm:
; SSE: cvtss2sd (%rdi), %xmm0
; AVX: vmovss (%rdi), %xmm0
; AVX-NEXT: vcvtss2sd %xmm0, %xmm0, %xmm0
; ALL-NEXT: ret
entry:
  %0 = load float* %x, align 4
  %conv = fpext float %0 to double
  ret double %conv
}

define float @double_to_single_rm(double* %x) {
; ALL-LABEL: double_to_single_rm:
; SSE: cvtsd2ss (%rdi), %xmm0
; AVX: vmovsd (%rdi), %xmm0
; AVX-NEXT: vcvtsd2ss %xmm0, %xmm0, %xmm0
; ALL-NEXT: ret
entry:
  %0 = load double* %x, align 8
  %conv = fptrunc double %0 to float
  ret float %conv
}