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

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

Completed in 120 milliseconds