Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1565390 > unrolled thread
| Started by | Abel Vesa <abelvesa@gmail.com> |
|---|---|
| First post | 2017-01-24 01:50 +0100 |
| Last post | 2017-01-24 01:50 +0100 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH] arm: ftrace: Adds support for CONFIG_DYNAMIC_FTRACE_WITH_REGS Abel Vesa <abelvesa@gmail.com> - 2017-01-24 01:50 +0100
| From | Abel Vesa <abelvesa@gmail.com> |
|---|---|
| Date | 2017-01-24 01:50 +0100 |
| Subject | Re: [PATCH] arm: ftrace: Adds support for CONFIG_DYNAMIC_FTRACE_WITH_REGS |
| Message-ID | <t2Xt8-5pd-3@gated-at.bofh.it> |
Hi Jean-Jacques,
Here is the implementation I've made for ftrace_graph_regs_caller:
.macro __ftrace_graph_regs_caller
sub r0, fp, #4 @ lr of
instrumented routine (parent)
@ called from __ftrace_regs_caller
ldr r1, [sp, #56] @ instrumented routine (func)
mcount_adjust_addr r1, r1
sub r2, r0, #4 @ frame pointer
bl prepare_ftrace_return
ldr lr, [sp, #64] @ restore lr from the stack
ldmia sp, {r0-r11, ip, sp} @ restore r0 through sp
ret ip
.endm
AFAIK, you can still use fp (see the implementation without regs) since
it is an alternative name for r11. The FRAME_POINTER config options does
something else entirely and has nothing to do with what we need here.
I tested it but unfortunately, my current setup is with qemu and I don't have
a real hardware here close to test it properly. Could you please tell me if this
works on your setup?
Also the way I tested it was to comment out the code that uses the default
ftrace_graph_caller in ftrace_modify_graph_caller and enforced the usage of
the one with regs.
I will create a proper patch later today (I need to cleanup some stuff
first) and
send it.
Thanks,
Abel
Back to top | Article view | linux.kernel
csiph-web