summaryrefslogtreecommitdiffstats
path: root/tools/perf/util/pmu.l
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tools/perf/util/pmu.l48
1 files changed, 48 insertions, 0 deletions
diff --git a/tools/perf/util/pmu.l b/tools/perf/util/pmu.l
new file mode 100644
index 0000000000..67b247be69
--- /dev/null
+++ b/tools/perf/util/pmu.l
@@ -0,0 +1,48 @@
+%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;
+}