1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt -S -mtriple=amdgcn-amd-amdhsa -mcpu=hawaii -passes=slp-vectorizer %s | FileCheck -check-prefixes=GCN,GFX7 %s
3 ; RUN: opt -S -mtriple=amdgcn-amd-amdhsa -mcpu=fiji -passes=slp-vectorizer %s | FileCheck -check-prefixes=GCN,GFX8 %s
4 ; RUN: opt -S -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 -passes=slp-vectorizer %s | FileCheck -check-prefixes=GCN,GFX8 %s
6 define <2 x half> @round_v2f16(<2 x half> %arg) {
7 ; GFX7-LABEL: @round_v2f16(
9 ; GFX7-NEXT: [[T:%.*]] = extractelement <2 x half> [[ARG:%.*]], i64 0
10 ; GFX7-NEXT: [[T1:%.*]] = tail call half @llvm.round.f16(half [[T]])
11 ; GFX7-NEXT: [[T2:%.*]] = insertelement <2 x half> poison, half [[T1]], i64 0
12 ; GFX7-NEXT: [[T3:%.*]] = extractelement <2 x half> [[ARG]], i64 1
13 ; GFX7-NEXT: [[T4:%.*]] = tail call half @llvm.round.f16(half [[T3]])
14 ; GFX7-NEXT: [[T5:%.*]] = insertelement <2 x half> [[T2]], half [[T4]], i64 1
15 ; GFX7-NEXT: ret <2 x half> [[T5]]
17 ; GFX8-LABEL: @round_v2f16(
19 ; GFX8-NEXT: [[TMP0:%.*]] = call <2 x half> @llvm.round.v2f16(<2 x half> [[ARG:%.*]])
20 ; GFX8-NEXT: ret <2 x half> [[TMP0]]
23 %t = extractelement <2 x half> %arg, i64 0
24 %t1 = tail call half @llvm.round.half(half %t)
25 %t2 = insertelement <2 x half> poison, half %t1, i64 0
26 %t3 = extractelement <2 x half> %arg, i64 1
27 %t4 = tail call half @llvm.round.half(half %t3)
28 %t5 = insertelement <2 x half> %t2, half %t4, i64 1
32 define <2 x float> @round_v2f32(<2 x float> %arg) {
33 ; GCN-LABEL: @round_v2f32(
35 ; GCN-NEXT: [[T:%.*]] = extractelement <2 x float> [[ARG:%.*]], i64 0
36 ; GCN-NEXT: [[T1:%.*]] = tail call float @llvm.round.f32(float [[T]])
37 ; GCN-NEXT: [[T2:%.*]] = insertelement <2 x float> poison, float [[T1]], i64 0
38 ; GCN-NEXT: [[T3:%.*]] = extractelement <2 x float> [[ARG]], i64 1
39 ; GCN-NEXT: [[T4:%.*]] = tail call float @llvm.round.f32(float [[T3]])
40 ; GCN-NEXT: [[T5:%.*]] = insertelement <2 x float> [[T2]], float [[T4]], i64 1
41 ; GCN-NEXT: ret <2 x float> [[T5]]
44 %t = extractelement <2 x float> %arg, i64 0
45 %t1 = tail call float @llvm.round.f32(float %t)
46 %t2 = insertelement <2 x float> poison, float %t1, i64 0
47 %t3 = extractelement <2 x float> %arg, i64 1
48 %t4 = tail call float @llvm.round.f32(float %t3)
49 %t5 = insertelement <2 x float> %t2, float %t4, i64 1
53 declare half @llvm.round.half(half) #0
54 declare float @llvm.round.f32(float) #0
56 attributes #0 = { nounwind readnone speculatable willreturn }