ppc476 icache workaround fix for bctr
authorAlan Modra <amodra@gmail.com>
Sat, 5 Apr 2014 07:25:13 +0000 (17:55 +1030)
committerAlan Modra <amodra@gmail.com>
Tue, 8 Apr 2014 21:37:06 +0000 (07:07 +0930)
commitb4ab4364239efcf0cec74e89a85d844d628138c0
tree926ab41676f2482a78260bc59758606a53e4d1f3
parent9c97a0704e03c662b6afd92032c171fe6714b42d
ppc476 icache workaround fix for bctr

I got the ppc476 workaround wrong.  bctr (and bctrl) as the last
instruction in a page can hit the icache bug if the preceding mtctr
insn is close by, and the destination is in the first few instructions
on the next page.  This scenario can occur with code generated by gcc
to implement switch statements, or in code generated to call by
function pointer.

To prevent the bctr problem it is also necessary to remove other
instructions that otherwise would be safe.

bfd/
* elf32-ppc.c (ppc_elf_relocate_section): Remove bctr from list
of safe ppc476 insns at end of page.  Also remove non-branch insns.
Expand comments.
ld/
* emultempl/ppc32elf.em (no_zero_padding, ppc_finish): New functions.
(LDEMUL_FINISH): Define.
bfd/ChangeLog
bfd/elf32-ppc.c
ld/ChangeLog
ld/emultempl/ppc32elf.em