diff options
author | Bob Wilson <bob.wilson@acm.org> | 2006-05-15 17:03:15 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@acm.org> | 2006-05-15 17:03:15 +0000 |
commit | 64b607e61b2efa2517a6306df3cf3722175fe9ef (patch) | |
tree | 24ce77d6b578b0f9c171e040acacf1b3d2859e70 /bfd/ChangeLog | |
parent | 19ca80ba578d7849bc921f80339f757f91eb4eae (diff) | |
download | gdb-64b607e61b2efa2517a6306df3cf3722175fe9ef.zip gdb-64b607e61b2efa2517a6306df3cf3722175fe9ef.tar.gz gdb-64b607e61b2efa2517a6306df3cf3722175fe9ef.tar.bz2 |
bfd:
* elf32-xtensa.c (check_loop_aligned): Fix reversed check for
undefined opcode. Clean up assertions.
(narrow_instruction, widen_instruction): Remove "do_it" parameters.
Factor most of the code into separate functions....
(can_narrow_instruction, can_widen_instruction): New.
(prev_instr_is_a_loop): New.
(compute_ebb_proposed_actions): Combine error handling code for
decode errors. Replace call to insn_decode_len with inline code.
Use can_narrow_instruction and can_widen_instruction. Handle errors
from call to xtensa_opcode_is_loop.
(relax_section): Adjust calls to narrow_instruction and
widen_instruction.
gas:
* config/tc-xtensa.c (is_direct_call_opcode, is_branch_jmp_to_next,
xg_assemble_vliw_tokens, xtensa_mark_narrow_branches,
xtensa_fix_short_loop_frags, is_local_forward_loop, relax_frag_immed):
Handle errors from calls to xtensa_opcode_is_* functions.
Diffstat (limited to 'bfd/ChangeLog')
-rw-r--r-- | bfd/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index d5e2c79..16fb6ba 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,19 @@ +2006-05-15 David Heine <dlheine@tensilica.com> + Bob Wilson <bob.wilson@acm.org> + + * elf32-xtensa.c (check_loop_aligned): Fix reversed check for + undefined opcode. Clean up assertions. + (narrow_instruction, widen_instruction): Remove "do_it" parameters. + Factor most of the code into separate functions.... + (can_narrow_instruction, can_widen_instruction): New. + (prev_instr_is_a_loop): New. + (compute_ebb_proposed_actions): Combine error handling code for + decode errors. Replace call to insn_decode_len with inline code. + Use can_narrow_instruction and can_widen_instruction. Handle errors + from call to xtensa_opcode_is_loop. + (relax_section): Adjust calls to narrow_instruction and + widen_instruction. + 2006-05-15 Alan Modra <amodra@bigpond.net.au> PR 2658 |