PostgreSQL Source Code  git master
jit.c File Reference
#include "postgres.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include "executor/execExpr.h"
#include "fmgr.h"
#include "jit/jit.h"
#include "miscadmin.h"
#include "utils/fmgrprotos.h"
#include "utils/resowner_private.h"
Include dependency graph for jit.c:

Go to the source code of this file.

Functions

static bool provider_init (void)
 
static bool file_exists (const char *name)
 
Datum pg_jit_available (PG_FUNCTION_ARGS)
 
void jit_reset_after_error (void)
 
void jit_release_context (JitContext *context)
 
bool jit_compile_expr (struct ExprState *state)
 
void InstrJitAgg (JitInstrumentation *dst, JitInstrumentation *add)
 

Variables

bool jit_enabled = true
 
char * jit_provider = NULL
 
bool jit_debugging_support = false
 
bool jit_dump_bitcode = false
 
bool jit_expressions = true
 
bool jit_profiling_support = false
 
bool jit_tuple_deforming = true
 
double jit_above_cost = 100000
 
double jit_inline_above_cost = 500000
 
double jit_optimize_above_cost = 500000
 
static JitProviderCallbacks provider
 
static bool provider_successfully_loaded = false
 
static bool provider_failed_loading = false
 

Function Documentation

◆ file_exists()

static bool file_exists ( const char *  name)
static

Definition at line 195 of file jit.c.

196 {
197  struct stat st;
198 
199  Assert(name != NULL);
200 
201  if (stat(name, &st) == 0)
202  return !S_ISDIR(st.st_mode);
203  else if (!(errno == ENOENT || errno == ENOTDIR))
204  ereport(ERROR,
206  errmsg("could not access file \"%s\": %m", name)));
207 
208  return false;
209 }
int errcode_for_file_access(void)
Definition: elog.c:881
int errmsg(const char *fmt,...)
Definition: elog.c:1069
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:149
Assert(fmt[strlen(fmt) - 1] !='\n')
const char * name
#define stat
Definition: win32_port.h:284
#define S_ISDIR(m)
Definition: win32_port.h:325

References Assert(), ereport, errcode_for_file_access(), errmsg(), ERROR, name, S_ISDIR, stat::st_mode, and stat.

Referenced by isolation_start_test(), provider_init(), and psql_start_test().

◆ InstrJitAgg()

◆ jit_compile_expr()

bool jit_compile_expr ( struct ExprState state)

Definition at line 153 of file jit.c.

154 {
155  /*
156  * We can easily create a one-off context for functions without an
157  * associated PlanState (and thus EState). But because there's no executor
158  * shutdown callback that could deallocate the created function, they'd
159  * live to the end of the transactions, where they'd be cleaned up by the
160  * resowner machinery. That can lead to a noticeable amount of memory
161  * usage, and worse, trigger some quadratic behaviour in gdb. Therefore,
162  * at least for now, don't create a JITed function in those circumstances.
163  */
164  if (!state->parent)
165  return false;
166 
167  /* if no jitting should be performed at all */
168  if (!(state->parent->state->es_jit_flags & PGJIT_PERFORM))
169  return false;
170 
171  /* or if expressions aren't JITed */
172  if (!(state->parent->state->es_jit_flags & PGJIT_EXPR))
173  return false;
174 
175  /* this also takes !jit_enabled into account */
176  if (provider_init())
177  return provider.compile_expr(state);
178 
179  return false;
180 }
static bool provider_init(void)
Definition: jit.c:68
static JitProviderCallbacks provider
Definition: jit.c:43
#define PGJIT_EXPR
Definition: jit.h:23
#define PGJIT_PERFORM
Definition: jit.h:20
JitProviderCompileExprCB compile_expr
Definition: jit.h:80
Definition: regguts.h:323

References JitProviderCallbacks::compile_expr, PGJIT_EXPR, PGJIT_PERFORM, provider, and provider_init().

Referenced by ExecReadyExpr().

◆ jit_release_context()

void jit_release_context ( JitContext context)

Definition at line 138 of file jit.c.

139 {
141  provider.release_context(context);
142 
143  ResourceOwnerForgetJIT(context->resowner, PointerGetDatum(context));
144  pfree(context);
145 }
static bool provider_successfully_loaded
Definition: jit.c:44
void pfree(void *pointer)
Definition: mcxt.c:1456
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:322
void ResourceOwnerForgetJIT(ResourceOwner owner, Datum handle)
Definition: resowner.c:1460
ResourceOwner resowner
Definition: jit.h:62
JitProviderReleaseContextCB release_context
Definition: jit.h:79

References pfree(), PointerGetDatum(), provider, provider_successfully_loaded, JitProviderCallbacks::release_context, ResourceOwnerForgetJIT(), and JitContext::resowner.

Referenced by FreeExecutorState(), and ResourceOwnerReleaseInternal().

