mcount.S 2.0 KB
Newer Older
1
/*
2
 * Copyright IBM Corp. 2008, 2009
3 4 5 6 7
 *
 *   Author(s): Heiko Carstens <heiko.carstens@de.ibm.com>,
 *
 */

8
#include <linux/linkage.h>
9
#include <asm/asm-offsets.h>
10
#include <asm/ftrace.h>
11
#include <asm/ptrace.h>
A
Al Viro 已提交
12
#include <asm/export.h>
13

14 15
	.section .kprobes.text, "ax"

16
ENTRY(ftrace_stub)
17 18
	br	%r14

19 20 21 22 23
#define STACK_FRAME_SIZE  (STACK_FRAME_OVERHEAD + __PT_SIZE)
#define STACK_PTREGS	  (STACK_FRAME_OVERHEAD)
#define STACK_PTREGS_GPRS (STACK_PTREGS + __PT_GPRS)
#define STACK_PTREGS_PSW  (STACK_PTREGS + __PT_PSW)

24
ENTRY(_mcount)
25 26
	br	%r14

A
Al Viro 已提交
27 28
EXPORT_SYMBOL(_mcount)

29
ENTRY(ftrace_caller)
30 31 32
	.globl	ftrace_regs_caller
	.set	ftrace_regs_caller,ftrace_caller
	lgr	%r1,%r15
33
#ifndef CC_USING_HOTPATCH
34
	aghi	%r0,MCOUNT_RETURN_FIXUP
35
#endif
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
	aghi	%r15,-STACK_FRAME_SIZE
	stg	%r1,__SF_BACKCHAIN(%r15)
	stg	%r1,(STACK_PTREGS_GPRS+15*8)(%r15)
	stg	%r0,(STACK_PTREGS_PSW+8)(%r15)
	stmg	%r2,%r14,(STACK_PTREGS_GPRS+2*8)(%r15)
#ifdef CONFIG_HAVE_MARCH_Z196_FEATURES
	aghik	%r2,%r0,-MCOUNT_INSN_SIZE
	lgrl	%r4,function_trace_op
	lgrl	%r1,ftrace_trace_function
#else
	lgr	%r2,%r0
	aghi	%r2,-MCOUNT_INSN_SIZE
	larl	%r4,function_trace_op
	lg	%r4,0(%r4)
	larl	%r1,ftrace_trace_function
	lg	%r1,0(%r1)
#endif
	lgr	%r3,%r14
	la	%r5,STACK_PTREGS(%r15)
	basr	%r14,%r1
56
#ifdef CONFIG_FUNCTION_GRAPH_TRACER
57
# The j instruction gets runtime patched to a nop instruction.
58
# See ftrace_enable_ftrace_graph_caller.
59 60 61 62 63 64 65 66
ENTRY(ftrace_graph_caller)
	j	ftrace_graph_caller_end
	lg	%r2,(STACK_PTREGS_GPRS+14*8)(%r15)
	lg	%r3,(STACK_PTREGS_PSW+8)(%r15)
	brasl	%r14,prepare_ftrace_return
	stg	%r2,(STACK_PTREGS_GPRS+14*8)(%r15)
ftrace_graph_caller_end:
	.globl	ftrace_graph_caller_end
67
#endif
68 69 70
	lg	%r1,(STACK_PTREGS_PSW+8)(%r15)
	lmg	%r2,%r15,(STACK_PTREGS_GPRS+2*8)(%r15)
	br	%r1
71

72 73
#ifdef CONFIG_FUNCTION_GRAPH_TRACER

74
ENTRY(return_to_handler)
75 76 77 78 79 80 81 82
	stmg	%r2,%r5,32(%r15)
	lgr	%r1,%r15
	aghi	%r15,-STACK_FRAME_OVERHEAD
	stg	%r1,__SF_BACKCHAIN(%r15)
	brasl	%r14,ftrace_return_to_handler
	aghi	%r15,STACK_FRAME_OVERHEAD
	lgr	%r14,%r2
	lmg	%r2,%r5,32(%r15)
83 84
	br	%r14

M
Martin Schwidefsky 已提交
85
#endif