1 //===- Chunks.h -------------------------------------------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 #ifndef LLD_COFF_CHUNKS_H
10 #define LLD_COFF_CHUNKS_H
13 #include "InputFiles.h"
14 #include "lld/Common/LLVM.h"
15 #include "llvm/ADT/ArrayRef.h"
16 #include "llvm/ADT/PointerIntPair.h"
17 #include "llvm/ADT/iterator.h"
18 #include "llvm/ADT/iterator_range.h"
19 #include "llvm/MC/StringTableBuilder.h"
20 #include "llvm/Object/COFF.h"
27 using llvm::COFF::ImportDirectoryTableEntry
;
28 using llvm::object::COFFSymbolRef
;
29 using llvm::object::SectionRef
;
30 using llvm::object::coff_relocation
;
31 using llvm::object::coff_section
;
35 class DefinedImportData
;
39 class RuntimePseudoReloc
;
42 // Mask for permissions (discardable, writable, readable, executable, etc).
43 const uint32_t permMask
= 0xFE000000;
45 // Mask for section types (code, data, bss).
46 const uint32_t typeMask
= 0x000000E0;
48 // The log base 2 of the largest section alignment, which is log2(8192), or 13.
49 enum : unsigned { Log2MaxSectionAlignment
= 13 };
51 // A Chunk represents a chunk of data that will occupy space in the
52 // output (if the resolver chose that). It may or may not be backed by
53 // a section of an input file. It could be linker-created data, or
54 // doesn't even have actual data (if common or bss).
57 enum Kind
: uint8_t { SectionKind
, OtherKind
, ImportThunkKind
};
58 Kind
kind() const { return chunkKind
; }
60 // Returns the size of this chunk (even if this is a common or BSS.)
61 size_t getSize() const;
63 // Returns chunk alignment in power of two form. Value values are powers of
64 // two from 1 to 8192.
65 uint32_t getAlignment() const { return 1U << p2Align
; }
67 // Update the chunk section alignment measured in bytes. Internally alignment
69 void setAlignment(uint32_t align
) {
70 // Treat zero byte alignment as 1 byte alignment.
71 align
= align
? align
: 1;
72 assert(llvm::isPowerOf2_32(align
) && "alignment is not a power of 2");
73 p2Align
= llvm::Log2_32(align
);
74 assert(p2Align
<= Log2MaxSectionAlignment
&&
75 "impossible requested alignment");
78 // Write this chunk to a mmap'ed file, assuming Buf is pointing to
79 // beginning of the file. Because this function may use RVA values
80 // of other chunks for relocations, you need to set them properly
81 // before calling this function.
82 void writeTo(uint8_t *buf
) const;
84 // The writer sets and uses the addresses. In practice, PE images cannot be
85 // larger than 2GB. Chunks are always laid as part of the image, so Chunk RVAs
86 // can be stored with 32 bits.
87 uint32_t getRVA() const { return rva
; }
88 void setRVA(uint64_t v
) {
89 // This may truncate. The writer checks for overflow later.
93 // Returns readable/writable/executable bits.
94 uint32_t getOutputCharacteristics() const;
96 // Returns the section name if this is a section chunk.
97 // It is illegal to call this function on non-section chunks.
98 StringRef
getSectionName() const;
100 // An output section has pointers to chunks in the section, and each
101 // chunk has a back pointer to an output section.
102 void setOutputSectionIdx(uint16_t o
) { osidx
= o
; }
103 uint16_t getOutputSectionIdx() const { return osidx
; }
106 // Collect all locations that contain absolute addresses for base relocations.
107 void getBaserels(std::vector
<Baserel
> *res
);
109 // Returns a human-readable name of this chunk. Chunks are unnamed chunks of
110 // bytes, so this is used only for logging or debugging.
111 StringRef
getDebugName() const;
113 // Return true if this file has the hotpatch flag set to true in the
114 // S_COMPILE3 record in codeview debug info. Also returns true for some thunks
115 // synthesized by the linker.
116 bool isHotPatchable() const;
119 Chunk(Kind k
= OtherKind
) : chunkKind(k
), hasData(true), p2Align(0) {}
121 const Kind chunkKind
;
124 // Returns true if this has non-zero data. BSS chunks return
125 // false. If false is returned, the space occupied by this chunk
126 // will be filled with zeros. Corresponds to the
127 // IMAGE_SCN_CNT_UNINITIALIZED_DATA section characteristic bit.
131 // The alignment of this chunk, stored in log2 form. The writer uses the
135 // The output section index for this chunk. The first valid section number is
139 // The RVA of this chunk in the output. The writer sets a value.
143 class NonSectionChunk
: public Chunk
{
145 virtual ~NonSectionChunk() = default;
147 // Returns the size of this chunk (even if this is a common or BSS.)
148 virtual size_t getSize() const = 0;
150 virtual uint32_t getOutputCharacteristics() const { return 0; }
152 // Write this chunk to a mmap'ed file, assuming Buf is pointing to
153 // beginning of the file. Because this function may use RVA values
154 // of other chunks for relocations, you need to set them properly
155 // before calling this function.
156 virtual void writeTo(uint8_t *buf
) const {}
158 // Returns the section name if this is a section chunk.
159 // It is illegal to call this function on non-section chunks.
160 virtual StringRef
getSectionName() const {
161 llvm_unreachable("unimplemented getSectionName");
165 // Collect all locations that contain absolute addresses for base relocations.
166 virtual void getBaserels(std::vector
<Baserel
> *res
) {}
168 // Returns a human-readable name of this chunk. Chunks are unnamed chunks of
169 // bytes, so this is used only for logging or debugging.
170 virtual StringRef
getDebugName() const { return ""; }
172 static bool classof(const Chunk
*c
) { return c
->kind() != SectionKind
; }
175 NonSectionChunk(Kind k
= OtherKind
) : Chunk(k
) {}
178 // A chunk corresponding a section of an input file.
179 class SectionChunk final
: public Chunk
{
180 // Identical COMDAT Folding feature accesses section internal data.
184 class symbol_iterator
: public llvm::iterator_adaptor_base
<
185 symbol_iterator
, const coff_relocation
*,
186 std::random_access_iterator_tag
, Symbol
*> {
191 symbol_iterator(ObjFile
*file
, const coff_relocation
*i
)
192 : symbol_iterator::iterator_adaptor_base(i
), file(file
) {}
195 symbol_iterator() = default;
197 Symbol
*operator*() const { return file
->getSymbol(I
->SymbolTableIndex
); }
200 SectionChunk(ObjFile
*file
, const coff_section
*header
);
201 static bool classof(const Chunk
*c
) { return c
->kind() == SectionKind
; }
202 size_t getSize() const { return header
->SizeOfRawData
; }
203 ArrayRef
<uint8_t> getContents() const;
204 void writeTo(uint8_t *buf
) const;
206 // Defend against unsorted relocations. This may be overly conservative.
207 void sortRelocations();
209 // Write and relocate a portion of the section. This is intended to be called
210 // in a loop. Relocations must be sorted first.
211 void writeAndRelocateSubsection(ArrayRef
<uint8_t> sec
,
212 ArrayRef
<uint8_t> subsec
,
213 uint32_t &nextRelocIndex
, uint8_t *buf
) const;
215 uint32_t getOutputCharacteristics() const {
216 return header
->Characteristics
& (permMask
| typeMask
);
218 StringRef
getSectionName() const {
219 return StringRef(sectionNameData
, sectionNameSize
);
221 void getBaserels(std::vector
<Baserel
> *res
);
222 bool isCOMDAT() const;
223 void applyRelocation(uint8_t *off
, const coff_relocation
&rel
) const;
224 void applyRelX64(uint8_t *off
, uint16_t type
, OutputSection
*os
, uint64_t s
,
226 void applyRelX86(uint8_t *off
, uint16_t type
, OutputSection
*os
, uint64_t s
,
228 void applyRelARM(uint8_t *off
, uint16_t type
, OutputSection
*os
, uint64_t s
,
230 void applyRelARM64(uint8_t *off
, uint16_t type
, OutputSection
*os
, uint64_t s
,
233 void getRuntimePseudoRelocs(std::vector
<RuntimePseudoReloc
> &res
);
235 // Called if the garbage collector decides to not include this chunk
236 // in a final output. It's supposed to print out a log message to stdout.
237 void printDiscardedMessage() const;
239 // Adds COMDAT associative sections to this COMDAT section. A chunk
240 // and its children are treated as a group by the garbage collector.
241 void addAssociative(SectionChunk
*child
);
243 StringRef
getDebugName() const;
245 // True if this is a codeview debug info chunk. These will not be laid out in
246 // the image. Instead they will end up in the PDB, if one is requested.
247 bool isCodeView() const {
248 return getSectionName() == ".debug" || getSectionName().startswith(".debug$");
251 // True if this is a DWARF debug info or exception handling chunk.
252 bool isDWARF() const {
253 return getSectionName().startswith(".debug_") || getSectionName() == ".eh_frame";
256 // Allow iteration over the bodies of this chunk's relocated symbols.
257 llvm::iterator_range
<symbol_iterator
> symbols() const {
258 return llvm::make_range(symbol_iterator(file
, relocsData
),
259 symbol_iterator(file
, relocsData
+ relocsSize
));
262 ArrayRef
<coff_relocation
> getRelocs() const {
263 return llvm::makeArrayRef(relocsData
, relocsSize
);
266 // Reloc setter used by ARM range extension thunk insertion.
267 void setRelocs(ArrayRef
<coff_relocation
> newRelocs
) {
268 relocsData
= newRelocs
.data();
269 relocsSize
= newRelocs
.size();
270 assert(relocsSize
== newRelocs
.size() && "reloc size truncation");
273 // Single linked list iterator for associated comdat children.
274 class AssociatedIterator
275 : public llvm::iterator_facade_base
<
276 AssociatedIterator
, std::forward_iterator_tag
, SectionChunk
> {
278 AssociatedIterator() = default;
279 AssociatedIterator(SectionChunk
*head
) : cur(head
) {}
280 bool operator==(const AssociatedIterator
&r
) const { return cur
== r
.cur
; }
281 // FIXME: Wrong const-ness, but it makes filter ranges work.
282 SectionChunk
&operator*() const { return *cur
; }
283 SectionChunk
&operator*() { return *cur
; }
284 AssociatedIterator
&operator++() {
285 cur
= cur
->assocChildren
;
290 SectionChunk
*cur
= nullptr;
293 // Allow iteration over the associated child chunks for this section.
294 llvm::iterator_range
<AssociatedIterator
> children() const {
295 // Associated sections do not have children. The assocChildren field is
296 // part of the parent's list of children.
297 bool isAssoc
= selection
== llvm::COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE
;
298 return llvm::make_range(
299 AssociatedIterator(isAssoc
? nullptr : assocChildren
),
300 AssociatedIterator(nullptr));
303 // The section ID this chunk belongs to in its Obj.
304 uint32_t getSectionNumber() const;
306 ArrayRef
<uint8_t> consumeDebugMagic();
308 static ArrayRef
<uint8_t> consumeDebugMagic(ArrayRef
<uint8_t> data
,
309 StringRef sectionName
);
311 static SectionChunk
*findByName(ArrayRef
<SectionChunk
*> sections
,
314 // The file that this chunk was created from.
317 // Pointer to the COFF section header in the input file.
318 const coff_section
*header
;
320 // The COMDAT leader symbol if this is a COMDAT chunk.
321 DefinedRegular
*sym
= nullptr;
323 // The CRC of the contents as described in the COFF spec 4.5.5.
324 // Auxiliary Format 5: Section Definitions. Used for ICF.
325 uint32_t checksum
= 0;
327 // Used by the garbage collector.
330 // Whether this section needs to be kept distinct from other sections during
331 // ICF. This is set by the driver using address-significance tables.
332 bool keepUnique
= false;
334 // The COMDAT selection if this is a COMDAT chunk.
335 llvm::COFF::COMDATType selection
= (llvm::COFF::COMDATType
)0;
337 // A pointer pointing to a replacement for this chunk.
338 // Initially it points to "this" object. If this chunk is merged
339 // with other chunk by ICF, it points to another chunk,
340 // and this chunk is considered as dead.
344 SectionChunk
*assocChildren
= nullptr;
346 // Used for ICF (Identical COMDAT Folding)
347 void replace(SectionChunk
*other
);
348 uint32_t eqClass
[2] = {0, 0};
350 // Relocations for this section. Size is stored below.
351 const coff_relocation
*relocsData
;
353 // Section name string. Size is stored below.
354 const char *sectionNameData
;
356 uint32_t relocsSize
= 0;
357 uint32_t sectionNameSize
= 0;
360 // Inline methods to implement faux-virtual dispatch for SectionChunk.
362 inline size_t Chunk::getSize() const {
363 if (isa
<SectionChunk
>(this))
364 return static_cast<const SectionChunk
*>(this)->getSize();
366 return static_cast<const NonSectionChunk
*>(this)->getSize();
369 inline uint32_t Chunk::getOutputCharacteristics() const {
370 if (isa
<SectionChunk
>(this))
371 return static_cast<const SectionChunk
*>(this)->getOutputCharacteristics();
373 return static_cast<const NonSectionChunk
*>(this)
374 ->getOutputCharacteristics();
377 inline void Chunk::writeTo(uint8_t *buf
) const {
378 if (isa
<SectionChunk
>(this))
379 static_cast<const SectionChunk
*>(this)->writeTo(buf
);
381 static_cast<const NonSectionChunk
*>(this)->writeTo(buf
);
384 inline StringRef
Chunk::getSectionName() const {
385 if (isa
<SectionChunk
>(this))
386 return static_cast<const SectionChunk
*>(this)->getSectionName();
388 return static_cast<const NonSectionChunk
*>(this)->getSectionName();
391 inline void Chunk::getBaserels(std::vector
<Baserel
> *res
) {
392 if (isa
<SectionChunk
>(this))
393 static_cast<SectionChunk
*>(this)->getBaserels(res
);
395 static_cast<NonSectionChunk
*>(this)->getBaserels(res
);
398 inline StringRef
Chunk::getDebugName() const {
399 if (isa
<SectionChunk
>(this))
400 return static_cast<const SectionChunk
*>(this)->getDebugName();
402 return static_cast<const NonSectionChunk
*>(this)->getDebugName();
405 // This class is used to implement an lld-specific feature (not implemented in
406 // MSVC) that minimizes the output size by finding string literals sharing tail
407 // parts and merging them.
409 // If string tail merging is enabled and a section is identified as containing a
410 // string literal, it is added to a MergeChunk with an appropriate alignment.
411 // The MergeChunk then tail merges the strings using the StringTableBuilder
412 // class and assigns RVAs and section offsets to each of the member chunks based
413 // on the offsets assigned by the StringTableBuilder.
414 class MergeChunk
: public NonSectionChunk
{
416 MergeChunk(uint32_t alignment
);
417 static void addSection(COFFLinkerContext
&ctx
, SectionChunk
*c
);
418 void finalizeContents();
419 void assignSubsectionRVAs();
421 uint32_t getOutputCharacteristics() const override
;
422 StringRef
getSectionName() const override
{ return ".rdata"; }
423 size_t getSize() const override
;
424 void writeTo(uint8_t *buf
) const override
;
426 std::vector
<SectionChunk
*> sections
;
429 llvm::StringTableBuilder builder
;
430 bool finalized
= false;
433 // A chunk for common symbols. Common chunks don't have actual data.
434 class CommonChunk
: public NonSectionChunk
{
436 CommonChunk(const COFFSymbolRef sym
);
437 size_t getSize() const override
{ return sym
.getValue(); }
438 uint32_t getOutputCharacteristics() const override
;
439 StringRef
getSectionName() const override
{ return ".bss"; }
442 const COFFSymbolRef sym
;
445 // A chunk for linker-created strings.
446 class StringChunk
: public NonSectionChunk
{
448 explicit StringChunk(StringRef s
) : str(s
) {}
449 size_t getSize() const override
{ return str
.size() + 1; }
450 void writeTo(uint8_t *buf
) const override
;
456 static const uint8_t importThunkX86
[] = {
457 0xff, 0x25, 0x00, 0x00, 0x00, 0x00, // JMP *0x0
460 static const uint8_t importThunkARM
[] = {
461 0x40, 0xf2, 0x00, 0x0c, // mov.w ip, #0
462 0xc0, 0xf2, 0x00, 0x0c, // mov.t ip, #0
463 0xdc, 0xf8, 0x00, 0xf0, // ldr.w pc, [ip]
466 static const uint8_t importThunkARM64
[] = {
467 0x10, 0x00, 0x00, 0x90, // adrp x16, #0
468 0x10, 0x02, 0x40, 0xf9, // ldr x16, [x16]
469 0x00, 0x02, 0x1f, 0xd6, // br x16
473 // A chunk for DLL import jump table entry. In a final output, its
474 // contents will be a JMP instruction to some __imp_ symbol.
475 class ImportThunkChunk
: public NonSectionChunk
{
477 ImportThunkChunk(Defined
*s
)
478 : NonSectionChunk(ImportThunkKind
), impSymbol(s
) {}
479 static bool classof(const Chunk
*c
) { return c
->kind() == ImportThunkKind
; }
485 class ImportThunkChunkX64
: public ImportThunkChunk
{
487 explicit ImportThunkChunkX64(Defined
*s
);
488 size_t getSize() const override
{ return sizeof(importThunkX86
); }
489 void writeTo(uint8_t *buf
) const override
;
492 class ImportThunkChunkX86
: public ImportThunkChunk
{
494 explicit ImportThunkChunkX86(Defined
*s
) : ImportThunkChunk(s
) {}
495 size_t getSize() const override
{ return sizeof(importThunkX86
); }
496 void getBaserels(std::vector
<Baserel
> *res
) override
;
497 void writeTo(uint8_t *buf
) const override
;
500 class ImportThunkChunkARM
: public ImportThunkChunk
{
502 explicit ImportThunkChunkARM(Defined
*s
) : ImportThunkChunk(s
) {
505 size_t getSize() const override
{ return sizeof(importThunkARM
); }
506 void getBaserels(std::vector
<Baserel
> *res
) override
;
507 void writeTo(uint8_t *buf
) const override
;
510 class ImportThunkChunkARM64
: public ImportThunkChunk
{
512 explicit ImportThunkChunkARM64(Defined
*s
) : ImportThunkChunk(s
) {
515 size_t getSize() const override
{ return sizeof(importThunkARM64
); }
516 void writeTo(uint8_t *buf
) const override
;
519 class RangeExtensionThunkARM
: public NonSectionChunk
{
521 explicit RangeExtensionThunkARM(Defined
*t
) : target(t
) { setAlignment(2); }
522 size_t getSize() const override
;
523 void writeTo(uint8_t *buf
) const override
;
528 class RangeExtensionThunkARM64
: public NonSectionChunk
{
530 explicit RangeExtensionThunkARM64(Defined
*t
) : target(t
) { setAlignment(4); }
531 size_t getSize() const override
;
532 void writeTo(uint8_t *buf
) const override
;
538 // See comments for DefinedLocalImport class.
539 class LocalImportChunk
: public NonSectionChunk
{
541 explicit LocalImportChunk(Defined
*s
) : sym(s
) {
542 setAlignment(config
->wordsize
);
544 size_t getSize() const override
;
545 void getBaserels(std::vector
<Baserel
> *res
) override
;
546 void writeTo(uint8_t *buf
) const override
;
552 // Duplicate RVAs are not allowed in RVA tables, so unique symbols by chunk and
553 // offset into the chunk. Order does not matter as the RVA table will be sorted
555 struct ChunkAndOffset
{
559 struct DenseMapInfo
{
560 static ChunkAndOffset
getEmptyKey() {
561 return {llvm::DenseMapInfo
<Chunk
*>::getEmptyKey(), 0};
563 static ChunkAndOffset
getTombstoneKey() {
564 return {llvm::DenseMapInfo
<Chunk
*>::getTombstoneKey(), 0};
566 static unsigned getHashValue(const ChunkAndOffset
&co
) {
567 return llvm::DenseMapInfo
<std::pair
<Chunk
*, uint32_t>>::getHashValue(
568 {co
.inputChunk
, co
.offset
});
570 static bool isEqual(const ChunkAndOffset
&lhs
, const ChunkAndOffset
&rhs
) {
571 return lhs
.inputChunk
== rhs
.inputChunk
&& lhs
.offset
== rhs
.offset
;
576 using SymbolRVASet
= llvm::DenseSet
<ChunkAndOffset
>;
578 // Table which contains symbol RVAs. Used for /safeseh and /guard:cf.
579 class RVATableChunk
: public NonSectionChunk
{
581 explicit RVATableChunk(SymbolRVASet s
) : syms(std::move(s
)) {}
582 size_t getSize() const override
{ return syms
.size() * 4; }
583 void writeTo(uint8_t *buf
) const override
;
589 // Table which contains symbol RVAs with flags. Used for /guard:ehcont.
590 class RVAFlagTableChunk
: public NonSectionChunk
{
592 explicit RVAFlagTableChunk(SymbolRVASet s
) : syms(std::move(s
)) {}
593 size_t getSize() const override
{ return syms
.size() * 5; }
594 void writeTo(uint8_t *buf
) const override
;
601 // This class represents a block in .reloc section.
602 // See the PE/COFF spec 5.6 for details.
603 class BaserelChunk
: public NonSectionChunk
{
605 BaserelChunk(uint32_t page
, Baserel
*begin
, Baserel
*end
);
606 size_t getSize() const override
{ return data
.size(); }
607 void writeTo(uint8_t *buf
) const override
;
610 std::vector
<uint8_t> data
;
615 Baserel(uint32_t v
, uint8_t ty
) : rva(v
), type(ty
) {}
616 explicit Baserel(uint32_t v
) : Baserel(v
, getDefaultType()) {}
617 uint8_t getDefaultType();
623 // This is a placeholder Chunk, to allow attaching a DefinedSynthetic to a
624 // specific place in a section, without any data. This is used for the MinGW
625 // specific symbol __RUNTIME_PSEUDO_RELOC_LIST_END__, even though the concept
626 // of an empty chunk isn't MinGW specific.
627 class EmptyChunk
: public NonSectionChunk
{
630 size_t getSize() const override
{ return 0; }
631 void writeTo(uint8_t *buf
) const override
{}
634 // MinGW specific, for the "automatic import of variables from DLLs" feature.
635 // This provides the table of runtime pseudo relocations, for variable
636 // references that turned out to need to be imported from a DLL even though
637 // the reference didn't use the dllimport attribute. The MinGW runtime will
638 // process this table after loading, before handling control over to user
640 class PseudoRelocTableChunk
: public NonSectionChunk
{
642 PseudoRelocTableChunk(std::vector
<RuntimePseudoReloc
> &relocs
)
643 : relocs(std::move(relocs
)) {
646 size_t getSize() const override
;
647 void writeTo(uint8_t *buf
) const override
;
650 std::vector
<RuntimePseudoReloc
> relocs
;
653 // MinGW specific; information about one individual location in the image
654 // that needs to be fixed up at runtime after loading. This represents
655 // one individual element in the PseudoRelocTableChunk table.
656 class RuntimePseudoReloc
{
658 RuntimePseudoReloc(Defined
*sym
, SectionChunk
*target
, uint32_t targetOffset
,
660 : sym(sym
), target(target
), targetOffset(targetOffset
), flags(flags
) {}
663 SectionChunk
*target
;
664 uint32_t targetOffset
;
665 // The Flags field contains the size of the relocation, in bits. No other
666 // flags are currently defined.
670 // MinGW specific. A Chunk that contains one pointer-sized absolute value.
671 class AbsolutePointerChunk
: public NonSectionChunk
{
673 AbsolutePointerChunk(uint64_t value
) : value(value
) {
674 setAlignment(getSize());
676 size_t getSize() const override
;
677 void writeTo(uint8_t *buf
) const override
;
683 // Return true if this file has the hotpatch flag set to true in the S_COMPILE3
684 // record in codeview debug info. Also returns true for some thunks synthesized
686 inline bool Chunk::isHotPatchable() const {
687 if (auto *sc
= dyn_cast
<SectionChunk
>(this))
688 return sc
->file
->hotPatchable
;
689 else if (isa
<ImportThunkChunk
>(this))
694 void applyMOV32T(uint8_t *off
, uint32_t v
);
695 void applyBranch24T(uint8_t *off
, int32_t v
);
697 void applyArm64Addr(uint8_t *off
, uint64_t s
, uint64_t p
, int shift
);
698 void applyArm64Imm(uint8_t *off
, uint64_t imm
, uint32_t rangeLimit
);
699 void applyArm64Branch26(uint8_t *off
, int64_t v
);
706 struct DenseMapInfo
<lld::coff::ChunkAndOffset
>
707 : lld::coff::ChunkAndOffset::DenseMapInfo
{};