X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/3903760236c30e3b5ace7a4eefac3a269d68957c..813fb2f63a553c957e917ede5f119b021d6ce391:/libkern/os/trace_internal.h diff --git a/libkern/os/trace_internal.h b/libkern/os/trace_internal.h index 3c5b31116..1ee1c984e 100644 --- a/libkern/os/trace_internal.h +++ b/libkern/os/trace_internal.h @@ -30,31 +30,6 @@ __BEGIN_DECLS -typedef union { - struct { -#if __LP64__ - uintptr_t pc : 48; -#else - uintptr_t pc; -#endif - // not encoded - firehose_tracepoint_flags_t flags; - uintptr_t dso; - uuid_t uuid; - }; - - uint32_t offset; - uint64_t vlocation : 48; // we never use the full 64-bits - -#if defined(__LP64__) - uint8_t encode_value[6]; // 48-bits -#else - uint8_t encode_value[sizeof(uintptr_t)]; -#endif -} os_trace_location_u; - -typedef os_trace_location_u *os_trace_location_t; - OS_ALWAYS_INLINE inline uint32_t _os_trace_offset(const void *dso, const void *addr, _firehose_tracepoint_flags_activity_t flags __unused)