Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DMachOObjectFile.cpp645 MachO::dyld_info_command DyldInfo = DyldInfoOrErr.get(); in checkDyldInfoCommand() local
646 if (DyldInfo.cmdsize != sizeof(MachO::dyld_info_command)) in checkDyldInfoCommand()
650 if (DyldInfo.rebase_off > FileSize) in checkDyldInfoCommand()
654 uint64_t BigSize = DyldInfo.rebase_off; in checkDyldInfoCommand()
655 BigSize += DyldInfo.rebase_size; in checkDyldInfoCommand()
661 if (Error Err = checkOverlappingElement(Elements, DyldInfo.rebase_off, in checkDyldInfoCommand()
662 DyldInfo.rebase_size, in checkDyldInfoCommand()
665 if (DyldInfo.bind_off > FileSize) in checkDyldInfoCommand()
669 BigSize = DyldInfo.bind_off; in checkDyldInfoCommand()
670 BigSize += DyldInfo.bind_size; in checkDyldInfoCommand()
[all …]
/external/llvm-project/llvm/lib/Object/
DMachOObjectFile.cpp645 MachO::dyld_info_command DyldInfo = DyldInfoOrErr.get(); in checkDyldInfoCommand() local
646 if (DyldInfo.cmdsize != sizeof(MachO::dyld_info_command)) in checkDyldInfoCommand()
650 if (DyldInfo.rebase_off > FileSize) in checkDyldInfoCommand()
654 uint64_t BigSize = DyldInfo.rebase_off; in checkDyldInfoCommand()
655 BigSize += DyldInfo.rebase_size; in checkDyldInfoCommand()
661 if (Error Err = checkOverlappingElement(Elements, DyldInfo.rebase_off, in checkDyldInfoCommand()
662 DyldInfo.rebase_size, in checkDyldInfoCommand()
665 if (DyldInfo.bind_off > FileSize) in checkDyldInfoCommand()
669 BigSize = DyldInfo.bind_off; in checkDyldInfoCommand()
670 BigSize += DyldInfo.bind_size; in checkDyldInfoCommand()
[all …]
/external/llvm/lib/Object/
DMachOObjectFile.cpp2325 MachO::dyld_info_command DyldInfo = in getDyldInfoRebaseOpcodes() local
2328 reinterpret_cast<const uint8_t *>(getPtr(this, DyldInfo.rebase_off)); in getDyldInfoRebaseOpcodes()
2329 return makeArrayRef(Ptr, DyldInfo.rebase_size); in getDyldInfoRebaseOpcodes()
2336 MachO::dyld_info_command DyldInfo = in getDyldInfoBindOpcodes() local
2339 reinterpret_cast<const uint8_t *>(getPtr(this, DyldInfo.bind_off)); in getDyldInfoBindOpcodes()
2340 return makeArrayRef(Ptr, DyldInfo.bind_size); in getDyldInfoBindOpcodes()
2347 MachO::dyld_info_command DyldInfo = in getDyldInfoWeakBindOpcodes() local
2350 reinterpret_cast<const uint8_t *>(getPtr(this, DyldInfo.weak_bind_off)); in getDyldInfoWeakBindOpcodes()
2351 return makeArrayRef(Ptr, DyldInfo.weak_bind_size); in getDyldInfoWeakBindOpcodes()
2358 MachO::dyld_info_command DyldInfo = in getDyldInfoLazyBindOpcodes() local
[all …]
/external/llvm/tools/llvm-objdump/
DMachODump.cpp8928 MachO::dyld_info_command DyldInfo = Obj->getDyldInfoLoadCommand(Command); in PrintLoadCommands() local
8929 PrintDyldInfoLoadCommand(DyldInfo, Buf.size()); in PrintLoadCommands()
/external/llvm-project/llvm/tools/llvm-objdump/
DMachODump.cpp10129 MachO::dyld_info_command DyldInfo = Obj->getDyldInfoLoadCommand(Command); in PrintLoadCommands() local
10130 PrintDyldInfoLoadCommand(DyldInfo, Buf.size()); in PrintLoadCommands()