]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/kperf/callstack.h
xnu-7195.50.7.100.1.tar.gz
[apple/xnu.git] / osfmk / kperf / callstack.h
index e4a0cd5e0273de98b0251bf32ddddf29264b9bbd..44779548d65efffd8e02ed1ac7ae36d26d91a98c 100644 (file)
 #define CALLSTACK_CONTINUATION (1U << 5)
 /* the frames field is filled with uintptr_t, not uint64_t */
 #define CALLSTACK_KERNEL_WORDS (1U << 6)
+/* the frames come from a translated task */
+#define CALLSTACK_TRANSLATED   (1U << 7)
+/* the last frame could be the real PC */
+#define CALLSTACK_FIXUP_PC     (1U << 8)
 
 struct kp_ucallstack {
        uint32_t kpuc_flags;