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
0a326ec9
Commit
0a326ec9
authored
Dec 14, 1999
by
Bernd Schmidt
Committed by
Bernd Schmidt
Dec 14, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Run reg_scan_update to get information about regs created by loop.
From-SVN: r30914
parent
0dc0641b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
2 deletions
+26
-2
gcc/ChangeLog
+8
-0
gcc/loop.c
+18
-2
No files found.
gcc/ChangeLog
View file @
0a326ec9
1999
-
12
-
14
Bernd
Schmidt
<
bernds
@cygnus
.
co
.
uk
>
*
loop
.
c
(
loop_max_reg
)
:
New
static
variable
.
(
loop_optimize
)
:
Initialize
it
.
Eliminate
one
unnecessary
call
to
max_reg_num
.
(
scan_loop
)
:
Call
reg_scan_update
whenever
we
may
have
added
new
registers
,
and
update
loop_max_reg
.
Tue
Dec
14
12
:
07
:
29
MET
1999
Jan
Hubicka
<
hubicka
@freesoft
.
cz
>
*
regclass
.
c
(
record_reg_classes
)
:
Do
not
do
the
copying
preferrencing
...
...
gcc/loop.c
View file @
0a326ec9
...
...
@@ -213,6 +213,9 @@ static int num_mem_sets;
A pseudo has valid regscan info if its number is < max_reg_before_loop. */
int
max_reg_before_loop
;
/* The value to pass to the next call of reg_scan_update. */
static
int
loop_max_reg
;
/* This obstack is used in product_cheap_p to allocate its rtl. It
may call gen_reg_rtx which, in turn, may reallocate regno_reg_rtx.
If we used the same obstack that it did, we would be deallocating
...
...
@@ -467,6 +470,7 @@ loop_optimize (f, dumpfile, unroll_p, bct_p)
init_recog_no_volatile
();
max_reg_before_loop
=
max_reg_num
();
loop_max_reg
=
max_reg_before_loop
;
regs_may_share
=
0
;
...
...
@@ -516,7 +520,7 @@ loop_optimize (f, dumpfile, unroll_p, bct_p)
/* Now find all register lifetimes. This must be done after
find_and_verify_loops, because it might reorder the insns in the
function. */
reg_scan
(
f
,
max_reg_
num
()
,
1
);
reg_scan
(
f
,
max_reg_
before_loop
,
1
);
/* This must occur after reg_scan so that registers created by gcse
will have entries in the register tables.
...
...
@@ -660,7 +664,7 @@ scan_loop (loop_start, end, loop_cont, unroll_p, bct_p)
int
insn_count
;
int
in_libcall
=
0
;
int
tem
;
rtx
temp
;
rtx
temp
,
update_start
,
update_end
;
/* The SET from an insn, if it is the only SET in the insn. */
rtx
set
,
set1
;
/* Chain describing insns movable in current loop. */
...
...
@@ -1178,12 +1182,24 @@ scan_loop (loop_start, end, loop_cont, unroll_p, bct_p)
load_mems_and_recount_loop_regs_set
(
scan_start
,
end
,
loop_top
,
loop_start
,
&
insn_count
);
for
(
update_start
=
loop_start
;
PREV_INSN
(
update_start
)
&&
GET_CODE
(
PREV_INSN
(
update_start
))
!=
CODE_LABEL
;
update_start
=
PREV_INSN
(
update_start
))
;
update_end
=
NEXT_INSN
(
end
);
reg_scan_update
(
update_start
,
update_end
,
loop_max_reg
);
loop_max_reg
=
max_reg_num
();
if
(
flag_strength_reduce
)
{
the_movables
=
movables
;
strength_reduce
(
scan_start
,
end
,
loop_top
,
insn_count
,
loop_start
,
end
,
loop_info
,
loop_cont
,
unroll_p
,
bct_p
);
reg_scan_update
(
update_start
,
update_end
,
loop_max_reg
);
loop_max_reg
=
max_reg_num
();
}
VARRAY_FREE
(
reg_single_usage
);
...
...
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