2023-04-06 06:52:23 +00:00
|
|
|
%define api.pure full
|
2012-03-15 19:09:17 +00:00
|
|
|
%parse-param {struct list_head *format}
|
|
|
|
%parse-param {char *name}
|
2023-04-06 06:52:23 +00:00
|
|
|
%parse-param {void *scanner}
|
|
|
|
%lex-param {void* scanner}
|
2012-03-15 19:09:17 +00:00
|
|
|
|
|
|
|
%{
|
|
|
|
|
|
|
|
#include <linux/compiler.h>
|
|
|
|
#include <linux/list.h>
|
|
|
|
#include <linux/bitmap.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "pmu.h"
|
2023-07-28 06:49:16 +00:00
|
|
|
#include "pmu-bison.h"
|
|
|
|
|
|
|
|
int perf_pmu_lex(YYSTYPE * yylval_param , void *yyscanner);
|
2012-03-15 19:09:17 +00:00
|
|
|
|
|
|
|
#define ABORT_ON(val) \
|
|
|
|
do { \
|
|
|
|
if (val) \
|
|
|
|
YYABORT; \
|
|
|
|
} while (0)
|
|
|
|
|
2023-08-23 08:08:07 +00:00
|
|
|
static void perf_pmu_error(struct list_head *list, char *name, void *scanner, char const *msg);
|
|
|
|
|
2023-08-23 08:08:06 +00:00
|
|
|
static void perf_pmu__set_format(unsigned long *bits, long from, long to)
|
|
|
|
{
|
|
|
|
long b;
|
|
|
|
|
|
|
|
if (!to)
|
|
|
|
to = from;
|
|
|
|
|
|
|
|
memset(bits, 0, BITS_TO_BYTES(PERF_PMU_FORMAT_BITS));
|
|
|
|
for (b = from; b <= to; b++)
|
|
|
|
__set_bit(b, bits);
|
|
|
|
}
|
|
|
|
|
2012-03-15 19:09:17 +00:00
|
|
|
%}
|
|
|
|
|
2022-10-04 19:12:35 +00:00
|
|
|
%token PP_CONFIG
|
2012-03-15 19:09:17 +00:00
|
|
|
%token PP_VALUE PP_ERROR
|
|
|
|
%type <num> PP_VALUE
|
|
|
|
%type <bits> bit_term
|
|
|
|
%type <bits> bits
|
|
|
|
|
|
|
|
%union
|
|
|
|
{
|
|
|
|
unsigned long num;
|
|
|
|
DECLARE_BITMAP(bits, PERF_PMU_FORMAT_BITS);
|
|
|
|
}
|
|
|
|
|
|
|
|
%%
|
|
|
|
|
|
|
|
format:
|
|
|
|
format format_term
|
|
|
|
|
|
|
|
|
format_term
|
|
|
|
|
|
|
|
format_term:
|
|
|
|
PP_CONFIG ':' bits
|
|
|
|
{
|
|
|
|
ABORT_ON(perf_pmu__new_format(format, name,
|
|
|
|
PERF_PMU_FORMAT_VALUE_CONFIG,
|
|
|
|
$3));
|
|
|
|
}
|
|
|
|
|
|
2022-10-04 19:12:35 +00:00
|
|
|
PP_CONFIG PP_VALUE ':' bits
|
2012-03-15 19:09:17 +00:00
|
|
|
{
|
|
|
|
ABORT_ON(perf_pmu__new_format(format, name,
|
2022-10-04 19:12:35 +00:00
|
|
|
$2,
|
|
|
|
$4));
|
2012-03-15 19:09:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bits:
|
|
|
|
bits ',' bit_term
|
|
|
|
{
|
|
|
|
bitmap_or($$, $1, $3, 64);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
bit_term
|
|
|
|
{
|
|
|
|
memcpy($$, $1, sizeof($1));
|
|
|
|
}
|
|
|
|
|
|
|
|
bit_term:
|
|
|
|
PP_VALUE '-' PP_VALUE
|
|
|
|
{
|
|
|
|
perf_pmu__set_format($$, $1, $3);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
PP_VALUE
|
|
|
|
{
|
|
|
|
perf_pmu__set_format($$, $1, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
%%
|
|
|
|
|
2023-08-23 08:08:07 +00:00
|
|
|
static void perf_pmu_error(struct list_head *list __maybe_unused,
|
2012-09-10 22:15:03 +00:00
|
|
|
char *name __maybe_unused,
|
2023-04-06 06:52:23 +00:00
|
|
|
void *scanner __maybe_unused,
|
2012-09-10 22:15:03 +00:00
|
|
|
char const *msg __maybe_unused)
|
2012-03-15 19:09:17 +00:00
|
|
|
{
|
|
|
|
}
|