public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Peter Zijlstra <peterz@infradead.org>
To: Josh Poimboeuf <jpoimboe@kernel.org>
Cc: x86@kernel.org, linux-kernel@vger.kernel.org,
	Linus Torvalds <torvalds@linux-foundation.org>,
	Ingo Molnar <mingo@kernel.org>, Borislav Petkov <bp@alien8.de>,
	Thomas Gleixner <tglx@linutronix.de>
Subject: Re: [PATCH 5/8] objtool: Convert annotations to assembler macros
Date: Mon, 8 Dec 2025 10:37:12 +0100	[thread overview]
Message-ID: <20251208093712.GC3707891@noisy.programming.kicks-ass.net> (raw)
In-Reply-To: <28e63e2c890661dc9bcdbe172eba06b26220d455.1765044697.git.jpoimboe@kernel.org>

On Sat, Dec 06, 2025 at 01:41:12PM -0800, Josh Poimboeuf wrote:
> Improve code generation readability by converting the objtool
> annotations into assembler macros which are created when annotate.h is
> included.
> 
> Before:
> 
>   .pushsection .discard.annotate_insn, "M", @progbits, 8; .long 1b - ., 8; .popsection
> 
> After:
> 
>   ANNOTATE_REACHABLE loc=1b
> 
> Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org>

