URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [binutils-2.18.50/] [gas/] [testsuite/] [gas/] [i386/] [tlspic.s] - Rev 856
Go to most recent revision | Compare with Previous | Blame | View Log
.section ".tdata", "awT", @progbits .globl foo foo: .long 25 .text .globl fn .type fn,@function fn: pushl %ebp movl %esp, %ebp pushl %ebx pushl %eax call 1f 1: popl %ebx addl $_GLOBAL_OFFSET_TABLE_+[.-1b], %ebx /* foo can be anywhere in the startup TLS */ movl %gs:0, %eax /* Arbitrary instructions in between. */ addl $0, %esi subl foo@GOTTPOFF(%ebx), %eax /* %eax now contains &foo */ /* Now the GNU sequence. */ movl foo@GOTNTPOFF(%ebx), %eax /* Arbitrary instructions in between. */ addl $0, %esi movl %gs:(%eax), %eax /* %eax now contains foo */ movl %gs:0, %ecx addl foo@GOTNTPOFF(%ebx), %ecx movl -4(%ebp), %ebx leave ret
Go to most recent revision | Compare with Previous | Blame | View Log