| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381 |
- /* Simple expression parser */
- %{
- #ifndef NDEBUG
- #define YYDEBUG 1
- #endif
- #include <assert.h>
- #include <math.h>
- #include <stdlib.h>
- #include "util/debug.h"
- #define IN_EXPR_Y 1
- #include "expr.h"
- #include "expr-bison.h"
- int expr_lex(YYSTYPE * yylval_param , void *yyscanner);
- %}
- %define api.pure full
- %parse-param { double *final_val }
- %parse-param { struct expr_parse_ctx *ctx }
- %parse-param { bool compute_ids }
- %parse-param {void *scanner}
- %lex-param {void* scanner}
- %union {
- double num;
- char *str;
- struct ids {
- /*
- * When creating ids, holds the working set of event ids. NULL
- * implies the set is empty.
- */
- struct hashmap *ids;
- /*
- * The metric value. When not creating ids this is the value
- * read from a counter, a constant or some computed value. When
- * creating ids the value is either a constant or BOTTOM. NAN is
- * used as the special BOTTOM value, representing a "set of all
- * values" case.
- */
- double val;
- } ids;
- }
- %token ID NUMBER MIN MAX IF ELSE LITERAL D_RATIO SOURCE_COUNT HAS_EVENT STRCMP_CPUID_STR EXPR_ERROR
- %left MIN MAX IF
- %left '|'
- %left '^'
- %left '&'
- %left '<' '>'
- %left '-' '+'
- %left '*' '/' '%'
- %left NEG NOT
- %type <num> NUMBER LITERAL
- %type <str> ID
- %destructor { free ($$); } <str>
- %type <ids> expr if_expr
- %destructor { ids__free($$.ids); } <ids>
- %{
- static void expr_error(double *final_val __maybe_unused,
- struct expr_parse_ctx *ctx __maybe_unused,
- bool compute_ids __maybe_unused,
- void *scanner __maybe_unused,
- const char *s)
- {
- pr_debug("%s\n", s);
- }
- /*
- * During compute ids, the special "bottom" value uses NAN to represent the set
- * of all values. NAN is selected as it isn't a useful constant value.
- */
- #define BOTTOM NAN
- /* During computing ids, does val represent a constant (non-BOTTOM) value? */
- static bool is_const(double val)
- {
- return isfinite(val);
- }
- static struct ids union_expr(struct ids ids1, struct ids ids2)
- {
- struct ids result = {
- .val = BOTTOM,
- .ids = ids__union(ids1.ids, ids2.ids),
- };
- return result;
- }
- static struct ids handle_id(struct expr_parse_ctx *ctx, char *id,
- bool compute_ids, bool source_count)
- {
- struct ids result;
- if (!compute_ids) {
- /*
- * Compute the event's value from ID. If the ID isn't known then
- * it isn't used to compute the formula so set to NAN.
- */
- struct expr_id_data *data;
- result.val = NAN;
- if (expr__resolve_id(ctx, id, &data) == 0) {
- result.val = source_count
- ? expr_id_data__source_count(data)
- : expr_id_data__value(data);
- }
- result.ids = NULL;
- free(id);
- } else {
- /*
- * Set the value to BOTTOM to show that any value is possible
- * when the event is computed. Create a set of just the ID.
- */
- result.val = BOTTOM;
- result.ids = ids__new();
- if (!result.ids || ids__insert(result.ids, id)) {
- pr_err("Error creating IDs for '%s'", id);
- free(id);
- }
- }
- return result;
- }
- /*
- * If we're not computing ids or $1 and $3 are constants, compute the new
- * constant value using OP. Its invariant that there are no ids. If computing
- * ids for non-constants union the set of IDs that must be computed.
- */
- #define BINARY_OP(RESULT, OP, LHS, RHS) \
- if (!compute_ids || (is_const(LHS.val) && is_const(RHS.val))) { \
- assert(LHS.ids == NULL); \
- assert(RHS.ids == NULL); \
- if (isnan(LHS.val) || isnan(RHS.val)) { \
- RESULT.val = NAN; \
- } else { \
- RESULT.val = LHS.val OP RHS.val; \
- } \
- RESULT.ids = NULL; \
- } else { \
- RESULT = union_expr(LHS, RHS); \
- }
- %}
- %%
- start: if_expr
- {
- if (compute_ids)
- ctx->ids = ids__union($1.ids, ctx->ids);
- if (final_val)
- *final_val = $1.val;
- }
- ;
- if_expr: expr IF expr ELSE if_expr
- {
- if (fpclassify($3.val) == FP_ZERO) {
- /*
- * The IF expression evaluated to 0 so treat as false, take the
- * ELSE and discard everything else.
- */
- $$.val = $5.val;
- $$.ids = $5.ids;
- ids__free($1.ids);
- ids__free($3.ids);
- } else if (!compute_ids || is_const($3.val)) {
- /*
- * If ids aren't computed then treat the expression as true. If
- * ids are being computed and the IF expr is a non-zero
- * constant, then also evaluate the true case.
- */
- $$.val = $1.val;
- $$.ids = $1.ids;
- ids__free($3.ids);
- ids__free($5.ids);
- } else if ($1.val == $5.val) {
- /*
- * LHS == RHS, so both are an identical constant. No need to
- * evaluate any events.
- */
- $$.val = $1.val;
- $$.ids = NULL;
- ids__free($1.ids);
- ids__free($3.ids);
- ids__free($5.ids);
- } else {
- /*
- * Value is either the LHS or RHS and we need the IF expression
- * to compute it.
- */
- $$ = union_expr($1, union_expr($3, $5));
- }
- }
- | expr
- ;
- expr: NUMBER
- {
- $$.val = $1;
- $$.ids = NULL;
- }
- | ID { $$ = handle_id(ctx, $1, compute_ids, /*source_count=*/false); }
- | SOURCE_COUNT '(' ID ')' { $$ = handle_id(ctx, $3, compute_ids, /*source_count=*/true); }
- | HAS_EVENT '(' ID ')'
- {
- $$.val = expr__has_event(ctx, compute_ids, $3);
- $$.ids = NULL;
- free($3);
- }
- | STRCMP_CPUID_STR '(' ID ')'
- {
- $$.val = expr__strcmp_cpuid_str(ctx, compute_ids, $3);
- $$.ids = NULL;
- free($3);
- }
- | expr '|' expr
- {
- if (is_const($1.val) && is_const($3.val)) {
- assert($1.ids == NULL);
- assert($3.ids == NULL);
- $$.ids = NULL;
- $$.val = (fpclassify($1.val) == FP_ZERO && fpclassify($3.val) == FP_ZERO) ? 0 : 1;
- } else if (is_const($1.val)) {
- assert($1.ids == NULL);
- if (fpclassify($1.val) == FP_ZERO) {
- $$ = $3;
- } else {
- $$.val = 1;
- $$.ids = NULL;
- ids__free($3.ids);
- }
- } else if (is_const($3.val)) {
- assert($3.ids == NULL);
- if (fpclassify($3.val) == FP_ZERO) {
- $$ = $1;
- } else {
- $$.val = 1;
- $$.ids = NULL;
- ids__free($1.ids);
- }
- } else {
- $$ = union_expr($1, $3);
- }
- }
- | expr '&' expr
- {
- if (is_const($1.val) && is_const($3.val)) {
- assert($1.ids == NULL);
- assert($3.ids == NULL);
- $$.val = (fpclassify($1.val) != FP_ZERO && fpclassify($3.val) != FP_ZERO) ? 1 : 0;
- $$.ids = NULL;
- } else if (is_const($1.val)) {
- assert($1.ids == NULL);
- if (fpclassify($1.val) != FP_ZERO) {
- $$ = $3;
- } else {
- $$.val = 0;
- $$.ids = NULL;
- ids__free($3.ids);
- }
- } else if (is_const($3.val)) {
- assert($3.ids == NULL);
- if (fpclassify($3.val) != FP_ZERO) {
- $$ = $1;
- } else {
- $$.val = 0;
- $$.ids = NULL;
- ids__free($1.ids);
- }
- } else {
- $$ = union_expr($1, $3);
- }
- }
- | expr '^' expr
- {
- if (is_const($1.val) && is_const($3.val)) {
- assert($1.ids == NULL);
- assert($3.ids == NULL);
- $$.val = (fpclassify($1.val) == FP_ZERO) != (fpclassify($3.val) == FP_ZERO) ? 1 : 0;
- $$.ids = NULL;
- } else {
- $$ = union_expr($1, $3);
- }
- }
- | expr '<' expr { BINARY_OP($$, <, $1, $3); }
- | expr '>' expr { BINARY_OP($$, >, $1, $3); }
- | expr '+' expr { BINARY_OP($$, +, $1, $3); }
- | expr '-' expr { BINARY_OP($$, -, $1, $3); }
- | expr '*' expr { BINARY_OP($$, *, $1, $3); }
- | expr '/' expr
- {
- if (fpclassify($3.val) == FP_ZERO) {
- pr_debug("division by zero\n");
- assert($3.ids == NULL);
- if (compute_ids)
- ids__free($1.ids);
- $$.val = NAN;
- $$.ids = NULL;
- } else if (!compute_ids || (is_const($1.val) && is_const($3.val))) {
- assert($1.ids == NULL);
- assert($3.ids == NULL);
- $$.val = $1.val / $3.val;
- $$.ids = NULL;
- } else {
- /* LHS and/or RHS need computing from event IDs so union. */
- $$ = union_expr($1, $3);
- }
- }
- | expr '%' expr
- {
- if (fpclassify($3.val) == FP_ZERO) {
- pr_debug("division by zero\n");
- YYABORT;
- } else if (!compute_ids || (is_const($1.val) && is_const($3.val))) {
- assert($1.ids == NULL);
- assert($3.ids == NULL);
- $$.val = (long)$1.val % (long)$3.val;
- $$.ids = NULL;
- } else {
- /* LHS and/or RHS need computing from event IDs so union. */
- $$ = union_expr($1, $3);
- }
- }
- | D_RATIO '(' expr ',' expr ')'
- {
- if (fpclassify($5.val) == FP_ZERO) {
- /*
- * Division by constant zero always yields zero and no events
- * are necessary.
- */
- assert($5.ids == NULL);
- $$.val = 0.0;
- $$.ids = NULL;
- ids__free($3.ids);
- } else if (!compute_ids || (is_const($3.val) && is_const($5.val))) {
- assert($3.ids == NULL);
- assert($5.ids == NULL);
- $$.val = $3.val / $5.val;
- $$.ids = NULL;
- } else {
- /* LHS and/or RHS need computing from event IDs so union. */
- $$ = union_expr($3, $5);
- }
- }
- | '-' expr %prec NEG
- {
- $$.val = -$2.val;
- $$.ids = $2.ids;
- }
- | '(' if_expr ')'
- {
- $$ = $2;
- }
- | MIN '(' expr ',' expr ')'
- {
- if (!compute_ids) {
- $$.val = $3.val < $5.val ? $3.val : $5.val;
- $$.ids = NULL;
- } else {
- $$ = union_expr($3, $5);
- }
- }
- | MAX '(' expr ',' expr ')'
- {
- if (!compute_ids) {
- $$.val = $3.val > $5.val ? $3.val : $5.val;
- $$.ids = NULL;
- } else {
- $$ = union_expr($3, $5);
- }
- }
- | LITERAL
- {
- $$.val = $1;
- $$.ids = NULL;
- }
- ;
- %%
|