Berkeley CSUA MOTD:Entry 17822
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/04/04 [General] UID:1000 Activity:popular
4/4     

2000/3/22-23 [Computer/SW/Compilers, Computer/SW/Languages/Misc] UID:17822 Activity:nil
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
2025/04/04 [General] UID:1000 Activity:popular
4/4     

You may also be interested in these entries...
2010/12/11-2011/2/19 [Computer/SW/Languages/Perl] UID:53984 Activity:nil
12/11   Anyone have experience with Perl PDF::API2 or PDF::API3?  Can you
        point me to a good tutorial for creating a simple document (a small
        table of 2-3 rows and a single image)?
	...
2010/7/21-8/9 [Computer/SW/OS/FreeBSD] UID:53890 Activity:nil
7/21    Can I just use ifconfig to expand my netmask on a FreeBSD box?
        Are there any gotchas here? Linux forces me to restart my network
        to expand my netmask.
        \_ yes... and no, you don't have to restart your network on linux either
           \_ Rebooting is the Ubootntoo way!
              \_ Oooboot'n'tootin!
	...