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
e5b7b845
Commit
e5b7b845
authored
Jun 27, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(adddi3, subdi3, negdi3): New patterns.
From-SVN: r12341
parent
8bca2922
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
111 additions
and
1 deletions
+111
-1
gcc/config/ns32k/ns32k.md
+111
-1
No files found.
gcc/config/ns32k/ns32k.md
View file @
e5b7b845
;;- Machine description for GNU compiler, ns32000 Version
;; Copyright (C) 1988, 1994 Free Software Foundation, Inc.
;; Copyright (C) 1988, 1994
, 1996
Free Software Foundation, Inc.
;; Contributed by Michael Tiemann (tiemann@cygnus.com)
;; This file is part of GNU CC.
...
...
@@ -858,6 +858,47 @@
"GET_CODE (operands
[
1
]
) == CONST_INT"
"addr %c1(sp),%0")
(define_insn "adddi3"
[
(set (match_operand:DI 0 "general_operand" "=ro")
(plus:DI (match_operand:DI 1 "general_operand" "%0")
(match_operand:DI 2 "general_operand" "ron")))]
""
"
*
{
rtx low
[
3
]
, high
[
3
]
, xops
[
4
]
;
split_di (operands, 3, low, high);
xops
[
0
]
= low
[
0
]
;
xops
[
1
]
= high
[
0
]
;
xops
[
2
]
= low
[
2
]
;
xops
[
3
]
= high
[
2
]
;
if (GET_CODE (xops
[
2
]
) == CONST_INT)
{
int i = INTVAL (xops
[
2
]
);
if (i <= 7 && i >= -8)
{
if (i == 0)
{
i = INTVAL (xops[3]);
if (i <= 7 && i >= -8)
output_asm_insn (\"addqd %$%3,%1\", xops);
else
output_asm_insn (\"addd %$%3,%1\", xops);
}
else
{
output_asm_insn (\"addqd %$%2,%0\", xops);
output_asm_insn (\"addcd %$%3,%1\", xops);
}
return \"\";
}
}
output_asm_insn (
\"
addd %2,%0
\"
, xops);
output_asm_insn (
\"
addcd %3,%1
\"
, xops);
return
\"\"
;
}")
(define_insn "addsi3"
[
(set (match_operand:SI 0 "general_operand" "=g,=g&<")
(plus:SI (match_operand:SI 1 "general_operand" "%0,r")
...
...
@@ -971,6 +1012,47 @@
return
\"
adjspd %$%0
\"
;
}")
(define_insn "subdi3"
[
(set (match_operand:DI 0 "general_operand" "=ro")
(minus:DI (match_operand:DI 1 "general_operand" "0")
(match_operand:DI 2 "general_operand" "ron")))]
""
"
*
{
rtx low
[
3
]
, high
[
3
]
, xops
[
4
]
;
split_di (operands, 3, low, high);
xops
[
0
]
= low
[
0
]
;
xops
[
1
]
= high
[
0
]
;
xops
[
2
]
= low
[
2
]
;
xops
[
3
]
= high
[
2
]
;
if (GET_CODE (xops
[
2
]
) == CONST_INT)
{
int i = INTVAL (xops
[
2
]
);
if (i <= 8 && i >= -7)
{
if (i == 0)
{
i = INTVAL (xops[3]);
if (i <= 8 && i >= -7)
output_asm_insn (\"addqd %$%n3,%1\", xops);
else
output_asm_insn (\"subd %$%3,%1\", xops);
}
else
{
output_asm_insn (\"addqd %$%n2,%0\", xops);
output_asm_insn (\"subcd %$%3,%1\", xops);
}
return \"\";
}
}
output_asm_insn (
\"
subd %2,%0
\"
, xops);
output_asm_insn (
\"
subcd %3,%1
\"
, xops);
return
\"\"
;
}")
(define_insn "subsi3"
[
(set (match_operand:SI 0 "general_operand" "=g")
(minus:SI (match_operand:SI 1 "general_operand" "0")
...
...
@@ -1390,6 +1472,34 @@
"TARGET_32081"
"negf %1,%0")
(define_insn "negdi2"
[
(set (match_operand:DI 0 "general_operand" "=ro")
(neg:DI (match_operand:DI 1 "general_operand" "ro")))]
""
"
*
{
rtx low
[
2
]
, high
[
2
]
, xops
[
4
]
;
split_di (operands, 2, low, high);
xops
[
0
]
= low
[
0
]
;
xops
[
1
]
= high
[
0
]
;
xops
[
2
]
= low
[
1
]
;
xops
[
3
]
= high
[
1
]
;
if (rtx_equal_p (operands
[
0
]
, operands
[
1
]
))
{
output_asm_insn (
\"
negd %3,%1
\"
, xops);
output_asm_insn (
\"
negd %2,%0
\"
, xops);
output_asm_insn (
\"
subcd %$0,%1
\"
, xops);
}
else
{
output_asm_insn (
\"
negd %2,%0
\"
, xops);
output_asm_insn (
\"
movqd %$0,%1
\"
, xops);
output_asm_insn (
\"
subcd %3,%1
\"
, xops);
}
return
\"\"
;
}")
(define_insn "negsi2"
[
(set (match_operand:SI 0 "general_operand" "=g<")
(neg:SI (match_operand:SI 1 "general_operand" "rmn")))]
...
...
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