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
db19fab5
Commit
db19fab5
authored
Jul 12, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(ashldi3): Update pattern for (sign_extend (ashift ..)) to match the
current canonicalization. From-SVN: r7743
parent
ee59bdfc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
16 deletions
+9
-16
gcc/config/alpha/alpha.md
+9
-16
No files found.
gcc/config/alpha/alpha.md
View file @
db19fab5
...
...
@@ -785,26 +785,19 @@
}"
[
(set_attr "type" "iaddlog,shiftcm")
]
)
;; This is the same as (sign_extend (shift X
[
123
]
)).
(define_insn ""
[
(set (match_operand:DI 0 "register_operand" "=r")
(ashiftrt:DI (ashift:DI (match_operand:DI 1 "reg_or_0_operand" "rJ")
(match_operand:DI 2 "const_int_operand" "i"))
(const_int 32)))]
"INTVAL (operands
[
2
]
) >= 33 && INTVAL (operands
[
2
]
) <= 35"
(sign_extend:DI
(subreg:SI (ashift:DI (match_operand:DI 1 "reg_or_0_operand" "rJ")
(match_operand:DI 2 "const_int_operand" "P"))
0)))]
"INTVAL (operands
[
2
]
) >= 1 && INTVAL (operands
[
2
]
) <= 3"
"
*
{
switch (INTVAL (operands
[
2
]
))
{
case 33:
return
\"
addl %r1,%r1,%0
\"
;
case 34:
return
\"
s4addl %r1,0,%0
\"
;
case 35:
return
\"
s8addl %r1,0,%0
\"
;
default:
abort ();
}
if (operands
[
2
]
== const1_rtx)
return
\"
addl %r1,%r1,%0
\"
;
else
return
\"
s%P2addl %r1,0,%0
\"
;
}"
[
(set_attr "type" "iaddlog")
]
)
...
...
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