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
e25c906a
Commit
e25c906a
authored
Dec 06, 2003
by
Richard Earnshaw
Committed by
Richard Earnshaw
Dec 06, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* arm.md (IOR (COMPARISON) (AND)): New define_splits.
From-SVN: r74366
parent
439020ec
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
0 deletions
+42
-0
gcc/ChangeLog
+4
-0
gcc/config/arm/arm.md
+38
-0
No files found.
gcc/ChangeLog
View file @
e25c906a
2003-12-06 Richard Earnshaw <reanrsha@arm.com>
* arm.md (IOR (COMPARISON) (AND)): New define_splits.
2003-12-06 Kelley Cook <kcook@gcc.gnu.org>
* Makefile.in (program_transform_cross_name): Delete.
...
...
gcc/config/arm/arm.md
View file @
e25c906a
...
...
@@ -7983,6 +7983,44 @@
[
(set_attr "conds" "clob")
(set_attr "length" "20")])
(define_split
[
(set (reg:CC_NOOV CC_REGNUM)
(compare:CC_NOOV (ior:SI
(and:SI (match_operand:SI 0 "s_register_operand" "")
(const_int 1))
(match_operator:SI 1 "comparison_operator"
[
(match_operand:SI 2 "s_register_operand" "")
(match_operand:SI 3 "arm_add_operand" "")]))
(const_int 0)))
(clobber (match_operand:SI 4 "s_register_operand" ""))]
"TARGET_ARM"
[
(set (match_dup 4)
(ior:SI (match_op_dup 1
[
(match_dup 2) (match_dup 3)
]
)
(match_dup 0)))
(set (reg:CC_NOOV CC_REGNUM)
(compare:CC_NOOV (and:SI (match_dup 4) (const_int 1))
(const_int 0)))]
"")
(define_split
[
(set (reg:CC_NOOV CC_REGNUM)
(compare:CC_NOOV (ior:SI
(match_operator:SI 1 "comparison_operator"
[
(match_operand:SI 2 "s_register_operand" "")
(match_operand:SI 3 "arm_add_operand" "")])
(and:SI (match_operand:SI 0 "s_register_operand" "")
(const_int 1)))
(const_int 0)))
(clobber (match_operand:SI 4 "s_register_operand" ""))]
"TARGET_ARM"
[
(set (match_dup 4)
(ior:SI (match_op_dup 1
[
(match_dup 2) (match_dup 3)
]
)
(match_dup 0)))
(set (reg:CC_NOOV CC_REGNUM)
(compare:CC_NOOV (and:SI (match_dup 4) (const_int 1))
(const_int 0)))]
"")
(define_insn "
*
negscc"
[
(set (match_operand:SI 0 "s_register_operand" "=r")
(neg:SI (match_operator 3 "arm_comparison_operator"
...
...
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