stacktrace.h 2.4 KB
Newer Older
1 2 3 4 5
/*
 *  Copyright (C) 1991, 1992  Linus Torvalds
 *  Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
 */

H
H. Peter Anvin 已提交
6 7
#ifndef _ASM_X86_STACKTRACE_H
#define _ASM_X86_STACKTRACE_H
8

9 10
#include <linux/uaccess.h>

11 12
extern int kstack_depth_to_print;

13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
struct thread_info;
struct stacktrace_ops;

typedef unsigned long (*walk_stack_t)(struct thread_info *tinfo,
				      unsigned long *stack,
				      unsigned long bp,
				      const struct stacktrace_ops *ops,
				      void *data,
				      unsigned long *end,
				      int *graph);

extern unsigned long
print_context_stack(struct thread_info *tinfo,
		    unsigned long *stack, unsigned long bp,
		    const struct stacktrace_ops *ops, void *data,
		    unsigned long *end, int *graph);

30 31 32 33 34 35
extern unsigned long
print_context_stack_bp(struct thread_info *tinfo,
		       unsigned long *stack, unsigned long bp,
		       const struct stacktrace_ops *ops, void *data,
		       unsigned long *end, int *graph);

36 37 38 39 40 41
/* Generic stack tracer with callbacks */

struct stacktrace_ops {
	void (*warning)(void *data, char *msg);
	/* msg must contain %s for the symbol */
	void (*warning_symbol)(void *data, char *msg, unsigned long symbol);
42
	void (*address)(void *data, unsigned long address, int reliable);
43 44
	/* On negative return stop dumping */
	int (*stack)(void *data, char *name);
45
	walk_stack_t	walk_stack;
46 47
};

48 49
void dump_trace(struct task_struct *tsk, struct pt_regs *regs,
		unsigned long *stack, unsigned long bp,
J
Jan Beulich 已提交
50
		const struct stacktrace_ops *ops, void *data);
51

52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
#ifdef CONFIG_X86_32
#define STACKSLOTS_PER_LINE 8
#define get_bp(bp) asm("movl %%ebp, %0" : "=r" (bp) :)
#else
#define STACKSLOTS_PER_LINE 4
#define get_bp(bp) asm("movq %%rbp, %0" : "=r" (bp) :)
#endif

extern void
show_trace_log_lvl(struct task_struct *task, struct pt_regs *regs,
		unsigned long *stack, unsigned long bp, char *log_lvl);

extern void
show_stack_log_lvl(struct task_struct *task, struct pt_regs *regs,
		unsigned long *sp, unsigned long bp, char *log_lvl);

extern unsigned int code_bytes;

/* The form of the top of the frame on the stack */
struct stack_frame {
	struct stack_frame *next_frame;
	unsigned long return_address;
};

struct stack_frame_ia32 {
    u32 next_frame;
    u32 return_address;
};

81
static inline unsigned long caller_frame_pointer(void)
82 83 84 85 86 87
{
	struct stack_frame *frame;

	get_bp(frame);

#ifdef CONFIG_FRAME_POINTER
88
	frame = frame->next_frame;
89 90 91 92 93
#endif

	return (unsigned long)frame;
}

H
H. Peter Anvin 已提交
94
#endif /* _ASM_X86_STACKTRACE_H */