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
e51c6661
Commit
e51c6661
authored
May 06, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(CALL_INSN_FUNCTION_USAGE): New macro.
(find_reg{,no}_fusage): Prototype for new function. From-SVN: r7234
parent
cc867704
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
gcc/rtl.h
+11
-0
No files found.
gcc/rtl.h
View file @
e51c6661
...
...
@@ -358,6 +358,15 @@ enum reg_note { REG_DEAD = 1, REG_INC = 2, REG_EQUIV = 3, REG_WAS_0 = 4,
extern
char
*
reg_note_name
[];
#define GET_REG_NOTE_NAME(MODE) (reg_note_name[(int)(MODE)])
/* This field is only present on CALL_INSNs. It holds a chain of EXPR_LIST of
USE and CLOBBER expressions.
USE expressions list the registers filled with arguments that
are passed to the function.
CLOBBER expressions document the registers explicitly clobbered
by this CALL_INSN.
Pseudo registers can not be mentioned in this list. */
#define CALL_INSN_FUNCTION_USAGE(INSN) ((INSN)->fld[7].rtx)
/* The label-number of a code-label. The assembler label
is made from `L' and the label-number printed in decimal.
Label numbers are unique in a compilation. */
...
...
@@ -693,6 +702,8 @@ extern rtx rtx_alloc PROTO((RTX_CODE));
extern
rtvec
rtvec_alloc
PROTO
((
int
));
extern
rtx
find_reg_note
PROTO
((
rtx
,
enum
reg_note
,
rtx
));
extern
rtx
find_regno_note
PROTO
((
rtx
,
enum
reg_note
,
int
));
extern
int
find_reg_fusage
PROTO
((
rtx
,
enum
rtx_code
,
rtx
));
extern
int
find_regno_fusage
PROTO
((
rtx
,
enum
rtx_code
,
int
));
extern
HOST_WIDE_INT
get_integer_term
PROTO
((
rtx
));
extern
rtx
get_related_value
PROTO
((
rtx
));
extern
rtx
single_set
PROTO
((
rtx
));
...
...
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