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 */
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
)
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
:
53 case R_RISCV_CALL_PLT
:
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
62 int gotplt_entry_type (int reloc_type
)
67 case R_RISCV_RVC_BRANCH
:
68 case R_RISCV_RVC_JUMP
:
69 case R_RISCV_JUMP_SLOT
:
74 return NO_GOTPLT_ENTRY
;
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
:
89 case R_RISCV_CALL_PLT
:
90 return AUTO_GOTPLT_ENTRY
;
92 case R_RISCV_GOT_HI20
:
93 return ALWAYS_GOTPLT_ENTRY
;
98 ST_FUNC
unsigned create_plt_entry(TCCState
*s1
, unsigned got_offset
, struct sym_attr
*attr
)
100 Section
*plt
= s1
->plt
;
104 if (s1
->output_type
== TCC_OUTPUT_DLL
)
105 tcc_error("DLLs unimplemented!");
107 if (plt
->data_offset
== 0)
108 section_ptr_add(plt
, 32);
109 plt_offset
= plt
->data_offset
;
111 p
= section_ptr_add(plt
, 16);
112 write64le(p
, got_offset
);
116 /* relocate the PLT: compute addresses and offsets in the PLT now that final
117 address for PLT and GOT are known (see fill_program_header) */
118 ST_FUNC
void relocate_plt(TCCState
*s1
)
126 p_end
= p
+ s1
->plt
->data_offset
;
129 uint64_t plt
= s1
->plt
->sh_addr
;
130 uint64_t got
= s1
->got
->sh_addr
;
131 uint64_t off
= (got
- plt
+ 0x800) >> 12;
132 if ((off
+ ((uint32_t)1 << 20)) >> 21)
133 tcc_error("Failed relocating PLT (off=0x%lx, got=0x%lx, plt=0x%lx)", off
, got
, plt
);
134 write32le(p
, 0x397 | (off
<< 12)); // auipc t2, %pcrel_hi(got)
135 write32le(p
+ 4, 0x41c30333); // sub t1, t1, t3
136 write32le(p
+ 8, 0x0003be03 // ld t3, %pcrel_lo(got)(t2)
137 | (((got
- plt
) & 0xfff) << 20));
138 write32le(p
+ 12, 0xfd430313); // addi t1, t1, -(32+12)
139 write32le(p
+ 16, 0x00038293 // addi t0, t2, %pcrel_lo(got)
140 | (((got
- plt
) & 0xfff) << 20));
141 write32le(p
+ 20, 0x00135313); // srli t1, t1, log2(16/PTRSIZE)
142 write32le(p
+ 24, 0x0082b283); // ld t0, PTRSIZE(t0)
143 write32le(p
+ 28, 0x000e0067); // jr t3
146 uint64_t pc
= plt
+ (p
- s1
->plt
->data
);
147 uint64_t addr
= got
+ read64le(p
);
148 uint64_t off
= (addr
- pc
+ 0x800) >> 12;
149 if ((off
+ ((uint32_t)1 << 20)) >> 21)
150 tcc_error("Failed relocating PLT (off=0x%lx, addr=0x%lx, pc=0x%lx)", off
, addr
, pc
);
151 write32le(p
, 0xe17 | (off
<< 12)); // auipc t3, %pcrel_hi(func@got)
152 write32le(p
+ 4, 0x000e3e03 // ld t3, %pcrel_lo(func@got)(t3)
153 | (((addr
- pc
) & 0xfff) << 20));
154 write32le(p
+ 8, 0x000e0367); // jalr t1, t3
155 write32le(p
+ 12, 0x00000013); // nop
164 static struct pcrel_hi last_hi
;
166 void relocate(TCCState
*s1
, ElfW_Rel
*rel
, int type
, unsigned char *ptr
,
167 addr_t addr
, addr_t val
)
171 int sym_index
= ELFW(R_SYM
)(rel
->r_info
);
172 ElfW(Sym
) *sym
= &((ElfW(Sym
) *)symtab_section
->data
)[sym_index
];
181 if ((off64
+ (1 << 12)) & ~(uint64_t)0x1ffe)
182 tcc_error("R_RISCV_BRANCH relocation failed"
183 " (val=%lx, addr=%lx)", val
, addr
);
185 write32le(ptr
, (read32le(ptr
) & ~0xfe000f80)
186 | ((off32
& 0x800) << 20)
187 | ((off32
& 0x3f0) << 21)
188 | ((off32
& 0x00f) << 8)
189 | ((off32
& 0x400) >> 3));
193 if ((off64
+ (1 << 21)) & ~(((uint64_t)1 << 22) - 2))
194 tcc_error("R_RISCV_JAL relocation failed"
195 " (val=%lx, addr=%lx)", val
, addr
);
197 write32le(ptr
, (read32le(ptr
) & 0xfff)
198 | (((off32
>> 12) & 0xff) << 12)
199 | (((off32
>> 11) & 1) << 20)
200 | (((off32
>> 1) & 0x3ff) << 21)
201 | (((off32
>> 20) & 1) << 31));
204 case R_RISCV_CALL_PLT
:
205 write32le(ptr
, (read32le(ptr
) & 0xfff)
206 | ((val
- addr
+ 0x800) & ~0xfff));
207 write32le(ptr
+ 4, (read32le(ptr
+ 4) & 0xfffff)
208 | (((val
- addr
) & 0xfff) << 20));
210 case R_RISCV_PCREL_HI20
:
212 printf("PCREL_HI20: val=%lx addr=%lx\n", val
, addr
);
214 off64
= (int64_t)(val
- addr
+ 0x800) >> 12;
215 if ((off64
+ ((uint64_t)1 << 20)) >> 21)
216 tcc_error("R_RISCV_PCREL_HI20 relocation failed: off=%lx cond=%lx sym=%s",
217 off64
, ((int64_t)(off64
+ ((uint64_t)1 << 20)) >> 21),
218 symtab_section
->link
->data
+ sym
->st_name
);
219 write32le(ptr
, (read32le(ptr
) & 0xfff)
220 | ((off64
& 0xfffff) << 12));
224 case R_RISCV_GOT_HI20
:
225 val
= s1
->got
->sh_addr
+ get_sym_attr(s1
, sym_index
, 0)->got_offset
;
226 off64
= (int64_t)(val
- addr
+ 0x800) >> 12;
227 if ((off64
+ ((uint64_t)1 << 20)) >> 21)
228 tcc_error("R_RISCV_GOT_HI20 relocation failed");
231 write32le(ptr
, (read32le(ptr
) & 0xfff)
232 | ((off64
& 0xfffff) << 12));
234 case R_RISCV_PCREL_LO12_I
:
236 printf("PCREL_LO12_I: val=%lx addr=%lx\n", val
, addr
);
238 if (val
!= last_hi
.addr
)
239 tcc_error("unsupported hi/lo pcrel reloc scheme");
242 write32le(ptr
, (read32le(ptr
) & 0xfffff)
243 | (((val
- addr
) & 0xfff) << 20));
245 case R_RISCV_PCREL_LO12_S
:
246 if (val
!= last_hi
.addr
)
247 tcc_error("unsupported hi/lo pcrel reloc scheme");
251 write32le(ptr
, (read32le(ptr
) & ~0xfe000f80)
252 | ((off32
& 0xfe0) << 20)
253 | ((off32
& 0x01f) << 7));
256 case R_RISCV_RVC_BRANCH
:
257 off64
= (val
- addr
);
258 if ((off64
+ (1 << 8)) & ~(uint64_t)0x1fe)
259 tcc_error("R_RISCV_RVC_BRANCH relocation failed"
260 " (val=%lx, addr=%lx)", val
, addr
);
262 write16le(ptr
, (read16le(ptr
) & 0xe383)
263 | (((off32
>> 5) & 1) << 2)
264 | (((off32
>> 1) & 3) << 3)
265 | (((off32
>> 6) & 3) << 5)
266 | (((off32
>> 3) & 3) << 10)
267 | (((off32
>> 8) & 1) << 12));
269 case R_RISCV_RVC_JUMP
:
270 off64
= (val
- addr
);
271 if ((off64
+ (1 << 11)) & ~(uint64_t)0xffe)
272 tcc_error("R_RISCV_RVC_BRANCH relocation failed"
273 " (val=%lx, addr=%lx)", val
, addr
);
275 write16le(ptr
, (read16le(ptr
) & 0xe003)
276 | (((off32
>> 5) & 1) << 2)
277 | (((off32
>> 1) & 7) << 3)
278 | (((off32
>> 7) & 1) << 6)
279 | (((off32
>> 6) & 1) << 7)
280 | (((off32
>> 10) & 1) << 8)
281 | (((off32
>> 8) & 3) << 9)
282 | (((off32
>> 4) & 1) << 11)
283 | (((off32
>> 11) & 1) << 12));
289 case R_RISCV_JUMP_SLOT
:
294 write64le(ptr
, read64le(ptr
) + val
);
297 write32le(ptr
, read32le(ptr
) + val
);
300 write64le(ptr
, read64le(ptr
) - val
);
303 write32le(ptr
, read32le(ptr
) - val
);
306 write16le(ptr
, read16le(ptr
) + val
);
309 write16le(ptr
, read16le(ptr
) - val
);
312 *ptr
= (*ptr
& ~0x3f) | (val
& 0x3f);
315 *ptr
= (*ptr
& ~0x3f) | ((*ptr
- val
) & 0x3f);
318 case R_RISCV_32_PCREL
:
324 fprintf(stderr
, "FIXME: handle reloc type %x at %x [%p] to %x\n",
325 type
, (unsigned)addr
, ptr
, (unsigned)val
);