Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/
H A DMachOWriter.cpp55 const MachO::dyld_info_command &DyLdInfoCommand = in totalSize() local
58 if (DyLdInfoCommand.rebase_off) { in totalSize()
59 assert((DyLdInfoCommand.rebase_size == O.Rebases.Opcodes.size()) && in totalSize()
61 Ends.push_back(DyLdInfoCommand.rebase_off + DyLdInfoCommand.rebase_size); in totalSize()
63 if (DyLdInfoCommand.bind_off) { in totalSize()
64 assert((DyLdInfoCommand.bind_size == O.Binds.Opcodes.size()) && in totalSize()
66 Ends.push_back(DyLdInfoCommand.bind_off + DyLdInfoCommand.bind_size); in totalSize()
68 if (DyLdInfoCommand.weak_bind_off) { in totalSize()
69 assert((DyLdInfoCommand.weak_bind_size == O.WeakBinds.Opcodes.size()) && in totalSize()
71 Ends.push_back(DyLdInfoCommand.weak_bind_off + in totalSize()
[all …]