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
eb7d5627
Commit
eb7d5627
authored
Jan 14, 1995
by
Doug Evans
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(INIT_CUMULATIVE_INCOMING_ARGS): Reserve two regs for caller's lr0,lr1.
From-SVN: r8758
parent
23c97802
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
gcc/config/a29k/a29k.h
+7
-5
No files found.
gcc/config/a29k/a29k.h
View file @
eb7d5627
...
...
@@ -777,19 +777,21 @@ extern struct rtx_def *a29k_get_reloaded_address ();
/* Same, but called for incoming args.
On the 29k, we use this to set all argument registers to fixed and
set the last 16 local regs (lr112-lr127) to available. Some
will later be changed to call-saved by FUNCTION_INCOMING_ARG. */
set the last 16 local regs, less two, (lr110-lr125) to available. Some
will later be changed to call-saved by FUNCTION_INCOMING_ARG.
lr126,lr127 are always fixed, they are place holders for the caller's
lr0,lr1. */
#define INIT_CUMULATIVE_INCOMING_ARGS(CUM,FNTYPE,IGNORE)
\
#define INIT_CUMULATIVE_INCOMING_ARGS(CUM,FNTYPE,IGNORE) \
{ int i; \
for (i = R_AR (0); i < R_AR (16); i++) \
for (i = R_AR (0)
- 2
; i < R_AR (16); i++) \
{ \
fixed_regs[i] = call_used_regs[i] = call_fixed_regs[i] = 1; \
SET_HARD_REG_BIT (fixed_reg_set, i); \
SET_HARD_REG_BIT (call_used_reg_set, i); \
SET_HARD_REG_BIT (call_fixed_reg_set, i); \
} \
for (i = R_LR (11
2); i < R_LR (128
); i++) \
for (i = R_LR (11
0); i < R_LR (126
); i++) \
{ \
fixed_regs[i] = call_used_regs[i] = call_fixed_regs[i] = 0; \
CLEAR_HARD_REG_BIT (fixed_reg_set, i); \
...
...
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