X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Flib%2Flttng-ctl%2Ffilter%2Ffilter-bytecode.h;h=627d0d6f0b6f58943b7326b8c59ba019f8682f11;hb=75acbe19887436248352558828220eb88731d916;hp=b9991284f636c3c0f82af1e9f7863fedacd2bd74;hpb=586dc72f727912b4aa381789c418e062bce89d08;p=lttng-tools.git diff --git a/src/lib/lttng-ctl/filter/filter-bytecode.h b/src/lib/lttng-ctl/filter/filter-bytecode.h index b9991284f..627d0d6f0 100644 --- a/src/lib/lttng-ctl/filter/filter-bytecode.h +++ b/src/lib/lttng-ctl/filter/filter-bytecode.h @@ -72,7 +72,7 @@ enum filter_op { FILTER_OP_GE = 16, FILTER_OP_LE = 17, - /* string binary comparator */ + /* string binary comparator: apply to */ FILTER_OP_EQ_STRING = 18, FILTER_OP_NE_STRING = 19, FILTER_OP_GT_STRING = 20, @@ -149,6 +149,20 @@ enum filter_op { FILTER_OP_GET_CONTEXT_REF_S64 = 72, FILTER_OP_GET_CONTEXT_REF_DOUBLE = 73, + /* load userspace field ref */ + FILTER_OP_LOAD_FIELD_REF_USER_STRING = 74, + FILTER_OP_LOAD_FIELD_REF_USER_SEQUENCE = 75, + + /* + * load immediate star globbing pattern (literal string) + * from immediate + */ + FILTER_OP_LOAD_STAR_GLOB_STRING = 76, + + /* globbing pattern binary operator: apply to */ + FILTER_OP_EQ_STAR_GLOB_STRING = 77, + FILTER_OP_NE_STAR_GLOB_STRING = 78, + NR_FILTER_OPS, };