123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- #ifndef _OBJC_PTRAUTH_H_
- #define _OBJC_PTRAUTH_H_
- #include <objc/objc.h>
- #include <Block_private.h>
- #if __has_include (<ptrauth.h>)
- #include <ptrauth.h>
- #else
- #define ptrauth_strip(__value, __key) __value
- #define ptrauth_blend_discriminator(__pointer, __integer) ((uintptr_t)0)
- #define ptrauth_sign_constant(__value, __key, __data) __value
- #define ptrauth_sign_unauthenticated(__value, __key, __data) __value
- #define ptrauth_auth_and_resign(__value, __old_key, __old_data, __new_key, __new_data) __value
- #define ptrauth_auth_function(__value, __old_key, __old_data) __value
- #define ptrauth_auth_data(__value, __old_key, __old_data) __value
- #define ptrauth_string_discriminator(__string) ((int)0)
- #define ptrauth_sign_generic_data(__value, __data) ((ptrauth_generic_signature_t)0)
- #define __ptrauth_function_pointer
- #define __ptrauth_return_address
- #define __ptrauth_block_invocation_pointer
- #define __ptrauth_block_copy_helper
- #define __ptrauth_block_destroy_helper
- #define __ptrauth_block_byref_copy_helper
- #define __ptrauth_block_byref_destroy_helper
- #define __ptrauth_objc_method_list_imp
- #define __ptrauth_cxx_vtable_pointer
- #define __ptrauth_cxx_vtt_vtable_pointer
- #define __ptrauth_swift_heap_object_destructor
- #define __ptrauth_cxx_virtual_function_pointer(__declkey)
- #define __ptrauth_swift_function_pointer(__typekey)
- #define __ptrauth_swift_class_method_pointer(__declkey)
- #define __ptrauth_swift_protocol_witness_function_pointer(__declkey)
- #define __ptrauth_swift_value_witness_function_pointer(__key)
- #endif
- #if __has_feature(ptrauth_calls)
- using MethodListIMP = IMP __ptrauth_objc_method_list_imp;
- using MethodCacheIMP =
- StorageSignedFunctionPointer<IMP, ptrauth_key_process_dependent_code>;
- #else
- using MethodListIMP = IMP;
- using MethodCacheIMP = IMP;
- #endif
- #endif
|