Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp653 MachO::dyld_info_command DyldInfo = DyldInfoOrErr.get(); in checkDyldInfoCommand() local
654 if (DyldInfo.cmdsize != sizeof(MachO::dyld_info_command)) in checkDyldInfoCommand()
658 if (DyldInfo.rebase_off > FileSize) in checkDyldInfoCommand()
662 uint64_t BigSize = DyldInfo.rebase_off; in checkDyldInfoCommand()
663 BigSize += DyldInfo.rebase_size; in checkDyldInfoCommand()
669 if (Error Err = checkOverlappingElement(Elements, DyldInfo.rebase_off, in checkDyldInfoCommand()
670 DyldInfo.rebase_size, in checkDyldInfoCommand()
673 if (DyldInfo.bind_off > FileSize) in checkDyldInfoCommand()
677 BigSize = DyldInfo.bind_off; in checkDyldInfoCommand()
678 BigSize += DyldInfo.bind_size; in checkDyldInfoCommand()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.h44 extern bool DyldInfo;
H A DMachODump.cpp80 bool objdump::DyldInfo; member in objdump
122 DyldInfo = InputArgs.hasArg(OBJDUMP_dyld_info); in parseMachOOptions()
2113 LinkOptHints || ChainedFixups || DyldInfo || DylibsUsed || DylibId || in ProcessMachO()
2183 if (DyldInfo) in ProcessMachO()
10133 MachO::dyld_info_command DyldInfo = Obj->getDyldInfoLoadCommand(Command); in PrintLoadCommands() local
10134 PrintDyldInfoLoadCommand(DyldInfo, Buf.size()); in PrintLoadCommands()
H A Dllvm-objdump.cpp3483 DyldInfo = InputArgs.hasArg(OTOOL_dyld_info); in parseOtoolOptions()
3733 (Bind || DataInCode || ChainedFixups || DyldInfo || DylibId || in llvm_objdump_main()