Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
70707f6c
Commit
70707f6c
authored
Jun 29, 2005
by
Richard Henderson
Committed by
Richard Henderson
Jun 29, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/alpha/alpha.md (vec_shl_<VEC>, vec_shr_<VEC>): New.
From-SVN: r101434
parent
afc1ab61
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
0 deletions
+24
-0
gcc/ChangeLog
+4
-0
gcc/config/alpha/alpha.md
+20
-0
No files found.
gcc/ChangeLog
View file @
70707f6c
2005-06-29 Richard Henderson <rth@redhat.com>
* config/alpha/alpha.md (vec_shl_<VEC>, vec_shr_<VEC>): New.
2005-06-29 Richard Henderson <rth@redhat.com>
* tree-vect-transform.c (vect_min_worthwhile_factor): Declare.
(vect_create_epilog_for_reduction): Don't use vec_shr if the
operation is emulated.
...
...
gcc/config/alpha/alpha.md
View file @
70707f6c
...
...
@@ -6361,6 +6361,26 @@
""
"eqv %1,%2,%0"
[
(set_attr "type" "ilog")
]
)
(define_expand "vec_shl_
<mode>
"
[
(set (match_operand:VEC 0 "register_operand" "")
(ashift:DI (match_operand:VEC 1 "register_operand" "")
(match_operand:DI 2 "reg_or_6bit_operand" "")))]
""
{
operands
[
0
]
= gen_lowpart (DImode, operands
[
0
]
);
operands
[
1
]
= gen_lowpart (DImode, operands
[
1
]
);
})
(define_expand "vec_shr_
<mode>
"
[
(set (match_operand:VEC 0 "register_operand" "")
(lshiftrt:DI (match_operand:VEC 1 "register_operand" "")
(match_operand:DI 2 "reg_or_6bit_operand" "")))]
""
{
operands
[
0
]
= gen_lowpart (DImode, operands
[
0
]
);
operands
[
1
]
= gen_lowpart (DImode, operands
[
1
]
);
})
;; Bit field extract patterns which use ext
[
wlq
][
lh
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment