1 //===- InputSection.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 "InputSection.h"
10 #include "InputFiles.h"
11 #include "OutputSegment.h"
12 #include "Symbols.h"
13 #include "SyntheticSections.h"
14 #include "Target.h"
15 #include "Writer.h"
16 #include "lld/Common/Memory.h"
17 #include "llvm/Support/Endian.h"
18 
19 using namespace llvm;
20 using namespace llvm::MachO;
21 using namespace llvm::support;
22 using namespace lld;
23 using namespace lld::macho;
24 
25 std::vector<InputSection *> macho::inputSections;
26 
27 uint64_t InputSection::getFileOffset() const {
28   return parent->fileOff + outSecFileOff;
29 }
30 
31 uint64_t InputSection::getFileSize() const {
32   return isZeroFill(flags) ? 0 : getSize();
33 }
34 
35 uint64_t InputSection::getVA() const { return parent->addr + outSecOff; }
36 
37 static uint64_t resolveSymbolVA(uint8_t *loc, const Symbol &sym, uint8_t type) {
38   const RelocAttrs &relocAttrs = target->getRelocAttrs(type);
39   if (relocAttrs.hasAttr(RelocAttrBits::BRANCH)) {
40     if (sym.isInStubs())
41       return in.stubs->addr + sym.stubsIndex * target->stubSize;
42   } else if (relocAttrs.hasAttr(RelocAttrBits::GOT)) {
43     if (sym.isInGot())
44       return in.got->addr + sym.gotIndex * target->wordSize;
45   } else if (relocAttrs.hasAttr(RelocAttrBits::TLV)) {
46     if (sym.isInGot())
47       return in.tlvPointers->addr + sym.gotIndex * target->wordSize;
48     assert(isa<Defined>(&sym));
49   }
50   return sym.getVA();
51 }
52 
53 void InputSection::writeTo(uint8_t *buf) {
54   if (getFileSize() == 0)
55     return;
56 
57   memcpy(buf, data.data(), data.size());
58 
59   for (size_t i = 0; i < relocs.size(); i++) {
60     const Reloc &r = relocs[i];
61     uint8_t *loc = buf + r.offset;
62     uint64_t referentVA = 0;
63     if (target->hasAttr(r.type, RelocAttrBits::SUBTRAHEND)) {
64       const Symbol *fromSym = r.referent.get<Symbol *>();
65       const Symbol *toSym = relocs[++i].referent.get<Symbol *>();
66       referentVA = toSym->getVA() - fromSym->getVA();
67     } else if (auto *referentSym = r.referent.dyn_cast<Symbol *>()) {
68       if (target->hasAttr(r.type, RelocAttrBits::LOAD) &&
69           !referentSym->isInGot())
70         target->relaxGotLoad(loc, r.type);
71       referentVA = resolveSymbolVA(loc, *referentSym, r.type);
72 
73       if (isThreadLocalVariables(flags)) {
74         // References from thread-local variable sections are treated as offsets
75         // relative to the start of the thread-local data memory area, which
76         // is initialized via copying all the TLV data sections (which are all
77         // contiguous).
78         if (isa<Defined>(referentSym))
79           referentVA -= firstTLVDataSection->addr;
80       }
81     } else if (auto *referentIsec = r.referent.dyn_cast<InputSection *>()) {
82       referentVA = referentIsec->getVA();
83     }
84     target->relocateOne(loc, r, referentVA, getVA() + r.offset);
85   }
86 }
87 
88 bool macho::isCodeSection(InputSection *isec) {
89   uint32_t type = isec->flags & SECTION_TYPE;
90   if (type != S_REGULAR && type != S_COALESCED)
91     return false;
92 
93   uint32_t attr = isec->flags & SECTION_ATTRIBUTES_USR;
94   if (attr == S_ATTR_PURE_INSTRUCTIONS)
95     return true;
96 
97   if (isec->segname == segment_names::text)
98     return StringSwitch<bool>(isec->name)
99         .Cases("__textcoal_nt", "__StaticInit", true)
100         .Default(false);
101 
102   return false;
103 }
104 
105 std::string lld::toString(const InputSection *isec) {
106   return (toString(isec->file) + ":(" + isec->name + ")").str();
107 }
108