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
40513dd3
Commit
40513dd3
authored
Nov 30, 2009
by
Jakub Jelinek
Committed by
Jakub Jelinek
Nov 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ipa-reference.c (propagate): Only dump bitmaps if computed.
From-SVN: r154818
parent
c5fdd4ad
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
14 deletions
+19
-14
gcc/ChangeLog
+4
-0
gcc/ipa-reference.c
+15
-14
No files found.
gcc/ChangeLog
View file @
40513dd3
2009
-
11
-
30
Jakub
Jelinek
<
jakub
@
redhat
.
com
>
*
ipa
-
reference
.
c
(
propagate
):
Only
dump
bitmaps
if
computed
.
2009
-
11
-
30
Olga
Golovanevsky
<
olga
@
il
.
ibm
.
com
>
2009
-
11
-
30
Olga
Golovanevsky
<
olga
@
il
.
ibm
.
com
>
PR
middle
-
end
/
39806
PR
middle
-
end
/
39806
gcc/ipa-reference.c
View file @
40513dd3
...
@@ -1389,22 +1389,23 @@ propagate (void)
...
@@ -1389,22 +1389,23 @@ propagate (void)
ipa_reference_local_vars_info_t
w_l
=
w_ri
->
local
;
ipa_reference_local_vars_info_t
w_l
=
w_ri
->
local
;
fprintf
(
dump_file
,
"
\n
next cycle: %s/%i "
,
fprintf
(
dump_file
,
"
\n
next cycle: %s/%i "
,
cgraph_node_name
(
w
),
w
->
uid
);
cgraph_node_name
(
w
),
w
->
uid
);
fprintf
(
dump_file
,
"
\n
locals read: "
);
fprintf
(
dump_file
,
"
\n
locals read: "
);
EXECUTE_IF_SET_IN_BITMAP
(
w_l
->
statics_read
,
if
(
w_l
->
statics_read
)
0
,
index
,
bi
)
EXECUTE_IF_SET_IN_BITMAP
(
w_l
->
statics_read
,
{
0
,
index
,
bi
)
fprintf
(
dump_file
,
"%s "
,
{
get_static_name
(
index
));
fprintf
(
dump_file
,
"%s "
,
}
get_static_name
(
index
));
}
fprintf
(
dump_file
,
"
\n
locals written: "
);
fprintf
(
dump_file
,
"
\n
locals written: "
);
EXECUTE_IF_SET_IN_BITMAP
(
w_l
->
statics_written
,
if
(
w_l
->
statics_written
)
0
,
index
,
bi
)
EXECUTE_IF_SET_IN_BITMAP
(
w_l
->
statics_written
,
{
0
,
index
,
bi
)
fprintf
(
dump_file
,
"%s "
,
{
get_static_name
(
index
));
fprintf
(
dump_file
,
"%s "
,
}
get_static_name
(
index
));
}
w_info
=
(
struct
ipa_dfs_info
*
)
w
->
aux
;
w_info
=
(
struct
ipa_dfs_info
*
)
w
->
aux
;
w
=
w_info
->
next_cycle
;
w
=
w_info
->
next_cycle
;
...
...
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