Searched refs:debugChunk (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lld/COFF/
H A DPDB.cpp855 static ArrayRef<uint8_t> relocateDebugChunk(SectionChunk &debugChunk) { argument
856 uint8_t *buffer = bAlloc.Allocate<uint8_t>(debugChunk.getSize());
857 assert(debugChunk.getOutputSectionIdx() == 0 &&
859 debugChunk.writeTo(buffer);
860 return makeArrayRef(buffer, debugChunk.getSize());
868 for (SectionChunk *debugChunk : file->getDebugChunks()) {
869 if (!debugChunk->live || debugChunk->getSize() == 0)
872 bool isDebugS = debugChunk->getSectionName() == ".debug$S";
873 bool isDebugF = debugChunk
[all...]

Completed in 202 milliseconds