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.cpp205 uint32_t CurrentSectionDataOffset = in layoutCOFF() local
245 CurrentSectionDataOffset = alignTo(CurrentSectionDataOffset, in layoutCOFF()
251 S.Header.PointerToRawData = CurrentSectionDataOffset; in layoutCOFF()
252 CurrentSectionDataOffset += S.Header.SizeOfRawData; in layoutCOFF()
254 S.Header.PointerToRelocations = CurrentSectionDataOffset; in layoutCOFF()
257 CurrentSectionDataOffset += COFF::RelocationSize; in layoutCOFF()
260 CurrentSectionDataOffset += S.Relocations.size() * COFF::RelocationSize; in layoutCOFF()
269 uint32_t SymbolTableStart = CurrentSectionDataOffset; in layoutCOFF()