LLVM
20.0.0git
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
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
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
k
l
m
n
o
p
r
s
t
u
v
w
x
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
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
z
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
y
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
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
r
s
t
u
v
w
x
y
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
Related Functions
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
y
Files
File List
File Members
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
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
k
l
m
o
p
r
s
t
u
v
w
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
l
m
o
p
q
r
s
t
u
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
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
z
Examples
include
llvm
ExecutionEngine
Orc
CoreContainers.h
Go to the documentation of this file.
1
//===---- CoreContainers.h - Symbol Containers for Core APIs ----*- C++ -*-===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8
//
9
// Symbol container types for core ORC APIs.
10
//
11
//===----------------------------------------------------------------------===//
12
13
#ifndef LLVM_EXECUTIONENGINE_ORC_CORECONTAINERS_H
14
#define LLVM_EXECUTIONENGINE_ORC_CORECONTAINERS_H
15
16
#include "
llvm/ADT/DenseMap.h
"
17
#include "
llvm/ADT/DenseSet.h
"
18
#include "
llvm/ExecutionEngine/JITSymbol.h
"
19
#include "
llvm/ExecutionEngine/Orc/Shared/ExecutorSymbolDef.h
"
20
#include "
llvm/ExecutionEngine/Orc/SymbolStringPool.h
"
21
22
#include <vector>
23
24
namespace
llvm::orc
{
25
26
class
JITDylib;
27
28
/// A set of symbol names (represented by SymbolStringPtrs for
29
// efficiency).
30
using
SymbolNameSet
=
DenseSet<SymbolStringPtr>
;
31
32
/// A vector of symbol names.
33
using
SymbolNameVector
= std::vector<SymbolStringPtr>;
34
35
/// A map from symbol names (as SymbolStringPtrs) to JITSymbols
36
/// (address/flags pairs).
37
using
SymbolMap
=
DenseMap<SymbolStringPtr, ExecutorSymbolDef>
;
38
39
/// A map from symbol names (as SymbolStringPtrs) to JITSymbolFlags.
40
using
SymbolFlagsMap
=
DenseMap<SymbolStringPtr, JITSymbolFlags>
;
41
42
/// A map from JITDylibs to sets of symbols.
43
using
SymbolDependenceMap
=
DenseMap<JITDylib *, SymbolNameSet>
;
44
45
}
// End namespace llvm::orc
46
47
#endif
// LLVM_EXECUTIONENGINE_ORC_CORECONTAINERS_H
DenseMap.h
This file defines the DenseMap class.
DenseSet.h
This file defines the DenseSet and SmallDenseSet classes.
ExecutorSymbolDef.h
JITSymbol.h
SymbolStringPool.h
llvm::DenseMap< SymbolStringPtr, ExecutorSymbolDef >
llvm::DenseSet< SymbolStringPtr >
llvm::orc
Definition:
AbsoluteSymbols.h:18
llvm::orc::SymbolNameVector
std::vector< SymbolStringPtr > SymbolNameVector
A vector of symbol names.
Definition:
CoreContainers.h:33
Generated on Mon Mar 24 2025 21:49:20 for LLVM by
1.9.6