Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
49 lines
767 B
Plaintext
49 lines
767 B
Plaintext
%option prefix="perf_pmu_"
|
|
%option reentrant
|
|
%option bison-bridge
|
|
|
|
%{
|
|
#include <stdlib.h>
|
|
#include <linux/bitops.h>
|
|
#include "pmu.h"
|
|
#include "pmu-bison.h"
|
|
|
|
char *perf_pmu_get_text(yyscan_t yyscanner);
|
|
YYSTYPE *perf_pmu_get_lval(yyscan_t yyscanner);
|
|
|
|
static int value(yyscan_t scanner, int base)
|
|
{
|
|
YYSTYPE *yylval = perf_pmu_get_lval(scanner);
|
|
char *text = perf_pmu_get_text(scanner);
|
|
long num;
|
|
|
|
errno = 0;
|
|
num = strtoul(text, NULL, base);
|
|
if (errno)
|
|
return PP_ERROR;
|
|
|
|
yylval->num = num;
|
|
return PP_VALUE;
|
|
}
|
|
|
|
%}
|
|
|
|
num_dec [0-9]+
|
|
|
|
%%
|
|
|
|
{num_dec} { return value(yyscanner, 10); }
|
|
config { return PP_CONFIG; }
|
|
- { return '-'; }
|
|
: { return ':'; }
|
|
, { return ','; }
|
|
. { ; }
|
|
\n { ; }
|
|
|
|
%%
|
|
|
|
int perf_pmu_wrap(void *scanner __maybe_unused)
|
|
{
|
|
return 1;
|
|
}
|