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
051e5bbf
Commit
051e5bbf
authored
Jun 24, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r1259
parent
819817b9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
gcc/input.h
+4
-0
gcc/regclass.c
+6
-6
No files found.
gcc/input.h
View file @
051e5bbf
...
...
@@ -15,6 +15,10 @@ struct file_stack
char
*
name
;
struct
file_stack
*
next
;
int
line
;
/* This is for front ends that do include processing
internally rather than having a preprocessor do it.
Modula 2 needs this. */
FILE
*
fd
;
};
/* Stack of currently pending input files.
...
...
gcc/regclass.c
View file @
051e5bbf
...
...
@@ -962,12 +962,12 @@ record_address_regs (x, bcost, icost)
/* Indexed by pseudo register number, gives uid of first insn using the reg
(as of the time reg_scan is called). */
shor
t
*
regno_first_uid
;
in
t
*
regno_first_uid
;
/* Indexed by pseudo register number, gives uid of last insn using the reg
(as of the time reg_scan is called). */
shor
t
*
regno_last_uid
;
in
t
*
regno_last_uid
;
/* Record the number of registers we used when we allocated the above two
tables. If we are called again with more than this, we must re-allocate
...
...
@@ -996,15 +996,15 @@ reg_scan (f, nregs, repeat)
/* Leave some spare space in case more regs are allocated. */
highest_regno_in_uid_map
=
nregs
+
nregs
/
20
;
regno_first_uid
=
(
short
*
)
oballoc
(
highest_regno_in_uid_map
*
sizeof
(
shor
t
));
=
(
int
*
)
oballoc
(
highest_regno_in_uid_map
*
sizeof
(
in
t
));
regno_last_uid
=
(
short
*
)
oballoc
(
highest_regno_in_uid_map
*
sizeof
(
shor
t
));
=
(
int
*
)
oballoc
(
highest_regno_in_uid_map
*
sizeof
(
in
t
));
reg_n_sets
=
(
short
*
)
oballoc
(
highest_regno_in_uid_map
*
sizeof
(
short
));
}
bzero
(
regno_first_uid
,
highest_regno_in_uid_map
*
sizeof
(
shor
t
));
bzero
(
regno_last_uid
,
highest_regno_in_uid_map
*
sizeof
(
shor
t
));
bzero
(
regno_first_uid
,
highest_regno_in_uid_map
*
sizeof
(
in
t
));
bzero
(
regno_last_uid
,
highest_regno_in_uid_map
*
sizeof
(
in
t
));
bzero
(
reg_n_sets
,
highest_regno_in_uid_map
*
sizeof
(
short
));
max_parallel
=
3
;
...
...
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