Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lld/COFF/
H A DChunks.cpp941 MergeChunk *MergeChunk::instances[Log2MaxSectionAlignment + 1] = {};
943 MergeChunk::MergeChunk(uint32_t alignment) in MergeChunk() function in lld::coff::MergeChunk
948 void MergeChunk::addSection(SectionChunk *c) { in addSection()
954 mc = make<MergeChunk>(c->getAlignment()); in addSection()
958 void MergeChunk::finalizeContents() { in finalizeContents()
967 void MergeChunk::assignSubsectionRVAs() { in assignSubsectionRVAs()
976 uint32_t MergeChunk::getOutputCharacteristics() const { in getOutputCharacteristics()
980 size_t MergeChunk::getSize() const { in getSize()
984 void MergeChunk::writeTo(uint8_t *buf) const { in writeTo()
H A DICF.cpp265 for (MergeChunk *mc : MergeChunk::instances) in run()
H A DChunks.h415 class MergeChunk : public NonSectionChunk {
417 MergeChunk(uint32_t alignment);
427 static MergeChunk *instances[Log2MaxSectionAlignment + 1];
H A DWriter.cpp951 for (MergeChunk *p : MergeChunk::instances) { in createMiscChunks()
1125 for (MergeChunk *mc : MergeChunk::instances) in assignOutputSectionIndices()
1321 for (MergeChunk *mc : MergeChunk::instances) in assignAddresses()
H A DDriver.cpp79 memset(MergeChunk::instances, 0, sizeof(MergeChunk::instances)); in link()
H A DInputFiles.cpp296 MergeChunk::addSection(c); in readSection()