◆ jit_reset_after_error()

void jit_reset_after_error ( void  )

Definition at line 128 of file jit.c.

129 {
132 }
JitProviderResetAfterErrorCB reset_after_error
Definition: jit.h:78

References provider, provider_successfully_loaded, and JitProviderCallbacks::reset_after_error.

Referenced by PostgresMain().

◆ pg_jit_available()

Datum pg_jit_available ( PG_FUNCTION_ARGS  )

Definition at line 57 of file jit.c.

58 {
60 }
#define PG_RETURN_BOOL(x)
Definition: fmgr.h:359

References PG_RETURN_BOOL, and provider_init().

◆ provider_init()

static bool provider_init ( void  )
static

Definition at line 68 of file jit.c.

69 {
70  char path[MAXPGPATH];
72 
73  /* don't even try to load if not enabled */
74  if (!jit_enabled)
75  return false;
76 
77  /*
78  * Don't retry loading after failing - attempting to load JIT provider
79  * isn't cheap.
80  */
82  return false;
84  return true;
85 
86  /*
87  * Check whether shared library exists. We do that check before actually
88  * attempting to load the shared library (via load_external_function()),
89  * because that'd error out in case the shlib isn't available.
90  */
91  snprintf(path, MAXPGPATH, "%s/%s%s", pkglib_path, jit_provider, DLSUFFIX);
92  elog(DEBUG1, "probing availability of JIT provider at %s", path);
93  if (!file_exists(path))
94  {
95  elog(DEBUG1,
96  "provider not available, disabling JIT for current session");
98  return false;
99  }
100 
101  /*
102  * If loading functions fails, signal failure. We do so because
103  * load_external_function() might error out despite the above check if
104  * e.g. the library's dependencies aren't installed. We want to signal
105  * ERROR in that case, so the user is notified, but we don't want to
106  * continually retry.
107  */
109 
110  /* and initialize */
112  load_external_function(path, "_PG_jit_provider_init", true, NULL);
113  init(&provider);
114 
116  provider_failed_loading = false;
117 
118  elog(DEBUG1, "successfully loaded JIT provider in current session");
119 
120  return true;
121 }
void * load_external_function(const char *filename, const char *funcname, bool signalNotFound, void **filehandle)
Definition: dfmgr.c:105
#define DEBUG1
Definition: elog.h:30
char pkglib_path[MAXPGPATH]
Definition: globals.c:77
int init
Definition: isn.c:75
bool jit_enabled
Definition: jit.c:32
char * jit_provider
Definition: jit.c:33
static bool provider_failed_loading
Definition: jit.c:45
static bool file_exists(const char *name)
Definition: jit.c:195
void(* JitProviderInit)(JitProviderCallbacks *cb)
Definition: jit.h:70
#define MAXPGPATH
#define snprintf
Definition: port.h:238

References DEBUG1, elog(), file_exists(), init, jit_enabled, jit_provider, load_external_function(), MAXPGPATH, pkglib_path, provider, provider_failed_loading, provider_successfully_loaded, and snprintf.

Referenced by jit_compile_expr(), and pg_jit_available().

Variable Documentation

◆ jit_above_cost

double jit_above_cost = 100000

Definition at line 39 of file jit.c.

Referenced by standard_planner().

◆ jit_debugging_support

bool jit_debugging_support = false

Definition at line 34 of file jit.c.

Referenced by llvm_session_initialize().

◆ jit_dump_bitcode

bool jit_dump_bitcode = false

Definition at line 35 of file jit.c.

Referenced by llvm_compile_module().

◆ jit_enabled

bool jit_enabled = true

Definition at line 32 of file jit.c.

Referenced by provider_init(), and standard_planner().

◆ jit_expressions

bool jit_expressions = true

Definition at line 36 of file jit.c.

Referenced by standard_planner().

◆ jit_inline_above_cost

double jit_inline_above_cost = 500000

Definition at line 40 of file jit.c.

Referenced by standard_planner().

◆ jit_optimize_above_cost

double jit_optimize_above_cost = 500000

Definition at line 41 of file jit.c.

Referenced by standard_planner().

◆ jit_profiling_support

bool jit_profiling_support = false

Definition at line 37 of file jit.c.

Referenced by llvm_session_initialize(), and llvm_shutdown().

◆ jit_provider

char* jit_provider = NULL

Definition at line 33 of file jit.c.

Referenced by provider_init().

◆ jit_tuple_deforming

bool jit_tuple_deforming = true

Definition at line 38 of file jit.c.

Referenced by standard_planner().

◆ provider

◆ provider_failed_loading

bool provider_failed_loading = false
static

Definition at line 45 of file jit.c.

Referenced by provider_init().

◆ provider_successfully_loaded

bool provider_successfully_loaded = false
static

Definition at line 44 of file jit.c.

Referenced by jit_release_context(), jit_reset_after_error(), and provider_init().