summaryrefslogtreecommitdiff
path: root/test/CodeGen/R600/shared-op-cycle.ll
diff options
context:
space:
mode:
authorVincent Lejeune <vljn@ovi.com>2013-11-11 22:10:24 +0000
committerVincent Lejeune <vljn@ovi.com>2013-11-11 22:10:24 +0000
commit70a7d5ddb4f00bbb61afe7b536c6f599f771ab9a (patch)
tree0529d234345ee92bad998240c04c98c877ef0bee /test/CodeGen/R600/shared-op-cycle.ll
parent6c7a7c6474ea60c40e2dbb15f5b6cf0265098ace (diff)
downloadllvm-70a7d5ddb4f00bbb61afe7b536c6f599f771ab9a.tar.gz
llvm-70a7d5ddb4f00bbb61afe7b536c6f599f771ab9a.tar.bz2
llvm-70a7d5ddb4f00bbb61afe7b536c6f599f771ab9a.tar.xz
R600: Use function inputs to represent data stored in gpr
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194425 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/R600/shared-op-cycle.ll')
-rw-r--r--test/CodeGen/R600/shared-op-cycle.ll16
1 files changed, 5 insertions, 11 deletions
diff --git a/test/CodeGen/R600/shared-op-cycle.ll b/test/CodeGen/R600/shared-op-cycle.ll
index c49b5f4bd1..0484fc9a85 100644
--- a/test/CodeGen/R600/shared-op-cycle.ll
+++ b/test/CodeGen/R600/shared-op-cycle.ll
@@ -4,10 +4,10 @@
; CHECK: MULADD_IEEE *
; CHECK-NOT: MULADD_IEEE *
-define void @main() {
- %w0 = call float @llvm.R600.load.input(i32 3)
- %w1 = call float @llvm.R600.load.input(i32 7)
- %w2 = call float @llvm.R600.load.input(i32 11)
+define void @main(<4 x float> inreg %reg0, <4 x float> inreg %reg1, <4 x float> inreg %reg2) #0 {
+ %w0 = extractelement <4 x float> %reg0, i32 3
+ %w1 = extractelement <4 x float> %reg1, i32 3
+ %w2 = extractelement <4 x float> %reg2, i32 3
%sq0 = fmul float %w0, %w0
%r0 = fadd float %sq0, 2.0
%sq1 = fmul float %w1, %w1
@@ -24,15 +24,9 @@ define void @main() {
}
; Function Attrs: readnone
-declare float @llvm.R600.load.input(i32) #1
-
-; Function Attrs: readnone
declare float @llvm.AMDGPU.dp4(<4 x float>, <4 x float>) #1
-
declare void @llvm.R600.store.swizzle(<4 x float>, i32, i32)
attributes #0 = { "ShaderType"="1" }
-attributes #1 = { readnone }
-attributes #2 = { readonly }
-attributes #3 = { nounwind readonly } \ No newline at end of file
+attributes #1 = { readnone } \ No newline at end of file