In http://gcc.gnu.org/ml/gcc/2006-06/msg00533.html, you wrote:
Inserting the nops in the asm code does not work,
because will cause some offets to go out of range.
It should when you adjust the ranges used by gcc to anticipate
the insertion of nops by the assembler.
I need to make the following change to gcc:
- Once every 7 assembler instructions , I need to
generate a nop. ( for each cache block insert a nop
).My whole code (statically linked) needs to have this
so I also need to insert the noops for the entire
libc.
Inserting the nops in the asm code does n