Home
last modified time | relevance | path

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

/external/llvm-project/lld/lib/ReaderWriter/MachO/
DStubsPass.cpp37 : SimpleDefinedAtom(file), _is64(is64) { } in LazyPointerAtom()
46 return _is64 ? 8 : 4; in alignment()
50 return _is64 ? 8 : 4; in size()
64 const bool _is64; member in lld::mach_o::LazyPointerAtom
73 : SimpleDefinedAtom(file), _is64(is64), _contentType(contentType) { } in NonLazyPointerAtom()
82 return _is64 ? 8 : 4; in alignment()
86 return _is64 ? 8 : 4; in size()
100 const bool _is64; member in lld::mach_o::NonLazyPointerAtom
DTLVPass.cpp30 : SimpleDefinedAtom(file), _is64(is64), _name(name) {} in TLVPEntryAtom()
39 return _is64 ? 8 : 4; in alignment()
43 return _is64 ? 8 : 4; in size()
61 const bool _is64; member in lld::mach_o::TLVPEntryAtom
DGOTPass.cpp54 : SimpleDefinedAtom(file), _is64(is64), _name(name) { } in GOTEntryAtom()
63 return _is64 ? 8 : 4; in alignment()
67 return _is64 ? 8 : 4; in size()
85 const bool _is64; member in lld::mach_o::GOTEntryAtom
DMachONormalizedFileBinaryWriter.cpp189 const bool _is64; member in lld::mach_o::normalized::MachOFileLayout
246 return llvm::alignTo(value, _is64 ? 8 : 4); in pointerAlign()
257 _is64(MachOLinkingContext::is64Bit(file.arch)), in MachOFileLayout()
261 _startOfLoadCommands = _is64 ? sizeof(mach_header_64) : sizeof(mach_header); in MachOFileLayout()
263 (_is64 ? sizeof(segment_command_64) : sizeof(segment_command)); in MachOFileLayout()
264 const size_t sectsSize = (_is64 ? sizeof(section_64) : sizeof(section)); in MachOFileLayout()
387 (_is64 ? sizeof(segment_command_64) : sizeof(segment_command)); in loadCommandsSize()
388 const size_t sectionSize = (_is64 ? sizeof(section_64) : sizeof(section)); in loadCommandsSize()
593 mh->magic = _is64 ? llvm::MachO::MH_MAGIC_64 : llvm::MachO::MH_MAGIC; in writeMachHeader()
775 if (_is64) { in writeLoadCommands()
[all …]