blob: 736b9d214d8016012393c7914d03d89fb5eacfa6 [file] [log] [blame]
Max Filippov3ae908c2013-04-08 01:29:19 +04001/*
2 * arch/xtensa/include/asm/ftrace.h
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 *
8 * Copyright (C) 2013 Tensilica Inc.
9 */
10#ifndef _XTENSA_FTRACE_H
11#define _XTENSA_FTRACE_H
12
13#include <asm/processor.h>
14
15#define HAVE_ARCH_CALLER_ADDR
Max Filippov478ba612013-05-24 07:02:25 +040016#ifndef __ASSEMBLY__
Max Filippov3ae908c2013-04-08 01:29:19 +040017#define CALLER_ADDR0 ({ unsigned long a0, a1; \
18 __asm__ __volatile__ ( \
19 "mov %0, a0\n" \
20 "mov %1, a1\n" \
Max Filippovea1d3ed2013-11-18 11:05:53 +040021 : "=r"(a0), "=r"(a1)); \
Max Filippov3ae908c2013-04-08 01:29:19 +040022 MAKE_PC_FROM_RA(a0, a1); })
23#ifdef CONFIG_FRAME_POINTER
24extern unsigned long return_address(unsigned level);
25#define CALLER_ADDR1 return_address(1)
26#define CALLER_ADDR2 return_address(2)
27#define CALLER_ADDR3 return_address(3)
Max Filippov478ba612013-05-24 07:02:25 +040028#else /* CONFIG_FRAME_POINTER */
Max Filippov3ae908c2013-04-08 01:29:19 +040029#define CALLER_ADDR1 (0)
30#define CALLER_ADDR2 (0)
31#define CALLER_ADDR3 (0)
Max Filippov478ba612013-05-24 07:02:25 +040032#endif /* CONFIG_FRAME_POINTER */
33#endif /* __ASSEMBLY__ */
34
35#ifdef CONFIG_FUNCTION_TRACER
36
37#define MCOUNT_ADDR ((unsigned long)(_mcount))
38#define MCOUNT_INSN_SIZE 3
39
40#ifndef __ASSEMBLY__
41extern void _mcount(void);
42#define mcount _mcount
43#endif /* __ASSEMBLY__ */
44#endif /* CONFIG_FUNCTION_TRACER */
Max Filippov3ae908c2013-04-08 01:29:19 +040045
46#endif /* _XTENSA_FTRACE_H */