1 #ifndef _ASM_X86_UNWIND_H
2 #define _ASM_X86_UNWIND_H
4 #include <linux/sched.h>
5 #include <linux/ftrace.h>
6 #include <asm/ptrace.h>
7 #include <asm/stacktrace.h>
10 struct stack_info stack_info
;
11 unsigned long stack_mask
;
12 struct task_struct
*task
;
15 #ifdef CONFIG_FRAME_POINTER
17 unsigned long *bp
, *orig_sp
;
25 void __unwind_start(struct unwind_state
*state
, struct task_struct
*task
,
26 struct pt_regs
*regs
, unsigned long *first_frame
);
28 bool unwind_next_frame(struct unwind_state
*state
);
30 unsigned long unwind_get_return_address(struct unwind_state
*state
);
32 static inline bool unwind_done(struct unwind_state
*state
)
34 return state
->stack_info
.type
== STACK_TYPE_UNKNOWN
;
38 void unwind_start(struct unwind_state
*state
, struct task_struct
*task
,
39 struct pt_regs
*regs
, unsigned long *first_frame
)
41 first_frame
= first_frame
? : get_stack_pointer(task
, regs
);
43 __unwind_start(state
, task
, regs
, first_frame
);
46 static inline bool unwind_error(struct unwind_state
*state
)
51 #ifdef CONFIG_FRAME_POINTER
54 unsigned long *unwind_get_return_address_ptr(struct unwind_state
*state
)
56 if (unwind_done(state
))
59 return state
->regs
? &state
->regs
->ip
: state
->bp
+ 1;
62 static inline struct pt_regs
*unwind_get_entry_regs(struct unwind_state
*state
)
64 if (unwind_done(state
))
70 #else /* !CONFIG_FRAME_POINTER */
73 unsigned long *unwind_get_return_address_ptr(struct unwind_state
*state
)
78 static inline struct pt_regs
*unwind_get_entry_regs(struct unwind_state
*state
)
83 #endif /* CONFIG_FRAME_POINTER */
85 #endif /* _ASM_X86_UNWIND_H */