Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldMachOI386.h215 MachO::section Sec32 = Obj.getSection(JTSection.getRawDataRefImpl()); in populateJumpTable() local
216 uint32_t JTSectionSize = Sec32.size; in populateJumpTable()
217 unsigned FirstIndirectSymbol = Sec32.reserved1; in populateJumpTable()
218 unsigned JTEntrySize = Sec32.reserved2; in populateJumpTable()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.cpp149 const MachO::section &Sec32 = Obj.getSection(SecRef.getRawDataRefImpl()); in createNormalizedSections()
151 memcpy(&NSec.SectName, &Sec32.sectname, 16); in createNormalizedSections()
153 memcpy(&NSec.SegName, Sec32.segname, 16); in createNormalizedSections()
156 NSec.Address = orc::ExecutorAddr(Sec32.addr); in createNormalizedSections()
157 NSec.Size = Sec32.size; in createNormalizedSections()
158 NSec.Alignment = 1ULL << Sec32.align; in createNormalizedSections()
159 NSec.Flags = Sec32.flags; in createNormalizedSections()
160 DataOffset = Sec32.offset; in createNormalizedSections()
148 const MachO::section &Sec32 = Obj.getSection(SecRef.getRawDataRefImpl()); createNormalizedSections() local
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp188 MachO::section Sec32 = Obj.getSection(PTSection.getRawDataRefImpl()); in populateIndirectSymbolPointersSection() local
189 uint32_t PTSectionSize = Sec32.size; in populateIndirectSymbolPointersSection()
190 unsigned FirstIndirectSymbol = Sec32.reserved1; in populateIndirectSymbolPointersSection()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DXCOFFObjectFile.cpp594 const XCOFFSectionHeader32 *Sec32 = sectionHeaderTable32(); in getRelocationOffset() local
600 if (Sec32->VirtualAddress <= RelocAddress && in getRelocationOffset()
601 RelocAddress < Sec32->VirtualAddress + Sec32->SectionSize) { in getRelocationOffset()
602 return RelocAddress - Sec32->VirtualAddress; in getRelocationOffset()
604 ++Sec32; in getRelocationOffset()