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
2222da3a
Commit
2222da3a
authored
Aug 23, 2004
by
Richard Sandiford
Committed by
Richard Sandiford
Aug 23, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/mips/mips.md ({,u}divmod[sd]i4): Redefine using :GPR.
From-SVN: r86408
parent
15ac4ccf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
44 deletions
+24
-44
gcc/ChangeLog
+4
-0
gcc/config/mips/mips.md
+20
-44
No files found.
gcc/ChangeLog
View file @
2222da3a
2004-08-23 Richard Sandiford <rsandifo@redhat.com>
* config/mips/mips.md ({,u}divmod[sd]i4): Redefine using :GPR.
2004-08-23 Richard Sandiford <rsandifo@redhat.com>
* config/mips/mips.md (any_extend): New code macro.
(u, su): New code attributes.
({,u}mulsidi3, {,u}mulsidi3_32bit_internal, {,u}mulsidi3_32bit_r4000)
...
...
gcc/config/mips/mips.md
View file @
2222da3a
...
...
@@ -1827,53 +1827,29 @@
;; VR4120 errata MD(A1): signed division instructions do not work correctly
;; with negative operands. We use special libgcc functions instead.
(define_insn "divmod
si
4"
[
(set (match_operand:
SI
0 "register_operand" "=l")
(div:
SI (match_operand:SI
1 "register_operand" "d")
(match_operand:SI
2 "register_operand" "d")))
(set (match_operand:
SI
3 "register_operand" "=h")
(mod:
SI
(match_dup 1)
(match_dup 2)))]
(define_insn "divmod
<mode>
4"
[
(set (match_operand:
GPR
0 "register_operand" "=l")
(div:
GPR (match_operand:GPR
1 "register_operand" "d")
(match_operand:GPR
2 "register_operand" "d")))
(set (match_operand:
GPR
3 "register_operand" "=h")
(mod:
GPR
(match_dup 1)
(match_dup 2)))]
"!TARGET_FIX_VR4120"
{ return mips_output_division ("div
\t
$0,%1,%2", operands); }
[
(set_attr "type" "idiv")
(set_attr "mode" "SI")])
(define_insn "divmoddi4"
[
(set (match_operand:DI 0 "register_operand" "=l")
(div:DI (match_operand:DI 1 "register_operand" "d")
(match_operand:DI 2 "register_operand" "d")))
(set (match_operand:DI 3 "register_operand" "=h")
(mod:DI (match_dup 1)
(match_dup 2)))]
"TARGET_64BIT && !TARGET_FIX_VR4120"
{ return mips_output_division ("ddiv
\t
$0,%1,%2", operands); }
[
(set_attr "type" "idiv")
(set_attr "mode" "DI")])
{ return mips_output_division ("
<d>
div
\t
$0,%1,%2", operands); }
[
(set_attr "type" "idiv")
(set_attr "mode" "
<MODE>
")])
(define_insn "udivmod
si
4"
[
(set (match_operand:
SI
0 "register_operand" "=l")
(udiv:
SI (match_operand:SI
1 "register_operand" "d")
(match_operand:SI
2 "register_operand" "d")))
(set (match_operand:
SI
3 "register_operand" "=h")
(umod:
SI
(match_dup 1)
(match_dup 2)))]
(define_insn "udivmod
<mode>
4"
[
(set (match_operand:
GPR
0 "register_operand" "=l")
(udiv:
GPR (match_operand:GPR
1 "register_operand" "d")
(match_operand:GPR
2 "register_operand" "d")))
(set (match_operand:
GPR
3 "register_operand" "=h")
(umod:
GPR
(match_dup 1)
(match_dup 2)))]
""
{ return mips_output_division ("divu
\t
$0,%1,%2", operands); }
[
(set_attr "type" "idiv")
(set_attr "mode" "SI")])
(define_insn "udivmoddi4"
[
(set (match_operand:DI 0 "register_operand" "=l")
(udiv:DI (match_operand:DI 1 "register_operand" "d")
(match_operand:DI 2 "register_operand" "d")))
(set (match_operand:DI 3 "register_operand" "=h")
(umod:DI (match_dup 1)
(match_dup 2)))]
"TARGET_64BIT"
{ return mips_output_division ("ddivu
\t
$0,%1,%2", operands); }
[
(set_attr "type" "idiv")
(set_attr "mode" "DI")])
{ return mips_output_division ("
<d>
divu
\t
$0,%1,%2", operands); }
[
(set_attr "type" "idiv")
(set_attr "mode" "
<MODE>
")])
;;
;; ....................
...
...
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