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
1c7b1b7e
Commit
1c7b1b7e
authored
Mar 21, 2004
by
Ulrich Weigand
Committed by
Ulrich Weigand
Mar 21, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/s390/s390.md ("addti3", "subti3"): New insns and splitters.
From-SVN: r79793
parent
f258e38b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
62 additions
and
0 deletions
+62
-0
gcc/ChangeLog
+4
-0
gcc/config/s390/s390.md
+58
-0
No files found.
gcc/ChangeLog
View file @
1c7b1b7e
2004-03-21 Ulrich Weigand <uweigand@de.ibm.com>
* config/s390/s390.md ("addti3", "subti3"): New insns and splitters.
2004-03-21 Ulrich Weigand <uweigand@de.ibm.com>
* expmed.c (choose_mult_variant): Pass MULT_COST as argument instead
of using register multiplication cost.
(expand_mult): Adapt choose_mult_variant call.
...
...
gcc/config/s390/s390.md
View file @
1c7b1b7e
...
...
@@ -3331,6 +3331,35 @@
;;
;
; addti3 instruction pattern(s).
;
(define_insn_and_split "addti3"
[
(set (match_operand:TI 0 "register_operand" "=&d")
(plus:TI (match_operand:TI 1 "nonimmediate_operand" "%0")
(match_operand:TI 2 "general_operand" "do") ) )
(clobber (reg:CC 33))]
"TARGET_64BIT"
"#"
"&& reload_completed"
[
(parallel
[
(set (reg:CCL1 33)
(compare:CCL1 (plus:DI (match_dup 7) (match_dup 8))
(match_dup 7)))
(set (match_dup 6) (plus:DI (match_dup 7) (match_dup 8)))])
(parallel
[
(set (match_dup 3) (plus:DI (plus:DI (match_dup 4) (match_dup 5))
(ltu:DI (reg:CCL1 33) (const_int 0))))
(clobber (reg:CC 33))])]
"operands
[
3
]
= operand_subword (operands
[
0
]
, 0, 0, TImode);
operands
[
4
]
= operand_subword (operands
[
1
]
, 0, 0, TImode);
operands
[
5
]
= operand_subword (operands
[
2
]
, 0, 0, TImode);
operands
[
6
]
= operand_subword (operands
[
0
]
, 1, 0, TImode);
operands
[
7
]
= operand_subword (operands
[
1
]
, 1, 0, TImode);
operands
[
8
]
= operand_subword (operands
[
2
]
, 1, 0, TImode);"
[
(set_attr "op_type" "NN")
]
)
;
; adddi3 instruction pattern(s).
;
...
...
@@ -3826,6 +3855,35 @@
;;
;
; subti3 instruction pattern(s).
;
(define_insn_and_split "subti3"
[
(set (match_operand:TI 0 "register_operand" "=&d")
(minus:TI (match_operand:TI 1 "register_operand" "0")
(match_operand:TI 2 "general_operand" "do") ) )
(clobber (reg:CC 33))]
"TARGET_64BIT"
"#"
"&& reload_completed"
[
(parallel
[
(set (reg:CCL2 33)
(compare:CCL2 (minus:DI (match_dup 7) (match_dup 8))
(match_dup 7)))
(set (match_dup 6) (minus:DI (match_dup 7) (match_dup 8)))])
(parallel
[
(set (match_dup 3) (minus:DI (minus:DI (match_dup 4) (match_dup 5))
(gtu:DI (reg:CCL2 33) (const_int 0))))
(clobber (reg:CC 33))])]
"operands
[
3
]
= operand_subword (operands
[
0
]
, 0, 0, TImode);
operands
[
4
]
= operand_subword (operands
[
1
]
, 0, 0, TImode);
operands
[
5
]
= operand_subword (operands
[
2
]
, 0, 0, TImode);
operands
[
6
]
= operand_subword (operands
[
0
]
, 1, 0, TImode);
operands
[
7
]
= operand_subword (operands
[
1
]
, 1, 0, TImode);
operands
[
8
]
= operand_subword (operands
[
2
]
, 1, 0, TImode);"
[
(set_attr "op_type" "NN")
]
)
;
; subdi3 instruction pattern(s).
;
...
...
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