make install always strips, only install-strip target should do
[tinycc.git] / riscv64-link.c
blobdbc3ee448c955e9faec8b66c54ec8f6048011183
1 #ifdef TARGET_DEFS_ONLY
3 #define EM_TCC_TARGET EM_RISCV
5 #define R_DATA_32 R_RISCV_32
6 #define R_DATA_PTR R_RISCV_64
7 #define R_JMP_SLOT R_RISCV_JUMP_SLOT
8 #define R_GLOB_DAT R_RISCV_64
9 #define R_COPY R_RISCV_COPY
10 #define R_RELATIVE R_RISCV_RELATIVE
12 #define R_NUM R_RISCV_NUM
14 #define ELF_START_ADDR 0x00010000
15 #define ELF_PAGE_SIZE 0x1000
17 #define PCRELATIVE_DLLPLT 1
18 #define RELOCATE_DLLPLT 1
20 #else /* !TARGET_DEFS_ONLY */
22 //#define DEBUG_RELOC
23 #include "tcc.h"
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)
29 switch (reloc_type) {
31 case R_RISCV_BRANCH:
32 case R_RISCV_CALL:
33 case R_RISCV_JAL:
34 return 1;
36 case R_RISCV_GOT_HI20:
37 case R_RISCV_PCREL_HI20:
38 case R_RISCV_PCREL_LO12_I:
39 case R_RISCV_PCREL_LO12_S:
40 case R_RISCV_32_PCREL:
41 case R_RISCV_SET6:
42 case R_RISCV_SUB6:
43 case R_RISCV_ADD16:
44 case R_RISCV_ADD32:
45 case R_RISCV_ADD64:
46 case R_RISCV_SUB16:
47 case R_RISCV_SUB32:
48 case R_RISCV_SUB64:
49 case R_RISCV_32:
50 case R_RISCV_64:
51 return 0;
53 case R_RISCV_CALL_PLT:
54 return 1;
56 return -1;
59 /* Returns an enumerator to describe whether and when the relocation needs a
60 GOT and/or PLT entry to be created. See tcc.h for a description of the
61 different values. */
62 int gotplt_entry_type (int reloc_type)
64 switch (reloc_type) {
65 case R_RISCV_ALIGN:
66 case R_RISCV_RELAX:
67 case R_RISCV_RVC_BRANCH:
68 case R_RISCV_RVC_JUMP:
69 case R_RISCV_JUMP_SLOT:
70 case R_RISCV_SET6:
71 case R_RISCV_SUB6:
72 case R_RISCV_ADD16:
73 case R_RISCV_SUB16:
74 return NO_GOTPLT_ENTRY;
76 case R_RISCV_BRANCH:
77 case R_RISCV_CALL:
78 case R_RISCV_PCREL_HI20:
79 case R_RISCV_PCREL_LO12_I:
80 case R_RISCV_PCREL_LO12_S:
81 case R_RISCV_32_PCREL:
82 case R_RISCV_ADD32:
83 case R_RISCV_ADD64:
84 case R_RISCV_SUB32:
85 case R_RISCV_SUB64:
86 case R_RISCV_32:
87 case R_RISCV_64:
88 case R_RISCV_JAL:
89 case R_RISCV_CALL_PLT:
90 return AUTO_GOTPLT_ENTRY;
92 case R_RISCV_GOT_HI20:
93 return ALWAYS_GOTPLT_ENTRY;
95 return -1;
98 ST_FUNC unsigned create_plt_entry(TCCState *s1, unsigned got_offset, struct sym_attr *attr)
100 Section *plt = s1->plt;
101 uint8_t *p;
102 unsigned plt_offset;
104 if (plt->data_offset == 0)
105 section_ptr_add(plt, 32);
106 plt_offset = plt->data_offset;
108 p = section_ptr_add(plt, 16);
109 write64le(p, got_offset);
110 return plt_offset;
113 /* relocate the PLT: compute addresses and offsets in the PLT now that final
114 address for PLT and GOT are known (see fill_program_header) */
115 ST_FUNC void relocate_plt(TCCState *s1)
117 uint8_t *p, *p_end;
119 if (!s1->plt)
120 return;
122 p = s1->plt->data;
123 p_end = p + s1->plt->data_offset;
125 if (p < p_end) {
126 uint64_t plt = s1->plt->sh_addr;
127 uint64_t got = s1->got->sh_addr;
128 uint64_t off = (got - plt + 0x800) >> 12;
129 if ((off + ((uint32_t)1 << 20)) >> 21)
130 tcc_error("Failed relocating PLT (off=0x%lx, got=0x%lx, plt=0x%lx)", (long)off, (long)got, (long)plt);
131 write32le(p, 0x397 | (off << 12)); // auipc t2, %pcrel_hi(got)
132 write32le(p + 4, 0x41c30333); // sub t1, t1, t3
133 write32le(p + 8, 0x0003be03 // ld t3, %pcrel_lo(got)(t2)
134 | (((got - plt) & 0xfff) << 20));
135 write32le(p + 12, 0xfd430313); // addi t1, t1, -(32+12)
136 write32le(p + 16, 0x00038293 // addi t0, t2, %pcrel_lo(got)
137 | (((got - plt) & 0xfff) << 20));
138 write32le(p + 20, 0x00135313); // srli t1, t1, log2(16/PTRSIZE)
139 write32le(p + 24, 0x0082b283); // ld t0, PTRSIZE(t0)
140 write32le(p + 28, 0x000e0067); // jr t3
141 p += 32;
142 while (p < p_end) {
143 uint64_t pc = plt + (p - s1->plt->data);
144 uint64_t addr = got + read64le(p);
145 uint64_t off = (addr - pc + 0x800) >> 12;
146 if ((off + ((uint32_t)1 << 20)) >> 21)
147 tcc_error("Failed relocating PLT (off=0x%lx, addr=0x%lx, pc=0x%lx)", (long)off, (long)addr, (long)pc);
148 write32le(p, 0xe17 | (off << 12)); // auipc t3, %pcrel_hi(func@got)
149 write32le(p + 4, 0x000e3e03 // ld t3, %pcrel_lo(func@got)(t3)
150 | (((addr - pc) & 0xfff) << 20));
151 write32le(p + 8, 0x000e0367); // jalr t1, t3
152 write32le(p + 12, 0x00000013); // nop
153 p += 16;
157 if (s1->got->relocplt) {
158 int mem = s1->output_type == TCC_OUTPUT_MEMORY;
159 ElfW_Rel *rel;
161 p = s1->got->data;
162 for_each_elem(s1->got->relocplt, 0, rel, ElfW_Rel) {
163 int sym_index = ELFW(R_SYM)(rel->r_info);
164 ElfW(Sym) *sym = &((ElfW(Sym) *)symtab_section->data)[sym_index];
165 write64le(p + rel->r_offset, mem ? sym->st_value + rel->r_addend : s1->plt->sh_addr);
170 void relocate(TCCState *s1, ElfW_Rel *rel, int type, unsigned char *ptr,
171 addr_t addr, addr_t val)
173 uint64_t off64;
174 uint32_t off32;
175 int sym_index = ELFW(R_SYM)(rel->r_info), esym_index;
176 ElfW(Sym) *sym = &((ElfW(Sym) *)symtab_section->data)[sym_index];
178 switch(type) {
179 case R_RISCV_ALIGN:
180 case R_RISCV_RELAX:
181 return;
183 case R_RISCV_BRANCH:
184 off64 = val - addr;
185 if ((off64 + (1 << 12)) & ~(uint64_t)0x1ffe)
186 tcc_error("R_RISCV_BRANCH relocation failed"
187 " (val=%lx, addr=%lx)", (long)val, (long)addr);
188 off32 = off64 >> 1;
189 write32le(ptr, (read32le(ptr) & ~0xfe000f80)
190 | ((off32 & 0x800) << 20)
191 | ((off32 & 0x3f0) << 21)
192 | ((off32 & 0x00f) << 8)
193 | ((off32 & 0x400) >> 3));
194 return;
195 case R_RISCV_JAL:
196 off64 = val - addr;
197 if ((off64 + (1 << 21)) & ~(((uint64_t)1 << 22) - 2))
198 tcc_error("R_RISCV_JAL relocation failed"
199 " (val=%lx, addr=%lx)", (long)val, (long)addr);
200 off32 = off64;
201 write32le(ptr, (read32le(ptr) & 0xfff)
202 | (((off32 >> 12) & 0xff) << 12)
203 | (((off32 >> 11) & 1) << 20)
204 | (((off32 >> 1) & 0x3ff) << 21)
205 | (((off32 >> 20) & 1) << 31));
206 return;
207 case R_RISCV_CALL:
208 case R_RISCV_CALL_PLT:
209 write32le(ptr, (read32le(ptr) & 0xfff)
210 | ((val - addr + 0x800) & ~0xfff));
211 write32le(ptr + 4, (read32le(ptr + 4) & 0xfffff)
212 | (((val - addr) & 0xfff) << 20));
213 return;
214 case R_RISCV_PCREL_HI20:
215 #ifdef DEBUG_RELOC
216 printf("PCREL_HI20: val=%lx addr=%lx\n", (long)val, (long)addr);
217 #endif
218 off64 = (int64_t)(val - addr + 0x800) >> 12;
219 if ((off64 + ((uint64_t)1 << 20)) >> 21)
220 tcc_error("R_RISCV_PCREL_HI20 relocation failed: off=%lx cond=%lx sym=%s",
221 (long)off64, (long)((int64_t)(off64 + ((uint64_t)1 << 20)) >> 21),
222 symtab_section->link->data + sym->st_name);
223 write32le(ptr, (read32le(ptr) & 0xfff)
224 | ((off64 & 0xfffff) << 12));
225 last_hi.addr = addr;
226 last_hi.val = val;
227 return;
228 case R_RISCV_GOT_HI20:
229 val = s1->got->sh_addr + get_sym_attr(s1, sym_index, 0)->got_offset;
230 off64 = (int64_t)(val - addr + 0x800) >> 12;
231 if ((off64 + ((uint64_t)1 << 20)) >> 21)
232 tcc_error("R_RISCV_GOT_HI20 relocation failed");
233 last_hi.addr = addr;
234 last_hi.val = val;
235 write32le(ptr, (read32le(ptr) & 0xfff)
236 | ((off64 & 0xfffff) << 12));
237 return;
238 case R_RISCV_PCREL_LO12_I:
239 #ifdef DEBUG_RELOC
240 printf("PCREL_LO12_I: val=%lx addr=%lx\n", (long)val, (long)addr);
241 #endif
242 if (val != last_hi.addr)
243 tcc_error("unsupported hi/lo pcrel reloc scheme");
244 val = last_hi.val;
245 addr = last_hi.addr;
246 write32le(ptr, (read32le(ptr) & 0xfffff)
247 | (((val - addr) & 0xfff) << 20));
248 return;
249 case R_RISCV_PCREL_LO12_S:
250 if (val != last_hi.addr)
251 tcc_error("unsupported hi/lo pcrel reloc scheme");
252 val = last_hi.val;
253 addr = last_hi.addr;
254 off32 = val - addr;
255 write32le(ptr, (read32le(ptr) & ~0xfe000f80)
256 | ((off32 & 0xfe0) << 20)
257 | ((off32 & 0x01f) << 7));
258 return;
260 case R_RISCV_RVC_BRANCH:
261 off64 = (val - addr);
262 if ((off64 + (1 << 8)) & ~(uint64_t)0x1fe)
263 tcc_error("R_RISCV_RVC_BRANCH relocation failed"
264 " (val=%lx, addr=%lx)", (long)val, (long)addr);
265 off32 = off64;
266 write16le(ptr, (read16le(ptr) & 0xe383)
267 | (((off32 >> 5) & 1) << 2)
268 | (((off32 >> 1) & 3) << 3)
269 | (((off32 >> 6) & 3) << 5)
270 | (((off32 >> 3) & 3) << 10)
271 | (((off32 >> 8) & 1) << 12));
272 return;
273 case R_RISCV_RVC_JUMP:
274 off64 = (val - addr);
275 if ((off64 + (1 << 11)) & ~(uint64_t)0xffe)
276 tcc_error("R_RISCV_RVC_BRANCH relocation failed"
277 " (val=%lx, addr=%lx)", (long)val, (long)addr);
278 off32 = off64;
279 write16le(ptr, (read16le(ptr) & 0xe003)
280 | (((off32 >> 5) & 1) << 2)
281 | (((off32 >> 1) & 7) << 3)
282 | (((off32 >> 7) & 1) << 6)
283 | (((off32 >> 6) & 1) << 7)
284 | (((off32 >> 10) & 1) << 8)
285 | (((off32 >> 8) & 3) << 9)
286 | (((off32 >> 4) & 1) << 11)
287 | (((off32 >> 11) & 1) << 12));
288 return;
290 case R_RISCV_32:
291 if (s1->output_type == TCC_OUTPUT_DLL) {
292 /* XXX: this logic may depend on TCC's codegen
293 now TCC uses R_RISCV_RELATIVE even for a 64bit pointer */
294 qrel->r_offset = rel->r_offset;
295 qrel->r_info = ELFW(R_INFO)(0, R_RISCV_RELATIVE);
296 /* Use sign extension! */
297 qrel->r_addend = (int)read32le(ptr) + val;
298 qrel++;
300 add32le(ptr, val);
301 return;
302 case R_RISCV_64:
303 if (s1->output_type == TCC_OUTPUT_DLL) {
304 esym_index = get_sym_attr(s1, sym_index, 0)->dyn_index;
305 qrel->r_offset = rel->r_offset;
306 if (esym_index) {
307 qrel->r_info = ELFW(R_INFO)(esym_index, R_RISCV_64);
308 qrel->r_addend = rel->r_addend;
309 qrel++;
310 break;
311 } else {
312 qrel->r_info = ELFW(R_INFO)(0, R_RISCV_RELATIVE);
313 qrel->r_addend = read64le(ptr) + val;
314 qrel++;
317 case R_RISCV_JUMP_SLOT:
318 add64le(ptr, val);
319 return;
320 case R_RISCV_ADD64:
321 write64le(ptr, read64le(ptr) + val);
322 return;
323 case R_RISCV_ADD32:
324 write32le(ptr, read32le(ptr) + val);
325 return;
326 case R_RISCV_SUB64:
327 write64le(ptr, read64le(ptr) - val);
328 return;
329 case R_RISCV_SUB32:
330 write32le(ptr, read32le(ptr) - val);
331 return;
332 case R_RISCV_ADD16:
333 write16le(ptr, read16le(ptr) + val);
334 return;
335 case R_RISCV_SUB16:
336 write16le(ptr, read16le(ptr) - val);
337 return;
338 case R_RISCV_SET6:
339 *ptr = (*ptr & ~0x3f) | (val & 0x3f);
340 return;
341 case R_RISCV_SUB6:
342 *ptr = (*ptr & ~0x3f) | ((*ptr - val) & 0x3f);
343 return;
345 case R_RISCV_32_PCREL:
346 case R_RISCV_COPY:
347 /* XXX */
348 return;
350 default:
351 fprintf(stderr, "FIXME: handle reloc type %x at %x [%p] to %x\n",
352 type, (unsigned)addr, ptr, (unsigned)val);
353 return;
356 #endif