Lines Matching refs:Ptr
22 uint64_t CallSiteTypeId, void* Ptr, void* DiagData, void* CallerPc);
54 static uintptr_t cfi_check_addr(uint16_t v, void* Ptr) { in cfi_check_addr() argument
55 uintptr_t addr = reinterpret_cast<uintptr_t>(Ptr); in cfi_check_addr()
69 static inline void cfi_slowpath_common(uint64_t CallSiteTypeId, void* Ptr, void* DiagData) { in cfi_slowpath_common() argument
70 uint16_t v = shadow_load(Ptr); in cfi_slowpath_common()
73 __loader_cfi_fail(CallSiteTypeId, Ptr, DiagData, __builtin_return_address(0)); in cfi_slowpath_common()
78 … reinterpret_cast<CFIShadow::CFICheckFn>(cfi_check_addr(v, Ptr))(CallSiteTypeId, Ptr, DiagData); in cfi_slowpath_common()
82 extern "C" void __cfi_slowpath(uint64_t CallSiteTypeId, void* Ptr) { in __cfi_slowpath() argument
83 cfi_slowpath_common(CallSiteTypeId, Ptr, nullptr); in __cfi_slowpath()
86 extern "C" void __cfi_slowpath_diag(uint64_t CallSiteTypeId, void* Ptr, void* DiagData) { in __cfi_slowpath_diag() argument
87 cfi_slowpath_common(CallSiteTypeId, Ptr, DiagData); in __cfi_slowpath_diag()