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
9cea6503
Commit
9cea6503
authored
Mar 05, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add new define_split for doing sign-extended adds of some large
constants using sNaddl. From-SVN: r3662
parent
6076248a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
gcc/config/alpha/alpha.md
+24
-0
No files found.
gcc/config/alpha/alpha.md
View file @
9cea6503
...
...
@@ -123,6 +123,30 @@
subl %r1,%n2,%0"
[
(set_attr "type" "iaddlog")
]
)
(define_split
[
(set (match_operand:DI 0 "register_operand" "")
(sign_extend:DI
(plus:SI (match_operand:SI 1 "register_operand" "")
(match_operand:SI 2 "const_int_operand" ""))))
(clobber (match_operand:SI 3 "register_operand" ""))]
"! add_operand (operands
[
2
]
, SImode) && INTVAL (operands
[
2
]
) > 0
&& INTVAL (operands
[
2
]
) % 4 == 0"
[
(set (match_dup 3) (match_dup 4))
(set (match_dup 0) (sign_extend:DI (plus:SI (mult:SI (match_dup 3)
(match_dup 5))
(match_dup 1))))]
"
{
HOST_WIDE_INT val = INTVAL (operands
[
2
]
) / 4;
int mult = 4;
if (val % 2 == 0)
val /= 2, mult = 8;
operands
[
4
]
= GEN_INT (val);
operands
[
5
]
= GEN_INT (mult);
}")
(define_insn "adddi3"
[
(set (match_operand:DI 0 "register_operand" "=r,r,r")
(plus:DI (match_operand:DI 1 "reg_or_0_operand" "%rJ,%rJ,%rJ")
...
...
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