1 #ifdef TARGET_DEFS_ONLY
3 #define EM_TCC_TARGET EM_X86_64
5 /* relocation type for 32 bit data relocation */
6 #define R_DATA_32 R_X86_64_32S
7 #define R_DATA_PTR R_X86_64_64
8 #define R_JMP_SLOT R_X86_64_JUMP_SLOT
9 #define R_GLOB_DAT R_X86_64_GLOB_DAT
10 #define R_COPY R_X86_64_COPY
11 #define R_RELATIVE R_X86_64_RELATIVE
13 #define R_NUM R_X86_64_NUM
15 #define ELF_START_ADDR 0x400000
16 #define ELF_PAGE_SIZE 0x200000
18 #define PCRELATIVE_DLLPLT 1
19 #define RELOCATE_DLLPLT 1
21 #else /* !TARGET_DEFS_ONLY */
25 /* Returns 1 for a code relocation, 0 for a data relocation. For unknown
26 relocations, returns -1. */
27 int code_reloc (int reloc_type
)
33 case R_X86_64_GOTPCREL
:
34 case R_X86_64_GOTPCRELX
:
35 case R_X86_64_REX_GOTPCRELX
:
36 case R_X86_64_GOTTPOFF
:
38 case R_X86_64_GLOB_DAT
:
40 case R_X86_64_RELATIVE
:
45 case R_X86_64_JUMP_SLOT
:
49 tcc_error ("Unknown relocation type: %d", reloc_type
);
53 /* Returns an enumerator to describe whether and when the relocation needs a
54 GOT and/or PLT entry to be created. See tcc.h for a description of the
56 int gotplt_entry_type (int reloc_type
)
59 case R_X86_64_GLOB_DAT
:
60 case R_X86_64_JUMP_SLOT
:
62 case R_X86_64_RELATIVE
:
63 return NO_GOTPLT_ENTRY
;
65 /* The following relocs wouldn't normally need GOT or PLT
66 slots, but we need them for simplicity in the link
67 editor part. See our caller for comments. */
72 return AUTO_GOTPLT_ENTRY
;
74 case R_X86_64_GOTTPOFF
:
75 return BUILD_GOT_ONLY
;
78 case R_X86_64_GOTPCREL
:
79 case R_X86_64_GOTPCRELX
:
80 case R_X86_64_REX_GOTPCRELX
:
82 return ALWAYS_GOTPLT_ENTRY
;
85 tcc_error ("Unknown relocation type: %d", reloc_type
);
89 ST_FUNC
unsigned create_plt_entry(TCCState
*s1
, unsigned got_offset
, struct sym_attr
*attr
)
91 Section
*plt
= s1
->plt
;
94 unsigned plt_offset
, relofs
;
98 /* empty PLT: create PLT0 entry that pushes the library identifier
99 (GOT + PTR_SIZE) and jumps to ld.so resolution routine
100 (GOT + 2 * PTR_SIZE) */
101 if (plt
->data_offset
== 0) {
102 p
= section_ptr_add(plt
, 16);
103 p
[0] = 0xff; /* pushl got + PTR_SIZE */
105 write32le(p
+ 2, PTR_SIZE
);
106 p
[6] = 0xff; /* jmp *(got + PTR_SIZE * 2) */
108 write32le(p
+ 8, PTR_SIZE
* 2);
110 plt_offset
= plt
->data_offset
;
112 /* The PLT slot refers to the relocation entry it needs via offset.
113 The reloc entry is created below, so its offset is the current
115 relofs
= s1
->got
->reloc
? s1
->got
->reloc
->data_offset
: 0;
117 /* Jump to GOT entry where ld.so initially put the address of ip + 4 */
118 p
= section_ptr_add(plt
, 16);
119 p
[0] = 0xff; /* jmp *(got + x) */
121 write32le(p
+ 2, got_offset
);
122 p
[6] = 0x68; /* push $xxx */
123 /* On x86-64, the relocation is referred to by _index_ */
124 write32le(p
+ 7, relofs
/ sizeof (ElfW_Rel
));
125 p
[11] = 0xe9; /* jmp plt_start */
126 write32le(p
+ 12, -(plt
->data_offset
));
130 /* relocate the PLT: compute addresses and offsets in the PLT now that final
131 address for PLT and GOT are known (see fill_program_header) */
132 ST_FUNC
void relocate_plt(TCCState
*s1
)
140 p_end
= p
+ s1
->plt
->data_offset
;
143 int x
= s1
->got
->sh_addr
- s1
->plt
->sh_addr
- 6;
145 add32le(p
+ 8, x
- 6);
148 add32le(p
+ 2, x
+ s1
->plt
->data
- p
);
154 static ElfW_Rel
*qrel
; /* ptr to next reloc entry reused */
156 void relocate_init(Section
*sr
)
158 qrel
= (ElfW_Rel
*) sr
->data
;
161 void relocate(TCCState
*s1
, ElfW_Rel
*rel
, int type
, unsigned char *ptr
, addr_t addr
, addr_t val
)
163 int sym_index
, esym_index
;
165 sym_index
= ELFW(R_SYM
)(rel
->r_info
);
169 if (s1
->output_type
== TCC_OUTPUT_DLL
) {
170 esym_index
= s1
->sym_attrs
[sym_index
].dyn_index
;
171 qrel
->r_offset
= rel
->r_offset
;
173 qrel
->r_info
= ELFW(R_INFO
)(esym_index
, R_X86_64_64
);
174 qrel
->r_addend
= rel
->r_addend
;
178 qrel
->r_info
= ELFW(R_INFO
)(0, R_X86_64_RELATIVE
);
179 qrel
->r_addend
= read64le(ptr
) + val
;
187 if (s1
->output_type
== TCC_OUTPUT_DLL
) {
188 /* XXX: this logic may depend on TCC's codegen
189 now TCC uses R_X86_64_32 even for a 64bit pointer */
190 qrel
->r_info
= ELFW(R_INFO
)(0, R_X86_64_RELATIVE
);
191 /* Use sign extension! */
192 qrel
->r_addend
= (int)read32le(ptr
) + val
;
199 if (s1
->output_type
== TCC_OUTPUT_DLL
) {
201 esym_index
= s1
->sym_attrs
[sym_index
].dyn_index
;
203 qrel
->r_offset
= rel
->r_offset
;
204 qrel
->r_info
= ELFW(R_INFO
)(esym_index
, R_X86_64_PC32
);
205 /* Use sign extension! */
206 qrel
->r_addend
= (int)read32le(ptr
) + rel
->r_addend
;
214 /* fallthrough: val already holds the PLT slot address */
219 diff
= (long long)val
- addr
;
220 if (diff
< -2147483648LL || diff
> 2147483647LL) {
221 tcc_error("internal error: relocation failed");
226 case R_X86_64_GLOB_DAT
:
227 case R_X86_64_JUMP_SLOT
:
228 /* They don't need addend */
229 write64le(ptr
, val
- rel
->r_addend
);
231 case R_X86_64_GOTPCREL
:
232 case R_X86_64_GOTPCRELX
:
233 case R_X86_64_REX_GOTPCRELX
:
234 add32le(ptr
, s1
->got
->sh_addr
- addr
+
235 s1
->sym_attrs
[sym_index
].got_offset
- 4);
237 case R_X86_64_GOTTPOFF
:
238 add32le(ptr
, val
- s1
->got
->sh_addr
);
241 /* we load the got offset */
242 add32le(ptr
, s1
->sym_attrs
[sym_index
].got_offset
);
244 case R_X86_64_RELATIVE
:
250 #endif /* !TARGET_DEFS_ONLY */