Merge tag 'pci-v4.6-fixes-3' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci
[deliverable/linux.git] / arch / powerpc / include / asm / ftrace.h
CommitLineData
ccbfac29
SR
1#ifndef _ASM_POWERPC_FTRACE
2#define _ASM_POWERPC_FTRACE
3
606576ce 4#ifdef CONFIG_FUNCTION_TRACER
c93bf928 5#define MCOUNT_ADDR ((unsigned long)(_mcount))
395a59d0
AS
6#define MCOUNT_INSN_SIZE 4 /* sizeof mcount call */
7
bf528a3a
SR
8#ifdef __ASSEMBLY__
9
10/* Based off of objdump optput from glibc */
11
12#define MCOUNT_SAVE_FRAME \
13 stwu r1,-48(r1); \
14 stw r3, 12(r1); \
15 stw r4, 16(r1); \
16 stw r5, 20(r1); \
17 stw r6, 24(r1); \
18 mflr r3; \
19 lwz r4, 52(r1); \
20 mfcr r5; \
21 stw r7, 28(r1); \
22 stw r8, 32(r1); \
23 stw r9, 36(r1); \
24 stw r10,40(r1); \
25 stw r3, 44(r1); \
26 stw r5, 8(r1)
27
28#define MCOUNT_RESTORE_FRAME \
29 lwz r6, 8(r1); \
30 lwz r0, 44(r1); \
31 lwz r3, 12(r1); \
32 mtctr r0; \
33 lwz r4, 16(r1); \
34 mtcr r6; \
35 lwz r5, 20(r1); \
36 lwz r6, 24(r1); \
37 lwz r0, 52(r1); \
38 lwz r7, 28(r1); \
39 lwz r8, 32(r1); \
40 mtlr r0; \
41 lwz r9, 36(r1); \
42 lwz r10,40(r1); \
43 addi r1, r1, 48
44
45#else /* !__ASSEMBLY__ */
ccbfac29 46extern void _mcount(void);
8fd6e5a8
SR
47
48#ifdef CONFIG_DYNAMIC_FTRACE
15308664
TD
49# define FTRACE_ADDR ((unsigned long)ftrace_caller)
50# define FTRACE_REGS_ADDR FTRACE_ADDR
8fd6e5a8
SR
51static inline unsigned long ftrace_call_adjust(unsigned long addr)
52{
53 /* reloction of mcount call site is the same as the address */
54 return addr;
55}
56
57struct dyn_arch_ftrace {
f48cb8b4 58 struct module *mod;
8fd6e5a8
SR
59};
60#endif /* CONFIG_DYNAMIC_FTRACE */
61#endif /* __ASSEMBLY__ */
ccbfac29 62
15308664
TD
63#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
64#define ARCH_SUPPORTS_FTRACE_OPS 1
65#endif
ccbfac29 66#endif
395a59d0 67
02424d89 68#if defined(CONFIG_FTRACE_SYSCALLS) && defined(CONFIG_PPC64) && !defined(__ASSEMBLY__)
7167af7c 69#if !defined(_CALL_ELF) || _CALL_ELF != 2
02424d89
IM
70#define ARCH_HAS_SYSCALL_MATCH_SYM_NAME
71static inline bool arch_syscall_match_sym_name(const char *sym, const char *name)
72{
73 /*
74 * Compare the symbol name with the system call name. Skip the .sys or .SyS
75 * prefix from the symbol name and the sys prefix from the system call name and
76 * just match the rest. This is only needed on ppc64 since symbol names on
77 * 32bit do not start with a period so the generic function will work.
78 */
79 return !strcmp(sym + 4, name + 3);
80}
7167af7c 81#endif
02424d89
IM
82#endif /* CONFIG_FTRACE_SYSCALLS && CONFIG_PPC64 && !__ASSEMBLY__ */
83
395a59d0 84#endif /* _ASM_POWERPC_FTRACE */
This page took 0.430073 seconds and 5 git commands to generate.