summaryrefslogtreecommitdiffstats
path: root/llvm/test/Analysis/CostModel/X86/bitreverse.ll
blob: cd5c22b9096ac54af7a997ed0cada444baccd85e (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
; RUN: opt < %s -mtriple=x86_64-unknown-linux-gnu -mcpu=pentium4 -cost-model -analyze | FileCheck %s -check-prefix=CHECK -check-prefix=SSE2
; RUN: opt < %s -mtriple=x86_64-unknown-linux-gnu -mcpu=corei7 -cost-model -analyze | FileCheck %s -check-prefix=CHECK -check-prefix=SSE42
; RUN: opt < %s -mtriple=x86_64-unknown-linux-gnu -mcpu=corei7-avx -cost-model -analyze | FileCheck %s -check-prefix=CHECK -check-prefix=AVX
; RUN: opt < %s -mtriple=x86_64-unknown-linux-gnu -mcpu=core-avx2 -cost-model -analyze | FileCheck %s -check-prefix=CHECK -check-prefix=AVX2
; RUN: opt < %s -mtriple=x86_64-unknown-linux-gnu -mcpu=bdver2 -cost-model -analyze | FileCheck %s -check-prefix=CHECK -check-prefix=XOP -check-prefix=XOPAVX
; RUN: opt < %s -mtriple=x86_64-unknown-linux-gnu -mcpu=bdver4 -cost-model -analyze | FileCheck %s -check-prefix=CHECK -check-prefix=XOP -check-prefix=XOPAVX2

; Verify the cost of vector bitreverse instructions.

declare <2 x i64> @llvm.bitreverse.v2i64(<2 x i64>)
declare <4 x i32> @llvm.bitreverse.v4i32(<4 x i32>)
declare <8 x i16> @llvm.bitreverse.v8i16(<8 x i16>)
declare <16 x i8> @llvm.bitreverse.v16i8(<16 x i8>)

declare <4 x i64> @llvm.bitreverse.v4i64(<4 x i64>)
declare <8 x i32> @llvm.bitreverse.v8i32(<8 x i32>)
declare <16 x i16> @llvm.bitreverse.v16i16(<16 x i16>)
declare <32 x i8> @llvm.bitreverse.v32i8(<32 x i8>)

define <2 x i64> @var_bitreverse_v2i64(<2 x i64> %a) {
; CHECK: 'Cost Model Analysis' for function 'var_bitreverse_v2i64':
; SSE2: Found an estimated cost of 6 for instruction:   %bitreverse
; SSE42: Found an estimated cost of 6 for instruction:   %bitreverse
; AVX: Found an estimated cost of 6 for instruction:   %bitreverse
; AVX2: Found an estimated cost of 6 for instruction:   %bitreverse
; XOP: Found an estimated cost of 6 for instruction:   %bitreverse
  %bitreverse = call <2 x i64> @llvm.bitreverse.v2i64(<2 x i64> %a)
  ret <2 x i64> %bitreverse
}

define <4 x i64> @var_bitreverse_v4i64(<4 x i64> %a) {
; CHECK: 'Cost Model Analysis' for function 'var_bitreverse_v4i64':
; SSE2: Found an estimated cost of 12 for instruction:   %bitreverse
; SSE42: Found an estimated cost of 12 for instruction:   %bitreverse
; AVX: Found an estimated cost of 12 for instruction:   %bitreverse
; AVX2: Found an estimated cost of 12 for instruction:   %bitreverse
; XOP: Found an estimated cost of 12 for instruction:   %bitreverse
  %bitreverse = call <4 x i64> @llvm.bitreverse.v4i64(<4 x i64> %a)
  ret <4 x i64> %bitreverse
}

define <4 x i32> @var_bitreverse_v4i32(<4 x i32> %a) {
; CHECK: 'Cost Model Analysis' for function 'var_bitreverse_v4i32':
; SSE2: Found an estimated cost of 12 for instruction:   %bitreverse
; SSE42: Found an estimated cost of 12 for instruction:   %bitreverse
; AVX: Found an estimated cost of 12 for instruction:   %bitreverse
; AVX2: Found an estimated cost of 12 for instruction:   %bitreverse
; XOP: Found an estimated cost of 12 for instruction:   %bitreverse
  %bitreverse = call <4 x i32> @llvm.bitreverse.v4i32(<4 x i32> %a)
  ret <4 x i32> %bitreverse
}

define <8 x i32> @var_bitreverse_v8i32(<8 x i32> %a) {
; CHECK: 'Cost Model Analysis' for function 'var_bitreverse_v8i32':
; SSE2: Found an estimated cost of 24 for instruction:   %bitreverse
; SSE42: Found an estimated cost of 24 for instruction:   %bitreverse
; AVX: Found an estimated cost of 24 for instruction:   %bitreverse
; AVX2: Found an estimated cost of 24 for instruction:   %bitreverse
; XOP: Found an estimated cost of 24 for instruction:   %bitreverse
  %bitreverse = call <8 x i32> @llvm.bitreverse.v8i32(<8 x i32> %a)
  ret <8 x i32> %bitreverse
}

define <8 x i16> @var_bitreverse_v8i16(<8 x i16> %a) {
; CHECK: 'Cost Model Analysis' for function 'var_bitreverse_v8i16':
; SSE2: Found an estimated cost of 24 for instruction:   %bitreverse
; SSE42: Found an estimated cost of 24 for instruction:   %bitreverse
; AVX: Found an estimated cost of 24 for instruction:   %bitreverse
; AVX2: Found an estimated cost of 24 for instruction:   %bitreverse
; XOP: Found an estimated cost of 24 for instruction:   %bitreverse
  %bitreverse = call <8 x i16> @llvm.bitreverse.v8i16(<8 x i16> %a)
  ret <8 x i16> %bitreverse
}

define <16 x i16> @var_bitreverse_v16i16(<16 x i16> %a) {
; CHECK: 'Cost Model Analysis' for function 'var_bitreverse_v16i16':
; SSE2: Found an estimated cost of 48 for instruction:   %bitreverse
; SSE42: Found an estimated cost of 48 for instruction:   %bitreverse
; AVX: Found an estimated cost of 48 for instruction:   %bitreverse
; AVX2: Found an estimated cost of 48 for instruction:   %bitreverse
; XOP: Found an estimated cost of 48 for instruction:   %bitreverse
  %bitreverse = call <16 x i16> @llvm.bitreverse.v16i16(<16 x i16> %a)
  ret <16 x i16> %bitreverse
}

define <16 x i8> @var_bitreverse_v16i8(<16 x i8> %a) {
; CHECK: 'Cost Model Analysis' for function 'var_bitreverse_v16i8':
; SSE2: Found an estimated cost of 48 for instruction:   %bitreverse
; SSE42: Found an estimated cost of 48 for instruction:   %bitreverse
; AVX: Found an estimated cost of 48 for instruction:   %bitreverse
; AVX2: Found an estimated cost of 48 for instruction:   %bitreverse
; XOP: Found an estimated cost of 48 for instruction:   %bitreverse
  %bitreverse = call <16 x i8> @llvm.bitreverse.v16i8(<16 x i8> %a)
  ret <16 x i8> %bitreverse
}

define <32 x i8> @var_bitreverse_v32i8(<32 x i8> %a) {
; CHECK: 'Cost Model Analysis' for function 'var_bitreverse_v32i8':
; SSE2: Found an estimated cost of 96 for instruction:   %bitreverse
; SSE42: Found an estimated cost of 96 for instruction:   %bitreverse
; AVX: Found an estimated cost of 96 for instruction:   %bitreverse
; AVX2: Found an estimated cost of 96 for instruction:   %bitreverse
; XOP: Found an estimated cost of 96 for instruction:   %bitreverse
  %bitreverse = call <32 x i8> @llvm.bitreverse.v32i8(<32 x i8> %a)
  ret <32 x i8> %bitreverse
}
OpenPOWER on IntegriCloud