/usr/share/systemtap/tapset/arm/registers.stp is in systemtap-common 2.6-0.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | /* Dwarfless register access for arm */
global _reg_offsets[30]
probe init {
/* Same order as pt_regs */
_reg_offsets["r0"] = 0 _reg_offsets["a1"] = 0
_reg_offsets["r1"] = 4 _reg_offsets["a2"] = 4
_reg_offsets["r2"] = 8 _reg_offsets["a3"] = 8
_reg_offsets["r3"] = 12 _reg_offsets["a4"] = 12
_reg_offsets["r4"] = 16 _reg_offsets["v1"] = 16
_reg_offsets["r5"] = 20 _reg_offsets["v2"] = 20
_reg_offsets["r6"] = 24 _reg_offsets["v3"] = 24
_reg_offsets["r7"] = 28 _reg_offsets["v4"] = 28
_reg_offsets["r8"] = 32 _reg_offsets["v5"] = 32
_reg_offsets["r9"] = 36 _reg_offsets["v6"] = 36
_reg_offsets["r10"] = 40 _reg_offsets["v7"] = 40
_reg_offsets["fp"] = 44 _reg_offsets["v8"] = 44
_reg_offsets["ip"] = 48
_reg_offsets["sp"] = 52
_reg_offsets["lr"] = 56
_reg_offsets["pc"] = 60
_reg_offsets["cpsr"] = 64
_reg_offsets["orig_r0"] = 68
}
function _stp_get_register_by_offset:long (offset:long) %{ /* pure */
long value;
struct pt_regs *regs;
if (CONTEXT->user_mode_p) {
regs = CONTEXT->uregs;
} else {
regs = CONTEXT->kregs;
}
if (!regs) {
CONTEXT->last_error = "No registers available in this context";
return;
}
if (STAP_ARG_offset < 0 || STAP_ARG_offset > sizeof(struct pt_regs) - sizeof(long)) {
snprintf(CONTEXT->error_buffer, sizeof(CONTEXT->error_buffer),
"Bad register offset: %lld", STAP_ARG_offset);
CONTEXT->last_error = CONTEXT->error_buffer;
return;
}
memcpy(&value, ((char *)regs) + STAP_ARG_offset, sizeof(value));
STAP_RETVALUE = value;
%}
function _stp_probing_kernel:long () {
return !user_mode();
}
/* Return the named register value as a signed value. */
function register:long (name:string) {
if (!registers_valid()) {
error("cannot access CPU registers in this context")
return 0
}
offset = _reg_offsets[name]
if (offset == 0 && !(name in _reg_offsets)) {
error("Unknown register: " . name)
return 0
}
return _stp_get_register_by_offset(offset)
}
/*
* Return the named register value as an unsigned value. Specifically,
* don't sign-extend the register value when promoting it to 64 bits.
*/
function u_register:long (name:string) {
return register(name) & 0xffffffff;
}
/* Return the value of function arg #argnum (1=first arg) as a signed value.
*
* We don't yet support extracting arg #5 and beyond, which are passed
* on stack
*/
function _stp_arg:long (argnum:long) {
val = 0
if (argnum < 1 || argnum > 4) {
error(sprintf("Cannot access arg(%d)", argnum))
return 0
}
if (argnum == 1)
val = register("r0")
else if (argnum == 2)
val = register("r1")
else if (argnum == 3)
val = register("r2")
else if (argnum == 4)
val = register("r3")
return val;
}
/* Return the value of function arg #argnum as a signed int. */
function int_arg:long (argnum:long) {
return _stp_arg(argnum)
}
/* Return the value of function arg #argnum as an unsigned int. */
function uint_arg:long (argnum:long) {
return _stp_arg(argnum) & 0xffffffff;
}
function long_arg:long (argnum:long) {
return int_arg(argnum)
}
function ulong_arg:long (argnum:long) {
return uint_arg(argnum)
}
function longlong_arg:long (argnum:long) {
/*
* TODO: If argnum == nr_regarg, gcc puts the whole 64-bit arg
* on the stack.
*/
lowbits = uint_arg(argnum)
highbits = uint_arg(argnum+1)
return ((highbits << 32) | lowbits)
}
function ulonglong_arg:long (argnum:long) {
return longlong_arg(argnum)
}
function pointer_arg:long (argnum:long) {
return ulong_arg(argnum)
}
function s32_arg:long (argnum:long) {
return int_arg(argnum)
}
function u32_arg:long (argnum:long) {
return uint_arg(argnum)
}
function s64_arg:long (argnum:long) {
return longlong_arg(argnum)
}
function u64_arg:long (argnum:long) {
return ulonglong_arg(argnum)
}
function asmlinkage() %{ /* pure */ %}
function fastcall() %{ /* pure */ %}
function regparm(n:long) %{
snprintf(CONTEXT->error_buffer, sizeof(CONTEXT->error_buffer),
"regparm is invalid on arm.");
CONTEXT->last_error = CONTEXT->error_buffer;
%}
|