/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | MarkLive.cpp | 53 void enqueue(InputSectionBase *sec, uint64_t offset); 58 void resolveReloc(InputSectionBase &sec, RelTy &rel, bool fromFDE); 71 DenseMap<StringRef, SmallVector<InputSectionBase *, 0>> cNamedSections; 76 static uint64_t getAddend(InputSectionBase &sec, in getAddend() 83 static uint64_t getAddend(InputSectionBase &sec, in getAddend() 90 static uint64_t getAddend(InputSectionBase &sec, in getAddend() 97 void MarkLive<ELFT>::resolveReloc(InputSectionBase &sec, RelTy &rel, in resolveReloc() 104 auto *relSec = dyn_cast_or_null<InputSectionBase>(d->section); in resolveReloc() 130 for (InputSectionBase *sec : cNamedSections.lookup(sym.getName())) in resolveReloc() 169 static bool isReserved(InputSectionBase *sec) { in isReserved() [all …]
|
H A D | CallGraphSort.cpp | 93 DenseMap<const InputSectionBase *, int> run(); 97 std::vector<const InputSectionBase *> sections; 109 std::pair<const InputSectionBase *, const InputSectionBase *>; in CallGraphSort() 116 DenseMap<const InputSectionBase *, int> secToCluster; in CallGraphSort() 118 auto getOrCreateNode = [&](const InputSectionBase *isec) -> int { in CallGraphSort() 129 const auto *fromSB = cast<InputSectionBase>(c.first.first); in CallGraphSort() 130 const auto *toSB = cast<InputSectionBase>(c.first.second); in CallGraphSort() 193 DenseMap<const InputSectionBase *, int> CallGraphSort::run() { in run() 236 DenseMap<const InputSectionBase *, in in run() [all...] |
H A D | InputSection.h | 140 class InputSectionBase : public SectionBase { 143 InputSectionBase(ObjFile<ELFT> &file, const typename ELFT::Shdr &header, 146 InputSectionBase(InputFile *file, uint64_t flags, uint32_t type, 218 InputSectionBase *nextInSectionGroup = nullptr; 315 class MergeInputSection : public InputSectionBase { 360 EhSectionPiece(size_t off, InputSectionBase *sec, uint32_t size, in EhSectionPiece() 370 InputSectionBase *sec; 376 class EhInputSection : public InputSectionBase { 397 class InputSection : public InputSectionBase { 425 InputSectionBase *getRelocatedSection() const; [all …]
|
H A D | LinkerScript.cpp | 53 static StringRef getOutputSectionName(const InputSectionBase *s) { in getOutputSectionName() 58 if (InputSectionBase *rel = isec->getRelocatedSection()) { in getOutputSectionName() 412 bool LinkerScript::shouldKeep(InputSectionBase *s) { in shouldKeep() 424 static bool matchConstraints(ArrayRef<InputSectionBase *> sections, in matchConstraints() 430 sections, [](InputSectionBase *sec) { return sec->flags & SHF_WRITE; }); in matchConstraints() 436 static void sortSections(MutableArrayRef<InputSectionBase *> vec, in sortSections() 438 auto alignmentComparator = [](InputSectionBase *a, InputSectionBase *b) { in sortSections() 444 auto nameComparator = [](InputSectionBase *a, InputSectionBase *b) { in sortSections() 447 auto priorityComparator = [](InputSectionBase *a, InputSectionBase *b) { in sortSections() 477 static void sortInputSections(MutableArrayRef<InputSectionBase *> vec, in sortInputSections() [all …]
|
H A D | InputSection.cpp | 40 std::string lld::toString(const InputSectionBase *sec) { in toString() 52 InputSectionBase::InputSectionBase(InputFile *file, uint64_t flags, in InputSectionBase() function in InputSectionBase 90 InputSectionBase::InputSectionBase(ObjFile<ELFT> &file, in InputSectionBase() function in InputSectionBase 93 : InputSectionBase(&file, getFlags(hdr.sh_flags), hdr.sh_type, in InputSectionBase() 104 size_t InputSectionBase::getSize() const { in getSize() 111 static void decompressAux(const InputSectionBase &sec, uint8_t *out, in decompressAux() 123 void InputSectionBase::decompress() const { in decompress() 137 RelsOrRelas<ELFT> InputSectionBase::relsOrRelas(bool supportsCrel) const { in relsOrRelas() 150 InputSectionBase *const &relSec = f->getSections()[relSecIdx]; in relsOrRelas() 244 template <typename ELFT> void InputSectionBase::parseCompressedHeader() { in parseCompressedHeader() [all …]
|
H A D | LinkerScript.h | 33 class InputSectionBase; variable 217 SmallVector<InputSectionBase *, 0> sectionBases; 299 SmallVector<InputSectionBase *, 0> 301 ArrayRef<InputSectionBase *>, 304 SmallVector<InputSectionBase *, 0> createInputSectionList(OutputSection &cmd); 333 void discard(InputSectionBase &s); 346 bool shouldKeep(InputSectionBase *s); 414 SmallVector<const InputSectionBase *, 0> orphanSections; 431 llvm::DenseMap<InputSectionBase *, PotentialSpillList> potentialSpillLists;
|
H A D | InputFiles.h | 58 SmallVector<InputSectionBase *, 0> sections; 83 ArrayRef<InputSectionBase *> getSections() const { in getSections() 87 void cacheDecodedCrel(size_t i, InputSectionBase *s) { sections[i] = s; } in cacheDecodedCrel() 152 std::string getSrcMsg(const Symbol &sym, const InputSectionBase &sec, 261 std::optional<llvm::DILineInfo> getDILineInfo(const InputSectionBase *, 303 InputSectionBase *getRelocTarget(uint32_t idx, uint32_t info); 304 InputSectionBase *createInputSection(uint32_t idx, const Elf_Shdr &sec,
|
H A D | CallGraphSort.h | 15 class InputSectionBase; variable 17 llvm::DenseMap<const InputSectionBase *, int> computeCacheDirectedSortOrder(); 19 llvm::DenseMap<const InputSectionBase *, int> computeCallGraphProfileOrder();
|
H A D | Config.h | 42 class InputSectionBase; variable 213 llvm::MapVector<std::pair<const InputSectionBase *, const InputSectionBase *>, 465 InputSectionBase *section; 477 SmallVector<InputSectionBase *, 0> inputSections;
|
H A D | DWARF.h | 24 InputSectionBase *sec = nullptr; 83 std::optional<llvm::RelocAddrEntry> findAux(const InputSectionBase &sec,
|
H A D | Writer.cpp | 119 SmallVector<InputSectionBase *, 0> newSections; in copySectionsIntoPartitions() 122 for (InputSectionBase *s : ctx.inputSections) { in copySectionsIntoPartitions() 400 for (InputSectionBase *s : f->getSections()) { in markUsedLocalSymbols() 504 InputSectionBase *isec = nullptr; in addSectionSymbols() 511 for (InputSectionBase *s : isd->sections) { in addSectionSymbols() 1016 static void maybeShuffle(DenseMap<const InputSectionBase *, int> &order) { in maybeShuffle() argument 1020 SmallVector<InputSectionBase *, 0> matched, sections = ctx.inputSections; in maybeShuffle() 1024 for (InputSectionBase *sec : sections) in maybeShuffle() 1039 for (InputSectionBase *&sec : sections) in maybeShuffle() 1047 for (InputSectionBase *sec : sections) { in maybeShuffle() [all …]
|
H A D | OutputSections.cpp | 105 void OutputSection::recordSection(InputSectionBase *isec) { in recordSection() 207 for (InputSectionBase *s : isd->sectionBases) { in finalizeInputSections() 262 llvm::function_ref<int(InputSectionBase *s)> order) { in sortByOrder() 278 void OutputSection::sort(llvm::function_ref<int(InputSectionBase *s)> order) { in sort() 610 ArrayRef<InputSectionBase *> sections = section->file->getSections(); in finalizeShtGroup() 662 InputSection *relSec, InputSectionBase *sec) { in relToCrel() 689 InputSectionBase *sec = relSec->getRelocatedSection(); in finalizeNonAllocCrel() 747 InputSectionBase *s = first->getRelocatedSection(); in finalize() 863 sort([](InputSectionBase *s) { return getPriority(s->name); }); in sortInitFini()
|
H A D | InputFiles.cpp | 375 const InputSectionBase &sec, uint64_t offset) { in getSrcMsgAux() 390 std::string InputFile::getSrcMsg(const Symbol &sym, const InputSectionBase &sec, in getSrcMsg() 442 static void handleSectionGroup(ArrayRef<InputSectionBase *> sections, in handleSectionGroup() 448 if (InputSectionBase *s = sections[index]) in handleSectionGroup() 461 InputSectionBase *head; in handleSectionGroup() 462 InputSectionBase *prev = nullptr; in handleSectionGroup() 464 InputSectionBase *s = sections[index]; in handleSectionGroup() 502 ObjFile<ELFT>::getDILineInfo(const InputSectionBase *s, uint64_t offset) { in getDILineInfo() 505 ArrayRef<InputSectionBase *> sections = s->file->getSections(); in getDILineInfo() 889 InputSectionBase *s = getRelocTarget(i, info); in initializeSections() [all …]
|
H A D | OutputSections.h | 76 void recordSection(InputSectionBase *isec); 122 void sort(llvm::function_ref<int(InputSectionBase *s)> order);
|
H A D | EhFrame.cpp | 38 EhReader(InputSectionBase *s, ArrayRef<uint8_t> d) : isec(s), d(d) {} in EhReader() 55 InputSectionBase *isec;
|
H A D | SyntheticSections.h | 432 DynamicReloc(RelType type, const InputSectionBase *inputSec, in DynamicReloc() 438 DynamicReloc(RelType type, const InputSectionBase *inputSec, 444 DynamicReloc(RelType type, const InputSectionBase *inputSec, in DynamicReloc() 466 const InputSectionBase *inputSec; 508 void addSymbolReloc(RelType dynType, InputSectionBase &isec, 517 void addRelativeReloc(RelType dynType, InputSectionBase &isec, in addRelativeReloc() 530 void addReloc(DynamicReloc::Kind kind, RelType dynType, InputSectionBase &sec, in addReloc() 605 const InputSectionBase *inputSec; 1246 return sec->kind() == InputSectionBase::Synthetic && in classof() 1441 uint64_t size, InputSectionBase §ion);
|
H A D | Target.cpp | 101 for (InputSectionBase *d : ctx.inputSections) { in getErrorPlace() 160 void TargetInfo::relocateAlloc(InputSectionBase &sec, uint8_t *buf) const { in relocateAlloc()
|
H A D | Relocations.cpp | 90 static std::string getLocation(InputSectionBase &s, const Symbol &sym, in getLocation() 420 explicit OffsetGetter(InputSectionBase &sec) { in OffsetGetter() 463 void scanSection(InputSectionBase &s, bool isEH = false); 466 InputSectionBase *sec; 568 InputSectionBase *sec; 753 InputSectionBase &sec = *l.sec; in reportUndefinedSymbol() 820 static bool maybeReportUndefined(Undefined &sym, InputSectionBase &sec, in maybeReportUndefined() 872 static void addRelativeReloc(InputSectionBase &isec, uint64_t offsetInSec, in addRelativeReloc() 1273 InputSectionBase &c, uint64_t offset, in handleMipsTlsRelocation() 1296 InputSectionBase &c, uint64_t offset, in handleTlsRelocation() [all …]
|
H A D | Thunks.h | 44 InputSectionBase §ion);
|
H A D | Target.h | 94 virtual void relocateAlloc(InputSectionBase &sec, uint8_t *buf) const; 197 InputSectionBase *isec;
|
H A D | Symbols.cpp | 529 InputSectionBase *errSec, uint64_t errOffset) { in reportDuplicate() 554 auto *sec1 = cast<InputSectionBase>(d->section); in reportDuplicate() 573 dyn_cast_or_null<InputSectionBase>(other.section), in checkDuplicate()
|
H A D | DWARF.cpp | 106 LLDDwarfObj<ELFT>::findAux(const InputSectionBase &sec, uint64_t pos, in findAux()
|
H A D | Symbols.h | 36 class InputSectionBase; variable 577 InputSectionBase *errSec, uint64_t errOffset);
|
/freebsd/contrib/llvm-project/lld/ELF/Arch/ |
H A D | RISCV.cpp | 46 void relocateAlloc(InputSectionBase &sec, uint8_t *buf) const override; 593 void RISCV::relocateAlloc(InputSectionBase &sec, uint8_t *buf) const { in relocateAlloc() 1061 unsigned &mergedXlen, const InputSectionBase *sec, in mergeArch() 1088 const InputSectionBase *oldSection, in mergeAtomic() 1089 const InputSectionBase *newSection, in mergeAtomic() 1105 auto reportUnknownAbiError = [](const InputSectionBase *section, in mergeAtomic() 1173 mergeAttributesSection(const SmallVector<InputSectionBase *, 0> §ions) { in mergeAttributesSection() argument 1176 const InputSectionBase *firstStackAlign = nullptr; in mergeAttributesSection() 1177 const InputSectionBase *firstAtomicAbi = nullptr; in mergeAttributesSection() 1186 for (const InputSectionBase *sec : sections) { in mergeAttributesSection() [all …]
|
H A D | AArch64.cpp | 53 void relocateAlloc(InputSectionBase &sec, uint8_t *buf) const override; 872 void AArch64::relocateAlloc(InputSectionBase &sec, uint8_t *buf) const { in relocateAlloc() 1088 addTaggedSymbolReferences(InputSectionBase &sec, in addTaggedSymbolReferences() 1139 for (InputSectionBase *section : file->getSections()) { in createTaggedSymbols()
|