diff options
author | Alan Modra <amodra@gmail.com> | 2008-04-01 23:52:00 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2008-04-01 23:52:00 +0000 |
commit | 055ed83b935c1540974772b722d8bdcfb131dee7 (patch) | |
tree | af6d33405b547fc175eaf91363d35fa2e4389840 /bfd/ChangeLog | |
parent | 2fd0a91741a7b9fbf55302bec4450a7d5c2de236 (diff) | |
download | gdb-055ed83b935c1540974772b722d8bdcfb131dee7.zip gdb-055ed83b935c1540974772b722d8bdcfb131dee7.tar.gz gdb-055ed83b935c1540974772b722d8bdcfb131dee7.tar.bz2 |
* elf32-spu.c (insert_callee): Reorder call list so most recent
call is always first.
(interesting_section): Move.
(mark_functions_via_relocs): Fold interesting_section and
reloc_count tests in callers to here. Simplify output section
owner test.
(discover_functions): Set "gaps" when no symbols and some
"interesting_section". Run pasted_function loop for no symbol
bfds.
(for_each_node, transfer_calls): New functions.
(mark_non_root): Adjust to suit for_each_node.
(call_graph_traverse): Likewise. Fix memory leak. Rename to..
(remove_cycles): ..this.
(build_call_tree): Use for_each_node and transfer_calls.
(struct _sum_stack_param): New.
(sum_stack): Adjust to suit for_each_node. Return error on
malloc failure. Move code to print root node cumulative stack from..
(spu_elf_stack_analysis): ..here. Use for_each_node.
Diffstat (limited to 'bfd/ChangeLog')
-rw-r--r-- | bfd/ChangeLog | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 2b029bb..a35fe28 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,24 @@ +2008-04-02 Alan Modra <amodra@bigpond.net.au> + + * elf32-spu.c (insert_callee): Reorder call list so most recent + call is always first. + (interesting_section): Move. + (mark_functions_via_relocs): Fold interesting_section and + reloc_count tests in callers to here. Simplify output section + owner test. + (discover_functions): Set "gaps" when no symbols and some + "interesting_section". Run pasted_function loop for no symbol + bfds. + (for_each_node, transfer_calls): New functions. + (mark_non_root): Adjust to suit for_each_node. + (call_graph_traverse): Likewise. Fix memory leak. Rename to.. + (remove_cycles): ..this. + (build_call_tree): Use for_each_node and transfer_calls. + (struct _sum_stack_param): New. + (sum_stack): Adjust to suit for_each_node. Return error on + malloc failure. Move code to print root node cumulative stack from.. + (spu_elf_stack_analysis): ..here. Use for_each_node. + 2008-03-31 Cary Coutant <ccoutant@google.com> PR 6006 |