blob: 6fa75b17aec33aea051e1de2aea9199b0f6c836f [file] [log] [blame]
Josh Poimboeuf7c7900f2016-09-16 14:18:12 -05001#ifndef _ASM_X86_UNWIND_H
2#define _ASM_X86_UNWIND_H
3
4#include <linux/sched.h>
5#include <linux/ftrace.h>
6#include <asm/ptrace.h>
7#include <asm/stacktrace.h>
8
9struct unwind_state {
10 struct stack_info stack_info;
11 unsigned long stack_mask;
12 struct task_struct *task;
13 int graph_idx;
14#ifdef CONFIG_FRAME_POINTER
Josh Poimboeuf8b5e99f2016-12-16 10:05:06 -060015 unsigned long *bp, *orig_sp;
Josh Poimboeuf946c1912016-10-20 11:34:40 -050016 struct pt_regs *regs;
Josh Poimboeuf7c7900f2016-09-16 14:18:12 -050017#else
18 unsigned long *sp;
19#endif
20};
21
22void __unwind_start(struct unwind_state *state, struct task_struct *task,
23 struct pt_regs *regs, unsigned long *first_frame);
24
25bool unwind_next_frame(struct unwind_state *state);
26
Josh Poimboeufcfee9ed2016-10-06 00:28:40 -050027unsigned long unwind_get_return_address(struct unwind_state *state);
28
Josh Poimboeuf7c7900f2016-09-16 14:18:12 -050029static inline bool unwind_done(struct unwind_state *state)
30{
31 return state->stack_info.type == STACK_TYPE_UNKNOWN;
32}
33
34static inline
35void unwind_start(struct unwind_state *state, struct task_struct *task,
36 struct pt_regs *regs, unsigned long *first_frame)
37{
38 first_frame = first_frame ? : get_stack_pointer(task, regs);
39
40 __unwind_start(state, task, regs, first_frame);
41}
42
43#ifdef CONFIG_FRAME_POINTER
44
45static inline
46unsigned long *unwind_get_return_address_ptr(struct unwind_state *state)
47{
48 if (unwind_done(state))
49 return NULL;
50
Josh Poimboeuf946c1912016-10-20 11:34:40 -050051 return state->regs ? &state->regs->ip : state->bp + 1;
52}
53
54static inline struct pt_regs *unwind_get_entry_regs(struct unwind_state *state)
55{
56 if (unwind_done(state))
57 return NULL;
58
59 return state->regs;
Josh Poimboeuf7c7900f2016-09-16 14:18:12 -050060}
61
Josh Poimboeuf7c7900f2016-09-16 14:18:12 -050062#else /* !CONFIG_FRAME_POINTER */
63
64static inline
65unsigned long *unwind_get_return_address_ptr(struct unwind_state *state)
66{
67 return NULL;
68}
69
Josh Poimboeuf946c1912016-10-20 11:34:40 -050070static inline struct pt_regs *unwind_get_entry_regs(struct unwind_state *state)
71{
72 return NULL;
73}
74
Josh Poimboeuf7c7900f2016-09-16 14:18:12 -050075#endif /* CONFIG_FRAME_POINTER */
76
77#endif /* _ASM_X86_UNWIND_H */