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 #if !defined(ELF_OBJ_ONLY) || defined(TCC_TARGET_MACHO)
26 /* Returns 1 for a code relocation, 0 for a data relocation. For unknown
27 relocations, returns -1. */
28 int code_reloc (int reloc_type
)
34 case R_X86_64_GOTPC32
:
35 case R_X86_64_GOTPC64
:
36 case R_X86_64_GOTPCREL
:
37 case R_X86_64_GOTPCRELX
:
38 case R_X86_64_REX_GOTPCRELX
:
39 case R_X86_64_GOTTPOFF
:
42 case R_X86_64_GLOB_DAT
:
44 case R_X86_64_RELATIVE
:
45 case R_X86_64_GOTOFF64
:
51 case R_X86_64_PLTOFF64
:
52 case R_X86_64_JUMP_SLOT
:
58 /* Returns an enumerator to describe whether and when the relocation needs a
59 GOT and/or PLT entry to be created. See tcc.h for a description of the
61 int gotplt_entry_type (int reloc_type
)
64 case R_X86_64_GLOB_DAT
:
65 case R_X86_64_JUMP_SLOT
:
67 case R_X86_64_RELATIVE
:
68 return NO_GOTPLT_ENTRY
;
70 /* The following relocs wouldn't normally need GOT or PLT
71 slots, but we need them for simplicity in the link
72 editor part. See our caller for comments. */
78 return AUTO_GOTPLT_ENTRY
;
80 case R_X86_64_GOTTPOFF
:
81 return BUILD_GOT_ONLY
;
85 case R_X86_64_GOTPC32
:
86 case R_X86_64_GOTPC64
:
87 case R_X86_64_GOTOFF64
:
88 case R_X86_64_GOTPCREL
:
89 case R_X86_64_GOTPCRELX
:
90 case R_X86_64_REX_GOTPCRELX
:
92 case R_X86_64_PLTOFF64
:
93 return ALWAYS_GOTPLT_ENTRY
;
99 ST_FUNC
unsigned create_plt_entry(TCCState
*s1
, unsigned got_offset
, struct sym_attr
*attr
)
101 Section
*plt
= s1
->plt
;
104 unsigned plt_offset
, relofs
;
108 /* empty PLT: create PLT0 entry that pushes the library identifier
109 (GOT + PTR_SIZE) and jumps to ld.so resolution routine
110 (GOT + 2 * PTR_SIZE) */
111 if (plt
->data_offset
== 0) {
112 p
= section_ptr_add(plt
, 16);
113 p
[0] = 0xff; /* pushl got + PTR_SIZE */
115 write32le(p
+ 2, PTR_SIZE
);
116 p
[6] = 0xff; /* jmp *(got + PTR_SIZE * 2) */
118 write32le(p
+ 8, PTR_SIZE
* 2);
120 plt_offset
= plt
->data_offset
;
122 /* The PLT slot refers to the relocation entry it needs via offset.
123 The reloc entry is created below, so its offset is the current
125 relofs
= s1
->got
->reloc
? s1
->got
->reloc
->data_offset
: 0;
127 /* Jump to GOT entry where ld.so initially put the address of ip + 4 */
128 p
= section_ptr_add(plt
, 16);
129 p
[0] = 0xff; /* jmp *(got + x) */
131 write32le(p
+ 2, got_offset
);
132 p
[6] = 0x68; /* push $xxx */
133 /* On x86-64, the relocation is referred to by _index_ */
134 write32le(p
+ 7, relofs
/ sizeof (ElfW_Rel
));
135 p
[11] = 0xe9; /* jmp plt_start */
136 write32le(p
+ 12, -(plt
->data_offset
));
140 /* relocate the PLT: compute addresses and offsets in the PLT now that final
141 address for PLT and GOT are known (see fill_program_header) */
142 ST_FUNC
void relocate_plt(TCCState
*s1
)
150 p_end
= p
+ s1
->plt
->data_offset
;
153 int x
= s1
->got
->sh_addr
- s1
->plt
->sh_addr
- 6;
155 add32le(p
+ 8, x
- 6);
158 add32le(p
+ 2, x
+ (s1
->plt
->data
- p
));
165 void relocate(TCCState
*s1
, ElfW_Rel
*rel
, int type
, unsigned char *ptr
, addr_t addr
, addr_t val
)
167 int sym_index
, esym_index
;
169 sym_index
= ELFW(R_SYM
)(rel
->r_info
);
173 if (s1
->output_type
== TCC_OUTPUT_DLL
) {
174 esym_index
= get_sym_attr(s1
, sym_index
, 0)->dyn_index
;
175 qrel
->r_offset
= rel
->r_offset
;
177 qrel
->r_info
= ELFW(R_INFO
)(esym_index
, R_X86_64_64
);
178 qrel
->r_addend
= rel
->r_addend
;
182 qrel
->r_info
= ELFW(R_INFO
)(0, R_X86_64_RELATIVE
);
183 qrel
->r_addend
= read64le(ptr
) + val
;
191 if (s1
->output_type
== TCC_OUTPUT_DLL
) {
192 /* XXX: this logic may depend on TCC's codegen
193 now TCC uses R_X86_64_32 even for a 64bit pointer */
194 qrel
->r_offset
= rel
->r_offset
;
195 qrel
->r_info
= ELFW(R_INFO
)(0, R_X86_64_RELATIVE
);
196 /* Use sign extension! */
197 qrel
->r_addend
= (int)read32le(ptr
) + val
;
204 if (s1
->output_type
== TCC_OUTPUT_DLL
) {
206 esym_index
= get_sym_attr(s1
, sym_index
, 0)->dyn_index
;
208 qrel
->r_offset
= rel
->r_offset
;
209 qrel
->r_info
= ELFW(R_INFO
)(esym_index
, R_X86_64_PC32
);
210 /* Use sign extension! */
211 qrel
->r_addend
= (int)read32le(ptr
) + rel
->r_addend
;
219 /* fallthrough: val already holds the PLT slot address */
224 diff
= (long long)val
- addr
;
225 if (diff
< -2147483648LL || diff
> 2147483647LL) {
226 tcc_error("internal error: relocation failed");
232 case R_X86_64_PLTOFF64
:
233 add64le(ptr
, val
- s1
->got
->sh_addr
+ rel
->r_addend
);
237 if (s1
->output_type
== TCC_OUTPUT_DLL
) {
239 esym_index
= get_sym_attr(s1
, sym_index
, 0)->dyn_index
;
241 qrel
->r_offset
= rel
->r_offset
;
242 qrel
->r_info
= ELFW(R_INFO
)(esym_index
, R_X86_64_PC64
);
243 qrel
->r_addend
= read64le(ptr
) + rel
->r_addend
;
248 add64le(ptr
, val
- addr
);
251 case R_X86_64_GLOB_DAT
:
252 case R_X86_64_JUMP_SLOT
:
253 /* They don't need addend */
254 write64le(ptr
, val
- rel
->r_addend
);
256 case R_X86_64_GOTPCREL
:
257 case R_X86_64_GOTPCRELX
:
258 case R_X86_64_REX_GOTPCRELX
:
259 add32le(ptr
, s1
->got
->sh_addr
- addr
+
260 get_sym_attr(s1
, sym_index
, 0)->got_offset
- 4);
262 case R_X86_64_GOTPC32
:
263 add32le(ptr
, s1
->got
->sh_addr
- addr
+ rel
->r_addend
);
265 case R_X86_64_GOTPC64
:
266 add64le(ptr
, s1
->got
->sh_addr
- addr
+ rel
->r_addend
);
268 case R_X86_64_GOTTPOFF
:
269 add32le(ptr
, val
- s1
->got
->sh_addr
);
272 /* we load the got offset */
273 add32le(ptr
, get_sym_attr(s1
, sym_index
, 0)->got_offset
);
276 /* we load the got offset */
277 add64le(ptr
, get_sym_attr(s1
, sym_index
, 0)->got_offset
);
279 case R_X86_64_GOTOFF64
:
280 add64le(ptr
, val
- s1
->got
->sh_addr
);
282 case R_X86_64_RELATIVE
:
284 add32le(ptr
, val
- s1
->pe_imagebase
);
291 #endif /* !TARGET_DEFS_ONLY */