• Naveen N Rao's avatar
    powerpc/ftrace: Add support for -fpatchable-function-entry · 0f71dcfb
    Naveen N Rao authored
    GCC v13.1 updated support for -fpatchable-function-entry on ppc64le to
    emit nops after the local entry point, rather than before it. This
    allows us to use this in the kernel for ftrace purposes. A new script is
    added under arch/powerpc/tools/ to help detect if nops are emitted after
    the function local entry point, or before the global entry point.
    
    With -fpatchable-function-entry, we no longer have the profiling
    instructions generated at function entry, so we only need to validate
    the presence of two nops at the ftrace location in ftrace_init_nop(). We
    patch the preceding instruction with 'mflr r0' to match the
    -mprofile-kernel ABI for subsequent ftrace use.
    
    This changes the profiling instructions used on ppc32. The default -pg
    option emits an additional 'stw' instruction after 'mflr r0' and before
    the branch to _mcount 'bl _mcount'. This is very similar to the original
    -mprofile-kernel implementation on ppc64le, where an additional 'std'
    instruction was used to save LR to its save location in the caller's
    stackframe. Subsequently, this additional store was removed in later
    compiler versions for performance reasons. The same reasons apply for
    ppc32 so we only patch in a 'mflr r0'.
    Signed-off-by: default avatarNaveen N Rao <naveen@kernel.org>
    Reviewed-by: default avatarChristophe Leroy <christophe.leroy@csgroup.eu>
    Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
    Link: https://msgid.link/68586d22981a2c3bb45f27a2b621173d10a7d092.1687166935.git.naveen@kernel.org
    0f71dcfb
Makefile 13.7 KB