Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
llvm-epi-0.8
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Roger Ferrer
llvm-epi-0.8
Commits
bc637708
Commit
bc637708
authored
11 years ago
by
Matt Arsenault
Browse files
Options
Downloads
Patches
Plain Diff
R600/SI: Add testcase for problem I ran into
with the older version of the moveToVALU changes. llvm-svn: 194682
parent
5b94d281
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
llvm/test/CodeGen/R600/sgpr-copy-duplicate-operand.ll
+18
-0
18 additions, 0 deletions
llvm/test/CodeGen/R600/sgpr-copy-duplicate-operand.ll
with
18 additions
and
0 deletions
llvm/test/CodeGen/R600/sgpr-copy-duplicate-operand.ll
0 → 100644
+
18
−
0
View file @
bc637708
; RUN: llc -march=r600 -mcpu=SI < %s | FileCheck -check-prefix=SI %s
; Copy VGPR -> SGPR used twice as an instruction operand, which is then
; used in an REG_SEQUENCE that also needs to be handled.
; SI-LABEL: @test_dup_operands:
; SI: V_ADD_I32_e32
define
void
@test_dup_operands
(<
2
x
i32
>
addrspace
(
1
)*
noalias
%out
,
<
2
x
i32
>
addrspace
(
1
)*
noalias
%in
)
{
%a
=
load
<
2
x
i32
>
addrspace
(
1
)*
%in
%lo
=
extractelement
<
2
x
i32
>
%a
,
i32
0
%hi
=
extractelement
<
2
x
i32
>
%a
,
i32
1
%add
=
add
i32
%lo
,
%lo
%vec0
=
insertelement
<
2
x
i32
>
undef
,
i32
%add
,
i32
0
%vec1
=
insertelement
<
2
x
i32
>
%vec0
,
i32
%hi
,
i32
1
store
<
2
x
i32
>
%vec1
,
<
2
x
i32
>
addrspace
(
1
)*
%out
,
align
8
ret
void
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment