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
502e6d5a
Commit
502e6d5a
authored
Sep 04, 2002
by
J"orn Rennecke
Committed by
Joern Rennecke
Sep 04, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* sh.md (mperm_w_little, mperm_w_big): Supply mode for zero_extract.
From-SVN: r56793
parent
f979c199
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
11 deletions
+16
-11
gcc/ChangeLog
+4
-0
gcc/config/sh/sh.md
+12
-11
No files found.
gcc/ChangeLog
View file @
502e6d5a
Wed
Sep
4
11
:
22
:
14
2002
J
"orn Rennecke <joern.rennecke@superh.com>
* sh.md (mperm_w_little, mperm_w_big): Supply mode for zero_extract.
2002-09-03 David Edelsohn <edelsohn@gnu.org>
* varasm.c (default_section_type_flags): Append _1 to name with
...
...
gcc/config/sh/sh.md
View file @
502e6d5a
...
...
@@ -9737,11 +9737,11 @@
(vec_select:V4HI
(match_operand:V4HI 1 "arith_reg_operand" "r")
(parallel
[
(zero_extract (match_operand:QI 2 "extend_reg_or_0_operand" "rU")
(const_int 2) (const_int 0))
(zero_extract (match_dup 2) (const_int 2) (const_int 2))
(zero_extract (match_dup 2) (const_int 2) (const_int 4))
(zero_extract (match_dup 2) (const_int 2) (const_int 6))])))]
[
(zero_extract
:QI
(match_operand:QI 2 "extend_reg_or_0_operand" "rU")
(const_int 2) (const_int 0))
(zero_extract
:QI
(match_dup 2) (const_int 2) (const_int 2))
(zero_extract
:QI
(match_dup 2) (const_int 2) (const_int 4))
(zero_extract
:QI
(match_dup 2) (const_int 2) (const_int 6))])))]
"TARGET_SHMEDIA && TARGET_LITTLE_ENDIAN"
"mperm.w %1, %N2, %0"
[
(set_attr "type" "arith_media")
]
)
...
...
@@ -9751,12 +9751,13 @@
(vec_select:V4HI
(match_operand:V4HI 1 "arith_reg_operand" "r")
(parallel
[
(zero_extract (not:QI (match_operand:QI 2
"extend_reg_or_0_operand" "rU"))
(const_int 2) (const_int 0))
(zero_extract (not:QI (match_dup 2)) (const_int 2) (const_int 2))
(zero_extract (not:QI (match_dup 2)) (const_int 2) (const_int 4))
(zero_extract (not:QI (match_dup 2)) (const_int 2) (const_int 6))])))]
[
(zero_extract:QI (not:QI (match_operand:QI 2
"extend_reg_or_0_operand" "rU"))
(const_int 2) (const_int 0))
(zero_extract:QI (not:QI (match_dup 2)) (const_int 2) (const_int 2))
(zero_extract:QI (not:QI (match_dup 2)) (const_int 2) (const_int 4))
(zero_extract:QI (not:QI (match_dup 2))
(const_int 2) (const_int 6))])))]
"TARGET_SHMEDIA && ! TARGET_LITTLE_ENDIAN"
"mperm.w %1, %N2, %0"
[
(set_attr "type" "arith_media")
]
)
...
...
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