ftrace.h 1.2 KB
Newer Older
H
H. Peter Anvin 已提交
1 2
#ifndef _ASM_X86_FTRACE_H
#define _ASM_X86_FTRACE_H
3

4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
#ifdef __ASSEMBLY__

	.macro MCOUNT_SAVE_FRAME
	/* taken from glibc */
	subq $0x38, %rsp
	movq %rax, (%rsp)
	movq %rcx, 8(%rsp)
	movq %rdx, 16(%rsp)
	movq %rsi, 24(%rsp)
	movq %rdi, 32(%rsp)
	movq %r8, 40(%rsp)
	movq %r9, 48(%rsp)
	.endm

	.macro MCOUNT_RESTORE_FRAME
	movq 48(%rsp), %r9
	movq 40(%rsp), %r8
	movq 32(%rsp), %rdi
	movq 24(%rsp), %rsi
	movq 16(%rsp), %rdx
	movq 8(%rsp), %rcx
	movq (%rsp), %rax
	addq $0x38, %rsp
	.endm

#endif

31
#ifdef CONFIG_FUNCTION_TRACER
32 33 34 35 36
#define MCOUNT_ADDR		((long)(mcount))
#define MCOUNT_INSN_SIZE	5 /* sizeof mcount call */

#ifndef __ASSEMBLY__
extern void mcount(void);
37
extern atomic_t modifying_ftrace_code;
38 39 40 41

static inline unsigned long ftrace_call_adjust(unsigned long addr)
{
	/*
42 43
	 * addr is the address of the mcount call instruction.
	 * recordmcount does the necessary offset calculation.
44
	 */
45
	return addr;
46
}
47 48 49 50 51 52 53

#ifdef CONFIG_DYNAMIC_FTRACE

struct dyn_arch_ftrace {
	/* No extra data needed for x86 */
};

54 55
int ftrace_int3_handler(struct pt_regs *regs);

56
#endif /*  CONFIG_DYNAMIC_FTRACE */
S
Steven Rostedt 已提交
57
#endif /* __ASSEMBLY__ */
58
#endif /* CONFIG_FUNCTION_TRACER */
59

H
H. Peter Anvin 已提交
60
#endif /* _ASM_X86_FTRACE_H */