From: Vladislav Shpilevoy <v.shpilevoy@tarantool.org>
To: "Мерген Имеев" <imeevma@tarantool.org>
Cc: Mergen Imeev <imeevma@gmail.com>, tarantool-patches@dev.tarantool.org
Subject: Re: [Tarantool-patches] [PATCH v1 1/1] sql: enable autoindex optimization
Date: Thu, 24 Sep 2020 22:45:26 +0200 [thread overview]
Message-ID: <e7bac890-0dc4-fb16-6a07-67703a736b17@tarantool.org> (raw)
In-Reply-To: <1600752315.389449454@f362.i.mail.ru>
Спасибо за ответы!
> > + int cursor, int reg_out, int reg_eph)
> > +{
> > + assert(reg_out != 0);
> > + struct Vdbe *v = parse->pVdbe;
> > + int col_cnt = idx_def->key_def->part_count;
> > + int reg_base = sqlGetTempRange(parse, col_cnt + 1);
> > + for (int j = 0; j < col_cnt; j++) {
> > + uint32_t tabl_col = idx_def->key_def->parts[j].fieldno;
> > + sqlVdbeAddOp3(v, OP_Column, cursor, tabl_col, reg_base + j);
> > + /*
> > + * If the column type is NUMBER but the number
> > + * is an integer, then it might be stored in the
> > + * table as an integer (using a compact
> > + * representation) then converted to REAL by an
> > + * OP_Realify opcode. But we are getting
> > + * ready to store this value back into an index,
> > + * where it should be converted by to INTEGER
> > + * again. So omit the OP_Realify opcode if
> > + * it is present
> > + */
> > + sqlVdbeDeletePriorOpcode(v, OP_Realify);
> > + }
> > + sqlVdbeAddOp2(v, OP_NextIdEphemeral, reg_eph, reg_base + col_cnt);
> > + sqlVdbeAddOp3(v, OP_MakeRecord, reg_base, col_cnt + 1, reg_out);
> > +
> > + sqlReleaseTempRange(parse, reg_base, col_cnt);
> > + return reg_base;
> > +}
> > +
> > /*
> > - * Generate code to construct the Index object for an automatic index
> > - * and to set up the WhereLevel object pLevel so that the code generator
> > - * makes use of the automatic index.
> > + * Generate code to construct the ephemeral space that contains used in query
> > + * fields of one of the tables. The index of this ephemeral space will be known
> > + * as an "automatic index". Also, this functions set up the WhereLevel object
> > + * pLevel so that the code generator makes use of the automatic index.
> > */
> > static void
> > constructAutomaticIndex(Parse * pParse, /* The parsing context */
> > @@ -801,9 +852,11 @@ constructAutomaticIndex(Parse * pParse, /* The parsing context */
> > n = 0;
> > idxCols = 0;
> > uint32_t size = sizeof(struct key_part_def) * nKeyCol;
> > - struct key_part_def *part_def = malloc(size);
> > + struct region *region = &fiber()->gc;
> > + size_t used = region_used(region);
> > + struct key_part_def *part_def = region_alloc(region, size);
>
> Это раздолбает с ASANом из-за отсутствия выравнивания. Нужен region_alloc_array.
>
> Исправлю, но мне казалочь, что это временый объект и его выравнивание нигде не проверяется.
Временный или нет - это не важно. Если эта память используется, значит
делается доступ по адресу, который вернулся из аллока. Выровнено доложно
быть абсолтюно все. Если ты используешь память как struct key_part_def,
значит память должна быть выровнена по alignof(struct key_part_def).
Можно не выравнивать только PACKED структуры и байтовые массивы типа
строк, где доступ побайтовый (выравнивание = 1).
Проверок на выровненность действительно нет в обычных сборках. Но есть
на сборке с асаном - он генерирует их во время компиляции, хоть в коде
ты их и не видишь. Еще могут быть на некоторых процах, где доступ по
невыровненному адресу может крешнуть.
next prev parent reply other threads:[~2020-09-24 20:45 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-04 11:53 imeevma
2020-09-09 21:58 ` Vladislav Shpilevoy
2020-09-20 21:17 ` Mergen Imeev
2020-09-21 21:37 ` Vladislav Shpilevoy
2020-09-22 5:03 ` Мерген Имеев
2020-09-22 5:25 ` Мерген Имеев
2020-09-24 20:45 ` Vladislav Shpilevoy [this message]
2020-09-24 20:45 ` Vladislav Shpilevoy
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=e7bac890-0dc4-fb16-6a07-67703a736b17@tarantool.org \
--to=v.shpilevoy@tarantool.org \
--cc=imeevma@gmail.com \
--cc=imeevma@tarantool.org \
--cc=tarantool-patches@dev.tarantool.org \
--subject='Re: [Tarantool-patches] [PATCH v1 1/1] sql: enable autoindex optimization' \
/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