Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCOFFEmitter.cpp199 uint32_t CurrentSectionDataOffset = in layoutCOFF() local
239 CurrentSectionDataOffset = alignTo(CurrentSectionDataOffset, in layoutCOFF()
245 S.Header.PointerToRawData = CurrentSectionDataOffset; in layoutCOFF()
246 CurrentSectionDataOffset += S.Header.SizeOfRawData; in layoutCOFF()
248 S.Header.PointerToRelocations = CurrentSectionDataOffset; in layoutCOFF()
251 CurrentSectionDataOffset += COFF::RelocationSize; in layoutCOFF()
254 CurrentSectionDataOffset += S.Relocations.size() * COFF::RelocationSize; in layoutCOFF()
263 uint32_t SymbolTableStart = CurrentSectionDataOffset; in layoutCOFF()