I write my own link script to put different variables in two different data sections (A & B).

A is linked to zero address; B is linked near to code, and in high address space (higher than 4G, which is not available for normal absolute addressing in x86-64).

A can be accessed through absolute addressing, but not RIP-relative; B can be accessed through RIP-relative addressing, but not absolute;

My question: Is there any way to choose RIP-relative or absolute addressing for different variables in gcc? Perhaps with some annotation like #pragma?

link|improve this question
Why do you want to do this? – Adam Rosenfield Mar 11 '11 at 5:58
Currently we have some code that use section A, and the code only allows absolute addressing. (the code is directly copied from one place to one runtime heap, and be executed) – xingchong Mar 11 '11 at 6:46
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.