With this function:
mov 1069833(%rip),%rax # 0x2b5c1bf9ef90 <_fini+3250648>
add %fs:0x0,%rax
retq
How do I interpret the second instruction and find out what was added to RAX?
|
|
This code:
is returning the address of a thread-local variable. This is explained in great detail in Ulrich Drepper's TLS document, specially §4.3 and §4.3.6. |
|||
|
|
|
I'm not sure they've been called segment register since the bad old days of segmented architecture. I believe the proper term is a selector (but I could be wrong). However, I think you just need at the first quadword (64 bits) in the The In terms of getting the actual value, it depends on whether you're in legacy or long mode. In legacy mode, you'll have to get the In long mode, you'll need to look at the relevant model specific registers. If you're at this point, you've moved beyond my level of expertise unfortunately. |
|||||||||||
|