2 * Copyright 2010 Tilera Corporation. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation, version 2.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
11 * NON INFRINGEMENT. See the GNU General Public License for
15 #ifndef _ASM_TILE_BACKTRACE_H
16 #define _ASM_TILE_BACKTRACE_H
18 #include <linux/types.h>
20 /* Reads 'size' bytes from 'address' and writes the data to 'result'.
21 * Returns true if successful, else false (e.g. memory not readable).
23 typedef bool (*BacktraceMemoryReader
)(void *result
,
24 unsigned long address
,
32 /* Current stack pointer value. */
35 /* Current frame pointer value (i.e. caller's stack pointer) */
38 /* Internal use only: caller's PC for first frame. */
39 unsigned long initial_frame_caller_pc
;
41 /* Internal use only: callback to read memory. */
42 BacktraceMemoryReader read_memory_func
;
44 /* Internal use only: arbitrary argument to read_memory_func. */
45 void *read_memory_func_extra
;
52 /* We have no idea what the caller's pc is. */
55 /* The caller's pc is currently in lr. */
58 /* The caller's pc can be found by dereferencing the caller's sp. */
66 /* We have no idea what the caller's sp is. */
69 /* The caller's sp is currently in r52. */
72 /* The caller's sp can be found by adding a certain constant
73 * to the current value of sp.
80 /* Bit values ORed into CALLER_* values for info ops. */
82 /* Setting the low bit on any of these values means the info op
83 * applies only to one bundle ago.
85 ONE_BUNDLE_AGO_FLAG
= 1,
87 /* Setting this bit on a CALLER_SP_* value means the PC is in LR.
88 * If not set, PC is on the stack.
92 /* This many of the low bits of a CALLER_SP_* value are for the
95 NUM_INFO_OP_FLAGS
= 2,
97 /* We cannot have one in the memory pipe so this is the maximum. */
98 MAX_INFO_OPS_PER_BUNDLE
= 2
102 /* Internal constants used to define 'info' operands. */
104 /* 0 and 1 are reserved, as are all negative numbers. */
106 CALLER_UNKNOWN_BASE
= 2,
108 CALLER_SP_IN_R52_BASE
= 4,
110 CALLER_SP_OFFSET_BASE
= 8,
114 /* Current backtracer state describing where it thinks the caller is. */
120 /* How do we find the caller's PC? */
121 CallerPCLocation pc_location
: 8;
123 /* How do we find the caller's SP? */
124 CallerSPLocation sp_location
: 8;
126 /* If sp_location == SP_LOC_OFFSET, then caller_sp == sp +
127 * loc->sp_offset. Else this field is undefined.
131 /* In the most recently visited bundle a terminating bundle? */
132 bool at_terminating_bundle
;
138 /* Will the forward scanner see someone clobbering sp
139 * (i.e. changing it with something other than addi sp, sp, N?)
141 bool sp_clobber_follows
;
143 /* Operand to next "visible" info op (no more than one bundle past
144 * the next terminating bundle), or -32768 if none.
146 int16_t next_info_operand
;
148 /* Is the info of in next_info_op in the very next bundle? */
149 bool is_next_info_operand_adjacent
;
153 extern void backtrace_init(BacktraceIterator
*state
,
154 BacktraceMemoryReader read_memory_func
,
155 void *read_memory_func_extra
,
156 unsigned long pc
, unsigned long lr
,
157 unsigned long sp
, unsigned long r52
);
160 extern bool backtrace_next(BacktraceIterator
*state
);
162 #endif /* _ASM_TILE_BACKTRACE_H */