From: Cyrill Gorcunov <gorcunov@gmail.com> To: Serge Petrenko <sergepetrenko@tarantool.org> Cc: v.shpilevoy@tarantool.org, tarantool-patches@dev.tarantool.org Subject: Re: [Tarantool-patches] [PATCH 1/2] box: speed up tuple_field_map_create Date: Sat, 14 Nov 2020 21:00:34 +0300 [thread overview] Message-ID: <20201114180034.GM2021@grain> (raw) In-Reply-To: <20201114172823.8217-2-sergepetrenko@tarantool.org> On Sat, Nov 14, 2020 at 08:28:22PM +0300, Serge Petrenko wrote: ... > +static int > +tuple_field_map_create_plain(struct tuple_format *format, const char *tuple, > + bool validate, struct field_map_builder *builder) > +{ > +#define check_field_type(field, pos) { \ > + if (validate && \ > + !field_mp_type_is_compatible(field->type, pos, \ > + tuple_field_is_nullable(field))) { \ > + diag_set(ClientError, ER_FIELD_TYPE, tuple_field_path(field), \ > + field_type_strs[field->type]); \ > + return -1; \ > + } \ > +} Serge, I'm completely not familiar with the code thus may be simply wrong but @check_field_type test for @validate first, right? ... > + > + field = json_tree_lookup_entry(&format->fields, &format->fields.root, > + &token, struct tuple_field, token); > + /* Check 1st field's type, but don't store offset to it. */ > + check_field_type(field, pos); check_field_type -> if (validate ...) > + if (validate) > + bit_clear(required_fields, field->id); and here we test for if (validate) again. Should not we simply drop if (validate) from check_field_type and call this macro under the caller's if? IOW if (validate) { check_field_type(); bit_clear(); } While check_field_type will be something like #define check_field_type(field, pos) \ ({ \ bool nullable = tuple_field_is_nullable(field); \ if (!field_mp_type_is_compatible(field->type, pos, nullable)) { \ diag_set(ClientError, ER_FIELD_TYPE, \ tuple_field_path(field), \ field_type_strs[field->type]); \ return -1; \ } \ }) - if I'm right we may fix it on top (actually since these two ifs are close to each other they won't hurt hw branch predictor even in current form or may be compiler merge these two basic blocks under one "if" flow) > + check_field_type(field, pos); > + if (validate) > + bit_clear(required_fields, field->id); and here too. > + if (field->offset_slot != TUPLE_OFFSET_SLOT_NIL && > + field_map_builder_set_slot(builder, field->offset_slot, > + pos - tuple, MULTIKEY_NONE, > + 0, NULL) != 0) { > + return -1; > + } > + }
next prev parent reply other threads:[~2020-11-14 18:00 UTC|newest] Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-11-14 17:28 [Tarantool-patches] [PATCH 0/2] reduce performance degradation introduced by JSON path indices Serge Petrenko 2020-11-14 17:28 ` [Tarantool-patches] [PATCH 1/2] box: speed up tuple_field_map_create Serge Petrenko 2020-11-14 18:00 ` Cyrill Gorcunov [this message] 2020-11-16 7:34 ` Serge Petrenko 2020-11-20 23:26 ` Vladislav Shpilevoy 2020-11-23 13:50 ` Serge Petrenko 2020-11-24 22:33 ` Vladislav Shpilevoy 2020-12-01 8:48 ` Serge Petrenko 2020-12-01 22:04 ` Vladislav Shpilevoy 2020-12-02 9:53 ` Serge Petrenko 2020-11-14 17:28 ` [Tarantool-patches] [PATCH 2/2] box: use tuple_field_raw_by_part where possible Serge Petrenko 2020-11-20 23:26 ` Vladislav Shpilevoy 2020-11-23 13:51 ` Serge Petrenko 2020-11-24 22:33 ` Vladislav Shpilevoy 2020-12-01 8:48 ` Serge Petrenko 2020-12-01 22:04 ` Vladislav Shpilevoy 2020-11-16 7:50 ` [Tarantool-patches] [PATCH 0/2] reduce performance degradation introduced by JSON path indices Serge Petrenko
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20201114180034.GM2021@grain \ --to=gorcunov@gmail.com \ --cc=sergepetrenko@tarantool.org \ --cc=tarantool-patches@dev.tarantool.org \ --cc=v.shpilevoy@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH 1/2] box: speed up tuple_field_map_create' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox