pgsql: Add expression compilation support to LLVM JIT provider.

Поиск
Список
Период
Сортировка
От Andres Freund
Тема pgsql: Add expression compilation support to LLVM JIT provider.
Дата
Msg-id E1ez86S-00036F-F3@gemulon.postgresql.org
обсуждение исходный текст
Ответы Re: pgsql: Add expression compilation support to LLVM JIT provider.  (Andres Freund <andres@anarazel.de>)
Список pgsql-committers
Add expression compilation support to LLVM JIT provider.

In addition to the interpretation of expressions (which back
evaluation of WHERE clauses, target list projection, aggregates
transition values etc) support compiling expressions to native code,
using the infrastructure added in earlier commits.

To avoid duplicating a lot of code, only support emitting code for
cases that are likely to be performance critical. For expression steps
that aren't deemed that, use the existing interpreter.

The generated code isn't great - some architectural changes are
required to address that. But this already yields a significant
speedup for some analytics queries, particularly with WHERE clauses
filtering a lot, or computing multiple aggregates.

Author: Andres Freund
Tested-By: Thomas Munro
Discussion: https://postgr.es/m/20170901064131.tazjxwus3k2w3ybh@alap3.anarazel.de

Disable JITing for VALUES() nodes.

VALUES() nodes are only ever executed once. This is primarily helpful
for debugging, when forcing JITing even for cheap queries.

Author: Andres Freund
Discussion: https://postgr.es/m/20170901064131.tazjxwus3k2w3ybh@alap3.anarazel.de

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/2a0faed9d7028e3830998bd6ca900be651274e27

Modified Files
--------------
src/backend/executor/execExpr.c       |    4 +
src/backend/executor/nodeValuesscan.c |   10 +
src/backend/jit/jit.c                 |   37 +
src/backend/jit/llvm/Makefile         |    2 +-
src/backend/jit/llvm/llvmjit.c        |   64 +
src/backend/jit/llvm/llvmjit_expr.c   | 2637 +++++++++++++++++++++++++++++++++
src/backend/optimizer/plan/planner.c  |    6 +
src/backend/utils/fmgr/fmgr.c         |   94 +-
src/backend/utils/misc/guc.c          |   11 +
src/include/fmgr.h                    |    2 +
src/include/jit/jit.h                 |   13 +
src/include/jit/llvmjit.h             |   12 +
src/tools/pgindent/typedefs.list      |    1 +
13 files changed, 2890 insertions(+), 3 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Improve style guideline compliance of assorted error-reportmess
Следующее
От: Andres Freund
Дата:
Сообщение: Re: pgsql: Add expression compilation support to LLVM JIT provider.