1 #ifdef TARGET_DEFS_ONLY
3 #define EM_TCC_TARGET EM_AARCH64
5 #define R_DATA_32 R_AARCH64_ABS32
6 #define R_DATA_PTR R_AARCH64_ABS64
7 #define R_JMP_SLOT R_AARCH64_JUMP_SLOT
8 #define R_GLOB_DAT R_AARCH64_GLOB_DAT
9 #define R_COPY R_AARCH64_COPY
10 #define R_RELATIVE R_AARCH64_RELATIVE
12 #define R_NUM R_AARCH64_NUM
14 #define ELF_START_ADDR 0x00400000
15 #define ELF_PAGE_SIZE 0x10000
17 #define PCRELATIVE_DLLPLT 1
18 #define RELOCATE_DLLPLT 1
20 #else /* !TARGET_DEFS_ONLY */
24 #ifdef NEED_RELOC_TYPE
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
)
32 case R_AARCH64_PREL32
:
33 case R_AARCH64_MOVW_UABS_G0_NC
:
34 case R_AARCH64_MOVW_UABS_G1_NC
:
35 case R_AARCH64_MOVW_UABS_G2_NC
:
36 case R_AARCH64_MOVW_UABS_G3
:
37 case R_AARCH64_ADR_PREL_PG_HI21
:
38 case R_AARCH64_ADD_ABS_LO12_NC
:
39 case R_AARCH64_ADR_GOT_PAGE
:
40 case R_AARCH64_LD64_GOT_LO12_NC
:
41 case R_AARCH64_LDST128_ABS_LO12_NC
:
42 case R_AARCH64_LDST64_ABS_LO12_NC
:
43 case R_AARCH64_LDST32_ABS_LO12_NC
:
44 case R_AARCH64_LDST16_ABS_LO12_NC
:
45 case R_AARCH64_LDST8_ABS_LO12_NC
:
46 case R_AARCH64_GLOB_DAT
:
50 case R_AARCH64_JUMP26
:
51 case R_AARCH64_CALL26
:
52 case R_AARCH64_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_AARCH64_PREL32
:
65 case R_AARCH64_MOVW_UABS_G0_NC
:
66 case R_AARCH64_MOVW_UABS_G1_NC
:
67 case R_AARCH64_MOVW_UABS_G2_NC
:
68 case R_AARCH64_MOVW_UABS_G3
:
69 case R_AARCH64_ADR_PREL_PG_HI21
:
70 case R_AARCH64_ADD_ABS_LO12_NC
:
71 case R_AARCH64_LDST128_ABS_LO12_NC
:
72 case R_AARCH64_LDST64_ABS_LO12_NC
:
73 case R_AARCH64_LDST32_ABS_LO12_NC
:
74 case R_AARCH64_LDST16_ABS_LO12_NC
:
75 case R_AARCH64_LDST8_ABS_LO12_NC
:
76 case R_AARCH64_GLOB_DAT
:
77 case R_AARCH64_JUMP_SLOT
:
79 return NO_GOTPLT_ENTRY
;
83 case R_AARCH64_JUMP26
:
84 case R_AARCH64_CALL26
:
85 return AUTO_GOTPLT_ENTRY
;
87 case R_AARCH64_ADR_GOT_PAGE
:
88 case R_AARCH64_LD64_GOT_LO12_NC
:
89 return ALWAYS_GOTPLT_ENTRY
;
95 ST_FUNC
unsigned create_plt_entry(TCCState
*s1
, unsigned got_offset
, struct sym_attr
*attr
)
97 Section
*plt
= s1
->plt
;
101 if (plt
->data_offset
== 0) {
102 section_ptr_add(plt
, 32);
104 plt_offset
= plt
->data_offset
;
106 p
= section_ptr_add(plt
, 16);
107 write32le(p
, got_offset
);
108 write32le(p
+ 4, (uint64_t) got_offset
>> 32);
112 /* relocate the PLT: compute addresses and offsets in the PLT now that final
113 address for PLT and GOT are known (see fill_program_header) */
114 ST_FUNC
void relocate_plt(TCCState
*s1
)
122 p_end
= p
+ s1
->plt
->data_offset
;
125 uint64_t plt
= s1
->plt
->sh_addr
;
126 uint64_t got
= s1
->got
->sh_addr
+ 16;
127 uint64_t off
= (got
>> 12) - (plt
>> 12);
128 if ((off
+ ((uint32_t)1 << 20)) >> 21)
129 tcc_error("Failed relocating PLT (off=0x%lx, got=0x%lx, plt=0x%lx)", (long)off
, (long)got
, (long)plt
);
130 write32le(p
, 0xa9bf7bf0); // stp x16,x30,[sp,#-16]!
131 write32le(p
+ 4, (0x90000010 | // adrp x16,...
132 (off
& 0x1ffffc) << 3 | (off
& 3) << 29));
133 write32le(p
+ 8, (0xf9400211 | // ldr x17,[x16,#...]
134 (got
& 0xff8) << 7));
135 write32le(p
+ 12, (0x91000210 | // add x16,x16,#...
136 (got
& 0xfff) << 10));
137 write32le(p
+ 16, 0xd61f0220); // br x17
138 write32le(p
+ 20, 0xd503201f); // nop
139 write32le(p
+ 24, 0xd503201f); // nop
140 write32le(p
+ 28, 0xd503201f); // nop
142 got
= s1
->got
->sh_addr
;
144 uint64_t pc
= plt
+ (p
- s1
->plt
->data
);
145 uint64_t addr
= got
+ read64le(p
);
146 uint64_t off
= (addr
>> 12) - (pc
>> 12);
147 if ((off
+ ((uint32_t)1 << 20)) >> 21)
148 tcc_error("Failed relocating PLT (off=0x%lx, addr=0x%lx, pc=0x%lx)", (long)off
, (long)addr
, (long)pc
);
149 write32le(p
, (0x90000010 | // adrp x16,...
150 (off
& 0x1ffffc) << 3 | (off
& 3) << 29));
151 write32le(p
+ 4, (0xf9400211 | // ldr x17,[x16,#...]
152 (addr
& 0xff8) << 7));
153 write32le(p
+ 8, (0x91000210 | // add x16,x16,#...
154 (addr
& 0xfff) << 10));
155 write32le(p
+ 12, 0xd61f0220); // br x17
160 if (s1
->plt
->reloc
) {
163 for_each_elem(s1
->plt
->reloc
, 0, rel
, ElfW_Rel
) {
164 write64le(p
+ rel
->r_offset
, s1
->plt
->sh_addr
);
171 void relocate(TCCState
*s1
, ElfW_Rel
*rel
, int type
, unsigned char *ptr
, addr_t addr
, addr_t val
)
173 int sym_index
= ELFW(R_SYM
)(rel
->r_info
), esym_index
;
175 ElfW(Sym
) *sym
= &((ElfW(Sym
) *)symtab_section
->data
)[sym_index
];
179 case R_AARCH64_ABS64
:
180 if ((s1
->output_type
& TCC_OUTPUT_DYN
)) {
181 esym_index
= get_sym_attr(s1
, sym_index
, 0)->dyn_index
;
182 qrel
->r_offset
= rel
->r_offset
;
184 qrel
->r_info
= ELFW(R_INFO
)(esym_index
, R_AARCH64_ABS64
);
185 qrel
->r_addend
= rel
->r_addend
;
189 qrel
->r_info
= ELFW(R_INFO
)(0, R_AARCH64_RELATIVE
);
190 qrel
->r_addend
= read64le(ptr
) + val
;
196 case R_AARCH64_ABS32
:
197 if (s1
->output_type
& TCC_OUTPUT_DYN
) {
198 /* XXX: this logic may depend on TCC's codegen
199 now TCC uses R_AARCH64_RELATIVE even for a 64bit pointer */
200 qrel
->r_offset
= rel
->r_offset
;
201 qrel
->r_info
= ELFW(R_INFO
)(0, R_AARCH64_RELATIVE
);
202 /* Use sign extension! */
203 qrel
->r_addend
= (int)read32le(ptr
) + val
;
208 case R_AARCH64_PREL32
:
209 if (s1
->output_type
== TCC_OUTPUT_DLL
) {
211 esym_index
= get_sym_attr(s1
, sym_index
, 0)->dyn_index
;
213 qrel
->r_offset
= rel
->r_offset
;
214 qrel
->r_info
= ELFW(R_INFO
)(esym_index
, R_AARCH64_PREL32
);
215 /* Use sign extension! */
216 qrel
->r_addend
= (int)read32le(ptr
) + rel
->r_addend
;
221 write32le(ptr
, val
- addr
);
223 case R_AARCH64_MOVW_UABS_G0_NC
:
224 write32le(ptr
, ((read32le(ptr
) & 0xffe0001f) |
225 (val
& 0xffff) << 5));
227 case R_AARCH64_MOVW_UABS_G1_NC
:
228 write32le(ptr
, ((read32le(ptr
) & 0xffe0001f) |
229 (val
>> 16 & 0xffff) << 5));
231 case R_AARCH64_MOVW_UABS_G2_NC
:
232 write32le(ptr
, ((read32le(ptr
) & 0xffe0001f) |
233 (val
>> 32 & 0xffff) << 5));
235 case R_AARCH64_MOVW_UABS_G3
:
236 write32le(ptr
, ((read32le(ptr
) & 0xffe0001f) |
237 (val
>> 48 & 0xffff) << 5));
239 case R_AARCH64_ADR_PREL_PG_HI21
: {
240 uint64_t off
= (val
>> 12) - (addr
>> 12);
241 if ((off
+ ((uint64_t)1 << 20)) >> 21)
242 tcc_error("R_AARCH64_ADR_PREL_PG_HI21 relocation failed");
243 write32le(ptr
, ((read32le(ptr
) & 0x9f00001f) |
244 (off
& 0x1ffffc) << 3 | (off
& 3) << 29));
247 case R_AARCH64_ADD_ABS_LO12_NC
:
248 case R_AARCH64_LDST8_ABS_LO12_NC
:
249 write32le(ptr
, ((read32le(ptr
) & 0xffc003ff) |
250 (val
& 0xfff) << 10));
252 case R_AARCH64_LDST16_ABS_LO12_NC
:
253 write32le(ptr
, ((read32le(ptr
) & 0xffc003ff) |
254 (val
& 0xffe) << 9));
256 case R_AARCH64_LDST32_ABS_LO12_NC
:
257 write32le(ptr
, ((read32le(ptr
) & 0xffc003ff) |
258 (val
& 0xffc) << 8));
260 case R_AARCH64_LDST64_ABS_LO12_NC
:
261 write32le(ptr
, ((read32le(ptr
) & 0xffc003ff) |
262 (val
& 0xff8) << 7));
264 case R_AARCH64_LDST128_ABS_LO12_NC
:
265 write32le(ptr
, ((read32le(ptr
) & 0xffc003ff) |
266 (val
& 0xff0) << 6));
268 case R_AARCH64_JUMP26
:
269 case R_AARCH64_CALL26
:
271 printf ("reloc %d @ 0x%lx: val=0x%lx name=%s\n", type
, addr
, val
,
272 (char *) symtab_section
->link
->data
+ sym
->st_name
);
274 if (((val
- addr
) + ((uint64_t)1 << 27)) & ~(uint64_t)0xffffffc)
275 tcc_error("R_AARCH64_(JUMP|CALL)26 relocation failed"
276 " (val=%lx, addr=%lx)", (long)val
, (long)addr
);
277 write32le(ptr
, (0x14000000 |
278 (uint32_t)(type
== R_AARCH64_CALL26
) << 31 |
279 ((val
- addr
) >> 2 & 0x3ffffff)));
281 case R_AARCH64_ADR_GOT_PAGE
: {
283 (((s1
->got
->sh_addr
+
284 get_sym_attr(s1
, sym_index
, 0)->got_offset
) >> 12) - (addr
>> 12));
285 if ((off
+ ((uint64_t)1 << 20)) >> 21)
286 tcc_error("R_AARCH64_ADR_GOT_PAGE relocation failed");
287 write32le(ptr
, ((read32le(ptr
) & 0x9f00001f) |
288 (off
& 0x1ffffc) << 3 | (off
& 3) << 29));
291 case R_AARCH64_LD64_GOT_LO12_NC
:
293 ((read32le(ptr
) & 0xfff803ff) |
295 get_sym_attr(s1
, sym_index
, 0)->got_offset
) & 0xff8) << 7));
299 case R_AARCH64_GLOB_DAT
:
300 case R_AARCH64_JUMP_SLOT
:
301 /* They don't need addend */
303 printf ("reloc %d @ 0x%lx: val=0x%lx name=%s\n", type
, addr
,
305 (char *) symtab_section
->link
->data
+ sym
->st_name
);
307 write64le(ptr
, val
- rel
->r_addend
);
309 case R_AARCH64_RELATIVE
:
311 add32le(ptr
, val
- s1
->pe_imagebase
);
316 fprintf(stderr
, "FIXME: handle reloc type %x at %x [%p] to %x\n",
317 type
, (unsigned)addr
, ptr
, (unsigned)val
);
322 #endif /* !TARGET_DEFS_ONLY */