> diff --git a/arch/x86/include/asm/asm.h b/arch/x86/include/asm/asm.h
> index 0e8c611bc9e2..770321c908e5 100644
> --- a/arch/x86/include/asm/asm.h
> +++ b/arch/x86/include/asm/asm.h
> @@ -2,15 +2,15 @@
>  #ifndef _ASM_X86_ASM_H
>  #define _ASM_X86_ASM_H
>  
> -#include <linux/annotate.h>
> -
>  #ifdef __ASSEMBLER__
> +# define __ASM_C(a,b)			a
>  # define __ASM_FORM(x, ...)		x,## __VA_ARGS__
>  # define __ASM_FORM_RAW(x, ...)		x,## __VA_ARGS__
>  # define __ASM_FORM_COMMA(x, ...)	x,## __VA_ARGS__,
>  # define __ASM_REGPFX			%
>  #else
>  #include <linux/stringify.h>
> +# define __ASM_C(a,b)			b
>  # define __ASM_FORM(x, ...)		" " __stringify(x,##__VA_ARGS__) " "
>  # define __ASM_FORM_RAW(x, ...)		    __stringify(x,##__VA_ARGS__)
>  # define __ASM_FORM_COMMA(x, ...)	" " __stringify(x,##__VA_ARGS__) ","
> @@ -115,6 +115,10 @@
>  
>  #endif
>  
> +#define DEFINE_MACRO(name)						\
> +	__ASM_C(DEFINE_ ## name,					\
> +		asm(__stringify(DEFINE_ ## name)))
> +
>  #ifndef __ASSEMBLER__
>  static __always_inline __pure void *rip_rel_ptr(void *p)
>  {

> diff --git a/include/linux/annotate.h b/include/linux/annotate.h
> index 1678410efa1b..8b28f1a81ec4 100644
> --- a/include/linux/annotate.h
> +++ b/include/linux/annotate.h
> @@ -3,53 +3,43 @@
>  #define _LINUX_ANNOTATE_H
>  
>  #include <linux/objtool_types.h>
> +#include <linux/stringify.h>
> +#include <asm/asm.h>
> +
> +#define DEFINE___ANNOTATE						\
> +	.macro __ANNOTATE sec, type, loc;				\
> +	.pushsection __ASM_C(\sec, \\sec), "M", @progbits, 8;		\
> +		.long __ASM_C(\loc, \\loc) - .;				\
> +		.long __ASM_C(\type, \\type);				\
> +	.popsection;							\
> +	.endm
> +
> +#define __DEFINE_ANNOTATE(sec, name, type)				\
> +	.macro name loc=910b;						\
> +	910: __ANNOTATE sec, type, __ASM_C(\loc, \\loc);		\
> +	.endm
> +
> +#define DEFINE_ANNOTATE(type)						\
> +	__DEFINE_ANNOTATE(.discard.annotate_insn,			\
> +			  ANNOTATE_ ## type, ANNOTYPE_ ## type)
> +
> +#define DEFINE_ANNOTATE_DATA(type)					\
> +	__DEFINE_ANNOTATE(.discard.annotate_data,			\
> +			  ANNOTATE_ ## type, ANNOTYPE_ ## type)
>  
>  #ifdef CONFIG_OBJTOOL
>  
> +DEFINE_MACRO(__ANNOTATE);
> +DEFINE_MACRO(ANNOTATE(NOENDBR));
> +DEFINE_MACRO(ANNOTATE(RETPOLINE_SAFE));
> +DEFINE_MACRO(ANNOTATE(INSTR_BEGIN));
> +DEFINE_MACRO(ANNOTATE(INSTR_END));
> +DEFINE_MACRO(ANNOTATE(IGNORE_ALTERNATIVE));
> +DEFINE_MACRO(ANNOTATE(INTRA_FUNCTION_CALL));
> +DEFINE_MACRO(ANNOTATE(UNRET_BEGIN));
> +DEFINE_MACRO(ANNOTATE(REACHABLE));
> +DEFINE_MACRO(ANNOTATE(NOCFI));
> +DEFINE_MACRO(ANNOTATE_DATA(DATA_SPECIAL));

Well, that took a bit this Monday morning... :-)

Clever.

  parent reply	other threads:[~2025-12-08  9:37 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-12-06 21:41 [PATCH 0/8] objtool, x86/alternative: Convert objtool annotations and x86 alternatives to assembler macros Josh Poimboeuf
2025-12-06 21:41 ` [PATCH 1/8] objtool: Rename ANNOTYPE_IGNORE_ALTS -> ANNOTYPE_IGNORE_ALTERNATIVE Josh Poimboeuf
2025-12-06 21:41 ` [PATCH 2/8] objtool: Make ANNOTYPE_DATA_SPECIAL unique across all annotations Josh Poimboeuf
2025-12-06 21:41 ` [PATCH 3/8] objtool: Rename C ANNOTATE_REACHABLE to ANNOTATE_REACHABLE_LABEL Josh Poimboeuf
2025-12-06 21:41 ` [PATCH 4/8] objtool: Rename asm ANNOTATE_NOCFI_SYM to ANNOTATE_NOCFI Josh Poimboeuf
2025-12-06 21:41 ` [PATCH 5/8] objtool: Convert annotations to assembler macros Josh Poimboeuf
2025-12-07 14:51   ` Josh Poimboeuf
2025-12-08  9:37   ` Peter Zijlstra [this message]
2025-12-06 21:41 ` [PATCH 6/8] x86/asm: Use unique code labels in __FILL_RETURN_BUFFER Josh Poimboeuf
2025-12-06 21:41 ` [PATCH 7/8] x86/asm: Remove newlines in alternatives Josh Poimboeuf
2025-12-07 14:52   ` Josh Poimboeuf
2025-12-06 21:41 ` [PATCH 8/8] x86/alternative: Convert alternatives to assembler macros Josh Poimboeuf
2025-12-08  9:51   ` Peter Zijlstra
2025-12-08 22:46     ` Josh Poimboeuf
2025-12-09  9:24       ` Peter Zijlstra
2025-12-10  1:15         ` Josh Poimboeuf
2025-12-10  9:16           ` Peter Zijlstra
2025-12-11  5:20             ` Josh Poimboeuf
2025-12-11  1:06 ` [PATCH 0/8] objtool, x86/alternative: Convert objtool annotations and x86 " Borislav Petkov
2025-12-11  5:27   ` Josh Poimboeuf

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20251208093712.GC3707891@noisy.programming.kicks-ass.net \
    --to=peterz@infradead.org \
    --cc=bp@alien8.de \
    --cc=jpoimboe@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@kernel.org \
    --cc=tglx@linutronix.de \
    --cc=torvalds@linux-foundation.org \
    --cc=x86@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox