ETISS 0.8.0
Extendable Translating Instruction Set Simulator (version 0.8.0)
Toggle main menu visibility
Main Page
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
_
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
Variables
_
a
c
d
e
f
h
m
n
p
r
s
t
w
x
Typedefs
Enumerations
Enumerator
_
a
e
f
i
l
n
r
s
v
w
x
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
r
s
t
u
v
w
x
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Typedefs
_
a
c
d
i
m
o
p
r
s
t
u
v
w
Enumerations
Enumerator
a
b
c
e
i
l
m
n
o
p
r
t
u
v
w
Related Symbols
c
e
h
i
l
p
r
s
t
v
x
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
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
Typedefs
_
a
b
c
d
e
f
i
k
m
o
p
r
s
u
v
w
x
Enumerations
_
a
c
k
l
m
n
o
x
Enumerator
_
a
c
e
f
k
l
m
n
o
s
t
x
Macros
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
include
jit
etiss
pluginexport.h
Go to the documentation of this file.
1
2
#ifndef ETISS_PLUGIN_EXPORT_H
3
#define ETISS_PLUGIN_EXPORT_H
4
5
#ifdef ETISS_PLUGIN_STATIC_DEFINE
6
# define ETISS_PLUGIN_EXPORT
7
# define ETISS_PLUGIN_NOEXPORT
8
#else
9
# ifndef ETISS_PLUGIN_EXPORT
10
# ifdef ETISS_EXPORTS
11
/* We are building this library */
12
# define ETISS_PLUGIN_EXPORT __attribute__((visibility("default")))
13
# else
14
/* We are using this library */
15
# define ETISS_PLUGIN_EXPORT __attribute__((visibility("default")))
16
# endif
17
# endif
18
19
# ifndef ETISS_PLUGIN_NOEXPORT
20
# define ETISS_PLUGIN_NOEXPORT __attribute__((visibility("hidden")))
21
# endif
22
#endif
23
24
#ifndef ETISS_PLUGIN_DEPRECATED
25
# define ETISS_PLUGIN_DEPRECATED __attribute__ ((__deprecated__))
26
#endif
27
28
#ifndef ETISS_PLUGIN_DEPRECATED_EXPORT
29
# define ETISS_PLUGIN_DEPRECATED_EXPORT ETISS_PLUGIN_EXPORT ETISS_PLUGIN_DEPRECATED
30
#endif
31
32
#ifndef ETISS_PLUGIN_DEPRECATED_NO_EXPORT
33
# define ETISS_PLUGIN_DEPRECATED_NO_EXPORT ETISS_PLUGIN_NOEXPORT ETISS_PLUGIN_DEPRECATED
34
#endif
35
36
/* NOLINTNEXTLINE(readability-avoid-unconditional-preprocessor-if) */
37
#if 1
/* DEFINE_NO_DEPRECATED */
38
# ifndef ETISS_PLUGIN_NODEPRECATED
39
# define ETISS_PLUGIN_NODEPRECATED
40
# endif
41
#endif
42
43
#endif
/* ETISS_PLUGIN_EXPORT_H */
Generated on Mon Feb 17 2025 13:12:25 for ETISS 0.8.0 by
1.9.8