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
8f7f2b3d
Commit
8f7f2b3d
authored
Nov 25, 1999
by
Gavin Romig-Koch
Committed by
Gavin Romig-Koch
Nov 25, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/mips/mips.md (call_value_multiple_interanal1): New.
From-SVN: r30660
parent
10a11b75
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
+27
-0
gcc/ChangeLog
+4
-0
gcc/config/mips/mips.md
+23
-0
No files found.
gcc/ChangeLog
View file @
8f7f2b3d
1999
-
11
-
24
Gavin
Romig
-
Koch
<
gavin
@cygnus
.
com
>
*
config
/
mips
/
mips
.
md
(
call_value_multiple_interanal1
)
:
New
.
1999
-
11
-
24
Jason
Merrill
<
jason
@casey
.
cygnus
.
com
>
*
dwarf2out
.
c
(
free_AT
,
free_die
)
:
New
fns
.
...
...
gcc/config/mips/mips.md
View file @
8f7f2b3d
...
...
@@ -9838,6 +9838,29 @@ ld\\t%2,%1-%S1(%2)\;daddu\\t%2,%2,$31\;j\\t%2"
;; ??? May eventually need all 6 versions of the call patterns with multiple
;; return values.
(define_insn "call_value_multiple_internal1"
[
(set (match_operand 0 "register_operand" "=df")
(call (mem (match_operand 1 "call_insn_operand" "ri"))
(match_operand 2 "" "i")))
(set (match_operand 3 "register_operand" "=df")
(call (mem (match_dup 1))
(match_dup 2)))
(clobber (match_operand:SI 4 "register_operand" "=d"))]
"!TARGET_ABICALLS && !TARGET_LONG_CALLS"
"
*
{
register rtx target = operands
[
1
]
;
if (GET_CODE (target) == SYMBOL_REF)
return
\"
%
*
jal
\\
t%1
\"
;
else if (GET_CODE (target) == CONST_INT)
return
\"
%
[
li\\t%@,%1\\n\\t%*jal\\t%4,%@%
]
\"
;
else
return
\"
%
*
jal
\\
t%4,%1
\"
;
}"
[
(set_attr "type" "call")
(set_attr "mode" "none")])
(define_insn "call_value_multiple_internal2"
[
(set (match_operand 0 "register_operand" "=df")
(call (mem (match_operand 1 "call_insn_operand" "ri"))
...
...
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