PostgreSQL Source Code
git master
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
c
d
g
h
i
k
l
m
p
r
s
t
Functions
Variables
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
c
d
f
h
i
n
o
p
r
s
t
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Pages
llvmjit_backport.h
Go to the documentation of this file.
1
/*
2
* A small header than can be included by backported LLVM code or PostgreSQL
3
* code, to control conditional compilation.
4
*/
5
#ifndef LLVMJIT_BACKPORT_H
6
#define LLVMJIT_BACKPORT_H
7
8
#include <llvm/Config/llvm-config.h>
9
10
/*
11
* LLVM's RuntimeDyld can produce code that crashes on larger memory ARM
12
* systems, because llvm::SectionMemoryManager allocates multiple pieces of
13
* memory that can be placed too far apart for the generated code. See
14
* src/backend/jit/llvm/SectionMemoryManager.cpp for the patched replacement
15
* class llvm::backport::SectionMemoryManager that we use as a workaround.
16
* This header controls whether we use it.
17
*/
18
#if defined(__aarch64__)
19
#define USE_LLVM_BACKPORT_SECTION_MEMORY_MANAGER
20
#endif
21
22
#endif
src
include
jit
llvmjit_backport.h
Generated on Sat May 31 2025 18:13:27 for PostgreSQL Source Code by
1.9.4