summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/InstCombine/select-extractelement.ll
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2019-04-17 02:12:23 +0000
committerEric Christopher <echristo@gmail.com>2019-04-17 02:12:23 +0000
commita86343512845c9c1fdbac865fea88aa5fce7142a (patch)
tree666fc6353de19ad8b00e56b67edd33f24104e4a7 /llvm/test/Transforms/InstCombine/select-extractelement.ll
parent7f8ca6e3679b3af951cb7a4b1377edfaa3244b93 (diff)
downloadbcm5719-llvm-a86343512845c9c1fdbac865fea88aa5fce7142a.tar.gz
bcm5719-llvm-a86343512845c9c1fdbac865fea88aa5fce7142a.zip
Temporarily Revert "Add basic loop fusion pass."
As it's causing some bot failures (and per request from kbarton). This reverts commit r358543/ab70da07286e618016e78247e4a24fcb84077fda. llvm-svn: 358546
Diffstat (limited to 'llvm/test/Transforms/InstCombine/select-extractelement.ll')
-rw-r--r--llvm/test/Transforms/InstCombine/select-extractelement.ll146
1 files changed, 0 insertions, 146 deletions
diff --git a/llvm/test/Transforms/InstCombine/select-extractelement.ll b/llvm/test/Transforms/InstCombine/select-extractelement.ll
deleted file mode 100644
index 79d0b47f97d..00000000000
--- a/llvm/test/Transforms/InstCombine/select-extractelement.ll
+++ /dev/null
@@ -1,146 +0,0 @@
-; RUN: opt -S -instcombine < %s | FileCheck %s
-
-declare void @v4float_user(<4 x float>) #0
-
-define float @extract_one_select(<4 x float> %a, <4 x float> %b, i32 %c) #0 {
-; CHECK-LABEL: @extract_one_select(
-; CHECK-NEXT: [[CMP:%.*]] = icmp eq i32 %c, 0
-; CHECK-NEXT: [[SEL:%.*]] = select i1 [[CMP]], <4 x float> %b, <4 x float> %a
-; CHECK-NEXT: [[EXTRACT:%.*]] = extractelement <4 x float> [[SEL]], i32 2
-; CHECK-NEXT: ret float [[EXTRACT]]
-;
- %cmp = icmp ne i32 %c, 0
- %sel = select i1 %cmp, <4 x float> %a, <4 x float> %b
- %extract = extractelement <4 x float> %sel, i32 2
- ret float %extract
-}
-
-; Multiple extractelements
-define <2 x float> @extract_two_select(<4 x float> %a, <4 x float> %b, i32 %c) #0 {
-; CHECK-LABEL: @extract_two_select(
-; CHECK-NEXT: [[CMP:%.*]] = icmp eq i32 %c, 0
-; CHECK-NEXT: [[SEL:%.*]] = select i1 [[CMP]], <4 x float> %b, <4 x float> %a
-; CHECK-NEXT: [[BUILD2:%.*]] = shufflevector <4 x float> [[SEL]], <4 x float> undef, <2 x i32> <i32 1, i32 2>
-; CHECK-NEXT: ret <2 x float> [[BUILD2]]
-;
- %cmp = icmp ne i32 %c, 0
- %sel = select i1 %cmp, <4 x float> %a, <4 x float> %b
- %extract1 = extractelement <4 x float> %sel, i32 1
- %extract2 = extractelement <4 x float> %sel, i32 2
- %build1 = insertelement <2 x float> undef, float %extract1, i32 0
- %build2 = insertelement <2 x float> %build1, float %extract2, i32 1
- ret <2 x float> %build2
-}
-
-; Select has an extra non-extractelement user, don't change it
-define float @extract_one_select_user(<4 x float> %a, <4 x float> %b, i32 %c) #0 {
-; CHECK-LABEL: @extract_one_select_user(
-; CHECK-NEXT: [[CMP:%.*]] = icmp eq i32 %c, 0
-; CHECK-NEXT: [[SEL:%.*]] = select i1 [[CMP]], <4 x float> %b, <4 x float> %a
-; CHECK-NEXT: [[EXTRACT:%.*]] = extractelement <4 x float> [[SEL]], i32 2
-; CHECK-NEXT: call void @v4float_user(<4 x float> [[SEL]])
-; CHECK-NEXT: ret float [[EXTRACT]]
-;
- %cmp = icmp ne i32 %c, 0
- %sel = select i1 %cmp, <4 x float> %a, <4 x float> %b
- %extract = extractelement <4 x float> %sel, i32 2
- call void @v4float_user(<4 x float> %sel)
- ret float %extract
-}
-
-define float @extract_one_vselect_user(<4 x float> %a, <4 x float> %b, <4 x i32> %c) #0 {
-; CHECK-LABEL: @extract_one_vselect_user(
-; CHECK-NEXT: [[CMP:%.*]] = icmp eq <4 x i32> %c, zeroinitializer
-; CHECK-NEXT: [[SEL:%.*]] = select <4 x i1> [[CMP]], <4 x float> %b, <4 x float> %a
-; CHECK-NEXT: [[EXTRACT:%.*]] = extractelement <4 x float> [[SEL]], i32 2
-; CHECK-NEXT: call void @v4float_user(<4 x float> [[SEL]])
-; CHECK-NEXT: ret float [[EXTRACT]]
-;
- %cmp = icmp ne <4 x i32> %c, zeroinitializer
- %sel = select <4 x i1> %cmp, <4 x float> %a, <4 x float> %b
- %extract = extractelement <4 x float> %sel, i32 2
- call void @v4float_user(<4 x float> %sel)
- ret float %extract
-}
-
-; Do not convert the vector select into a scalar select. That would increase
-; the instruction count and potentially obfuscate a vector min/max idiom.
-
-define float @extract_one_vselect(<4 x float> %a, <4 x float> %b, <4 x i32> %c) #0 {
-; CHECK-LABEL: @extract_one_vselect(
-; CHECK-NEXT: [[CMP:%.*]] = icmp eq <4 x i32> %c, zeroinitializer
-; CHECK-NEXT: [[SELECT:%.*]] = select <4 x i1> [[CMP]], <4 x float> %b, <4 x float> %a
-; CHECK-NEXT: [[EXTRACT:%.*]] = extractelement <4 x float> [[SELECT]], i32 0
-; CHECK-NEXT: ret float [[EXTRACT]]
-;
- %cmp = icmp ne <4 x i32> %c, zeroinitializer
- %select = select <4 x i1> %cmp, <4 x float> %a, <4 x float> %b
- %extract = extractelement <4 x float> %select, i32 0
- ret float %extract
-}
-
-; Multiple extractelements from a vector select
-define <2 x float> @extract_two_vselect(<4 x float> %a, <4 x float> %b, <4 x i32> %c) #0 {
-; CHECK-LABEL: @extract_two_vselect(
-; CHECK-NEXT: [[CMP:%.*]] = icmp eq <4 x i32> %c, zeroinitializer
-; CHECK-NEXT: [[SEL:%.*]] = select <4 x i1> [[CMP]], <4 x float> %b, <4 x float> %a
-; CHECK-NEXT: [[BUILD2:%.*]] = shufflevector <4 x float> [[SEL]], <4 x float> undef, <2 x i32> <i32 1, i32 2>
-; CHECK-NEXT: ret <2 x float> [[BUILD2]]
-;
- %cmp = icmp ne <4 x i32> %c, zeroinitializer
- %sel = select <4 x i1> %cmp, <4 x float> %a, <4 x float> %b
- %extract1 = extractelement <4 x float> %sel, i32 1
- %extract2 = extractelement <4 x float> %sel, i32 2
- %build1 = insertelement <2 x float> undef, float %extract1, i32 0
- %build2 = insertelement <2 x float> %build1, float %extract2, i32 1
- ret <2 x float> %build2
-}
-
-; The vector selects are not decomposed into scalar selects because that would increase
-; the instruction count. Extract+insert is converted to non-lane-crossing shuffles.
-; Test multiple extractelements
-define <4 x float> @simple_vector_select(<4 x float> %a, <4 x float> %b, <4 x i32> %c) #0 {
-; CHECK-LABEL: @simple_vector_select(
-; CHECK-NEXT: entry:
-; CHECK-NEXT: [[TMP0:%.*]] = extractelement <4 x i32> %c, i32 0
-; CHECK-NEXT: [[TOBOOL:%.*]] = icmp eq i32 [[TMP0]], 0
-; CHECK-NEXT: [[A_SINK:%.*]] = select i1 [[TOBOOL]], <4 x float> %b, <4 x float> %a
-; CHECK-NEXT: [[TMP1:%.*]] = extractelement <4 x i32> %c, i32 1
-; CHECK-NEXT: [[TOBOOL1:%.*]] = icmp eq i32 [[TMP1]], 0
-; CHECK-NEXT: [[A_SINK1:%.*]] = select i1 [[TOBOOL1]], <4 x float> %b, <4 x float> %a
-; CHECK-NEXT: [[TMP2:%.*]] = shufflevector <4 x float> [[A_SINK]], <4 x float> [[A_SINK1]], <4 x i32> <i32 0, i32 5, i32 undef, i32 undef>
-; CHECK-NEXT: [[TMP3:%.*]] = extractelement <4 x i32> %c, i32 2
-; CHECK-NEXT: [[TOBOOL6:%.*]] = icmp eq i32 [[TMP3]], 0
-; CHECK-NEXT: [[A_SINK2:%.*]] = select i1 [[TOBOOL6]], <4 x float> %b, <4 x float> %a
-; CHECK-NEXT: [[TMP4:%.*]] = shufflevector <4 x float> [[TMP2]], <4 x float> [[A_SINK2]], <4 x i32> <i32 0, i32 1, i32 6, i32 undef>
-; CHECK-NEXT: [[TMP5:%.*]] = extractelement <4 x i32> %c, i32 3
-; CHECK-NEXT: [[TOBOOL11:%.*]] = icmp eq i32 [[TMP5]], 0
-; CHECK-NEXT: [[A_SINK3:%.*]] = select i1 [[TOBOOL11]], <4 x float> %b, <4 x float> %a
-; CHECK-NEXT: [[TMP6:%.*]] = shufflevector <4 x float> [[TMP4]], <4 x float> [[A_SINK3]], <4 x i32> <i32 0, i32 1, i32 2, i32 7>
-; CHECK-NEXT: ret <4 x float> [[TMP6]]
-;
-entry:
- %0 = extractelement <4 x i32> %c, i32 0
- %tobool = icmp ne i32 %0, 0
- %a.sink = select i1 %tobool, <4 x float> %a, <4 x float> %b
- %1 = extractelement <4 x float> %a.sink, i32 0
- %2 = insertelement <4 x float> undef, float %1, i32 0
- %3 = extractelement <4 x i32> %c, i32 1
- %tobool1 = icmp ne i32 %3, 0
- %a.sink1 = select i1 %tobool1, <4 x float> %a, <4 x float> %b
- %4 = extractelement <4 x float> %a.sink1, i32 1
- %5 = insertelement <4 x float> %2, float %4, i32 1
- %6 = extractelement <4 x i32> %c, i32 2
- %tobool6 = icmp ne i32 %6, 0
- %a.sink2 = select i1 %tobool6, <4 x float> %a, <4 x float> %b
- %7 = extractelement <4 x float> %a.sink2, i32 2
- %8 = insertelement <4 x float> %5, float %7, i32 2
- %9 = extractelement <4 x i32> %c, i32 3
- %tobool11 = icmp ne i32 %9, 0
- %a.sink3 = select i1 %tobool11, <4 x float> %a, <4 x float> %b
- %10 = extractelement <4 x float> %a.sink3, i32 3
- %11 = insertelement <4 x float> %8, float %10, i32 3
- ret <4 x float> %11
-}
-
-attributes #0 = { nounwind ssp uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf"="true" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
OpenPOWER on IntegriCloud