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
daa6f17d
Commit
daa6f17d
authored
Nov 12, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(allocno_compare): Use `const void *' arguments.
From-SVN: r13131
parent
c6d40741
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
10 deletions
+12
-10
gcc/global.c
+12
-10
No files found.
gcc/global.c
View file @
daa6f17d
...
...
@@ -251,7 +251,7 @@ static int n_regs_set;
static
HARD_REG_SET
eliminable_regset
;
static
int
allocno_compare
PROTO
((
int
*
,
int
*
));
static
int
allocno_compare
PROTO
((
const
GENERIC_PTR
,
const
GENERIC_PTR
));
static
void
global_conflicts
PROTO
((
void
));
static
void
expand_preferences
PROTO
((
void
));
static
void
prune_preferences
PROTO
((
void
));
...
...
@@ -584,27 +584,29 @@ global_alloc (file)
Returns -1 (1) if *v1 should be allocated before (after) *v2. */
static
int
allocno_compare
(
v1
,
v2
)
int
*
v1
,
*
v2
;
allocno_compare
(
v1p
,
v2p
)
const
GENERIC_PTR
v1p
;
const
GENERIC_PTR
v2p
;
{
int
v1
=
*
(
int
*
)
v1p
,
v2
=
*
(
int
*
)
v2p
;
/* Note that the quotient will never be bigger than
the value of floor_log2 times the maximum number of
times a register can occur in one insn (surely less than 100).
Multiplying this by 10000 can't overflow. */
register
int
pri1
=
(((
double
)
(
floor_log2
(
allocno_n_refs
[
*
v1
])
*
allocno_n_refs
[
*
v1
])
/
allocno_live_length
[
*
v1
])
*
10000
*
allocno_size
[
*
v1
]);
=
(((
double
)
(
floor_log2
(
allocno_n_refs
[
v1
])
*
allocno_n_refs
[
v1
])
/
allocno_live_length
[
v1
])
*
10000
*
allocno_size
[
v1
]);
register
int
pri2
=
(((
double
)
(
floor_log2
(
allocno_n_refs
[
*
v2
])
*
allocno_n_refs
[
*
v2
])
/
allocno_live_length
[
*
v2
])
*
10000
*
allocno_size
[
*
v2
]);
=
(((
double
)
(
floor_log2
(
allocno_n_refs
[
v2
])
*
allocno_n_refs
[
v2
])
/
allocno_live_length
[
v2
])
*
10000
*
allocno_size
[
v2
]);
if
(
pri2
-
pri1
)
return
pri2
-
pri1
;
/* If regs are equally good, sort by allocno,
so that the results of qsort leave nothing to chance. */
return
*
v1
-
*
v2
;
return
v1
-
v2
;
}
/* Scan the rtl code and record all conflicts and register preferences in the
...
...
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