blob: 09ad8857274692b88942404a8f4e1d5a01624cd0 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
H. Peter Anvin1965aae2008-10-22 22:26:29 -07002#ifndef _ASM_X86_FTRACE_H
3#define _ASM_X86_FTRACE_H
Abhishek Sagar395a59d2008-06-21 23:47:27 +05304
Ingo Molnar4944dd62008-10-27 10:50:54 +01005#ifdef CONFIG_FUNCTION_TRACER
Steven Rostedtd57c5d52011-02-09 13:32:18 -05006#ifdef CC_USING_FENTRY
Minfei Huangc93bf922015-07-12 17:52:24 +08007# define MCOUNT_ADDR ((unsigned long)(__fentry__))
Steven Rostedtd57c5d52011-02-09 13:32:18 -05008#else
Minfei Huangc93bf922015-07-12 17:52:24 +08009# define MCOUNT_ADDR ((unsigned long)(mcount))
Josh Poimboeufe4a744e2016-08-19 06:52:55 -050010# define HAVE_FUNCTION_GRAPH_FP_TEST
Steven Rostedtd57c5d52011-02-09 13:32:18 -050011#endif
Abhishek Sagar395a59d2008-06-21 23:47:27 +053012#define MCOUNT_INSN_SIZE 5 /* sizeof mcount call */
13
Steven Rostedt28fb5df2011-08-10 22:00:55 -040014#ifdef CONFIG_DYNAMIC_FTRACE
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -040015#define ARCH_SUPPORTS_FTRACE_OPS 1
Steven Rostedt08f6fba2012-04-30 16:20:23 -040016#endif
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -040017
Josh Poimboeuf471bd102016-08-19 06:53:00 -050018#define HAVE_FUNCTION_GRAPH_RET_ADDR_PTR
19
Abhishek Sagar395a59d2008-06-21 23:47:27 +053020#ifndef __ASSEMBLY__
21extern void mcount(void);
Steven Rostedta192cd02012-05-30 13:26:37 -040022extern atomic_t modifying_ftrace_code;
Steven Rostedtd57c5d52011-02-09 13:32:18 -050023extern void __fentry__(void);
Steven Rostedt68bf21a2008-08-14 15:45:08 -040024
25static inline unsigned long ftrace_call_adjust(unsigned long addr)
26{
27 /*
Martin Schwidefsky521ccb52011-05-10 10:10:41 +020028 * addr is the address of the mcount call instruction.
29 * recordmcount does the necessary offset calculation.
Steven Rostedt68bf21a2008-08-14 15:45:08 -040030 */
Martin Schwidefsky521ccb52011-05-10 10:10:41 +020031 return addr;
Steven Rostedt68bf21a2008-08-14 15:45:08 -040032}
Steven Rostedt31e88902008-11-14 16:21:19 -080033
34#ifdef CONFIG_DYNAMIC_FTRACE
35
36struct dyn_arch_ftrace {
37 /* No extra data needed for x86 */
38};
39
Steven Rostedt08d636b2011-08-16 09:57:10 -040040int ftrace_int3_handler(struct pt_regs *regs);
41
Steven Rostedt (Red Hat)1026ff92014-07-11 23:23:53 -040042#define FTRACE_GRAPH_TRAMP_ADDR FTRACE_GRAPH_ADDR
43
Steven Rostedt31e88902008-11-14 16:21:19 -080044#endif /* CONFIG_DYNAMIC_FTRACE */
Steven Rostedta26a2a22008-10-31 00:03:22 -040045#endif /* __ASSEMBLY__ */
Ingo Molnar4944dd62008-10-27 10:50:54 +010046#endif /* CONFIG_FUNCTION_TRACER */
Abhishek Sagar395a59d2008-06-21 23:47:27 +053047
Steven Rostedtf431b632013-02-12 16:18:59 -050048
49#if !defined(__ASSEMBLY__) && !defined(COMPILE_OFFSETS)
50
51#if defined(CONFIG_FTRACE_SYSCALLS) && defined(CONFIG_IA32_EMULATION)
52#include <asm/compat.h>
53
54/*
55 * Because ia32 syscalls do not map to x86_64 syscall numbers
56 * this screws up the trace output when tracing a ia32 task.
57 * Instead of reporting bogus syscalls, just do not trace them.
58 *
Adam Buchbinder6a6256f2016-02-23 15:34:30 -080059 * If the user really wants these, then they should use the
Steven Rostedtf431b632013-02-12 16:18:59 -050060 * raw syscall tracepoints with filtering.
61 */
62#define ARCH_TRACE_IGNORE_COMPAT_SYSCALLS 1
63static inline bool arch_trace_is_compat_syscall(struct pt_regs *regs)
64{
Andy Lutomirskif9701652016-03-22 14:25:27 -070065 if (in_compat_syscall())
Steven Rostedtf431b632013-02-12 16:18:59 -050066 return true;
67 return false;
68}
69#endif /* CONFIG_FTRACE_SYSCALLS && CONFIG_IA32_EMULATION */
70#endif /* !__ASSEMBLY__ && !COMPILE_OFFSETS */
71
H. Peter Anvin1965aae2008-10-22 22:26:29 -070072#endif /* _ASM_X86_FTRACE_H */