Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCOFFEmitter.cpp215 uint32_t CurrentSectionDataOffset = in layoutCOFF() local
252 CurrentSectionDataOffset = alignTo(CurrentSectionDataOffset, in layoutCOFF()
258 S.Header.PointerToRawData = CurrentSectionDataOffset; in layoutCOFF()
259 CurrentSectionDataOffset += S.Header.SizeOfRawData; in layoutCOFF()
261 S.Header.PointerToRelocations = CurrentSectionDataOffset; in layoutCOFF()
264 CurrentSectionDataOffset += COFF::RelocationSize; in layoutCOFF()
267 CurrentSectionDataOffset += S.Relocations.size() * COFF::RelocationSize; in layoutCOFF()
276 uint32_t SymbolTableStart = CurrentSectionDataOffset; in layoutCOFF()