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
aff507f4
Commit
aff507f4
authored
May 06, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(make_call_insn_raw): New function.
(emit_call_insn{,_before}): Use make_call_insn_raw. From-SVN: r7238
parent
f1e7c95f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
3 deletions
+32
-3
gcc/emit-rtl.c
+32
-3
No files found.
gcc/emit-rtl.c
View file @
aff507f4
...
...
@@ -2084,6 +2084,26 @@ make_jump_insn_raw (pattern)
return
insn
;
}
/* Like `make_insn' but make a CALL_INSN instead of an insn. */
static
rtx
make_call_insn_raw
(
pattern
)
rtx
pattern
;
{
register
rtx
insn
;
insn
=
rtx_alloc
(
CALL_INSN
);
INSN_UID
(
insn
)
=
cur_insn_uid
++
;
PATTERN
(
insn
)
=
pattern
;
INSN_CODE
(
insn
)
=
-
1
;
LOG_LINKS
(
insn
)
=
NULL
;
REG_NOTES
(
insn
)
=
NULL
;
CALL_INSN_FUNCTION_USAGE
(
insn
)
=
NULL
;
return
insn
;
}
/* Add INSN to the end of the doubly-linked list.
INSN may be an INSN, JUMP_INSN, CALL_INSN, CODE_LABEL, BARRIER or NOTE. */
...
...
@@ -2292,8 +2312,17 @@ rtx
emit_call_insn_before
(
pattern
,
before
)
register
rtx
pattern
,
before
;
{
rtx
insn
=
emit_insn_before
(
pattern
,
before
);
PUT_CODE
(
insn
,
CALL_INSN
);
register
rtx
insn
;
if
(
GET_CODE
(
pattern
)
==
SEQUENCE
)
insn
=
emit_insn_before
(
pattern
,
before
);
else
{
insn
=
make_call_insn_raw
(
pattern
);
add_insn_after
(
insn
,
PREV_INSN
(
before
));
PUT_CODE
(
insn
,
CALL_INSN
);
}
return
insn
;
}
...
...
@@ -2609,7 +2638,7 @@ emit_call_insn (pattern)
return
emit_insn
(
pattern
);
else
{
register
rtx
insn
=
make_insn_raw
(
pattern
);
register
rtx
insn
=
make_
call_
insn_raw
(
pattern
);
add_insn
(
insn
);
PUT_CODE
(
insn
,
CALL_INSN
);
return
insn
;
...
...
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