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
4371f8af
Commit
4371f8af
authored
May 27, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(zero_extendqidi2, zero_extendhidi2): Use rldicl instruction.
From-SVN: r7376
parent
2b5c5d02
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
gcc/config/rs6000/rs6000.md
+6
-6
No files found.
gcc/config/rs6000/rs6000.md
View file @
4371f8af
...
...
@@ -265,7 +265,7 @@
"TARGET_POWERPC64"
"@
lbz%U1%X1 %0,%1
andi %0,%1,0xff
"
rldicl %0,%1,0,56
"
[
(set_attr "type" "load,*")
]
)
(define_insn ""
...
...
@@ -274,7 +274,7 @@
(const_int 0)))
(clobber (match_scratch:DI 2 "=r"))]
"TARGET_POWERPC64"
"
andi. %2,%1,0xff
"
"
rldicl. %2,%1,0,56
"
[
(set_attr "type" "compare")
]
)
(define_insn ""
...
...
@@ -284,7 +284,7 @@
(set (match_operand:DI 0 "gpc_reg_operand" "=r")
(zero_extend:DI (match_dup 1)))]
"TARGET_POWERPC64"
"
andi. %0,%1,0xff
"
"
rldicl. %0,%1,0,56
"
[
(set_attr "type" "compare")
]
)
(define_expand "extendqidi2"
...
...
@@ -333,7 +333,7 @@
"TARGET_POWERPC64"
"@
lhz%U1%X1 %0,%1
andi %0,%1,0xffff
"
rldicl %0,%1,0,48
"
[
(set_attr "type" "load,*")
]
)
(define_insn ""
...
...
@@ -342,7 +342,7 @@
(const_int 0)))
(clobber (match_scratch:DI 2 "=r"))]
"TARGET_POWERPC64"
"
andi. %2,%1,0xffff
"
"
rldicl. %2,%1,0,48
"
[
(set_attr "type" "compare")
]
)
(define_insn ""
...
...
@@ -352,7 +352,7 @@
(set (match_operand:DI 0 "gpc_reg_operand" "=r")
(zero_extend:DI (match_dup 1)))]
"TARGET_POWERPC64"
"
andi. %0,%1,0xffff
"
"
rldicl. %0,%1,0,48
"
[
(set_attr "type" "compare")
]
)
(define_expand "extendhidi2"
...
...
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