X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=liblttng-ust%2Flttng-bytecode-specialize.c;h=1ba4ffebdd1cbc303205faeb73ad1bfabd196a9d;hb=65c48d6a4b532436c000f8b3b9b771cfe9c07491;hp=2982a7930ccdc9cb0e215c1c7e32d0d975a7219e;hpb=dc11f93f7d30cd383e35be41483cc024da59c7b8;p=lttng-ust.git diff --git a/liblttng-ust/lttng-bytecode-specialize.c b/liblttng-ust/lttng-bytecode-specialize.c index 2982a793..1ba4ffeb 100644 --- a/liblttng-ust/lttng-bytecode-specialize.c +++ b/liblttng-ust/lttng-bytecode-specialize.c @@ -15,6 +15,7 @@ #include "context-internal.h" #include "lttng-bytecode.h" #include "ust-events-internal.h" +#include "ust-helper.h" static int lttng_fls(int val) { @@ -253,7 +254,7 @@ static int specialize_get_index(struct bytecode_runtime *runtime, case OBJECT_TYPE_ARRAY: { const struct lttng_integer_type *integer_type; - const struct lttng_event_field *field; + const struct lttng_ust_event_field *field; uint32_t elem_len, num_elems; int signedness; @@ -293,7 +294,7 @@ static int specialize_get_index(struct bytecode_runtime *runtime, case OBJECT_TYPE_SEQUENCE: { const struct lttng_integer_type *integer_type; - const struct lttng_event_field *field; + const struct lttng_ust_event_field *field; uint32_t elem_len; int signedness; @@ -377,7 +378,7 @@ static int specialize_context_lookup_name(struct lttng_ctx *ctx, return lttng_get_context_index(ctx, name); } -static int specialize_load_object(const struct lttng_event_field *field, +static int specialize_load_object(const struct lttng_ust_event_field *field, struct vstack_load *load, bool is_context) { load->type = LOAD_OBJECT; @@ -458,7 +459,7 @@ static int specialize_context_lookup(struct lttng_ctx *ctx, { int idx, ret; struct lttng_ctx_field *ctx_field; - struct lttng_event_field *field; + struct lttng_ust_event_field *field; struct bytecode_get_index_data gid; ssize_t data_offset; @@ -497,7 +498,7 @@ static int specialize_app_context_lookup(struct lttng_ctx **pctx, char *name = NULL; int idx, ret; struct lttng_ctx_field *ctx_field; - struct lttng_event_field *field; + struct lttng_ust_event_field *field; struct bytecode_get_index_data gid; ssize_t data_offset; @@ -556,7 +557,7 @@ static int specialize_payload_lookup(const struct lttng_ust_event_desc *event_de unsigned int i, nr_fields; bool found = false; uint32_t field_offset = 0; - const struct lttng_event_field *field; + const struct lttng_ust_event_field *field; int ret; struct bytecode_get_index_data gid; ssize_t data_offset; @@ -565,8 +566,8 @@ static int specialize_payload_lookup(const struct lttng_ust_event_desc *event_de offset = ((struct get_symbol *) insn->data)->offset; name = runtime->p.priv->bc->bc.data + runtime->p.priv->bc->bc.reloc_offset + offset; for (i = 0; i < nr_fields; i++) { - field = &event_desc->fields[i]; - if (field->u.ext.nofilter) { + field = event_desc->fields[i]; + if (field->nofilter) { continue; } if (!strcmp(field->name, name)) {