linux-perf-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Arnaldo Carvalho de Melo <acme@kernel.org>
To: Yang Jihong <yangjihong@bytedance.com>
Cc: peterz@infradead.org, mingo@redhat.com, namhyung@kernel.org,
	mark.rutland@arm.com, alexander.shishkin@linux.intel.com,
	jolsa@kernel.org, irogers@google.com, adrian.hunter@intel.com,
	kan.liang@linux.intel.com, james.clark@arm.com,
	linux-perf-users@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [RFC 03/12] perf event action: Add parsing const integer expr support
Date: Thu, 28 Nov 2024 17:25:33 -0300	[thread overview]
Message-ID: <Z0jRvSlEZveQFVh7@x1> (raw)
In-Reply-To: <20241128133553.823722-4-yangjihong@bytedance.com>

On Thu, Nov 28, 2024 at 09:35:44PM +0800, Yang Jihong wrote:
> Support parsing of constant integer expression.
> 
> Signed-off-by: Yang Jihong <yangjihong@bytedance.com>
> ---
>  tools/perf/util/parse-action.c | 52 ++++++++++++++++++++++++++++++++++
>  tools/perf/util/parse-action.h |  1 +
>  tools/perf/util/parse-action.l | 19 +++++++++++++
>  tools/perf/util/parse-action.y | 13 ++++++++-
>  4 files changed, 84 insertions(+), 1 deletion(-)
> 
> diff --git a/tools/perf/util/parse-action.c b/tools/perf/util/parse-action.c
> index 391546bf3d73..3b10cf9f99b3 100644
> --- a/tools/perf/util/parse-action.c
> +++ b/tools/perf/util/parse-action.c
> @@ -7,6 +7,7 @@
>   *
>   * Supported expressions:
>   *   - constant:
> + *     - integer

And now there are alignment differences and no : ?

