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
97ec0ad8
Commit
97ec0ad8
authored
Jan 29, 1999
by
J"orn Rennecke
Committed by
Joern Rennecke
Jan 29, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* loop.c (strength_reduce): Size reg_map according to reg_iv_type.
From-SVN: r24910
parent
4c7f1c63
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
5 deletions
+13
-5
gcc/ChangeLog
+4
-0
gcc/loop.c
+9
-5
No files found.
gcc/ChangeLog
View file @
97ec0ad8
Sat
Jan
30
03
:
24
:
37
1999
J
"orn Rennecke <amylaar@cygnus.co.uk>
* loop.c (strength_reduce): Size reg_map according to reg_iv_type.
Fri Jan 29 18:26:07 1999 Dave Brolley <brolley@cygnus.com>
* emit-rtl.c (remove_insn): New function.
...
...
gcc/loop.c
View file @
97ec0ad8
...
...
@@ -3666,6 +3666,7 @@ strength_reduce (scan_start, end, loop_top, insn_count,
int
threshold
=
(
loop_has_call
?
1
:
2
)
*
(
3
+
n_non_fixed_regs
);
/* Map of pseudo-register replacements. */
rtx
*
reg_map
;
int
reg_map_size
;
int
call_seen
;
rtx
test
;
rtx
end_insert_before
;
...
...
@@ -4419,9 +4420,12 @@ strength_reduce (scan_start, end, loop_top, insn_count,
so that "decrement and branch until zero" insn can be used. */
check_dbra_loop
(
loop_end
,
insn_count
,
loop_start
,
loop_info
);
/* Create reg_map to hold substitutions for replaceable giv regs. */
reg_map
=
(
rtx
*
)
alloca
(
max_reg_before_loop
*
sizeof
(
rtx
));
bzero
((
char
*
)
reg_map
,
max_reg_before_loop
*
sizeof
(
rtx
));
/* Create reg_map to hold substitutions for replaceable giv regs.
Some givs might have been made from biv increments, so look at
reg_iv_type for a suitable size. */
reg_map_size
=
reg_iv_type
->
num_elements
;
reg_map
=
(
rtx
*
)
alloca
(
reg_map_size
*
sizeof
(
rtx
));
bzero
((
char
*
)
reg_map
,
reg_map_size
*
sizeof
(
rtx
));
/* Examine each iv class for feasibility of strength reduction/induction
variable elimination. */
...
...
@@ -4962,8 +4966,8 @@ strength_reduce (scan_start, end, loop_top, insn_count,
if
(
GET_CODE
(
p
)
==
INSN
||
GET_CODE
(
p
)
==
JUMP_INSN
||
GET_CODE
(
p
)
==
CALL_INSN
)
{
replace_regs
(
PATTERN
(
p
),
reg_map
,
max_reg_before_loop
,
0
);
replace_regs
(
REG_NOTES
(
p
),
reg_map
,
max_reg_before_loop
,
0
);
replace_regs
(
PATTERN
(
p
),
reg_map
,
reg_map_size
,
0
);
replace_regs
(
REG_NOTES
(
p
),
reg_map
,
reg_map_size
,
0
);
INSN_CODE
(
p
)
=
-
1
;
}
...
...
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