1//===- RISCV.cpp ----------------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "InputFiles.h"
10#include "OutputSections.h"
11#include "Symbols.h"
12#include "SyntheticSections.h"
13#include "Target.h"
14#include "llvm/Support/ELFAttributes.h"
15#include "llvm/Support/LEB128.h"
16#include "llvm/Support/RISCVAttributeParser.h"
17#include "llvm/Support/RISCVAttributes.h"
18#include "llvm/Support/TimeProfiler.h"
19#include "llvm/TargetParser/RISCVISAInfo.h"
20
21using namespace llvm;
22using namespace llvm::object;
23using namespace llvm::support::endian;
24using namespace llvm::ELF;
25using namespace lld;
26using namespace lld::elf;
27
28namespace {
29
30class RISCV final : public TargetInfo {
31public:
32 RISCV();
33 uint32_t calcEFlags() const override;
34 int64_t getImplicitAddend(const uint8_t *buf, RelType type) const override;
35 void writeGotHeader(uint8_t *buf) const override;
36 void writeGotPlt(uint8_t *buf, const Symbol &s) const override;
37 void writeIgotPlt(uint8_t *buf, const Symbol &s) const override;
38 void writePltHeader(uint8_t *buf) const override;
39 void writePlt(uint8_t *buf, const Symbol &sym,
40 uint64_t pltEntryAddr) const override;
41 RelType getDynRel(RelType type) const override;
42 RelExpr getRelExpr(RelType type, const Symbol &s,
43 const uint8_t *loc) const override;
44 void relocate(uint8_t *loc, const Relocation &rel,
45 uint64_t val) const override;
46 void relocateAlloc(InputSectionBase &sec, uint8_t *buf) const override;
47 bool relaxOnce(int pass) const override;
48 void finalizeRelax(int passes) const override;
49};
50
51} // end anonymous namespace
52
53// These are internal relocation numbers for GP relaxation. They aren't part
54// of the psABI spec.
55#define INTERNAL_R_RISCV_GPREL_I 256
56#define INTERNAL_R_RISCV_GPREL_S 257
57
58const uint64_t dtpOffset = 0x800;
59
60namespace {
61enum Op {
62 ADDI = 0x13,
63 AUIPC = 0x17,
64 JALR = 0x67,
65 LD = 0x3003,
66 LUI = 0x37,
67 LW = 0x2003,
68 SRLI = 0x5013,
69 SUB = 0x40000033,
70};
71
72enum Reg {
73 X_RA = 1,
74 X_GP = 3,
75 X_TP = 4,
76 X_T0 = 5,
77 X_T1 = 6,
78 X_T2 = 7,
79 X_A0 = 10,
80 X_T3 = 28,
81};
82} // namespace
83
84static uint32_t hi20(uint32_t val) { return (val + 0x800) >> 12; }
85static uint32_t lo12(uint32_t val) { return val & 4095; }
86
87static uint32_t itype(uint32_t op, uint32_t rd, uint32_t rs1, uint32_t imm) {
88 return op | (rd << 7) | (rs1 << 15) | (imm << 20);
89}
90static uint32_t rtype(uint32_t op, uint32_t rd, uint32_t rs1, uint32_t rs2) {
91 return op | (rd << 7) | (rs1 << 15) | (rs2 << 20);
92}
93static uint32_t utype(uint32_t op, uint32_t rd, uint32_t imm) {
94 return op | (rd << 7) | (imm << 12);
95}
96
97// Extract bits v[begin:end], where range is inclusive, and begin must be < 63.
98static uint32_t extractBits(uint64_t v, uint32_t begin, uint32_t end) {
99 return (v & ((1ULL << (begin + 1)) - 1)) >> end;
100}
101
102static uint32_t setLO12_I(uint32_t insn, uint32_t imm) {
103 return (insn & 0xfffff) | (imm << 20);
104}
105static uint32_t setLO12_S(uint32_t insn, uint32_t imm) {
106 return (insn & 0x1fff07f) | (extractBits(v: imm, begin: 11, end: 5) << 25) |
107 (extractBits(v: imm, begin: 4, end: 0) << 7);
108}
109
110RISCV::RISCV() {
111 copyRel = R_RISCV_COPY;
112 pltRel = R_RISCV_JUMP_SLOT;
113 relativeRel = R_RISCV_RELATIVE;
114 iRelativeRel = R_RISCV_IRELATIVE;
115 if (config->is64) {
116 symbolicRel = R_RISCV_64;
117 tlsModuleIndexRel = R_RISCV_TLS_DTPMOD64;
118 tlsOffsetRel = R_RISCV_TLS_DTPREL64;
119 tlsGotRel = R_RISCV_TLS_TPREL64;
120 } else {
121 symbolicRel = R_RISCV_32;
122 tlsModuleIndexRel = R_RISCV_TLS_DTPMOD32;
123 tlsOffsetRel = R_RISCV_TLS_DTPREL32;
124 tlsGotRel = R_RISCV_TLS_TPREL32;
125 }
126 gotRel = symbolicRel;
127 tlsDescRel = R_RISCV_TLSDESC;
128
129 // .got[0] = _DYNAMIC
130 gotHeaderEntriesNum = 1;
131
132 // .got.plt[0] = _dl_runtime_resolve, .got.plt[1] = link_map
133 gotPltHeaderEntriesNum = 2;
134
135 pltHeaderSize = 32;
136 pltEntrySize = 16;
137 ipltEntrySize = 16;
138}
139
140static uint32_t getEFlags(InputFile *f) {
141 if (config->is64)
142 return cast<ObjFile<ELF64LE>>(Val: f)->getObj().getHeader().e_flags;
143 return cast<ObjFile<ELF32LE>>(Val: f)->getObj().getHeader().e_flags;
144}
145
146uint32_t RISCV::calcEFlags() const {
147 // If there are only binary input files (from -b binary), use a
148 // value of 0 for the ELF header flags.
149 if (ctx.objectFiles.empty())
150 return 0;
151
152 uint32_t target = getEFlags(f: ctx.objectFiles.front());
153
154 for (InputFile *f : ctx.objectFiles) {
155 uint32_t eflags = getEFlags(f);
156 if (eflags & EF_RISCV_RVC)
157 target |= EF_RISCV_RVC;
158
159 if ((eflags & EF_RISCV_FLOAT_ABI) != (target & EF_RISCV_FLOAT_ABI))
160 error(
161 msg: toString(f) +
162 ": cannot link object files with different floating-point ABI from " +
163 toString(f: ctx.objectFiles[0]));
164
165 if ((eflags & EF_RISCV_RVE) != (target & EF_RISCV_RVE))
166 error(msg: toString(f) +
167 ": cannot link object files with different EF_RISCV_RVE");
168 }
169
170 return target;
171}
172
173int64_t RISCV::getImplicitAddend(const uint8_t *buf, RelType type) const {
174 switch (type) {
175 default:
176 internalLinkerError(loc: getErrorLocation(loc: buf),
177 msg: "cannot read addend for relocation " + toString(type));
178 return 0;
179 case R_RISCV_32:
180 case R_RISCV_TLS_DTPMOD32:
181 case R_RISCV_TLS_DTPREL32:
182 case R_RISCV_TLS_TPREL32:
183 return SignExtend64<32>(x: read32le(P: buf));
184 case R_RISCV_64:
185 case R_RISCV_TLS_DTPMOD64:
186 case R_RISCV_TLS_DTPREL64:
187 case R_RISCV_TLS_TPREL64:
188 return read64le(P: buf);
189 case R_RISCV_RELATIVE:
190 case R_RISCV_IRELATIVE:
191 return config->is64 ? read64le(P: buf) : read32le(P: buf);
192 case R_RISCV_NONE:
193 case R_RISCV_JUMP_SLOT:
194 // These relocations are defined as not having an implicit addend.
195 return 0;
196 case R_RISCV_TLSDESC:
197 return config->is64 ? read64le(P: buf + 8) : read32le(P: buf + 4);
198 }
199}
200
201void RISCV::writeGotHeader(uint8_t *buf) const {
202 if (config->is64)
203 write64le(P: buf, V: mainPart->dynamic->getVA());
204 else
205 write32le(P: buf, V: mainPart->dynamic->getVA());
206}
207
208void RISCV::writeGotPlt(uint8_t *buf, const Symbol &s) const {
209 if (config->is64)
210 write64le(P: buf, V: in.plt->getVA());
211 else
212 write32le(P: buf, V: in.plt->getVA());
213}
214
215void RISCV::writeIgotPlt(uint8_t *buf, const Symbol &s) const {
216 if (config->writeAddends) {
217 if (config->is64)
218 write64le(P: buf, V: s.getVA());
219 else
220 write32le(P: buf, V: s.getVA());
221 }
222}
223
224void RISCV::writePltHeader(uint8_t *buf) const {
225 // 1: auipc t2, %pcrel_hi(.got.plt)
226 // sub t1, t1, t3
227 // l[wd] t3, %pcrel_lo(1b)(t2); t3 = _dl_runtime_resolve
228 // addi t1, t1, -pltHeaderSize-12; t1 = &.plt[i] - &.plt[0]
229 // addi t0, t2, %pcrel_lo(1b)
230 // srli t1, t1, (rv64?1:2); t1 = &.got.plt[i] - &.got.plt[0]
231 // l[wd] t0, Wordsize(t0); t0 = link_map
232 // jr t3
233 uint32_t offset = in.gotPlt->getVA() - in.plt->getVA();
234 uint32_t load = config->is64 ? LD : LW;
235 write32le(P: buf + 0, V: utype(op: AUIPC, rd: X_T2, imm: hi20(val: offset)));
236 write32le(P: buf + 4, V: rtype(op: SUB, rd: X_T1, rs1: X_T1, rs2: X_T3));
237 write32le(P: buf + 8, V: itype(op: load, rd: X_T3, rs1: X_T2, imm: lo12(val: offset)));
238 write32le(P: buf + 12, V: itype(op: ADDI, rd: X_T1, rs1: X_T1, imm: -target->pltHeaderSize - 12));
239 write32le(P: buf + 16, V: itype(op: ADDI, rd: X_T0, rs1: X_T2, imm: lo12(val: offset)));
240 write32le(P: buf + 20, V: itype(op: SRLI, rd: X_T1, rs1: X_T1, imm: config->is64 ? 1 : 2));
241 write32le(P: buf + 24, V: itype(op: load, rd: X_T0, rs1: X_T0, imm: config->wordsize));
242 write32le(P: buf + 28, V: itype(op: JALR, rd: 0, rs1: X_T3, imm: 0));
243}
244
245void RISCV::writePlt(uint8_t *buf, const Symbol &sym,
246 uint64_t pltEntryAddr) const {
247 // 1: auipc t3, %pcrel_hi(f@.got.plt)
248 // l[wd] t3, %pcrel_lo(1b)(t3)
249 // jalr t1, t3
250 // nop
251 uint32_t offset = sym.getGotPltVA() - pltEntryAddr;
252 write32le(P: buf + 0, V: utype(op: AUIPC, rd: X_T3, imm: hi20(val: offset)));
253 write32le(P: buf + 4, V: itype(op: config->is64 ? LD : LW, rd: X_T3, rs1: X_T3, imm: lo12(val: offset)));
254 write32le(P: buf + 8, V: itype(op: JALR, rd: X_T1, rs1: X_T3, imm: 0));
255 write32le(P: buf + 12, V: itype(op: ADDI, rd: 0, rs1: 0, imm: 0));
256}
257
258RelType RISCV::getDynRel(RelType type) const {
259 return type == target->symbolicRel ? type
260 : static_cast<RelType>(R_RISCV_NONE);
261}
262
263RelExpr RISCV::getRelExpr(const RelType type, const Symbol &s,
264 const uint8_t *loc) const {
265 switch (type) {
266 case R_RISCV_NONE:
267 return R_NONE;
268 case R_RISCV_32:
269 case R_RISCV_64:
270 case R_RISCV_HI20:
271 case R_RISCV_LO12_I:
272 case R_RISCV_LO12_S:
273 case R_RISCV_RVC_LUI:
274 return R_ABS;
275 case R_RISCV_ADD8:
276 case R_RISCV_ADD16:
277 case R_RISCV_ADD32:
278 case R_RISCV_ADD64:
279 case R_RISCV_SET6:
280 case R_RISCV_SET8:
281 case R_RISCV_SET16:
282 case R_RISCV_SET32:
283 case R_RISCV_SUB6:
284 case R_RISCV_SUB8:
285 case R_RISCV_SUB16:
286 case R_RISCV_SUB32:
287 case R_RISCV_SUB64:
288 return R_RISCV_ADD;
289 case R_RISCV_JAL:
290 case R_RISCV_BRANCH:
291 case R_RISCV_PCREL_HI20:
292 case R_RISCV_RVC_BRANCH:
293 case R_RISCV_RVC_JUMP:
294 case R_RISCV_32_PCREL:
295 return R_PC;
296 case R_RISCV_CALL:
297 case R_RISCV_CALL_PLT:
298 case R_RISCV_PLT32:
299 return R_PLT_PC;
300 case R_RISCV_GOT_HI20:
301 case R_RISCV_GOT32_PCREL:
302 return R_GOT_PC;
303 case R_RISCV_PCREL_LO12_I:
304 case R_RISCV_PCREL_LO12_S:
305 return R_RISCV_PC_INDIRECT;
306 case R_RISCV_TLSDESC_HI20:
307 case R_RISCV_TLSDESC_LOAD_LO12:
308 case R_RISCV_TLSDESC_ADD_LO12:
309 return R_TLSDESC_PC;
310 case R_RISCV_TLSDESC_CALL:
311 return R_TLSDESC_CALL;
312 case R_RISCV_TLS_GD_HI20:
313 return R_TLSGD_PC;
314 case R_RISCV_TLS_GOT_HI20:
315 return R_GOT_PC;
316 case R_RISCV_TPREL_HI20:
317 case R_RISCV_TPREL_LO12_I:
318 case R_RISCV_TPREL_LO12_S:
319 return R_TPREL;
320 case R_RISCV_ALIGN:
321 return R_RELAX_HINT;
322 case R_RISCV_TPREL_ADD:
323 case R_RISCV_RELAX:
324 return config->relax ? R_RELAX_HINT : R_NONE;
325 case R_RISCV_SET_ULEB128:
326 case R_RISCV_SUB_ULEB128:
327 return R_RISCV_LEB128;
328 default:
329 error(msg: getErrorLocation(loc) + "unknown relocation (" + Twine(type) +
330 ") against symbol " + toString(s));
331 return R_NONE;
332 }
333}
334
335void RISCV::relocate(uint8_t *loc, const Relocation &rel, uint64_t val) const {
336 const unsigned bits = config->wordsize * 8;
337
338 switch (rel.type) {
339 case R_RISCV_32:
340 write32le(P: loc, V: val);
341 return;
342 case R_RISCV_64:
343 write64le(P: loc, V: val);
344 return;
345
346 case R_RISCV_RVC_BRANCH: {
347 checkInt(loc, v: val, n: 9, rel);
348 checkAlignment(loc, v: val, n: 2, rel);
349 uint16_t insn = read16le(P: loc) & 0xE383;
350 uint16_t imm8 = extractBits(v: val, begin: 8, end: 8) << 12;
351 uint16_t imm4_3 = extractBits(v: val, begin: 4, end: 3) << 10;
352 uint16_t imm7_6 = extractBits(v: val, begin: 7, end: 6) << 5;
353 uint16_t imm2_1 = extractBits(v: val, begin: 2, end: 1) << 3;
354 uint16_t imm5 = extractBits(v: val, begin: 5, end: 5) << 2;
355 insn |= imm8 | imm4_3 | imm7_6 | imm2_1 | imm5;
356
357 write16le(P: loc, V: insn);
358 return;
359 }
360
361 case R_RISCV_RVC_JUMP: {
362 checkInt(loc, v: val, n: 12, rel);
363 checkAlignment(loc, v: val, n: 2, rel);
364 uint16_t insn = read16le(P: loc) & 0xE003;
365 uint16_t imm11 = extractBits(v: val, begin: 11, end: 11) << 12;
366 uint16_t imm4 = extractBits(v: val, begin: 4, end: 4) << 11;
367 uint16_t imm9_8 = extractBits(v: val, begin: 9, end: 8) << 9;
368 uint16_t imm10 = extractBits(v: val, begin: 10, end: 10) << 8;
369 uint16_t imm6 = extractBits(v: val, begin: 6, end: 6) << 7;
370 uint16_t imm7 = extractBits(v: val, begin: 7, end: 7) << 6;
371 uint16_t imm3_1 = extractBits(v: val, begin: 3, end: 1) << 3;
372 uint16_t imm5 = extractBits(v: val, begin: 5, end: 5) << 2;
373 insn |= imm11 | imm4 | imm9_8 | imm10 | imm6 | imm7 | imm3_1 | imm5;
374
375 write16le(P: loc, V: insn);
376 return;
377 }
378
379 case R_RISCV_RVC_LUI: {
380 int64_t imm = SignExtend64(X: val + 0x800, B: bits) >> 12;
381 checkInt(loc, v: imm, n: 6, rel);
382 if (imm == 0) { // `c.lui rd, 0` is illegal, convert to `c.li rd, 0`
383 write16le(P: loc, V: (read16le(P: loc) & 0x0F83) | 0x4000);
384 } else {
385 uint16_t imm17 = extractBits(v: val + 0x800, begin: 17, end: 17) << 12;
386 uint16_t imm16_12 = extractBits(v: val + 0x800, begin: 16, end: 12) << 2;
387 write16le(P: loc, V: (read16le(P: loc) & 0xEF83) | imm17 | imm16_12);
388 }
389 return;
390 }
391
392 case R_RISCV_JAL: {
393 checkInt(loc, v: val, n: 21, rel);
394 checkAlignment(loc, v: val, n: 2, rel);
395
396 uint32_t insn = read32le(P: loc) & 0xFFF;
397 uint32_t imm20 = extractBits(v: val, begin: 20, end: 20) << 31;
398 uint32_t imm10_1 = extractBits(v: val, begin: 10, end: 1) << 21;
399 uint32_t imm11 = extractBits(v: val, begin: 11, end: 11) << 20;
400 uint32_t imm19_12 = extractBits(v: val, begin: 19, end: 12) << 12;
401 insn |= imm20 | imm10_1 | imm11 | imm19_12;
402
403 write32le(P: loc, V: insn);
404 return;
405 }
406
407 case R_RISCV_BRANCH: {
408 checkInt(loc, v: val, n: 13, rel);
409 checkAlignment(loc, v: val, n: 2, rel);
410
411 uint32_t insn = read32le(P: loc) & 0x1FFF07F;
412 uint32_t imm12 = extractBits(v: val, begin: 12, end: 12) << 31;
413 uint32_t imm10_5 = extractBits(v: val, begin: 10, end: 5) << 25;
414 uint32_t imm4_1 = extractBits(v: val, begin: 4, end: 1) << 8;
415 uint32_t imm11 = extractBits(v: val, begin: 11, end: 11) << 7;
416 insn |= imm12 | imm10_5 | imm4_1 | imm11;
417
418 write32le(P: loc, V: insn);
419 return;
420 }
421
422 // auipc + jalr pair
423 case R_RISCV_CALL:
424 case R_RISCV_CALL_PLT: {
425 int64_t hi = SignExtend64(X: val + 0x800, B: bits) >> 12;
426 checkInt(loc, v: hi, n: 20, rel);
427 if (isInt<20>(x: hi)) {
428 relocateNoSym(loc, type: R_RISCV_PCREL_HI20, val);
429 relocateNoSym(loc: loc + 4, type: R_RISCV_PCREL_LO12_I, val);
430 }
431 return;
432 }
433
434 case R_RISCV_GOT_HI20:
435 case R_RISCV_PCREL_HI20:
436 case R_RISCV_TLSDESC_HI20:
437 case R_RISCV_TLS_GD_HI20:
438 case R_RISCV_TLS_GOT_HI20:
439 case R_RISCV_TPREL_HI20:
440 case R_RISCV_HI20: {
441 uint64_t hi = val + 0x800;
442 checkInt(loc, v: SignExtend64(X: hi, B: bits) >> 12, n: 20, rel);
443 write32le(P: loc, V: (read32le(P: loc) & 0xFFF) | (hi & 0xFFFFF000));
444 return;
445 }
446
447 case R_RISCV_PCREL_LO12_I:
448 case R_RISCV_TLSDESC_LOAD_LO12:
449 case R_RISCV_TLSDESC_ADD_LO12:
450 case R_RISCV_TPREL_LO12_I:
451 case R_RISCV_LO12_I: {
452 uint64_t hi = (val + 0x800) >> 12;
453 uint64_t lo = val - (hi << 12);
454 write32le(P: loc, V: setLO12_I(insn: read32le(P: loc), imm: lo & 0xfff));
455 return;
456 }
457
458 case R_RISCV_PCREL_LO12_S:
459 case R_RISCV_TPREL_LO12_S:
460 case R_RISCV_LO12_S: {
461 uint64_t hi = (val + 0x800) >> 12;
462 uint64_t lo = val - (hi << 12);
463 write32le(P: loc, V: setLO12_S(insn: read32le(P: loc), imm: lo));
464 return;
465 }
466
467 case INTERNAL_R_RISCV_GPREL_I:
468 case INTERNAL_R_RISCV_GPREL_S: {
469 Defined *gp = ElfSym::riscvGlobalPointer;
470 int64_t displace = SignExtend64(X: val - gp->getVA(), B: bits);
471 checkInt(loc, v: displace, n: 12, rel);
472 uint32_t insn = (read32le(P: loc) & ~(31 << 15)) | (X_GP << 15);
473 if (rel.type == INTERNAL_R_RISCV_GPREL_I)
474 insn = setLO12_I(insn, imm: displace);
475 else
476 insn = setLO12_S(insn, imm: displace);
477 write32le(P: loc, V: insn);
478 return;
479 }
480
481 case R_RISCV_ADD8:
482 *loc += val;
483 return;
484 case R_RISCV_ADD16:
485 write16le(P: loc, V: read16le(P: loc) + val);
486 return;
487 case R_RISCV_ADD32:
488 write32le(P: loc, V: read32le(P: loc) + val);
489 return;
490 case R_RISCV_ADD64:
491 write64le(P: loc, V: read64le(P: loc) + val);
492 return;
493 case R_RISCV_SUB6:
494 *loc = (*loc & 0xc0) | (((*loc & 0x3f) - val) & 0x3f);
495 return;
496 case R_RISCV_SUB8:
497 *loc -= val;
498 return;
499 case R_RISCV_SUB16:
500 write16le(P: loc, V: read16le(P: loc) - val);
501 return;
502 case R_RISCV_SUB32:
503 write32le(P: loc, V: read32le(P: loc) - val);
504 return;
505 case R_RISCV_SUB64:
506 write64le(P: loc, V: read64le(P: loc) - val);
507 return;
508 case R_RISCV_SET6:
509 *loc = (*loc & 0xc0) | (val & 0x3f);
510 return;
511 case R_RISCV_SET8:
512 *loc = val;
513 return;
514 case R_RISCV_SET16:
515 write16le(P: loc, V: val);
516 return;
517 case R_RISCV_SET32:
518 case R_RISCV_32_PCREL:
519 case R_RISCV_PLT32:
520 case R_RISCV_GOT32_PCREL:
521 checkInt(loc, v: val, n: 32, rel);
522 write32le(P: loc, V: val);
523 return;
524
525 case R_RISCV_TLS_DTPREL32:
526 write32le(P: loc, V: val - dtpOffset);
527 break;
528 case R_RISCV_TLS_DTPREL64:
529 write64le(P: loc, V: val - dtpOffset);
530 break;
531
532 case R_RISCV_RELAX:
533 return;
534 case R_RISCV_TLSDESC:
535 // The addend is stored in the second word.
536 if (config->is64)
537 write64le(P: loc + 8, V: val);
538 else
539 write32le(P: loc + 4, V: val);
540 break;
541 default:
542 llvm_unreachable("unknown relocation");
543 }
544}
545
546static bool relaxable(ArrayRef<Relocation> relocs, size_t i) {
547 return i + 1 != relocs.size() && relocs[i + 1].type == R_RISCV_RELAX;
548}
549
550static void tlsdescToIe(uint8_t *loc, const Relocation &rel, uint64_t val) {
551 switch (rel.type) {
552 case R_RISCV_TLSDESC_HI20:
553 case R_RISCV_TLSDESC_LOAD_LO12:
554 write32le(P: loc, V: 0x00000013); // nop
555 break;
556 case R_RISCV_TLSDESC_ADD_LO12:
557 write32le(P: loc, V: utype(op: AUIPC, rd: X_A0, imm: hi20(val))); // auipc a0,<hi20>
558 break;
559 case R_RISCV_TLSDESC_CALL:
560 if (config->is64)
561 write32le(P: loc, V: itype(op: LD, rd: X_A0, rs1: X_A0, imm: lo12(val))); // ld a0,<lo12>(a0)
562 else
563 write32le(P: loc, V: itype(op: LW, rd: X_A0, rs1: X_A0, imm: lo12(val))); // lw a0,<lo12>(a0)
564 break;
565 default:
566 llvm_unreachable("unsupported relocation for TLSDESC to IE");
567 }
568}
569
570static void tlsdescToLe(uint8_t *loc, const Relocation &rel, uint64_t val) {
571 switch (rel.type) {
572 case R_RISCV_TLSDESC_HI20:
573 case R_RISCV_TLSDESC_LOAD_LO12:
574 write32le(P: loc, V: 0x00000013); // nop
575 return;
576 case R_RISCV_TLSDESC_ADD_LO12:
577 if (isInt<12>(x: val))
578 write32le(P: loc, V: 0x00000013); // nop
579 else
580 write32le(P: loc, V: utype(op: LUI, rd: X_A0, imm: hi20(val))); // lui a0,<hi20>
581 return;
582 case R_RISCV_TLSDESC_CALL:
583 if (isInt<12>(x: val))
584 write32le(P: loc, V: itype(op: ADDI, rd: X_A0, rs1: 0, imm: val)); // addi a0,zero,<lo12>
585 else
586 write32le(P: loc, V: itype(op: ADDI, rd: X_A0, rs1: X_A0, imm: lo12(val))); // addi a0,a0,<lo12>
587 return;
588 default:
589 llvm_unreachable("unsupported relocation for TLSDESC to LE");
590 }
591}
592
593void RISCV::relocateAlloc(InputSectionBase &sec, uint8_t *buf) const {
594 uint64_t secAddr = sec.getOutputSection()->addr;
595 if (auto *s = dyn_cast<InputSection>(Val: &sec))
596 secAddr += s->outSecOff;
597 else if (auto *ehIn = dyn_cast<EhInputSection>(Val: &sec))
598 secAddr += ehIn->getParent()->outSecOff;
599 uint64_t tlsdescVal = 0;
600 bool tlsdescRelax = false, isToLe = false;
601 const ArrayRef<Relocation> relocs = sec.relocs();
602 for (size_t i = 0, size = relocs.size(); i != size; ++i) {
603 const Relocation &rel = relocs[i];
604 uint8_t *loc = buf + rel.offset;
605 uint64_t val =
606 sec.getRelocTargetVA(File: sec.file, Type: rel.type, A: rel.addend,
607 P: secAddr + rel.offset, Sym: *rel.sym, Expr: rel.expr);
608
609 switch (rel.expr) {
610 case R_RELAX_HINT:
611 continue;
612 case R_TLSDESC_PC:
613 // For R_RISCV_TLSDESC_HI20, store &got(sym)-PC to be used by the
614 // following two instructions L[DW] and ADDI.
615 if (rel.type == R_RISCV_TLSDESC_HI20)
616 tlsdescVal = val;
617 else
618 val = tlsdescVal;
619 break;
620 case R_RELAX_TLS_GD_TO_IE:
621 // Only R_RISCV_TLSDESC_HI20 reaches here. tlsdescVal will be finalized
622 // after we see R_RISCV_TLSDESC_ADD_LO12 in the R_RELAX_TLS_GD_TO_LE case.
623 // The net effect is that tlsdescVal will be smaller than `val` to take
624 // into account of NOP instructions (in the absence of R_RISCV_RELAX)
625 // before AUIPC.
626 tlsdescVal = val + rel.offset;
627 isToLe = false;
628 tlsdescRelax = relaxable(relocs, i);
629 if (!tlsdescRelax)
630 tlsdescToIe(loc, rel, val);
631 continue;
632 case R_RELAX_TLS_GD_TO_LE:
633 // See the comment in handleTlsRelocation. For TLSDESC=>IE,
634 // R_RISCV_TLSDESC_{LOAD_LO12,ADD_LO12,CALL} also reach here. If isToIe is
635 // true, this is actually TLSDESC=>IE optimization.
636 if (rel.type == R_RISCV_TLSDESC_HI20) {
637 tlsdescVal = val;
638 isToLe = true;
639 tlsdescRelax = relaxable(relocs, i);
640 } else {
641 if (!isToLe && rel.type == R_RISCV_TLSDESC_ADD_LO12)
642 tlsdescVal -= rel.offset;
643 val = tlsdescVal;
644 }
645 // When NOP conversion is eligible and relaxation applies, don't write a
646 // NOP in case an unrelated instruction follows the current instruction.
647 if (tlsdescRelax &&
648 (rel.type == R_RISCV_TLSDESC_HI20 ||
649 rel.type == R_RISCV_TLSDESC_LOAD_LO12 ||
650 (rel.type == R_RISCV_TLSDESC_ADD_LO12 && isToLe && !hi20(val))))
651 continue;
652 if (isToLe)
653 tlsdescToLe(loc, rel, val);
654 else
655 tlsdescToIe(loc, rel, val);
656 continue;
657 case R_RISCV_LEB128:
658 if (i + 1 < size) {
659 const Relocation &rel1 = relocs[i + 1];
660 if (rel.type == R_RISCV_SET_ULEB128 &&
661 rel1.type == R_RISCV_SUB_ULEB128 && rel.offset == rel1.offset) {
662 auto val = rel.sym->getVA(addend: rel.addend) - rel1.sym->getVA(addend: rel1.addend);
663 if (overwriteULEB128(bufLoc: loc, val) >= 0x80)
664 errorOrWarn(msg: sec.getLocation(offset: rel.offset) + ": ULEB128 value " +
665 Twine(val) + " exceeds available space; references '" +
666 lld::toString(*rel.sym) + "'");
667 ++i;
668 continue;
669 }
670 }
671 errorOrWarn(msg: sec.getLocation(offset: rel.offset) +
672 ": R_RISCV_SET_ULEB128 not paired with R_RISCV_SUB_SET128");
673 return;
674 default:
675 break;
676 }
677 relocate(loc, rel, val);
678 }
679}
680
681void elf::initSymbolAnchors() {
682 SmallVector<InputSection *, 0> storage;
683 for (OutputSection *osec : outputSections) {
684 if (!(osec->flags & SHF_EXECINSTR))
685 continue;
686 for (InputSection *sec : getInputSections(os: *osec, storage)) {
687 sec->relaxAux = make<RelaxAux>();
688 if (sec->relocs().size()) {
689 sec->relaxAux->relocDeltas =
690 std::make_unique<uint32_t[]>(num: sec->relocs().size());
691 sec->relaxAux->relocTypes =
692 std::make_unique<RelType[]>(num: sec->relocs().size());
693 }
694 }
695 }
696 // Store anchors (st_value and st_value+st_size) for symbols relative to text
697 // sections.
698 //
699 // For a defined symbol foo, we may have `d->file != file` with --wrap=foo.
700 // We should process foo, as the defining object file's symbol table may not
701 // contain foo after redirectSymbols changed the foo entry to __wrap_foo. To
702 // avoid adding a Defined that is undefined in one object file, use
703 // `!d->scriptDefined` to exclude symbols that are definitely not wrapped.
704 //
705 // `relaxAux->anchors` may contain duplicate symbols, but that is fine.
706 for (InputFile *file : ctx.objectFiles)
707 for (Symbol *sym : file->getSymbols()) {
708 auto *d = dyn_cast<Defined>(Val: sym);
709 if (!d || (d->file != file && !d->scriptDefined))
710 continue;
711 if (auto *sec = dyn_cast_or_null<InputSection>(Val: d->section))
712 if (sec->flags & SHF_EXECINSTR && sec->relaxAux) {
713 // If sec is discarded, relaxAux will be nullptr.
714 sec->relaxAux->anchors.push_back(Elt: {.offset: d->value, .d: d, .end: false});
715 sec->relaxAux->anchors.push_back(Elt: {.offset: d->value + d->size, .d: d, .end: true});
716 }
717 }
718 // Sort anchors by offset so that we can find the closest relocation
719 // efficiently. For a zero size symbol, ensure that its start anchor precedes
720 // its end anchor. For two symbols with anchors at the same offset, their
721 // order does not matter.
722 for (OutputSection *osec : outputSections) {
723 if (!(osec->flags & SHF_EXECINSTR))
724 continue;
725 for (InputSection *sec : getInputSections(os: *osec, storage)) {
726 llvm::sort(C&: sec->relaxAux->anchors, Comp: [](auto &a, auto &b) {
727 return std::make_pair(a.offset, a.end) <
728 std::make_pair(b.offset, b.end);
729 });
730 }
731 }
732}
733
734// Relax R_RISCV_CALL/R_RISCV_CALL_PLT auipc+jalr to c.j, c.jal, or jal.
735static void relaxCall(const InputSection &sec, size_t i, uint64_t loc,
736 Relocation &r, uint32_t &remove) {
737 const bool rvc = getEFlags(f: sec.file) & EF_RISCV_RVC;
738 const Symbol &sym = *r.sym;
739 const uint64_t insnPair = read64le(P: sec.content().data() + r.offset);
740 const uint32_t rd = extractBits(v: insnPair, begin: 32 + 11, end: 32 + 7);
741 const uint64_t dest =
742 (r.expr == R_PLT_PC ? sym.getPltVA() : sym.getVA()) + r.addend;
743 const int64_t displace = dest - loc;
744
745 if (rvc && isInt<12>(x: displace) && rd == 0) {
746 sec.relaxAux->relocTypes[i] = R_RISCV_RVC_JUMP;
747 sec.relaxAux->writes.push_back(Elt: 0xa001); // c.j
748 remove = 6;
749 } else if (rvc && isInt<12>(x: displace) && rd == X_RA &&
750 !config->is64) { // RV32C only
751 sec.relaxAux->relocTypes[i] = R_RISCV_RVC_JUMP;
752 sec.relaxAux->writes.push_back(Elt: 0x2001); // c.jal
753 remove = 6;
754 } else if (isInt<21>(x: displace)) {
755 sec.relaxAux->relocTypes[i] = R_RISCV_JAL;
756 sec.relaxAux->writes.push_back(Elt: 0x6f | rd << 7); // jal
757 remove = 4;
758 }
759}
760
761// Relax local-exec TLS when hi20 is zero.
762static void relaxTlsLe(const InputSection &sec, size_t i, uint64_t loc,
763 Relocation &r, uint32_t &remove) {
764 uint64_t val = r.sym->getVA(addend: r.addend);
765 if (hi20(val) != 0)
766 return;
767 uint32_t insn = read32le(P: sec.content().data() + r.offset);
768 switch (r.type) {
769 case R_RISCV_TPREL_HI20:
770 case R_RISCV_TPREL_ADD:
771 // Remove lui rd, %tprel_hi(x) and add rd, rd, tp, %tprel_add(x).
772 sec.relaxAux->relocTypes[i] = R_RISCV_RELAX;
773 remove = 4;
774 break;
775 case R_RISCV_TPREL_LO12_I:
776 // addi rd, rd, %tprel_lo(x) => addi rd, tp, st_value(x)
777 sec.relaxAux->relocTypes[i] = R_RISCV_32;
778 insn = (insn & ~(31 << 15)) | (X_TP << 15);
779 sec.relaxAux->writes.push_back(Elt: setLO12_I(insn, imm: val));
780 break;
781 case R_RISCV_TPREL_LO12_S:
782 // sw rs, %tprel_lo(x)(rd) => sw rs, st_value(x)(rd)
783 sec.relaxAux->relocTypes[i] = R_RISCV_32;
784 insn = (insn & ~(31 << 15)) | (X_TP << 15);
785 sec.relaxAux->writes.push_back(Elt: setLO12_S(insn, imm: val));
786 break;
787 }
788}
789
790static void relaxHi20Lo12(const InputSection &sec, size_t i, uint64_t loc,
791 Relocation &r, uint32_t &remove) {
792 const Defined *gp = ElfSym::riscvGlobalPointer;
793 if (!gp)
794 return;
795
796 if (!isInt<12>(x: r.sym->getVA(addend: r.addend) - gp->getVA()))
797 return;
798
799 switch (r.type) {
800 case R_RISCV_HI20:
801 // Remove lui rd, %hi20(x).
802 sec.relaxAux->relocTypes[i] = R_RISCV_RELAX;
803 remove = 4;
804 break;
805 case R_RISCV_LO12_I:
806 sec.relaxAux->relocTypes[i] = INTERNAL_R_RISCV_GPREL_I;
807 break;
808 case R_RISCV_LO12_S:
809 sec.relaxAux->relocTypes[i] = INTERNAL_R_RISCV_GPREL_S;
810 break;
811 }
812}
813
814static bool relax(InputSection &sec) {
815 const uint64_t secAddr = sec.getVA();
816 const MutableArrayRef<Relocation> relocs = sec.relocs();
817 auto &aux = *sec.relaxAux;
818 bool changed = false;
819 ArrayRef<SymbolAnchor> sa = ArrayRef(aux.anchors);
820 uint64_t delta = 0;
821 bool tlsdescRelax = false, toLeShortForm = false;
822
823 std::fill_n(first: aux.relocTypes.get(), n: relocs.size(), value: R_RISCV_NONE);
824 aux.writes.clear();
825 for (auto [i, r] : llvm::enumerate(First: relocs)) {
826 const uint64_t loc = secAddr + r.offset - delta;
827 uint32_t &cur = aux.relocDeltas[i], remove = 0;
828 switch (r.type) {
829 case R_RISCV_ALIGN: {
830 const uint64_t nextLoc = loc + r.addend;
831 const uint64_t align = PowerOf2Ceil(A: r.addend + 2);
832 // All bytes beyond the alignment boundary should be removed.
833 remove = nextLoc - ((loc + align - 1) & -align);
834 // If we can't satisfy this alignment, we've found a bad input.
835 if (LLVM_UNLIKELY(static_cast<int32_t>(remove) < 0)) {
836 errorOrWarn(msg: getErrorLocation(loc: (const uint8_t*)loc) +
837 "insufficient padding bytes for " + lld::toString(type: r.type) +
838 ": " + Twine(r.addend) + " bytes available "
839 "for requested alignment of " + Twine(align) + " bytes");
840 remove = 0;
841 }
842 break;
843 }
844 case R_RISCV_CALL:
845 case R_RISCV_CALL_PLT:
846 if (relaxable(relocs, i))
847 relaxCall(sec, i, loc, r, remove);
848 break;
849 case R_RISCV_TPREL_HI20:
850 case R_RISCV_TPREL_ADD:
851 case R_RISCV_TPREL_LO12_I:
852 case R_RISCV_TPREL_LO12_S:
853 if (relaxable(relocs, i))
854 relaxTlsLe(sec, i, loc, r, remove);
855 break;
856 case R_RISCV_HI20:
857 case R_RISCV_LO12_I:
858 case R_RISCV_LO12_S:
859 if (relaxable(relocs, i))
860 relaxHi20Lo12(sec, i, loc, r, remove);
861 break;
862 case R_RISCV_TLSDESC_HI20:
863 // For TLSDESC=>LE, we can use the short form if hi20 is zero.
864 tlsdescRelax = relaxable(relocs, i);
865 toLeShortForm = tlsdescRelax && r.expr == R_RELAX_TLS_GD_TO_LE &&
866 !hi20(val: r.sym->getVA(addend: r.addend));
867 [[fallthrough]];
868 case R_RISCV_TLSDESC_LOAD_LO12:
869 // For TLSDESC=>LE/IE, AUIPC and L[DW] are removed if relaxable.
870 if (tlsdescRelax && r.expr != R_TLSDESC_PC)
871 remove = 4;
872 break;
873 case R_RISCV_TLSDESC_ADD_LO12:
874 if (toLeShortForm)
875 remove = 4;
876 break;
877 }
878
879 // For all anchors whose offsets are <= r.offset, they are preceded by
880 // the previous relocation whose `relocDeltas` value equals `delta`.
881 // Decrease their st_value and update their st_size.
882 for (; sa.size() && sa[0].offset <= r.offset; sa = sa.slice(N: 1)) {
883 if (sa[0].end)
884 sa[0].d->size = sa[0].offset - delta - sa[0].d->value;
885 else
886 sa[0].d->value = sa[0].offset - delta;
887 }
888 delta += remove;
889 if (delta != cur) {
890 cur = delta;
891 changed = true;
892 }
893 }
894
895 for (const SymbolAnchor &a : sa) {
896 if (a.end)
897 a.d->size = a.offset - delta - a.d->value;
898 else
899 a.d->value = a.offset - delta;
900 }
901 // Inform assignAddresses that the size has changed.
902 if (!isUInt<32>(x: delta))
903 fatal(msg: "section size decrease is too large: " + Twine(delta));
904 sec.bytesDropped = delta;
905 return changed;
906}
907
908// When relaxing just R_RISCV_ALIGN, relocDeltas is usually changed only once in
909// the absence of a linker script. For call and load/store R_RISCV_RELAX, code
910// shrinkage may reduce displacement and make more relocations eligible for
911// relaxation. Code shrinkage may increase displacement to a call/load/store
912// target at a higher fixed address, invalidating an earlier relaxation. Any
913// change in section sizes can have cascading effect and require another
914// relaxation pass.
915bool RISCV::relaxOnce(int pass) const {
916 llvm::TimeTraceScope timeScope("RISC-V relaxOnce");
917 if (config->relocatable)
918 return false;
919
920 if (pass == 0)
921 initSymbolAnchors();
922
923 SmallVector<InputSection *, 0> storage;
924 bool changed = false;
925 for (OutputSection *osec : outputSections) {
926 if (!(osec->flags & SHF_EXECINSTR))
927 continue;
928 for (InputSection *sec : getInputSections(os: *osec, storage))
929 changed |= relax(sec&: *sec);
930 }
931 return changed;
932}
933
934void RISCV::finalizeRelax(int passes) const {
935 llvm::TimeTraceScope timeScope("Finalize RISC-V relaxation");
936 log(msg: "relaxation passes: " + Twine(passes));
937 SmallVector<InputSection *, 0> storage;
938 for (OutputSection *osec : outputSections) {
939 if (!(osec->flags & SHF_EXECINSTR))
940 continue;
941 for (InputSection *sec : getInputSections(os: *osec, storage)) {
942 RelaxAux &aux = *sec->relaxAux;
943 if (!aux.relocDeltas)
944 continue;
945
946 MutableArrayRef<Relocation> rels = sec->relocs();
947 ArrayRef<uint8_t> old = sec->content();
948 size_t newSize = old.size() - aux.relocDeltas[rels.size() - 1];
949 size_t writesIdx = 0;
950 uint8_t *p = context().bAlloc.Allocate<uint8_t>(Num: newSize);
951 uint64_t offset = 0;
952 int64_t delta = 0;
953 sec->content_ = p;
954 sec->size = newSize;
955 sec->bytesDropped = 0;
956
957 // Update section content: remove NOPs for R_RISCV_ALIGN and rewrite
958 // instructions for relaxed relocations.
959 for (size_t i = 0, e = rels.size(); i != e; ++i) {
960 uint32_t remove = aux.relocDeltas[i] - delta;
961 delta = aux.relocDeltas[i];
962 if (remove == 0 && aux.relocTypes[i] == R_RISCV_NONE)
963 continue;
964
965 // Copy from last location to the current relocated location.
966 const Relocation &r = rels[i];
967 uint64_t size = r.offset - offset;
968 memcpy(dest: p, src: old.data() + offset, n: size);
969 p += size;
970
971 // For R_RISCV_ALIGN, we will place `offset` in a location (among NOPs)
972 // to satisfy the alignment requirement. If both `remove` and r.addend
973 // are multiples of 4, it is as if we have skipped some NOPs. Otherwise
974 // we are in the middle of a 4-byte NOP, and we need to rewrite the NOP
975 // sequence.
976 int64_t skip = 0;
977 if (r.type == R_RISCV_ALIGN) {
978 if (remove % 4 || r.addend % 4) {
979 skip = r.addend - remove;
980 int64_t j = 0;
981 for (; j + 4 <= skip; j += 4)
982 write32le(P: p + j, V: 0x00000013); // nop
983 if (j != skip) {
984 assert(j + 2 == skip);
985 write16le(P: p + j, V: 0x0001); // c.nop
986 }
987 }
988 } else if (RelType newType = aux.relocTypes[i]) {
989 switch (newType) {
990 case INTERNAL_R_RISCV_GPREL_I:
991 case INTERNAL_R_RISCV_GPREL_S:
992 break;
993 case R_RISCV_RELAX:
994 // Used by relaxTlsLe to indicate the relocation is ignored.
995 break;
996 case R_RISCV_RVC_JUMP:
997 skip = 2;
998 write16le(P: p, V: aux.writes[writesIdx++]);
999 break;
1000 case R_RISCV_JAL:
1001 skip = 4;
1002 write32le(P: p, V: aux.writes[writesIdx++]);
1003 break;
1004 case R_RISCV_32:
1005 // Used by relaxTlsLe to write a uint32_t then suppress the handling
1006 // in relocateAlloc.
1007 skip = 4;
1008 write32le(P: p, V: aux.writes[writesIdx++]);
1009 aux.relocTypes[i] = R_RISCV_NONE;
1010 break;
1011 default:
1012 llvm_unreachable("unsupported type");
1013 }
1014 }
1015
1016 p += skip;
1017 offset = r.offset + skip + remove;
1018 }
1019 memcpy(dest: p, src: old.data() + offset, n: old.size() - offset);
1020
1021 // Subtract the previous relocDeltas value from the relocation offset.
1022 // For a pair of R_RISCV_CALL/R_RISCV_RELAX with the same offset, decrease
1023 // their r_offset by the same delta.
1024 delta = 0;
1025 for (size_t i = 0, e = rels.size(); i != e;) {
1026 uint64_t cur = rels[i].offset;
1027 do {
1028 rels[i].offset -= delta;
1029 if (aux.relocTypes[i] != R_RISCV_NONE)
1030 rels[i].type = aux.relocTypes[i];
1031 } while (++i != e && rels[i].offset == cur);
1032 delta = aux.relocDeltas[i - 1];
1033 }
1034 }
1035 }
1036}
1037
1038namespace {
1039// Representation of the merged .riscv.attributes input sections. The psABI
1040// specifies merge policy for attributes. E.g. if we link an object without an
1041// extension with an object with the extension, the output Tag_RISCV_arch shall
1042// contain the extension. Some tools like objdump parse .riscv.attributes and
1043// disabling some instructions if the first Tag_RISCV_arch does not contain an
1044// extension.
1045class RISCVAttributesSection final : public SyntheticSection {
1046public:
1047 RISCVAttributesSection()
1048 : SyntheticSection(0, SHT_RISCV_ATTRIBUTES, 1, ".riscv.attributes") {}
1049
1050 size_t getSize() const override { return size; }
1051 void writeTo(uint8_t *buf) override;
1052
1053 static constexpr StringRef vendor = "riscv";
1054 DenseMap<unsigned, unsigned> intAttr;
1055 DenseMap<unsigned, StringRef> strAttr;
1056 size_t size = 0;
1057};
1058} // namespace
1059
1060static void mergeArch(RISCVISAInfo::OrderedExtensionMap &mergedExts,
1061 unsigned &mergedXlen, const InputSectionBase *sec,
1062 StringRef s) {
1063 auto maybeInfo = RISCVISAInfo::parseNormalizedArchString(Arch: s);
1064 if (!maybeInfo) {
1065 errorOrWarn(msg: toString(sec) + ": " + s + ": " +
1066 llvm::toString(E: maybeInfo.takeError()));
1067 return;
1068 }
1069
1070 // Merge extensions.
1071 RISCVISAInfo &info = **maybeInfo;
1072 if (mergedExts.empty()) {
1073 mergedExts = info.getExtensions();
1074 mergedXlen = info.getXLen();
1075 } else {
1076 for (const auto &ext : info.getExtensions()) {
1077 auto p = mergedExts.insert(x: ext);
1078 if (!p.second) {
1079 if (std::tie(args&: p.first->second.Major, args&: p.first->second.Minor) <
1080 std::tie(args: ext.second.Major, args: ext.second.Minor))
1081 p.first->second = ext.second;
1082 }
1083 }
1084 }
1085}
1086
1087static RISCVAttributesSection *
1088mergeAttributesSection(const SmallVector<InputSectionBase *, 0> &sections) {
1089 RISCVISAInfo::OrderedExtensionMap exts;
1090 const InputSectionBase *firstStackAlign = nullptr;
1091 unsigned firstStackAlignValue = 0, xlen = 0;
1092 bool hasArch = false;
1093
1094 in.riscvAttributes = std::make_unique<RISCVAttributesSection>();
1095 auto &merged = static_cast<RISCVAttributesSection &>(*in.riscvAttributes);
1096
1097 // Collect all tags values from attributes section.
1098 const auto &attributesTags = RISCVAttrs::getRISCVAttributeTags();
1099 for (const InputSectionBase *sec : sections) {
1100 RISCVAttributeParser parser;
1101 if (Error e = parser.parse(section: sec->content(), endian: llvm::endianness::little))
1102 warn(msg: toString(sec) + ": " + llvm::toString(E: std::move(e)));
1103 for (const auto &tag : attributesTags) {
1104 switch (RISCVAttrs::AttrType(tag.attr)) {
1105 // Integer attributes.
1106 case RISCVAttrs::STACK_ALIGN:
1107 if (auto i = parser.getAttributeValue(tag: tag.attr)) {
1108 auto r = merged.intAttr.try_emplace(Key: tag.attr, Args&: *i);
1109 if (r.second) {
1110 firstStackAlign = sec;
1111 firstStackAlignValue = *i;
1112 } else if (r.first->second != *i) {
1113 errorOrWarn(msg: toString(sec) + " has stack_align=" + Twine(*i) +
1114 " but " + toString(firstStackAlign) +
1115 " has stack_align=" + Twine(firstStackAlignValue));
1116 }
1117 }
1118 continue;
1119 case RISCVAttrs::UNALIGNED_ACCESS:
1120 if (auto i = parser.getAttributeValue(tag: tag.attr))
1121 merged.intAttr[tag.attr] |= *i;
1122 continue;
1123
1124 // String attributes.
1125 case RISCVAttrs::ARCH:
1126 if (auto s = parser.getAttributeString(tag: tag.attr)) {
1127 hasArch = true;
1128 mergeArch(mergedExts&: exts, mergedXlen&: xlen, sec, s: *s);
1129 }
1130 continue;
1131
1132 // Attributes which use the default handling.
1133 case RISCVAttrs::PRIV_SPEC:
1134 case RISCVAttrs::PRIV_SPEC_MINOR:
1135 case RISCVAttrs::PRIV_SPEC_REVISION:
1136 break;
1137 }
1138
1139 // Fallback for deprecated priv_spec* and other unknown attributes: retain
1140 // the attribute if all input sections agree on the value. GNU ld uses 0
1141 // and empty strings as default values which are not dumped to the output.
1142 // TODO Adjust after resolution to
1143 // https://github.com/riscv-non-isa/riscv-elf-psabi-doc/issues/352
1144 if (tag.attr % 2 == 0) {
1145 if (auto i = parser.getAttributeValue(tag: tag.attr)) {
1146 auto r = merged.intAttr.try_emplace(Key: tag.attr, Args&: *i);
1147 if (!r.second && r.first->second != *i)
1148 r.first->second = 0;
1149 }
1150 } else if (auto s = parser.getAttributeString(tag: tag.attr)) {
1151 auto r = merged.strAttr.try_emplace(Key: tag.attr, Args&: *s);
1152 if (!r.second && r.first->second != *s)
1153 r.first->second = {};
1154 }
1155 }
1156 }
1157
1158 if (hasArch) {
1159 if (auto result = RISCVISAInfo::postProcessAndChecking(
1160 ISAInfo: std::make_unique<RISCVISAInfo>(args&: xlen, args&: exts))) {
1161 merged.strAttr.try_emplace(Key: RISCVAttrs::ARCH,
1162 Args: saver().save(S: (*result)->toString()));
1163 } else {
1164 errorOrWarn(msg: llvm::toString(E: result.takeError()));
1165 }
1166 }
1167
1168 // The total size of headers: format-version [ <section-length> "vendor-name"
1169 // [ <file-tag> <size>.
1170 size_t size = 5 + merged.vendor.size() + 1 + 5;
1171 for (auto &attr : merged.intAttr)
1172 if (attr.second != 0)
1173 size += getULEB128Size(Value: attr.first) + getULEB128Size(Value: attr.second);
1174 for (auto &attr : merged.strAttr)
1175 if (!attr.second.empty())
1176 size += getULEB128Size(Value: attr.first) + attr.second.size() + 1;
1177 merged.size = size;
1178 return &merged;
1179}
1180
1181void RISCVAttributesSection::writeTo(uint8_t *buf) {
1182 const size_t size = getSize();
1183 uint8_t *const end = buf + size;
1184 *buf = ELFAttrs::Format_Version;
1185 write32(p: buf + 1, v: size - 1);
1186 buf += 5;
1187
1188 memcpy(dest: buf, src: vendor.data(), n: vendor.size());
1189 buf += vendor.size() + 1;
1190
1191 *buf = ELFAttrs::File;
1192 write32(p: buf + 1, v: end - buf);
1193 buf += 5;
1194
1195 for (auto &attr : intAttr) {
1196 if (attr.second == 0)
1197 continue;
1198 buf += encodeULEB128(Value: attr.first, p: buf);
1199 buf += encodeULEB128(Value: attr.second, p: buf);
1200 }
1201 for (auto &attr : strAttr) {
1202 if (attr.second.empty())
1203 continue;
1204 buf += encodeULEB128(Value: attr.first, p: buf);
1205 memcpy(dest: buf, src: attr.second.data(), n: attr.second.size());
1206 buf += attr.second.size() + 1;
1207 }
1208}
1209
1210void elf::mergeRISCVAttributesSections() {
1211 // Find the first input SHT_RISCV_ATTRIBUTES; return if not found.
1212 size_t place =
1213 llvm::find_if(Range&: ctx.inputSections,
1214 P: [](auto *s) { return s->type == SHT_RISCV_ATTRIBUTES; }) -
1215 ctx.inputSections.begin();
1216 if (place == ctx.inputSections.size())
1217 return;
1218
1219 // Extract all SHT_RISCV_ATTRIBUTES sections into `sections`.
1220 SmallVector<InputSectionBase *, 0> sections;
1221 llvm::erase_if(C&: ctx.inputSections, P: [&](InputSectionBase *s) {
1222 if (s->type != SHT_RISCV_ATTRIBUTES)
1223 return false;
1224 sections.push_back(Elt: s);
1225 return true;
1226 });
1227
1228 // Add the merged section.
1229 ctx.inputSections.insert(I: ctx.inputSections.begin() + place,
1230 Elt: mergeAttributesSection(sections));
1231}
1232
1233TargetInfo *elf::getRISCVTargetInfo() {
1234 static RISCV target;
1235 return &target;
1236}
1237

source code of lld/ELF/Arch/RISCV.cpp