Lines Matching refs:DyldInfo

645   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()
676 if (Error Err = checkOverlappingElement(Elements, DyldInfo.bind_off, in checkDyldInfoCommand()
677 DyldInfo.bind_size, in checkDyldInfoCommand()
680 if (DyldInfo.weak_bind_off > FileSize) in checkDyldInfoCommand()
684 BigSize = DyldInfo.weak_bind_off; in checkDyldInfoCommand()
685 BigSize += DyldInfo.weak_bind_size; in checkDyldInfoCommand()
691 if (Error Err = checkOverlappingElement(Elements, DyldInfo.weak_bind_off, in checkDyldInfoCommand()
692 DyldInfo.weak_bind_size, in checkDyldInfoCommand()
695 if (DyldInfo.lazy_bind_off > FileSize) in checkDyldInfoCommand()
699 BigSize = DyldInfo.lazy_bind_off; in checkDyldInfoCommand()
700 BigSize += DyldInfo.lazy_bind_size; in checkDyldInfoCommand()
706 if (Error Err = checkOverlappingElement(Elements, DyldInfo.lazy_bind_off, in checkDyldInfoCommand()
707 DyldInfo.lazy_bind_size, in checkDyldInfoCommand()
710 if (DyldInfo.export_off > FileSize) in checkDyldInfoCommand()
714 BigSize = DyldInfo.export_off; in checkDyldInfoCommand()
715 BigSize += DyldInfo.export_size; in checkDyldInfoCommand()
721 if (Error Err = checkOverlappingElement(Elements, DyldInfo.export_off, in checkDyldInfoCommand()
722 DyldInfo.export_size, in checkDyldInfoCommand()
4552 MachO::dyld_info_command DyldInfo = DyldInfoOrErr.get(); in getDyldInfoRebaseOpcodes() local
4554 reinterpret_cast<const uint8_t *>(getPtr(*this, DyldInfo.rebase_off)); in getDyldInfoRebaseOpcodes()
4555 return makeArrayRef(Ptr, DyldInfo.rebase_size); in getDyldInfoRebaseOpcodes()
4566 MachO::dyld_info_command DyldInfo = DyldInfoOrErr.get(); in getDyldInfoBindOpcodes() local
4568 reinterpret_cast<const uint8_t *>(getPtr(*this, DyldInfo.bind_off)); in getDyldInfoBindOpcodes()
4569 return makeArrayRef(Ptr, DyldInfo.bind_size); in getDyldInfoBindOpcodes()
4580 MachO::dyld_info_command DyldInfo = DyldInfoOrErr.get(); in getDyldInfoWeakBindOpcodes() local
4582 reinterpret_cast<const uint8_t *>(getPtr(*this, DyldInfo.weak_bind_off)); in getDyldInfoWeakBindOpcodes()
4583 return makeArrayRef(Ptr, DyldInfo.weak_bind_size); in getDyldInfoWeakBindOpcodes()
4594 MachO::dyld_info_command DyldInfo = DyldInfoOrErr.get(); in getDyldInfoLazyBindOpcodes() local
4596 reinterpret_cast<const uint8_t *>(getPtr(*this, DyldInfo.lazy_bind_off)); in getDyldInfoLazyBindOpcodes()
4597 return makeArrayRef(Ptr, DyldInfo.lazy_bind_size); in getDyldInfoLazyBindOpcodes()
4608 MachO::dyld_info_command DyldInfo = DyldInfoOrErr.get(); in getDyldInfoExportsTrie() local
4610 reinterpret_cast<const uint8_t *>(getPtr(*this, DyldInfo.export_off)); in getDyldInfoExportsTrie()
4611 return makeArrayRef(Ptr, DyldInfo.export_size); in getDyldInfoExportsTrie()