Home
last modified time | relevance | path

Searched refs:MergeChunk (Results 1 – 5 of 5) sorted by relevance

/external/llvm-project/lld/COFF/
DChunks.cpp863 MergeChunk *MergeChunk::instances[Log2MaxSectionAlignment + 1] = {};
865 MergeChunk::MergeChunk(uint32_t alignment) in MergeChunk() function in lld::coff::MergeChunk
870 void MergeChunk::addSection(SectionChunk *c) { in addSection()
876 mc = make<MergeChunk>(c->getAlignment()); in addSection()
880 void MergeChunk::finalizeContents() { in finalizeContents()
889 void MergeChunk::assignSubsectionRVAs() { in assignSubsectionRVAs()
898 uint32_t MergeChunk::getOutputCharacteristics() const { in getOutputCharacteristics()
902 size_t MergeChunk::getSize() const { in getSize()
906 void MergeChunk::writeTo(uint8_t *buf) const { in writeTo()
DChunks.h401 class MergeChunk : public NonSectionChunk {
403 MergeChunk(uint32_t alignment);
413 static MergeChunk *instances[Log2MaxSectionAlignment + 1];
DWriter.cpp950 for (MergeChunk *p : MergeChunk::instances) { in createMiscChunks()
1120 for (MergeChunk *mc : MergeChunk::instances) in assignOutputSectionIndices()
1316 for (MergeChunk *mc : MergeChunk::instances) in assignAddresses()
DDriver.cpp79 memset(MergeChunk::instances, 0, sizeof(MergeChunk::instances)); in link()
DInputFiles.cpp294 MergeChunk::addSection(c); in readSection()