3/21 Is there a gcc option to force labels to be outputed and to be
included in the ELF symbol table. I'm trying to profile this
code:
beginloop:
for (i = 0; i < n; i++) {
y[i] = a*x[i] + y[i];
}
endloop:
and so I want gcc -S to produce those labels in the .s file and
for the assembler/linker to add those to the symbol table. I'm
trying to profile this code using a machine simulator that looks
at ELF symbol table code markers for performance simulations. -jefe
\_ I suggest using gcc's extended asm. Say __asm__("beginloop:\n");
instead of beginloop: and then the assembler will add these labels
to the symbol table. If you need them to be global symbols, it's
easy enough to do: __asm__(".globl beginloop\n"); -brg |