>   */
>  
>  #include "util/debug.h"
> @@ -118,7 +119,58 @@ void event_actions__free(void)
>  	(void)event_actions__for_each_expr_safe(do_action_free, NULL, false);
>  }
>  
> +static int expr_const_int_new(struct evtact_expr *expr, void *data, int size)
> +{
> +	if (data == NULL ||
> +	    (size != sizeof(int)
> +	     && size != sizeof(long) && size != sizeof(long long))) {

&& should be at the end of the previous line, just like you did with the
|| at the end of the first line

> +		pr_err("expr_const_int size invalid: %d\n", size);
> +		return -EINVAL;
> +	}
> +
> +	expr->priv = malloc(sizeof(long long));
> +	if (expr->priv == NULL) {
> +		pr_err("exp_ const_int malloc failed\n");
> +		return -ENOMEM;
> +	}
> +
> +	if (size == sizeof(int))
> +		*(unsigned long long *)(expr->priv) = *(unsigned int *)data;
> +	else if (size == sizeof(long))
> +		*(unsigned long long *)(expr->priv) = *(unsigned long *)data;
> +	else if (size == sizeof(long long))
> +		*(unsigned long long *)(expr->priv) = *(unsigned long long *)data;
> +
> +	INIT_LIST_HEAD(&expr->opnds);
> +	return 0;
> +}
> +
> +static void expr_const_int_free(struct evtact_expr *expr)
> +{
> +	zfree(&expr->priv);
> +}
> +
> +static int expr_const_int_eval(struct evtact_expr *expr,
> +			       void *in __maybe_unused, int in_size __maybe_unused,
> +			       void **out, int *out_size)
> +{
> +	if (out != NULL)
> +		*out = expr->priv;
> +
> +	if (out_size != NULL)
> +		*out_size = sizeof(long long);
> +
> +	return 0;
> +}
> +
> +static struct evtact_expr_ops expr_const_int_ops = {
> +	.new  = expr_const_int_new,
> +	.free = expr_const_int_free,
> +	.eval = expr_const_int_eval,
> +};
> +
>  static struct evtact_expr_ops *expr_const_ops_list[EVTACT_EXPR_CONST_TYPE_MAX] = {
> +	[EVTACT_EXPR_CONST_TYPE_INT] = &expr_const_int_ops,
>  };
>  
>  static int expr_const_set_ops(struct evtact_expr *expr, u32 opcode)
> diff --git a/tools/perf/util/parse-action.h b/tools/perf/util/parse-action.h
> index 47bd75264dee..ac81278c590e 100644
> --- a/tools/perf/util/parse-action.h
> +++ b/tools/perf/util/parse-action.h
> @@ -14,6 +14,7 @@ enum evtact_expr_type {
>  };
>  
>  enum evtact_expr_const_type {
> +	EVTACT_EXPR_CONST_TYPE_INT,
>  	EVTACT_EXPR_CONST_TYPE_MAX,
>  };
>  
> diff --git a/tools/perf/util/parse-action.l b/tools/perf/util/parse-action.l
> index 3cb72de50372..9237399a11ac 100644
> --- a/tools/perf/util/parse-action.l
> +++ b/tools/perf/util/parse-action.l
> @@ -13,13 +13,32 @@
>  #include "parse-action.h"
>  #include "parse-action-bison.h"
>  
> +static int value(int base)
> +{
> +	unsigned long long num;
> +
> +	errno = 0;
> +	num = strtoul(parse_action_text, NULL, base);
> +	if (errno) {
> +		pr_err("parse_action malloc number failed\n");
> +		return ERROR;
> +	}
> +
> +	parse_action_lval.num = num;
> +	return NUMBER;
> +}
> +
>  %}
>  
> +num_dec		[0-9]+
> +num_hex		0[xX][0-9a-fA-F]+
>  space		[ \t]
>  ident		[_a-zA-Z][_a-zA-Z0-9]*
>  
>  %%
>  
> +{num_dec}	{ return value(10); }
> +{num_hex}	{ return value(16); }
>  {space}		{ }
>  
>  ";"		{ return SEMI; }
> diff --git a/tools/perf/util/parse-action.y b/tools/perf/util/parse-action.y
> index fade9d093d4a..51e77e54f157 100644
> --- a/tools/perf/util/parse-action.y
> +++ b/tools/perf/util/parse-action.y
> @@ -17,6 +17,8 @@
>  #include "util/debug.h"
>  #include "util/parse-action.h"
>  
> +#define expr_id(t, o) evtact_expr_id_encode(EVTACT_EXPR_TYPE_##t, EVTACT_EXPR_##t##_TYPE_##o)
> +
>  int parse_action_lex(void);
>  
>  static void parse_action_error(struct list_head *expr __maybe_unused,
> @@ -32,13 +34,15 @@ static void parse_action_error(struct list_head *expr __maybe_unused,
>  	char *str;
>  	struct evtact_expr *expr;
>  	struct list_head *list;
> +	unsigned long long num;
>  }
>  
> -%token IDENT ERROR
> +%token IDENT ERROR NUMBER
>  %token SEMI
>  %type <expr> action_term expr_term
>  %destructor { parse_action_expr__free($$); } <expr>
>  %type <str> IDENT
> +%type <num> NUMBER
>  
>  %%
>  
> @@ -65,6 +69,13 @@ expr_term
>  }
>  
>  expr_term:
> +NUMBER
> +{
> +	$$ = parse_action_expr__new(expr_id(CONST, INT), NULL, (void *)&$1, sizeof($1));
> +	if ($$ == NULL)
> +		YYERROR;
> +}
> +|
>  IDENT
>  {
>  	$$ = NULL;
> -- 
> 2.25.1

  reply	other threads:[~2024-11-28 20:25 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-28 13:35 [RFC 00/12] perf record: Add event action support Yang Jihong
2024-11-28 13:35 ` [RFC 01/12] " Yang Jihong
2024-11-28 20:19   ` Arnaldo Carvalho de Melo
2024-12-04  8:24     ` [External] " Yang Jihong
2024-11-28 13:35 ` [RFC 02/12] perf event action: Add parsing const expr support Yang Jihong
2024-11-28 20:23   ` Arnaldo Carvalho de Melo
2024-12-04  8:29     ` [External] " Yang Jihong
2024-11-28 13:35 ` [RFC 03/12] perf event action: Add parsing const integer " Yang Jihong
2024-11-28 20:25   ` Arnaldo Carvalho de Melo [this message]
2024-12-04  8:32     ` [External] " Yang Jihong
2024-11-28 13:35 ` [RFC 04/12] perf event action: Add parsing const string " Yang Jihong
2024-11-28 13:35 ` [RFC 05/12] perf event action: Add parsing call " Yang Jihong
2024-11-28 13:35 ` [RFC 06/12] perf event action: Add parsing print() " Yang Jihong
2024-11-28 13:35 ` [RFC 07/12] perf event action: Add parsing builtin " Yang Jihong
2024-11-28 13:35 ` [RFC 08/12] perf event action: Add parsing builtin cpu " Yang Jihong
2024-11-28 13:35 ` [RFC 09/12] perf event action: Add parsing builtin pid " Yang Jihong
2024-11-28 13:35 ` [RFC 10/12] perf event action: Add parsing builtin tid " Yang Jihong
2024-11-28 13:35 ` [RFC 11/12] perf event action: Add parsing builtin comm " Yang Jihong
2024-11-28 13:35 ` [RFC 12/12] perf event action: Add parsing builtin time " Yang Jihong
2024-11-28 13:53 ` [RFC 00/12] perf record: Add event action support Adrian Hunter
2024-12-04  8:07   ` [External] " Yang Jihong
2024-11-28 20:14 ` Arnaldo Carvalho de Melo
2024-12-02 21:46   ` Namhyung Kim
2024-12-04  8:35     ` [External] " Yang Jihong
2024-12-04 19:54       ` Ian Rogers
2024-12-05 14:01         ` Yang Jihong
2024-12-04  8:21   ` Yang Jihong

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=Z0jRvSlEZveQFVh7@x1 \
    --to=acme@kernel.org \
    --cc=adrian.hunter@intel.com \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=irogers@google.com \
    --cc=james.clark@arm.com \
    --cc=jolsa@kernel.org \
    --cc=kan.liang@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-perf-users@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=mingo@redhat.com \
    --cc=namhyung@kernel.org \
    --cc=peterz@infradead.org \
    --cc=yangjihong@bytedance.com \
    /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;
as well as URLs for NNTP newsgroup(s).