[llvm] Fix MachO exports trie parsing.The exports trie parser ordinal validation check doesn't consider the case wherethe ordinal can be zero or negative for certain special values that are define
[llvm] Fix MachO exports trie parsing.The exports trie parser ordinal validation check doesn't consider the case wherethe ordinal can be zero or negative for certain special values that are definedin BindSpecialDylib. Update the validation to account for that fact and add atest case.This fixes rdar://94844233.Differential Revision: https://reviews.llvm.org/D127806
show more ...
Add support for chained fixup load commands to MachOObjectFileThis is part of a series of patches to upstream support for Mach-O chained fixups.This patch adds support for parsing the chained fix
Add support for chained fixup load commands to MachOObjectFileThis is part of a series of patches to upstream support for Mach-O chained fixups.This patch adds support for parsing the chained fixup load command andparsing the chained fixups header. It also puts into place theabstract interface that will be used to iterate over the fixups.Differential Revision: https://reviews.llvm.org/D113630