123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686 |
- //===- Chunks.h -------------------------------------------------*- C++ -*-===//
- //
- // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
- // See https://llvm.org/LICENSE.txt for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- //===----------------------------------------------------------------------===//
- #ifndef LLD_COFF_CHUNKS_H
- #define LLD_COFF_CHUNKS_H
- #include "Config.h"
- #include "InputFiles.h"
- #include "lld/Common/LLVM.h"
- #include "llvm/ADT/ArrayRef.h"
- #include "llvm/ADT/PointerIntPair.h"
- #include "llvm/ADT/iterator.h"
- #include "llvm/ADT/iterator_range.h"
- #include "llvm/MC/StringTableBuilder.h"
- #include "llvm/Object/COFF.h"
- #include <utility>
- #include <vector>
- namespace lld {
- namespace coff {
- using llvm::COFF::ImportDirectoryTableEntry;
- using llvm::object::COFFSymbolRef;
- using llvm::object::SectionRef;
- using llvm::object::coff_relocation;
- using llvm::object::coff_section;
- class Baserel;
- class Defined;
- class DefinedImportData;
- class DefinedRegular;
- class ObjFile;
- class OutputSection;
- class RuntimePseudoReloc;
- class Symbol;
- // Mask for permissions (discardable, writable, readable, executable, etc).
- const uint32_t permMask = 0xFE000000;
- // Mask for section types (code, data, bss).
- const uint32_t typeMask = 0x000000E0;
- // The log base 2 of the largest section alignment, which is log2(8192), or 13.
- enum : unsigned { Log2MaxSectionAlignment = 13 };
- // A Chunk represents a chunk of data that will occupy space in the
- // output (if the resolver chose that). It may or may not be backed by
- // a section of an input file. It could be linker-created data, or
- // doesn't even have actual data (if common or bss).
- class Chunk {
- public:
- enum Kind : uint8_t { SectionKind, OtherKind, ImportThunkKind };
- Kind kind() const { return chunkKind; }
- // Returns the size of this chunk (even if this is a common or BSS.)
- size_t getSize() const;
- // Returns chunk alignment in power of two form. Value values are powers of
- // two from 1 to 8192.
- uint32_t getAlignment() const { return 1U << p2Align; }
- // Update the chunk section alignment measured in bytes. Internally alignment
- // is stored in log2.
- void setAlignment(uint32_t align) {
- // Treat zero byte alignment as 1 byte alignment.
- align = align ? align : 1;
- assert(llvm::isPowerOf2_32(align) && "alignment is not a power of 2");
- p2Align = llvm::Log2_32(align);
- assert(p2Align <= Log2MaxSectionAlignment &&
- "impossible requested alignment");
- }
- // Write this chunk to a mmap'ed file, assuming Buf is pointing to
- // beginning of the file. Because this function may use RVA values
- // of other chunks for relocations, you need to set them properly
- // before calling this function.
- void writeTo(uint8_t *buf) const;
- // The writer sets and uses the addresses. In practice, PE images cannot be
- // larger than 2GB. Chunks are always laid as part of the image, so Chunk RVAs
- // can be stored with 32 bits.
- uint32_t getRVA() const { return rva; }
- void setRVA(uint64_t v) {
- rva = (uint32_t)v;
- assert(rva == v && "RVA truncated");
- }
- // Returns readable/writable/executable bits.
- uint32_t getOutputCharacteristics() const;
- // Returns the section name if this is a section chunk.
- // It is illegal to call this function on non-section chunks.
- StringRef getSectionName() const;
- // An output section has pointers to chunks in the section, and each
- // chunk has a back pointer to an output section.
- void setOutputSectionIdx(uint16_t o) { osidx = o; }
- uint16_t getOutputSectionIdx() const { return osidx; }
- OutputSection *getOutputSection() const;
- // Windows-specific.
- // Collect all locations that contain absolute addresses for base relocations.
- void getBaserels(std::vector<Baserel> *res);
- // Returns a human-readable name of this chunk. Chunks are unnamed chunks of
- // bytes, so this is used only for logging or debugging.
- StringRef getDebugName() const;
- // Return true if this file has the hotpatch flag set to true in the
- // S_COMPILE3 record in codeview debug info. Also returns true for some thunks
- // synthesized by the linker.
- bool isHotPatchable() const;
- protected:
- Chunk(Kind k = OtherKind) : chunkKind(k), hasData(true), p2Align(0) {}
- const Kind chunkKind;
- public:
- // Returns true if this has non-zero data. BSS chunks return
- // false. If false is returned, the space occupied by this chunk
- // will be filled with zeros. Corresponds to the
- // IMAGE_SCN_CNT_UNINITIALIZED_DATA section characteristic bit.
- uint8_t hasData : 1;
- public:
- // The alignment of this chunk, stored in log2 form. The writer uses the
- // value.
- uint8_t p2Align : 7;
- // The output section index for this chunk. The first valid section number is
- // one.
- uint16_t osidx = 0;
- // The RVA of this chunk in the output. The writer sets a value.
- uint32_t rva = 0;
- };
- class NonSectionChunk : public Chunk {
- public:
- virtual ~NonSectionChunk() = default;
- // Returns the size of this chunk (even if this is a common or BSS.)
- virtual size_t getSize() const = 0;
- virtual uint32_t getOutputCharacteristics() const { return 0; }
- // Write this chunk to a mmap'ed file, assuming Buf is pointing to
- // beginning of the file. Because this function may use RVA values
- // of other chunks for relocations, you need to set them properly
- // before calling this function.
- virtual void writeTo(uint8_t *buf) const {}
- // Returns the section name if this is a section chunk.
- // It is illegal to call this function on non-section chunks.
- virtual StringRef getSectionName() const {
- llvm_unreachable("unimplemented getSectionName");
- }
- // Windows-specific.
- // Collect all locations that contain absolute addresses for base relocations.
- virtual void getBaserels(std::vector<Baserel> *res) {}
- // Returns a human-readable name of this chunk. Chunks are unnamed chunks of
- // bytes, so this is used only for logging or debugging.
- virtual StringRef getDebugName() const { return ""; }
- static bool classof(const Chunk *c) { return c->kind() != SectionKind; }
- protected:
- NonSectionChunk(Kind k = OtherKind) : Chunk(k) {}
- };
- // A chunk corresponding a section of an input file.
- class SectionChunk final : public Chunk {
- // Identical COMDAT Folding feature accesses section internal data.
- friend class ICF;
- public:
- class symbol_iterator : public llvm::iterator_adaptor_base<
- symbol_iterator, const coff_relocation *,
- std::random_access_iterator_tag, Symbol *> {
- friend SectionChunk;
- ObjFile *file;
- symbol_iterator(ObjFile *file, const coff_relocation *i)
- : symbol_iterator::iterator_adaptor_base(i), file(file) {}
- public:
- symbol_iterator() = default;
- Symbol *operator*() const { return file->getSymbol(I->SymbolTableIndex); }
- };
- SectionChunk(ObjFile *file, const coff_section *header);
- static bool classof(const Chunk *c) { return c->kind() == SectionKind; }
- size_t getSize() const { return header->SizeOfRawData; }
- ArrayRef<uint8_t> getContents() const;
- void writeTo(uint8_t *buf) const;
- uint32_t getOutputCharacteristics() const {
- return header->Characteristics & (permMask | typeMask);
- }
- StringRef getSectionName() const {
- return StringRef(sectionNameData, sectionNameSize);
- }
- void getBaserels(std::vector<Baserel> *res);
- bool isCOMDAT() const;
- void applyRelX64(uint8_t *off, uint16_t type, OutputSection *os, uint64_t s,
- uint64_t p) const;
- void applyRelX86(uint8_t *off, uint16_t type, OutputSection *os, uint64_t s,
- uint64_t p) const;
- void applyRelARM(uint8_t *off, uint16_t type, OutputSection *os, uint64_t s,
- uint64_t p) const;
- void applyRelARM64(uint8_t *off, uint16_t type, OutputSection *os, uint64_t s,
- uint64_t p) const;
- void getRuntimePseudoRelocs(std::vector<RuntimePseudoReloc> &res);
- // Called if the garbage collector decides to not include this chunk
- // in a final output. It's supposed to print out a log message to stdout.
- void printDiscardedMessage() const;
- // Adds COMDAT associative sections to this COMDAT section. A chunk
- // and its children are treated as a group by the garbage collector.
- void addAssociative(SectionChunk *child);
- StringRef getDebugName() const;
- // True if this is a codeview debug info chunk. These will not be laid out in
- // the image. Instead they will end up in the PDB, if one is requested.
- bool isCodeView() const {
- return getSectionName() == ".debug" || getSectionName().startswith(".debug$");
- }
- // True if this is a DWARF debug info or exception handling chunk.
- bool isDWARF() const {
- return getSectionName().startswith(".debug_") || getSectionName() == ".eh_frame";
- }
- // Allow iteration over the bodies of this chunk's relocated symbols.
- llvm::iterator_range<symbol_iterator> symbols() const {
- return llvm::make_range(symbol_iterator(file, relocsData),
- symbol_iterator(file, relocsData + relocsSize));
- }
- ArrayRef<coff_relocation> getRelocs() const {
- return llvm::makeArrayRef(relocsData, relocsSize);
- }
- // Reloc setter used by ARM range extension thunk insertion.
- void setRelocs(ArrayRef<coff_relocation> newRelocs) {
- relocsData = newRelocs.data();
- relocsSize = newRelocs.size();
- assert(relocsSize == newRelocs.size() && "reloc size truncation");
- }
- // Single linked list iterator for associated comdat children.
- class AssociatedIterator
- : public llvm::iterator_facade_base<
- AssociatedIterator, std::forward_iterator_tag, SectionChunk> {
- public:
- AssociatedIterator() = default;
- AssociatedIterator(SectionChunk *head) : cur(head) {}
- AssociatedIterator &operator=(const AssociatedIterator &r) {
- cur = r.cur;
- return *this;
- }
- bool operator==(const AssociatedIterator &r) const { return cur == r.cur; }
- const SectionChunk &operator*() const { return *cur; }
- SectionChunk &operator*() { return *cur; }
- AssociatedIterator &operator++() {
- cur = cur->assocChildren;
- return *this;
- }
- private:
- SectionChunk *cur = nullptr;
- };
- // Allow iteration over the associated child chunks for this section.
- llvm::iterator_range<AssociatedIterator> children() const {
- return llvm::make_range(AssociatedIterator(assocChildren),
- AssociatedIterator(nullptr));
- }
- // The section ID this chunk belongs to in its Obj.
- uint32_t getSectionNumber() const;
- ArrayRef<uint8_t> consumeDebugMagic();
- static ArrayRef<uint8_t> consumeDebugMagic(ArrayRef<uint8_t> data,
- StringRef sectionName);
- static SectionChunk *findByName(ArrayRef<SectionChunk *> sections,
- StringRef name);
- // The file that this chunk was created from.
- ObjFile *file;
- // Pointer to the COFF section header in the input file.
- const coff_section *header;
- // The COMDAT leader symbol if this is a COMDAT chunk.
- DefinedRegular *sym = nullptr;
- // The CRC of the contents as described in the COFF spec 4.5.5.
- // Auxiliary Format 5: Section Definitions. Used for ICF.
- uint32_t checksum = 0;
- // Used by the garbage collector.
- bool live;
- // Whether this section needs to be kept distinct from other sections during
- // ICF. This is set by the driver using address-significance tables.
- bool keepUnique = false;
- // The COMDAT selection if this is a COMDAT chunk.
- llvm::COFF::COMDATType selection = (llvm::COFF::COMDATType)0;
- // A pointer pointing to a replacement for this chunk.
- // Initially it points to "this" object. If this chunk is merged
- // with other chunk by ICF, it points to another chunk,
- // and this chunk is considered as dead.
- SectionChunk *repl;
- private:
- SectionChunk *assocChildren = nullptr;
- // Used for ICF (Identical COMDAT Folding)
- void replace(SectionChunk *other);
- uint32_t eqClass[2] = {0, 0};
- // Relocations for this section. Size is stored below.
- const coff_relocation *relocsData;
- // Section name string. Size is stored below.
- const char *sectionNameData;
- uint32_t relocsSize = 0;
- uint32_t sectionNameSize = 0;
- };
- // Inline methods to implement faux-virtual dispatch for SectionChunk.
- inline size_t Chunk::getSize() const {
- if (isa<SectionChunk>(this))
- return static_cast<const SectionChunk *>(this)->getSize();
- else
- return static_cast<const NonSectionChunk *>(this)->getSize();
- }
- inline uint32_t Chunk::getOutputCharacteristics() const {
- if (isa<SectionChunk>(this))
- return static_cast<const SectionChunk *>(this)->getOutputCharacteristics();
- else
- return static_cast<const NonSectionChunk *>(this)
- ->getOutputCharacteristics();
- }
- inline void Chunk::writeTo(uint8_t *buf) const {
- if (isa<SectionChunk>(this))
- static_cast<const SectionChunk *>(this)->writeTo(buf);
- else
- static_cast<const NonSectionChunk *>(this)->writeTo(buf);
- }
- inline StringRef Chunk::getSectionName() const {
- if (isa<SectionChunk>(this))
- return static_cast<const SectionChunk *>(this)->getSectionName();
- else
- return static_cast<const NonSectionChunk *>(this)->getSectionName();
- }
- inline void Chunk::getBaserels(std::vector<Baserel> *res) {
- if (isa<SectionChunk>(this))
- static_cast<SectionChunk *>(this)->getBaserels(res);
- else
- static_cast<NonSectionChunk *>(this)->getBaserels(res);
- }
- inline StringRef Chunk::getDebugName() const {
- if (isa<SectionChunk>(this))
- return static_cast<const SectionChunk *>(this)->getDebugName();
- else
- return static_cast<const NonSectionChunk *>(this)->getDebugName();
- }
- // This class is used to implement an lld-specific feature (not implemented in
- // MSVC) that minimizes the output size by finding string literals sharing tail
- // parts and merging them.
- //
- // If string tail merging is enabled and a section is identified as containing a
- // string literal, it is added to a MergeChunk with an appropriate alignment.
- // The MergeChunk then tail merges the strings using the StringTableBuilder
- // class and assigns RVAs and section offsets to each of the member chunks based
- // on the offsets assigned by the StringTableBuilder.
- class MergeChunk : public NonSectionChunk {
- public:
- MergeChunk(uint32_t alignment);
- static void addSection(SectionChunk *c);
- void finalizeContents();
- void assignSubsectionRVAs();
- uint32_t getOutputCharacteristics() const override;
- StringRef getSectionName() const override { return ".rdata"; }
- size_t getSize() const override;
- void writeTo(uint8_t *buf) const override;
- static MergeChunk *instances[Log2MaxSectionAlignment + 1];
- std::vector<SectionChunk *> sections;
- private:
- llvm::StringTableBuilder builder;
- bool finalized = false;
- };
- // A chunk for common symbols. Common chunks don't have actual data.
- class CommonChunk : public NonSectionChunk {
- public:
- CommonChunk(const COFFSymbolRef sym);
- size_t getSize() const override { return sym.getValue(); }
- uint32_t getOutputCharacteristics() const override;
- StringRef getSectionName() const override { return ".bss"; }
- private:
- const COFFSymbolRef sym;
- };
- // A chunk for linker-created strings.
- class StringChunk : public NonSectionChunk {
- public:
- explicit StringChunk(StringRef s) : str(s) {}
- size_t getSize() const override { return str.size() + 1; }
- void writeTo(uint8_t *buf) const override;
- private:
- StringRef str;
- };
- static const uint8_t importThunkX86[] = {
- 0xff, 0x25, 0x00, 0x00, 0x00, 0x00, // JMP *0x0
- };
- static const uint8_t importThunkARM[] = {
- 0x40, 0xf2, 0x00, 0x0c, // mov.w ip, #0
- 0xc0, 0xf2, 0x00, 0x0c, // mov.t ip, #0
- 0xdc, 0xf8, 0x00, 0xf0, // ldr.w pc, [ip]
- };
- static const uint8_t importThunkARM64[] = {
- 0x10, 0x00, 0x00, 0x90, // adrp x16, #0
- 0x10, 0x02, 0x40, 0xf9, // ldr x16, [x16]
- 0x00, 0x02, 0x1f, 0xd6, // br x16
- };
- // Windows-specific.
- // A chunk for DLL import jump table entry. In a final output, its
- // contents will be a JMP instruction to some __imp_ symbol.
- class ImportThunkChunk : public NonSectionChunk {
- public:
- ImportThunkChunk(Defined *s)
- : NonSectionChunk(ImportThunkKind), impSymbol(s) {}
- static bool classof(const Chunk *c) { return c->kind() == ImportThunkKind; }
- protected:
- Defined *impSymbol;
- };
- class ImportThunkChunkX64 : public ImportThunkChunk {
- public:
- explicit ImportThunkChunkX64(Defined *s);
- size_t getSize() const override { return sizeof(importThunkX86); }
- void writeTo(uint8_t *buf) const override;
- };
- class ImportThunkChunkX86 : public ImportThunkChunk {
- public:
- explicit ImportThunkChunkX86(Defined *s) : ImportThunkChunk(s) {}
- size_t getSize() const override { return sizeof(importThunkX86); }
- void getBaserels(std::vector<Baserel> *res) override;
- void writeTo(uint8_t *buf) const override;
- };
- class ImportThunkChunkARM : public ImportThunkChunk {
- public:
- explicit ImportThunkChunkARM(Defined *s) : ImportThunkChunk(s) {}
- size_t getSize() const override { return sizeof(importThunkARM); }
- void getBaserels(std::vector<Baserel> *res) override;
- void writeTo(uint8_t *buf) const override;
- };
- class ImportThunkChunkARM64 : public ImportThunkChunk {
- public:
- explicit ImportThunkChunkARM64(Defined *s) : ImportThunkChunk(s) {}
- size_t getSize() const override { return sizeof(importThunkARM64); }
- void writeTo(uint8_t *buf) const override;
- };
- class RangeExtensionThunkARM : public NonSectionChunk {
- public:
- explicit RangeExtensionThunkARM(Defined *t) : target(t) {}
- size_t getSize() const override;
- void writeTo(uint8_t *buf) const override;
- Defined *target;
- };
- class RangeExtensionThunkARM64 : public NonSectionChunk {
- public:
- explicit RangeExtensionThunkARM64(Defined *t) : target(t) {}
- size_t getSize() const override;
- void writeTo(uint8_t *buf) const override;
- Defined *target;
- };
- // Windows-specific.
- // See comments for DefinedLocalImport class.
- class LocalImportChunk : public NonSectionChunk {
- public:
- explicit LocalImportChunk(Defined *s) : sym(s) {
- setAlignment(config->wordsize);
- }
- size_t getSize() const override;
- void getBaserels(std::vector<Baserel> *res) override;
- void writeTo(uint8_t *buf) const override;
- private:
- Defined *sym;
- };
- // Duplicate RVAs are not allowed in RVA tables, so unique symbols by chunk and
- // offset into the chunk. Order does not matter as the RVA table will be sorted
- // later.
- struct ChunkAndOffset {
- Chunk *inputChunk;
- uint32_t offset;
- struct DenseMapInfo {
- static ChunkAndOffset getEmptyKey() {
- return {llvm::DenseMapInfo<Chunk *>::getEmptyKey(), 0};
- }
- static ChunkAndOffset getTombstoneKey() {
- return {llvm::DenseMapInfo<Chunk *>::getTombstoneKey(), 0};
- }
- static unsigned getHashValue(const ChunkAndOffset &co) {
- return llvm::DenseMapInfo<std::pair<Chunk *, uint32_t>>::getHashValue(
- {co.inputChunk, co.offset});
- }
- static bool isEqual(const ChunkAndOffset &lhs, const ChunkAndOffset &rhs) {
- return lhs.inputChunk == rhs.inputChunk && lhs.offset == rhs.offset;
- }
- };
- };
- using SymbolRVASet = llvm::DenseSet<ChunkAndOffset>;
- // Table which contains symbol RVAs. Used for /safeseh and /guard:cf.
- class RVATableChunk : public NonSectionChunk {
- public:
- explicit RVATableChunk(SymbolRVASet s) : syms(std::move(s)) {}
- size_t getSize() const override { return syms.size() * 4; }
- void writeTo(uint8_t *buf) const override;
- private:
- SymbolRVASet syms;
- };
- // Windows-specific.
- // This class represents a block in .reloc section.
- // See the PE/COFF spec 5.6 for details.
- class BaserelChunk : public NonSectionChunk {
- public:
- BaserelChunk(uint32_t page, Baserel *begin, Baserel *end);
- size_t getSize() const override { return data.size(); }
- void writeTo(uint8_t *buf) const override;
- private:
- std::vector<uint8_t> data;
- };
- class Baserel {
- public:
- Baserel(uint32_t v, uint8_t ty) : rva(v), type(ty) {}
- explicit Baserel(uint32_t v) : Baserel(v, getDefaultType()) {}
- uint8_t getDefaultType();
- uint32_t rva;
- uint8_t type;
- };
- // This is a placeholder Chunk, to allow attaching a DefinedSynthetic to a
- // specific place in a section, without any data. This is used for the MinGW
- // specific symbol __RUNTIME_PSEUDO_RELOC_LIST_END__, even though the concept
- // of an empty chunk isn't MinGW specific.
- class EmptyChunk : public NonSectionChunk {
- public:
- EmptyChunk() {}
- size_t getSize() const override { return 0; }
- void writeTo(uint8_t *buf) const override {}
- };
- // MinGW specific, for the "automatic import of variables from DLLs" feature.
- // This provides the table of runtime pseudo relocations, for variable
- // references that turned out to need to be imported from a DLL even though
- // the reference didn't use the dllimport attribute. The MinGW runtime will
- // process this table after loading, before handling control over to user
- // code.
- class PseudoRelocTableChunk : public NonSectionChunk {
- public:
- PseudoRelocTableChunk(std::vector<RuntimePseudoReloc> &relocs)
- : relocs(std::move(relocs)) {
- setAlignment(4);
- }
- size_t getSize() const override;
- void writeTo(uint8_t *buf) const override;
- private:
- std::vector<RuntimePseudoReloc> relocs;
- };
- // MinGW specific; information about one individual location in the image
- // that needs to be fixed up at runtime after loading. This represents
- // one individual element in the PseudoRelocTableChunk table.
- class RuntimePseudoReloc {
- public:
- RuntimePseudoReloc(Defined *sym, SectionChunk *target, uint32_t targetOffset,
- int flags)
- : sym(sym), target(target), targetOffset(targetOffset), flags(flags) {}
- Defined *sym;
- SectionChunk *target;
- uint32_t targetOffset;
- // The Flags field contains the size of the relocation, in bits. No other
- // flags are currently defined.
- int flags;
- };
- // MinGW specific. A Chunk that contains one pointer-sized absolute value.
- class AbsolutePointerChunk : public NonSectionChunk {
- public:
- AbsolutePointerChunk(uint64_t value) : value(value) {
- setAlignment(getSize());
- }
- size_t getSize() const override;
- void writeTo(uint8_t *buf) const override;
- private:
- uint64_t value;
- };
- // Return true if this file has the hotpatch flag set to true in the S_COMPILE3
- // record in codeview debug info. Also returns true for some thunks synthesized
- // by the linker.
- inline bool Chunk::isHotPatchable() const {
- if (auto *sc = dyn_cast<SectionChunk>(this))
- return sc->file->hotPatchable;
- else if (isa<ImportThunkChunk>(this))
- return true;
- return false;
- }
- void applyMOV32T(uint8_t *off, uint32_t v);
- void applyBranch24T(uint8_t *off, int32_t v);
- void applyArm64Addr(uint8_t *off, uint64_t s, uint64_t p, int shift);
- void applyArm64Imm(uint8_t *off, uint64_t imm, uint32_t rangeLimit);
- void applyArm64Branch26(uint8_t *off, int64_t v);
- } // namespace coff
- } // namespace lld
- namespace llvm {
- template <>
- struct DenseMapInfo<lld::coff::ChunkAndOffset>
- : lld::coff::ChunkAndOffset::DenseMapInfo {};
- }
- #endif
|