lief 0.15.1__cp38-cp38-win_amd64.whl → 0.16.0__cp38-cp38-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of lief might be problematic. Click here for more details.
- lief/{ART.pyi → ART/__init__.pyi} +65 -45
- lief/Android/__init__.pyi +33 -0
- lief/DEX/__init__.pyi +512 -0
- lief/ELF/__init__.pyi +5342 -0
- lief/MachO/__init__.pyi +2678 -0
- lief/OAT/__init__.pyi +348 -0
- lief/PE/__init__.pyi +4098 -0
- lief/VDEX/__init__.pyi +54 -0
- lief/__init__.py +3 -0
- lief/__init__.pyi +457 -316
- lief/_lief.pyd +0 -0
- lief/assembly/__init__.pyi +104 -0
- lief/assembly/aarch64/__init__.pyi +20200 -0
- lief/assembly/aarch64/operands/__init__.pyi +48 -0
- lief/assembly/arm/__init__.pyi +9004 -0
- lief/assembly/ebpf/__init__.pyi +984 -0
- lief/assembly/mips/__init__.pyi +5798 -0
- lief/assembly/powerpc/__init__.pyi +5714 -0
- lief/assembly/riscv/__init__.pyi +27674 -0
- lief/assembly/x86/__init__.pyi +40433 -0
- lief/assembly/x86/operands/__init__.pyi +32 -0
- lief/dsc/__init__.pyi +220 -0
- lief/dwarf/__init__.pyi +224 -125
- lief/dwarf/parameters/__init__.pyi +14 -0
- lief/dwarf/types/__init__.pyi +167 -0
- lief/logging/__init__.pyi +44 -0
- lief/objc/__init__.pyi +89 -0
- lief/pdb/__init__.pyi +66 -50
- lief/pdb/types/__init__.pyi +69 -0
- lief-0.16.0.dist-info/METADATA +86 -0
- lief-0.16.0.dist-info/RECORD +33 -0
- lief/Android.pyi +0 -29
- lief/DEX.pyi +0 -382
- lief/ELF.pyi +0 -3179
- lief/MachO.pyi +0 -1717
- lief/OAT.pyi +0 -271
- lief/PE.pyi +0 -2951
- lief/VDEX.pyi +0 -49
- lief/dwarf/types.pyi +0 -72
- lief/logging.pyi +0 -27
- lief/objc.pyi +0 -68
- lief/pdb/types.pyi +0 -68
- lief-0.15.1.dist-info/METADATA +0 -157
- lief-0.15.1.dist-info/RECORD +0 -21
- {lief-0.15.1.dist-info → lief-0.16.0.dist-info}/WHEEL +0 -0
lief/ELF.pyi
DELETED
|
@@ -1,3179 +0,0 @@
|
|
|
1
|
-
from typing import Any, ClassVar, Iterable, Iterator, Optional, Union
|
|
2
|
-
|
|
3
|
-
from typing import overload
|
|
4
|
-
import io
|
|
5
|
-
import lief # type: ignore
|
|
6
|
-
import lief.ELF # type: ignore
|
|
7
|
-
import lief.ELF.AArch64Feature # type: ignore
|
|
8
|
-
import lief.ELF.Binary # type: ignore
|
|
9
|
-
import lief.ELF.Builder # type: ignore
|
|
10
|
-
import lief.ELF.CoreAuxv # type: ignore
|
|
11
|
-
import lief.ELF.CoreFile # type: ignore
|
|
12
|
-
import lief.ELF.CorePrPsInfo # type: ignore
|
|
13
|
-
import lief.ELF.CorePrStatus # type: ignore
|
|
14
|
-
import lief.ELF.CorePrStatus.Registers # type: ignore
|
|
15
|
-
import lief.ELF.DynamicEntry # type: ignore
|
|
16
|
-
import lief.ELF.DynamicEntryFlags # type: ignore
|
|
17
|
-
import lief.ELF.Header # type: ignore
|
|
18
|
-
import lief.ELF.Note # type: ignore
|
|
19
|
-
import lief.ELF.NoteAbi # type: ignore
|
|
20
|
-
import lief.ELF.NoteGnuProperty # type: ignore
|
|
21
|
-
import lief.ELF.NoteGnuProperty.Property # type: ignore
|
|
22
|
-
import lief.ELF.ParserConfig # type: ignore
|
|
23
|
-
import lief.ELF.Relocation # type: ignore
|
|
24
|
-
import lief.ELF.Section # type: ignore
|
|
25
|
-
import lief.ELF.Segment # type: ignore
|
|
26
|
-
import lief.ELF.Symbol # type: ignore
|
|
27
|
-
import lief.ELF.SymbolVersionDefinition # type: ignore
|
|
28
|
-
import lief.ELF.SymbolVersionRequirement # type: ignore
|
|
29
|
-
import lief.ELF.X86Features # type: ignore
|
|
30
|
-
import lief.ELF.X86ISA # type: ignore
|
|
31
|
-
import os
|
|
32
|
-
|
|
33
|
-
class AArch64Feature(NoteGnuProperty.Property):
|
|
34
|
-
class FEATURE:
|
|
35
|
-
BTI: ClassVar[AArch64Feature.FEATURE] = ...
|
|
36
|
-
PAC: ClassVar[AArch64Feature.FEATURE] = ...
|
|
37
|
-
UNKNOWN: ClassVar[AArch64Feature.FEATURE] = ...
|
|
38
|
-
__name__: str
|
|
39
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
40
|
-
@staticmethod
|
|
41
|
-
def from_value(arg: int, /) -> lief.ELF.AArch64Feature.FEATURE: ...
|
|
42
|
-
def __ge__(self, other) -> bool: ...
|
|
43
|
-
def __gt__(self, other) -> bool: ...
|
|
44
|
-
def __hash__(self) -> int: ...
|
|
45
|
-
def __index__(self) -> Any: ...
|
|
46
|
-
def __int__(self) -> int: ...
|
|
47
|
-
def __le__(self, other) -> bool: ...
|
|
48
|
-
def __lt__(self, other) -> bool: ...
|
|
49
|
-
@property
|
|
50
|
-
def value(self) -> int: ...
|
|
51
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
52
|
-
@property
|
|
53
|
-
def features(self) -> list[lief.ELF.AArch64Feature.FEATURE]: ...
|
|
54
|
-
|
|
55
|
-
class ARCH:
|
|
56
|
-
AARCH64: ClassVar[ARCH] = ...
|
|
57
|
-
ALPHA: ClassVar[ARCH] = ...
|
|
58
|
-
ALTERA_NIOS2: ClassVar[ARCH] = ...
|
|
59
|
-
AMDGPU: ClassVar[ARCH] = ...
|
|
60
|
-
ARC: ClassVar[ARCH] = ...
|
|
61
|
-
ARCA: ClassVar[ARCH] = ...
|
|
62
|
-
ARC_COMPACT: ClassVar[ARCH] = ...
|
|
63
|
-
ARC_COMPACT2: ClassVar[ARCH] = ...
|
|
64
|
-
ARM: ClassVar[ARCH] = ...
|
|
65
|
-
AVR: ClassVar[ARCH] = ...
|
|
66
|
-
AVR32: ClassVar[ARCH] = ...
|
|
67
|
-
BA1: ClassVar[ARCH] = ...
|
|
68
|
-
BA2: ClassVar[ARCH] = ...
|
|
69
|
-
BLACKFIN: ClassVar[ARCH] = ...
|
|
70
|
-
BPF: ClassVar[ARCH] = ...
|
|
71
|
-
C166: ClassVar[ARCH] = ...
|
|
72
|
-
CDP: ClassVar[ARCH] = ...
|
|
73
|
-
CE: ClassVar[ARCH] = ...
|
|
74
|
-
CLOUDSHIELD: ClassVar[ARCH] = ...
|
|
75
|
-
COGE: ClassVar[ARCH] = ...
|
|
76
|
-
COLDFIRE: ClassVar[ARCH] = ...
|
|
77
|
-
COOL: ClassVar[ARCH] = ...
|
|
78
|
-
COREA_1ST: ClassVar[ARCH] = ...
|
|
79
|
-
COREA_2ND: ClassVar[ARCH] = ...
|
|
80
|
-
CR: ClassVar[ARCH] = ...
|
|
81
|
-
CR16: ClassVar[ARCH] = ...
|
|
82
|
-
CRAYNV2: ClassVar[ARCH] = ...
|
|
83
|
-
CRIS: ClassVar[ARCH] = ...
|
|
84
|
-
CRX: ClassVar[ARCH] = ...
|
|
85
|
-
CSR_KALIMBA: ClassVar[ARCH] = ...
|
|
86
|
-
CUDA: ClassVar[ARCH] = ...
|
|
87
|
-
CYPRESS_M8C: ClassVar[ARCH] = ...
|
|
88
|
-
D10V: ClassVar[ARCH] = ...
|
|
89
|
-
D30V: ClassVar[ARCH] = ...
|
|
90
|
-
DSP24: ClassVar[ARCH] = ...
|
|
91
|
-
DSPIC30F: ClassVar[ARCH] = ...
|
|
92
|
-
DXP: ClassVar[ARCH] = ...
|
|
93
|
-
ECOG16: ClassVar[ARCH] = ...
|
|
94
|
-
ECOG1X: ClassVar[ARCH] = ...
|
|
95
|
-
ECOG2: ClassVar[ARCH] = ...
|
|
96
|
-
ETPU: ClassVar[ARCH] = ...
|
|
97
|
-
EXCESS: ClassVar[ARCH] = ...
|
|
98
|
-
F2MC16: ClassVar[ARCH] = ...
|
|
99
|
-
FIREPATH: ClassVar[ARCH] = ...
|
|
100
|
-
FR20: ClassVar[ARCH] = ...
|
|
101
|
-
FR30: ClassVar[ARCH] = ...
|
|
102
|
-
FX66: ClassVar[ARCH] = ...
|
|
103
|
-
H8S: ClassVar[ARCH] = ...
|
|
104
|
-
H8_300: ClassVar[ARCH] = ...
|
|
105
|
-
H8_300H: ClassVar[ARCH] = ...
|
|
106
|
-
H8_500: ClassVar[ARCH] = ...
|
|
107
|
-
HEXAGON: ClassVar[ARCH] = ...
|
|
108
|
-
HUANY: ClassVar[ARCH] = ...
|
|
109
|
-
I386: ClassVar[ARCH] = ...
|
|
110
|
-
I60: ClassVar[ARCH] = ...
|
|
111
|
-
I860: ClassVar[ARCH] = ...
|
|
112
|
-
IAMCU: ClassVar[ARCH] = ...
|
|
113
|
-
IA_64: ClassVar[ARCH] = ...
|
|
114
|
-
INTEL205: ClassVar[ARCH] = ...
|
|
115
|
-
INTEL206: ClassVar[ARCH] = ...
|
|
116
|
-
INTEL207: ClassVar[ARCH] = ...
|
|
117
|
-
INTEL208: ClassVar[ARCH] = ...
|
|
118
|
-
INTEL209: ClassVar[ARCH] = ...
|
|
119
|
-
IP2K: ClassVar[ARCH] = ...
|
|
120
|
-
JAVELIN: ClassVar[ARCH] = ...
|
|
121
|
-
K10M: ClassVar[ARCH] = ...
|
|
122
|
-
KM32: ClassVar[ARCH] = ...
|
|
123
|
-
KMX16: ClassVar[ARCH] = ...
|
|
124
|
-
KMX32: ClassVar[ARCH] = ...
|
|
125
|
-
KMX8: ClassVar[ARCH] = ...
|
|
126
|
-
KVARC: ClassVar[ARCH] = ...
|
|
127
|
-
L10M: ClassVar[ARCH] = ...
|
|
128
|
-
LATTICEMICO32: ClassVar[ARCH] = ...
|
|
129
|
-
LOONGARCH: ClassVar[ARCH] = ...
|
|
130
|
-
M16C: ClassVar[ARCH] = ...
|
|
131
|
-
M32: ClassVar[ARCH] = ...
|
|
132
|
-
M32C: ClassVar[ARCH] = ...
|
|
133
|
-
M32R: ClassVar[ARCH] = ...
|
|
134
|
-
M56800EX: ClassVar[ARCH] = ...
|
|
135
|
-
M68HC05: ClassVar[ARCH] = ...
|
|
136
|
-
M68HC08: ClassVar[ARCH] = ...
|
|
137
|
-
M68HC11: ClassVar[ARCH] = ...
|
|
138
|
-
M68HC12: ClassVar[ARCH] = ...
|
|
139
|
-
M68HC16: ClassVar[ARCH] = ...
|
|
140
|
-
M68K: ClassVar[ARCH] = ...
|
|
141
|
-
M78KOR: ClassVar[ARCH] = ...
|
|
142
|
-
M8051: ClassVar[ARCH] = ...
|
|
143
|
-
M88K: ClassVar[ARCH] = ...
|
|
144
|
-
MANIK: ClassVar[ARCH] = ...
|
|
145
|
-
MAX: ClassVar[ARCH] = ...
|
|
146
|
-
MAXQ30: ClassVar[ARCH] = ...
|
|
147
|
-
MCHP_PIC: ClassVar[ARCH] = ...
|
|
148
|
-
MCST_ELBRUS: ClassVar[ARCH] = ...
|
|
149
|
-
ME16: ClassVar[ARCH] = ...
|
|
150
|
-
METAG: ClassVar[ARCH] = ...
|
|
151
|
-
MIPS: ClassVar[ARCH] = ...
|
|
152
|
-
MIPS_RS3_LE: ClassVar[ARCH] = ...
|
|
153
|
-
MIPS_X: ClassVar[ARCH] = ...
|
|
154
|
-
MMA: ClassVar[ARCH] = ...
|
|
155
|
-
MMDSP_PLUS: ClassVar[ARCH] = ...
|
|
156
|
-
MMIX: ClassVar[ARCH] = ...
|
|
157
|
-
MN10200: ClassVar[ARCH] = ...
|
|
158
|
-
MN10300: ClassVar[ARCH] = ...
|
|
159
|
-
MSP430: ClassVar[ARCH] = ...
|
|
160
|
-
NCPU: ClassVar[ARCH] = ...
|
|
161
|
-
NDR1: ClassVar[ARCH] = ...
|
|
162
|
-
NDS32: ClassVar[ARCH] = ...
|
|
163
|
-
NONE: ClassVar[ARCH] = ...
|
|
164
|
-
NORC: ClassVar[ARCH] = ...
|
|
165
|
-
NS32K: ClassVar[ARCH] = ...
|
|
166
|
-
OPEN8: ClassVar[ARCH] = ...
|
|
167
|
-
OPENRISC: ClassVar[ARCH] = ...
|
|
168
|
-
PARISC: ClassVar[ARCH] = ...
|
|
169
|
-
PCP: ClassVar[ARCH] = ...
|
|
170
|
-
PDP10: ClassVar[ARCH] = ...
|
|
171
|
-
PDP11: ClassVar[ARCH] = ...
|
|
172
|
-
PDSP: ClassVar[ARCH] = ...
|
|
173
|
-
PJ: ClassVar[ARCH] = ...
|
|
174
|
-
PPC: ClassVar[ARCH] = ...
|
|
175
|
-
PPC64: ClassVar[ARCH] = ...
|
|
176
|
-
PRISM: ClassVar[ARCH] = ...
|
|
177
|
-
R32C: ClassVar[ARCH] = ...
|
|
178
|
-
RCE: ClassVar[ARCH] = ...
|
|
179
|
-
RH32: ClassVar[ARCH] = ...
|
|
180
|
-
RISCV: ClassVar[ARCH] = ...
|
|
181
|
-
RL78: ClassVar[ARCH] = ...
|
|
182
|
-
RS08: ClassVar[ARCH] = ...
|
|
183
|
-
RX: ClassVar[ARCH] = ...
|
|
184
|
-
S370: ClassVar[ARCH] = ...
|
|
185
|
-
S390: ClassVar[ARCH] = ...
|
|
186
|
-
SCORE7: ClassVar[ARCH] = ...
|
|
187
|
-
SEP: ClassVar[ARCH] = ...
|
|
188
|
-
SE_C17: ClassVar[ARCH] = ...
|
|
189
|
-
SE_C33: ClassVar[ARCH] = ...
|
|
190
|
-
SH: ClassVar[ARCH] = ...
|
|
191
|
-
SHARC: ClassVar[ARCH] = ...
|
|
192
|
-
SLE9X: ClassVar[ARCH] = ...
|
|
193
|
-
SNP1K: ClassVar[ARCH] = ...
|
|
194
|
-
SPARC: ClassVar[ARCH] = ...
|
|
195
|
-
SPARC32PLUS: ClassVar[ARCH] = ...
|
|
196
|
-
SPARCV9: ClassVar[ARCH] = ...
|
|
197
|
-
SPU: ClassVar[ARCH] = ...
|
|
198
|
-
ST100: ClassVar[ARCH] = ...
|
|
199
|
-
ST19: ClassVar[ARCH] = ...
|
|
200
|
-
ST200: ClassVar[ARCH] = ...
|
|
201
|
-
ST7: ClassVar[ARCH] = ...
|
|
202
|
-
ST9PLUS: ClassVar[ARCH] = ...
|
|
203
|
-
STARCORE: ClassVar[ARCH] = ...
|
|
204
|
-
STM8: ClassVar[ARCH] = ...
|
|
205
|
-
STXP7X: ClassVar[ARCH] = ...
|
|
206
|
-
SVX: ClassVar[ARCH] = ...
|
|
207
|
-
TILE64: ClassVar[ARCH] = ...
|
|
208
|
-
TILEGX: ClassVar[ARCH] = ...
|
|
209
|
-
TILEPRO: ClassVar[ARCH] = ...
|
|
210
|
-
TINYJ: ClassVar[ARCH] = ...
|
|
211
|
-
TI_C2000: ClassVar[ARCH] = ...
|
|
212
|
-
TI_C5500: ClassVar[ARCH] = ...
|
|
213
|
-
TI_C6000: ClassVar[ARCH] = ...
|
|
214
|
-
TMM_GPP: ClassVar[ARCH] = ...
|
|
215
|
-
TPC: ClassVar[ARCH] = ...
|
|
216
|
-
TRICORE: ClassVar[ARCH] = ...
|
|
217
|
-
TRIMEDIA: ClassVar[ARCH] = ...
|
|
218
|
-
TSK3000: ClassVar[ARCH] = ...
|
|
219
|
-
UNICORE: ClassVar[ARCH] = ...
|
|
220
|
-
V800: ClassVar[ARCH] = ...
|
|
221
|
-
V850: ClassVar[ARCH] = ...
|
|
222
|
-
VAX: ClassVar[ARCH] = ...
|
|
223
|
-
VIDEOCORE: ClassVar[ARCH] = ...
|
|
224
|
-
VIDEOCORE3: ClassVar[ARCH] = ...
|
|
225
|
-
VIDEOCORE5: ClassVar[ARCH] = ...
|
|
226
|
-
VPP500: ClassVar[ARCH] = ...
|
|
227
|
-
X86_64: ClassVar[ARCH] = ...
|
|
228
|
-
XCORE: ClassVar[ARCH] = ...
|
|
229
|
-
XGATE: ClassVar[ARCH] = ...
|
|
230
|
-
XIMO16: ClassVar[ARCH] = ...
|
|
231
|
-
XTENSA: ClassVar[ARCH] = ...
|
|
232
|
-
ZSP: ClassVar[ARCH] = ...
|
|
233
|
-
__name__: str
|
|
234
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
235
|
-
@staticmethod
|
|
236
|
-
def from_value(arg: int, /) -> lief.ELF.ARCH: ...
|
|
237
|
-
def __ge__(self, other) -> bool: ...
|
|
238
|
-
def __gt__(self, other) -> bool: ...
|
|
239
|
-
def __hash__(self) -> int: ...
|
|
240
|
-
def __index__(self) -> Any: ...
|
|
241
|
-
def __int__(self) -> int: ...
|
|
242
|
-
def __le__(self, other) -> bool: ...
|
|
243
|
-
def __lt__(self, other) -> bool: ...
|
|
244
|
-
@property
|
|
245
|
-
def value(self) -> int: ...
|
|
246
|
-
|
|
247
|
-
class AndroidIdent(Note):
|
|
248
|
-
ndk_build_number: str
|
|
249
|
-
ndk_version: str
|
|
250
|
-
sdk_version: int
|
|
251
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
252
|
-
|
|
253
|
-
class Binary(lief.Binary):
|
|
254
|
-
class PHDR_RELOC:
|
|
255
|
-
AUTO: ClassVar[Binary.PHDR_RELOC] = ...
|
|
256
|
-
BSS_END: ClassVar[Binary.PHDR_RELOC] = ...
|
|
257
|
-
FILE_END: ClassVar[Binary.PHDR_RELOC] = ...
|
|
258
|
-
PIE_SHIFT: ClassVar[Binary.PHDR_RELOC] = ...
|
|
259
|
-
SEGMENT_GAP: ClassVar[Binary.PHDR_RELOC] = ...
|
|
260
|
-
__name__: str
|
|
261
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
262
|
-
def __ge__(self, other) -> bool: ...
|
|
263
|
-
def __gt__(self, other) -> bool: ...
|
|
264
|
-
def __hash__(self) -> int: ...
|
|
265
|
-
def __index__(self) -> Any: ...
|
|
266
|
-
def __int__(self) -> int: ...
|
|
267
|
-
def __le__(self, other) -> bool: ...
|
|
268
|
-
def __lt__(self, other) -> bool: ...
|
|
269
|
-
|
|
270
|
-
class it_dyn_symtab_symbols:
|
|
271
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
272
|
-
def __getitem__(self, arg: int, /) -> lief.ELF.Symbol: ...
|
|
273
|
-
def __iter__(self) -> lief.ELF.Binary.it_dyn_symtab_symbols: ...
|
|
274
|
-
def __len__(self) -> int: ...
|
|
275
|
-
def __next__(self) -> lief.ELF.Symbol: ...
|
|
276
|
-
|
|
277
|
-
class it_dynamic_entries:
|
|
278
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
279
|
-
def __getitem__(self, arg: int, /) -> lief.ELF.DynamicEntry: ...
|
|
280
|
-
def __iter__(self) -> lief.ELF.Binary.it_dynamic_entries: ...
|
|
281
|
-
def __len__(self) -> int: ...
|
|
282
|
-
def __next__(self) -> lief.ELF.DynamicEntry: ...
|
|
283
|
-
|
|
284
|
-
class it_filter_relocation:
|
|
285
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
286
|
-
def __getitem__(self, arg: int, /) -> lief.ELF.Relocation: ...
|
|
287
|
-
def __iter__(self) -> lief.ELF.Binary.it_filter_relocation: ...
|
|
288
|
-
def __len__(self) -> int: ...
|
|
289
|
-
def __next__(self) -> lief.ELF.Relocation: ...
|
|
290
|
-
|
|
291
|
-
class it_filter_symbols:
|
|
292
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
293
|
-
def __getitem__(self, arg: int, /) -> lief.ELF.Symbol: ...
|
|
294
|
-
def __iter__(self) -> lief.ELF.Binary.it_filter_symbols: ...
|
|
295
|
-
def __len__(self) -> int: ...
|
|
296
|
-
def __next__(self) -> lief.ELF.Symbol: ...
|
|
297
|
-
|
|
298
|
-
class it_notes:
|
|
299
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
300
|
-
def __getitem__(self, arg: int, /) -> lief.ELF.Note: ...
|
|
301
|
-
def __iter__(self) -> lief.ELF.Binary.it_notes: ...
|
|
302
|
-
def __len__(self) -> int: ...
|
|
303
|
-
def __next__(self) -> lief.ELF.Note: ...
|
|
304
|
-
|
|
305
|
-
class it_relocations:
|
|
306
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
307
|
-
def __getitem__(self, arg: int, /) -> lief.ELF.Relocation: ...
|
|
308
|
-
def __iter__(self) -> lief.ELF.Binary.it_relocations: ...
|
|
309
|
-
def __len__(self) -> int: ...
|
|
310
|
-
def __next__(self) -> lief.ELF.Relocation: ...
|
|
311
|
-
|
|
312
|
-
class it_sections:
|
|
313
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
314
|
-
def __getitem__(self, arg: int, /) -> lief.ELF.Section: ...
|
|
315
|
-
def __iter__(self) -> lief.ELF.Binary.it_sections: ...
|
|
316
|
-
def __len__(self) -> int: ...
|
|
317
|
-
def __next__(self) -> lief.ELF.Section: ...
|
|
318
|
-
|
|
319
|
-
class it_segments:
|
|
320
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
321
|
-
def __getitem__(self, arg: int, /) -> lief.ELF.Segment: ...
|
|
322
|
-
def __iter__(self) -> lief.ELF.Binary.it_segments: ...
|
|
323
|
-
def __len__(self) -> int: ...
|
|
324
|
-
def __next__(self) -> lief.ELF.Segment: ...
|
|
325
|
-
|
|
326
|
-
class it_symbols:
|
|
327
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
328
|
-
def __getitem__(self, arg: int, /) -> lief.ELF.Symbol: ...
|
|
329
|
-
def __iter__(self) -> lief.ELF.Binary.it_symbols: ...
|
|
330
|
-
def __len__(self) -> int: ...
|
|
331
|
-
def __next__(self) -> lief.ELF.Symbol: ...
|
|
332
|
-
|
|
333
|
-
class it_symbols_version:
|
|
334
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
335
|
-
def __getitem__(self, arg: int, /) -> lief.ELF.SymbolVersion: ...
|
|
336
|
-
def __iter__(self) -> lief.ELF.Binary.it_symbols_version: ...
|
|
337
|
-
def __len__(self) -> int: ...
|
|
338
|
-
def __next__(self) -> lief.ELF.SymbolVersion: ...
|
|
339
|
-
|
|
340
|
-
class it_symbols_version_definition:
|
|
341
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
342
|
-
def __getitem__(self, arg: int, /) -> lief.ELF.SymbolVersionDefinition: ...
|
|
343
|
-
def __iter__(self) -> lief.ELF.Binary.it_symbols_version_definition: ...
|
|
344
|
-
def __len__(self) -> int: ...
|
|
345
|
-
def __next__(self) -> lief.ELF.SymbolVersionDefinition: ...
|
|
346
|
-
|
|
347
|
-
class it_symbols_version_requirement:
|
|
348
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
349
|
-
def __getitem__(self, arg: int, /) -> lief.ELF.SymbolVersionRequirement: ...
|
|
350
|
-
def __iter__(self) -> lief.ELF.Binary.it_symbols_version_requirement: ...
|
|
351
|
-
def __len__(self) -> int: ...
|
|
352
|
-
def __next__(self) -> lief.ELF.SymbolVersionRequirement: ...
|
|
353
|
-
interpreter: str
|
|
354
|
-
overlay: memoryview
|
|
355
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
356
|
-
@overload
|
|
357
|
-
def add(self, arg: lief.ELF.DynamicEntry, /) -> lief.ELF.DynamicEntry: ...
|
|
358
|
-
@overload
|
|
359
|
-
def add(self, section: lief.ELF.Section, loaded: bool = ...) -> lief.ELF.Section: ...
|
|
360
|
-
@overload
|
|
361
|
-
def add(self, segment: lief.ELF.Segment, base: int = ...) -> lief.ELF.Segment: ...
|
|
362
|
-
@overload
|
|
363
|
-
def add(self, note: lief.ELF.Note) -> lief.ELF.Note: ...
|
|
364
|
-
def add_dynamic_relocation(self, relocation: lief.ELF.Relocation) -> lief.ELF.Relocation: ...
|
|
365
|
-
def add_dynamic_symbol(self, symbol: lief.ELF.Symbol, symbol_version: Optional[lief.ELF.SymbolVersion] = ...) -> lief.ELF.Symbol: ...
|
|
366
|
-
def add_exported_function(self, address: int, name: str = ...) -> lief.ELF.Symbol: ...
|
|
367
|
-
def add_library(self, library_name: str) -> lief.ELF.DynamicEntryLibrary: ...
|
|
368
|
-
def add_object_relocation(self, relocation: lief.ELF.Relocation, section: lief.ELF.Section) -> lief.ELF.Relocation: ...
|
|
369
|
-
def add_pltgot_relocation(self, relocation: lief.ELF.Relocation) -> lief.ELF.Relocation: ...
|
|
370
|
-
def add_symtab_symbol(self, symbol: lief.ELF.Symbol) -> lief.ELF.Symbol: ...
|
|
371
|
-
@overload
|
|
372
|
-
def dynsym_idx(self, name: str) -> int: ...
|
|
373
|
-
@overload
|
|
374
|
-
def dynsym_idx(self, symbol: lief.ELF.Symbol) -> int: ...
|
|
375
|
-
@overload
|
|
376
|
-
def export_symbol(self, symbol: lief.ELF.Symbol) -> lief.ELF.Symbol: ...
|
|
377
|
-
@overload
|
|
378
|
-
def export_symbol(self, symbol_name: str, value: int = ...) -> lief.ELF.Symbol: ...
|
|
379
|
-
@overload
|
|
380
|
-
def extend(self, segment: lief.ELF.Segment, size: int) -> lief.ELF.Segment: ...
|
|
381
|
-
@overload
|
|
382
|
-
def extend(self, segment: lief.ELF.Section, size: int) -> lief.ELF.Section: ...
|
|
383
|
-
@overload
|
|
384
|
-
def get(self, tag: lief.ELF.DynamicEntry.TAG) -> lief.ELF.DynamicEntry: ...
|
|
385
|
-
@overload
|
|
386
|
-
def get(self, type: lief.ELF.Segment.TYPE) -> lief.ELF.Segment: ...
|
|
387
|
-
@overload
|
|
388
|
-
def get(self, type: lief.ELF.Note.TYPE) -> lief.ELF.Note: ...
|
|
389
|
-
@overload
|
|
390
|
-
def get(self, type: lief.ELF.Section.TYPE) -> lief.ELF.Section: ...
|
|
391
|
-
def get_dynamic_symbol(self, symbol_name: str) -> lief.ELF.Symbol: ...
|
|
392
|
-
def get_library(self, library_name: str) -> lief.ELF.DynamicEntryLibrary: ...
|
|
393
|
-
def get_relocated_dynamic_array(self, array_tag: lief.ELF.DynamicEntry.TAG) -> list[int]: ...
|
|
394
|
-
@overload
|
|
395
|
-
def get_relocation(self, symbol_name: str) -> lief.ELF.Relocation: ...
|
|
396
|
-
@overload
|
|
397
|
-
def get_relocation(self, symbol: lief.ELF.Symbol) -> lief.ELF.Relocation: ...
|
|
398
|
-
@overload
|
|
399
|
-
def get_relocation(self, address: int) -> lief.ELF.Relocation: ...
|
|
400
|
-
def get_section(self, section_name: str) -> lief.ELF.Section: ...
|
|
401
|
-
def get_strings(self, min_size: int = ...) -> list[str]: ...
|
|
402
|
-
def get_symtab_symbol(self, symbol_name: str) -> lief.ELF.Symbol: ...
|
|
403
|
-
@overload
|
|
404
|
-
def has(self, tag: lief.ELF.DynamicEntry.TAG) -> bool: ...
|
|
405
|
-
@overload
|
|
406
|
-
def has(self, type: lief.ELF.Segment.TYPE) -> bool: ...
|
|
407
|
-
@overload
|
|
408
|
-
def has(self, type: lief.ELF.Note.TYPE) -> bool: ...
|
|
409
|
-
@overload
|
|
410
|
-
def has(self, type: lief.ELF.Section.TYPE) -> bool: ...
|
|
411
|
-
def has_dynamic_symbol(self, symbol_name: str) -> bool: ...
|
|
412
|
-
def has_library(self, library_name: str) -> bool: ...
|
|
413
|
-
def has_section(self, section_name: str) -> bool: ...
|
|
414
|
-
def has_section_with_offset(self, offset: int) -> bool: ...
|
|
415
|
-
def has_section_with_va(self, virtual_address: int) -> bool: ...
|
|
416
|
-
def has_symtab_symbol(self, symbol_name: str) -> bool: ...
|
|
417
|
-
@overload
|
|
418
|
-
def patch_pltgot(self, symbol_name: str, address: int) -> None: ...
|
|
419
|
-
@overload
|
|
420
|
-
def patch_pltgot(self, symbol: lief.ELF.Symbol, address: int) -> None: ...
|
|
421
|
-
def permute_dynamic_symbols(self, permutation: list[int]) -> None: ...
|
|
422
|
-
def relocate_phdr_table(self, type: lief.ELF.Binary.PHDR_RELOC = ...) -> int: ...
|
|
423
|
-
@overload
|
|
424
|
-
def remove(self, dynamic_entry: lief.ELF.DynamicEntry) -> None: ...
|
|
425
|
-
@overload
|
|
426
|
-
def remove(self, tag: lief.ELF.DynamicEntry.TAG) -> None: ...
|
|
427
|
-
@overload
|
|
428
|
-
def remove(self, section: lief.ELF.Section, clear: bool = ...) -> None: ...
|
|
429
|
-
@overload
|
|
430
|
-
def remove(self, note: lief.ELF.Note) -> None: ...
|
|
431
|
-
@overload
|
|
432
|
-
def remove(self, type: lief.ELF.Note.TYPE) -> None: ...
|
|
433
|
-
@overload
|
|
434
|
-
def remove_dynamic_symbol(self, arg: lief.ELF.Symbol, /) -> None: ...
|
|
435
|
-
@overload
|
|
436
|
-
def remove_dynamic_symbol(self, arg: str, /) -> None: ...
|
|
437
|
-
def remove_library(self, library_name: str) -> None: ...
|
|
438
|
-
def remove_symtab_symbol(self, arg: lief.ELF.Symbol, /) -> None: ...
|
|
439
|
-
def replace(self, new_segment: lief.ELF.Segment, original_segment: lief.ELF.Segment, base: int = ...) -> lief.ELF.Segment: ...
|
|
440
|
-
def section_from_offset(self, offset: int, skip_nobits: bool = ...) -> lief.ELF.Section: ...
|
|
441
|
-
def section_from_virtual_address(self, address: int, skip_nobits: bool = ...) -> lief.ELF.Section: ...
|
|
442
|
-
def segment_from_offset(self, offset: int) -> lief.ELF.Segment: ...
|
|
443
|
-
def segment_from_virtual_address(self, address: int) -> lief.ELF.Segment: ...
|
|
444
|
-
def strip(self) -> None: ...
|
|
445
|
-
@overload
|
|
446
|
-
def symtab_idx(self, name: str) -> int: ...
|
|
447
|
-
@overload
|
|
448
|
-
def symtab_idx(self, symbol: lief.ELF.Symbol) -> int: ...
|
|
449
|
-
def virtual_address_to_offset(self, virtual_address: int) -> Union[int,lief.lief_errors]: ...
|
|
450
|
-
@overload
|
|
451
|
-
def write(self, output: str) -> None: ...
|
|
452
|
-
@overload
|
|
453
|
-
def write(self, output: str, config: lief.ELF.Builder.config_t) -> None: ...
|
|
454
|
-
@overload
|
|
455
|
-
def __contains__(self, arg: lief.ELF.Segment.TYPE, /) -> bool: ...
|
|
456
|
-
@overload
|
|
457
|
-
def __contains__(self, arg: lief.ELF.DynamicEntry.TAG, /) -> bool: ...
|
|
458
|
-
@overload
|
|
459
|
-
def __contains__(self, arg: lief.ELF.Note.TYPE, /) -> bool: ...
|
|
460
|
-
@overload
|
|
461
|
-
def __contains__(self, arg: lief.ELF.Section.TYPE, /) -> bool: ...
|
|
462
|
-
@overload
|
|
463
|
-
def __getitem__(self, arg: lief.ELF.Segment.TYPE, /) -> lief.ELF.Segment: ...
|
|
464
|
-
@overload
|
|
465
|
-
def __getitem__(self, arg: lief.ELF.Note.TYPE, /) -> lief.ELF.Note: ...
|
|
466
|
-
@overload
|
|
467
|
-
def __getitem__(self, arg: lief.ELF.DynamicEntry.TAG, /) -> lief.ELF.DynamicEntry: ...
|
|
468
|
-
@overload
|
|
469
|
-
def __getitem__(self, arg: lief.ELF.Section.TYPE, /) -> lief.ELF.Section: ...
|
|
470
|
-
@overload
|
|
471
|
-
def __iadd__(self, arg: lief.ELF.Segment, /) -> lief.ELF.Binary: ...
|
|
472
|
-
@overload
|
|
473
|
-
def __iadd__(self, arg: lief.ELF.Section, /) -> lief.ELF.Binary: ...
|
|
474
|
-
@overload
|
|
475
|
-
def __iadd__(self, arg: lief.ELF.DynamicEntry, /) -> lief.ELF.Binary: ...
|
|
476
|
-
@overload
|
|
477
|
-
def __iadd__(self, arg: lief.ELF.Note, /) -> lief.ELF.Binary: ...
|
|
478
|
-
@overload
|
|
479
|
-
def __isub__(self, arg: lief.ELF.DynamicEntry, /) -> lief.ELF.Binary: ...
|
|
480
|
-
@overload
|
|
481
|
-
def __isub__(self, arg: lief.ELF.DynamicEntry.TAG, /) -> lief.ELF.Binary: ...
|
|
482
|
-
@overload
|
|
483
|
-
def __isub__(self, arg: lief.ELF.Note, /) -> lief.ELF.Binary: ...
|
|
484
|
-
@overload
|
|
485
|
-
def __isub__(self, arg: lief.ELF.Note.TYPE, /) -> lief.ELF.Binary: ...
|
|
486
|
-
@property
|
|
487
|
-
def dtor_functions(self) -> list[lief.Function]: ...
|
|
488
|
-
@property
|
|
489
|
-
def dynamic_entries(self) -> lief.ELF.Binary.it_dynamic_entries: ...
|
|
490
|
-
@property
|
|
491
|
-
def dynamic_relocations(self) -> lief.ELF.Binary.it_filter_relocation: ...
|
|
492
|
-
@property
|
|
493
|
-
def dynamic_symbols(self) -> lief.ELF.Binary.it_symbols: ...
|
|
494
|
-
@property
|
|
495
|
-
def eof_offset(self) -> int: ...
|
|
496
|
-
@property
|
|
497
|
-
def exported_symbols(self) -> lief.ELF.Binary.it_filter_symbols: ...
|
|
498
|
-
@property
|
|
499
|
-
def functions(self) -> list[lief.Function]: ...
|
|
500
|
-
@property
|
|
501
|
-
def gnu_hash(self) -> lief.ELF.GnuHash: ...
|
|
502
|
-
@property
|
|
503
|
-
def has_interpreter(self) -> bool: ...
|
|
504
|
-
@property
|
|
505
|
-
def has_notes(self) -> bool: ...
|
|
506
|
-
@property
|
|
507
|
-
def has_overlay(self) -> bool: ...
|
|
508
|
-
@property
|
|
509
|
-
def header(self) -> lief.ELF.Header: ... # type: ignore
|
|
510
|
-
@property
|
|
511
|
-
def imagebase(self) -> int: ...
|
|
512
|
-
@property
|
|
513
|
-
def imported_symbols(self) -> lief.ELF.Binary.it_filter_symbols: ...
|
|
514
|
-
@property
|
|
515
|
-
def is_pie(self) -> bool: ...
|
|
516
|
-
@property
|
|
517
|
-
def last_offset_section(self) -> int: ...
|
|
518
|
-
@property
|
|
519
|
-
def last_offset_segment(self) -> int: ...
|
|
520
|
-
@property
|
|
521
|
-
def next_virtual_address(self) -> int: ...
|
|
522
|
-
@property
|
|
523
|
-
def notes(self) -> lief.ELF.Binary.it_notes: ...
|
|
524
|
-
@property
|
|
525
|
-
def object_relocations(self) -> lief.ELF.Binary.it_filter_relocation: ...
|
|
526
|
-
@property
|
|
527
|
-
def pltgot_relocations(self) -> lief.ELF.Binary.it_filter_relocation: ...
|
|
528
|
-
@property
|
|
529
|
-
def relocations(self) -> lief.ELF.Binary.it_relocations: ... # type: ignore
|
|
530
|
-
@property
|
|
531
|
-
def sections(self) -> lief.ELF.Binary.it_sections: ... # type: ignore
|
|
532
|
-
@property
|
|
533
|
-
def segments(self) -> lief.ELF.Binary.it_segments: ...
|
|
534
|
-
@property
|
|
535
|
-
def strings(self) -> list[Union[str,bytes]]: ...
|
|
536
|
-
@property
|
|
537
|
-
def symbols(self) -> lief.ELF.Binary.it_dyn_symtab_symbols: ... # type: ignore
|
|
538
|
-
@property
|
|
539
|
-
def symbols_version(self) -> lief.ELF.Binary.it_symbols_version: ...
|
|
540
|
-
@property
|
|
541
|
-
def symbols_version_definition(self) -> lief.ELF.Binary.it_symbols_version_definition: ...
|
|
542
|
-
@property
|
|
543
|
-
def symbols_version_requirement(self) -> lief.ELF.Binary.it_symbols_version_requirement: ...
|
|
544
|
-
@property
|
|
545
|
-
def symtab_symbols(self) -> lief.ELF.Binary.it_symbols: ...
|
|
546
|
-
@property
|
|
547
|
-
def sysv_hash(self) -> lief.ELF.SysvHash: ...
|
|
548
|
-
@property
|
|
549
|
-
def type(self) -> lief.ELF.Header.CLASS: ...
|
|
550
|
-
@property
|
|
551
|
-
def use_gnu_hash(self) -> bool: ...
|
|
552
|
-
@property
|
|
553
|
-
def use_sysv_hash(self) -> bool: ...
|
|
554
|
-
@property
|
|
555
|
-
def virtual_size(self) -> int: ...
|
|
556
|
-
|
|
557
|
-
class Builder:
|
|
558
|
-
class config_t:
|
|
559
|
-
android_rela: bool
|
|
560
|
-
coredump_notes: bool
|
|
561
|
-
dt_hash: bool
|
|
562
|
-
dyn_str: bool
|
|
563
|
-
dynamic_section: bool
|
|
564
|
-
fini_array: bool
|
|
565
|
-
force_relocate: bool
|
|
566
|
-
init_array: bool
|
|
567
|
-
interpreter: bool
|
|
568
|
-
jmprel: bool
|
|
569
|
-
notes: bool
|
|
570
|
-
preinit_array: bool
|
|
571
|
-
rela: bool
|
|
572
|
-
relr: bool
|
|
573
|
-
static_symtab: bool
|
|
574
|
-
sym_verdef: bool
|
|
575
|
-
sym_verneed: bool
|
|
576
|
-
sym_versym: bool
|
|
577
|
-
symtab: bool
|
|
578
|
-
def __init__(self) -> None: ...
|
|
579
|
-
config: lief.ELF.Builder.config_t
|
|
580
|
-
def __init__(self, elf_binary: lief.ELF.Binary) -> None: ...
|
|
581
|
-
def build(self) -> None: ...
|
|
582
|
-
def get_build(self) -> list[int]: ...
|
|
583
|
-
def write(self, output: str) -> None: ...
|
|
584
|
-
|
|
585
|
-
class CoreAuxv(Note):
|
|
586
|
-
class TYPE:
|
|
587
|
-
BASE: ClassVar[CoreAuxv.TYPE] = ...
|
|
588
|
-
BASE_PLATFORM: ClassVar[CoreAuxv.TYPE] = ...
|
|
589
|
-
CLKTCK: ClassVar[CoreAuxv.TYPE] = ...
|
|
590
|
-
DCACHEBSIZE: ClassVar[CoreAuxv.TYPE] = ...
|
|
591
|
-
EGID: ClassVar[CoreAuxv.TYPE] = ...
|
|
592
|
-
END: ClassVar[CoreAuxv.TYPE] = ...
|
|
593
|
-
ENTRY: ClassVar[CoreAuxv.TYPE] = ...
|
|
594
|
-
EUID: ClassVar[CoreAuxv.TYPE] = ...
|
|
595
|
-
EXECFD: ClassVar[CoreAuxv.TYPE] = ...
|
|
596
|
-
EXECFN: ClassVar[CoreAuxv.TYPE] = ...
|
|
597
|
-
FLAGS: ClassVar[CoreAuxv.TYPE] = ...
|
|
598
|
-
FPUCW: ClassVar[CoreAuxv.TYPE] = ...
|
|
599
|
-
GID: ClassVar[CoreAuxv.TYPE] = ...
|
|
600
|
-
HWCAP: ClassVar[CoreAuxv.TYPE] = ...
|
|
601
|
-
HWCAP2: ClassVar[CoreAuxv.TYPE] = ...
|
|
602
|
-
ICACHEBSIZE: ClassVar[CoreAuxv.TYPE] = ...
|
|
603
|
-
IGNORE: ClassVar[CoreAuxv.TYPE] = ...
|
|
604
|
-
IGNOREPPC: ClassVar[CoreAuxv.TYPE] = ...
|
|
605
|
-
NOTELF: ClassVar[CoreAuxv.TYPE] = ...
|
|
606
|
-
PAGESZ: ClassVar[CoreAuxv.TYPE] = ...
|
|
607
|
-
PHDR: ClassVar[CoreAuxv.TYPE] = ...
|
|
608
|
-
PHENT: ClassVar[CoreAuxv.TYPE] = ...
|
|
609
|
-
PHNUM: ClassVar[CoreAuxv.TYPE] = ...
|
|
610
|
-
RANDOM: ClassVar[CoreAuxv.TYPE] = ...
|
|
611
|
-
SECURE: ClassVar[CoreAuxv.TYPE] = ...
|
|
612
|
-
SYSINFO: ClassVar[CoreAuxv.TYPE] = ...
|
|
613
|
-
SYSINFO_EHDR: ClassVar[CoreAuxv.TYPE] = ...
|
|
614
|
-
TGT_PLATFORM: ClassVar[CoreAuxv.TYPE] = ...
|
|
615
|
-
UCACHEBSIZE: ClassVar[CoreAuxv.TYPE] = ...
|
|
616
|
-
UID: ClassVar[CoreAuxv.TYPE] = ...
|
|
617
|
-
__name__: str
|
|
618
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
619
|
-
@staticmethod
|
|
620
|
-
def from_value(arg: int, /) -> lief.ELF.CoreAuxv.TYPE: ...
|
|
621
|
-
def __ge__(self, other) -> bool: ...
|
|
622
|
-
def __gt__(self, other) -> bool: ...
|
|
623
|
-
def __hash__(self) -> int: ...
|
|
624
|
-
def __index__(self) -> Any: ...
|
|
625
|
-
def __int__(self) -> int: ...
|
|
626
|
-
def __le__(self, other) -> bool: ...
|
|
627
|
-
def __lt__(self, other) -> bool: ...
|
|
628
|
-
@property
|
|
629
|
-
def value(self) -> int: ...
|
|
630
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
631
|
-
def get(self, type: lief.ELF.CoreAuxv.TYPE) -> Optional[int]: ...
|
|
632
|
-
@overload
|
|
633
|
-
def set(self, type: lief.ELF.CoreAuxv.TYPE, value: int) -> bool: ...
|
|
634
|
-
@overload
|
|
635
|
-
def set(self, arg: dict[lief.ELF.CoreAuxv.TYPE,int], /) -> bool: ...
|
|
636
|
-
def __getitem__(self, arg: lief.ELF.CoreAuxv.TYPE, /) -> Optional[int]: ...
|
|
637
|
-
@overload
|
|
638
|
-
def __setitem__(self, arg0: lief.ELF.CoreAuxv.TYPE, arg1: int, /) -> bool: ...
|
|
639
|
-
@overload
|
|
640
|
-
def __setitem__(self, arg: dict[lief.ELF.CoreAuxv.TYPE,int], /) -> bool: ...
|
|
641
|
-
@property
|
|
642
|
-
def values(self) -> dict[lief.ELF.CoreAuxv.TYPE,int]: ...
|
|
643
|
-
|
|
644
|
-
class CoreFile(Note):
|
|
645
|
-
class entry_t:
|
|
646
|
-
end: int
|
|
647
|
-
file_ofs: int
|
|
648
|
-
path: str
|
|
649
|
-
start: int
|
|
650
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
651
|
-
|
|
652
|
-
class files_t:
|
|
653
|
-
@overload
|
|
654
|
-
def __init__(self) -> None: ...
|
|
655
|
-
@overload
|
|
656
|
-
def __init__(self, arg: lief.ELF.CoreFile.files_t) -> None: ...
|
|
657
|
-
@overload
|
|
658
|
-
def __init__(self, arg: Iterable[lief.ELF.CoreFile.entry_t], /) -> None: ...
|
|
659
|
-
def append(self, arg: lief.ELF.CoreFile.entry_t, /) -> None: ...
|
|
660
|
-
def clear(self) -> None: ...
|
|
661
|
-
def extend(self, arg: lief.ELF.CoreFile.files_t, /) -> None: ...
|
|
662
|
-
def insert(self, arg0: int, arg1: lief.ELF.CoreFile.entry_t, /) -> None: ...
|
|
663
|
-
def pop(self, index: int = ...) -> lief.ELF.CoreFile.entry_t: ...
|
|
664
|
-
def __bool__(self) -> bool: ...
|
|
665
|
-
@overload
|
|
666
|
-
def __delitem__(self, arg: int, /) -> None: ...
|
|
667
|
-
@overload
|
|
668
|
-
def __delitem__(self, arg: slice, /) -> None: ...
|
|
669
|
-
@overload
|
|
670
|
-
def __getitem__(self, arg: int, /) -> lief.ELF.CoreFile.entry_t: ...
|
|
671
|
-
@overload
|
|
672
|
-
def __getitem__(self, arg: slice, /) -> lief.ELF.CoreFile.files_t: ...
|
|
673
|
-
def __iter__(self) -> Iterator[lief.ELF.CoreFile.entry_t]: ...
|
|
674
|
-
def __len__(self) -> int: ...
|
|
675
|
-
@overload
|
|
676
|
-
def __setitem__(self, arg0: int, arg1: lief.ELF.CoreFile.entry_t, /) -> None: ...
|
|
677
|
-
@overload
|
|
678
|
-
def __setitem__(self, arg0: slice, arg1: lief.ELF.CoreFile.files_t, /) -> None: ...
|
|
679
|
-
files: lief.ELF.CoreFile.files_t
|
|
680
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
681
|
-
def __iter__(self) -> Iterator[lief.ELF.CoreFile.entry_t]: ...
|
|
682
|
-
def __len__(self) -> int: ...
|
|
683
|
-
|
|
684
|
-
class CorePrPsInfo(Note):
|
|
685
|
-
class info_t:
|
|
686
|
-
args: str
|
|
687
|
-
filename: str
|
|
688
|
-
flag: int
|
|
689
|
-
gid: int
|
|
690
|
-
nice: int
|
|
691
|
-
pgrp: int
|
|
692
|
-
pid: int
|
|
693
|
-
ppid: int
|
|
694
|
-
sid: int
|
|
695
|
-
sname: str
|
|
696
|
-
state: int
|
|
697
|
-
uid: int
|
|
698
|
-
zombie: bool
|
|
699
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
700
|
-
@property
|
|
701
|
-
def args_stripped(self) -> str: ...
|
|
702
|
-
@property
|
|
703
|
-
def filename_stripped(self) -> str: ...
|
|
704
|
-
info: Optional[lief.ELF.CorePrPsInfo.info_t]
|
|
705
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
706
|
-
|
|
707
|
-
class CorePrStatus(Note):
|
|
708
|
-
class Registers:
|
|
709
|
-
class AARCH64:
|
|
710
|
-
PC: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
711
|
-
PSTATE: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
712
|
-
X0: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
713
|
-
X1: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
714
|
-
X10: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
715
|
-
X11: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
716
|
-
X12: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
717
|
-
X13: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
718
|
-
X14: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
719
|
-
X15: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
720
|
-
X16: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
721
|
-
X17: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
722
|
-
X18: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
723
|
-
X19: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
724
|
-
X2: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
725
|
-
X20: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
726
|
-
X21: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
727
|
-
X22: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
728
|
-
X23: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
729
|
-
X24: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
730
|
-
X25: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
731
|
-
X26: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
732
|
-
X27: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
733
|
-
X28: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
734
|
-
X29: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
735
|
-
X3: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
736
|
-
X30: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
737
|
-
X31: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
738
|
-
X4: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
739
|
-
X5: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
740
|
-
X6: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
741
|
-
X7: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
742
|
-
X8: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
743
|
-
X9: ClassVar[CorePrStatus.Registers.AARCH64] = ...
|
|
744
|
-
__name__: str
|
|
745
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
746
|
-
@staticmethod
|
|
747
|
-
def from_value(arg: int, /) -> lief.ELF.CorePrStatus.Registers.AARCH64: ...
|
|
748
|
-
def __ge__(self, other) -> bool: ...
|
|
749
|
-
def __gt__(self, other) -> bool: ...
|
|
750
|
-
def __hash__(self) -> int: ...
|
|
751
|
-
def __index__(self) -> Any: ...
|
|
752
|
-
def __int__(self) -> int: ...
|
|
753
|
-
def __le__(self, other) -> bool: ...
|
|
754
|
-
def __lt__(self, other) -> bool: ...
|
|
755
|
-
@property
|
|
756
|
-
def value(self) -> int: ...
|
|
757
|
-
|
|
758
|
-
class ARM:
|
|
759
|
-
CPSR: ClassVar[CorePrStatus.Registers.ARM] = ...
|
|
760
|
-
R0: ClassVar[CorePrStatus.Registers.ARM] = ...
|
|
761
|
-
R1: ClassVar[CorePrStatus.Registers.ARM] = ...
|
|
762
|
-
R10: ClassVar[CorePrStatus.Registers.ARM] = ...
|
|
763
|
-
R11: ClassVar[CorePrStatus.Registers.ARM] = ...
|
|
764
|
-
R12: ClassVar[CorePrStatus.Registers.ARM] = ...
|
|
765
|
-
R13: ClassVar[CorePrStatus.Registers.ARM] = ...
|
|
766
|
-
R14: ClassVar[CorePrStatus.Registers.ARM] = ...
|
|
767
|
-
R15: ClassVar[CorePrStatus.Registers.ARM] = ...
|
|
768
|
-
R2: ClassVar[CorePrStatus.Registers.ARM] = ...
|
|
769
|
-
R3: ClassVar[CorePrStatus.Registers.ARM] = ...
|
|
770
|
-
R4: ClassVar[CorePrStatus.Registers.ARM] = ...
|
|
771
|
-
R5: ClassVar[CorePrStatus.Registers.ARM] = ...
|
|
772
|
-
R6: ClassVar[CorePrStatus.Registers.ARM] = ...
|
|
773
|
-
R7: ClassVar[CorePrStatus.Registers.ARM] = ...
|
|
774
|
-
R8: ClassVar[CorePrStatus.Registers.ARM] = ...
|
|
775
|
-
R9: ClassVar[CorePrStatus.Registers.ARM] = ...
|
|
776
|
-
__name__: str
|
|
777
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
778
|
-
@staticmethod
|
|
779
|
-
def from_value(arg: int, /) -> lief.ELF.CorePrStatus.Registers.ARM: ...
|
|
780
|
-
def __ge__(self, other) -> bool: ...
|
|
781
|
-
def __gt__(self, other) -> bool: ...
|
|
782
|
-
def __hash__(self) -> int: ...
|
|
783
|
-
def __index__(self) -> Any: ...
|
|
784
|
-
def __int__(self) -> int: ...
|
|
785
|
-
def __le__(self, other) -> bool: ...
|
|
786
|
-
def __lt__(self, other) -> bool: ...
|
|
787
|
-
@property
|
|
788
|
-
def value(self) -> int: ...
|
|
789
|
-
|
|
790
|
-
class X86:
|
|
791
|
-
CS: ClassVar[CorePrStatus.Registers.X86] = ...
|
|
792
|
-
DS: ClassVar[CorePrStatus.Registers.X86] = ...
|
|
793
|
-
EAX: ClassVar[CorePrStatus.Registers.X86] = ...
|
|
794
|
-
EBP: ClassVar[CorePrStatus.Registers.X86] = ...
|
|
795
|
-
EBX: ClassVar[CorePrStatus.Registers.X86] = ...
|
|
796
|
-
ECX: ClassVar[CorePrStatus.Registers.X86] = ...
|
|
797
|
-
EDI: ClassVar[CorePrStatus.Registers.X86] = ...
|
|
798
|
-
EDX: ClassVar[CorePrStatus.Registers.X86] = ...
|
|
799
|
-
EFLAGS: ClassVar[CorePrStatus.Registers.X86] = ...
|
|
800
|
-
EIP: ClassVar[CorePrStatus.Registers.X86] = ...
|
|
801
|
-
ES: ClassVar[CorePrStatus.Registers.X86] = ...
|
|
802
|
-
ESI: ClassVar[CorePrStatus.Registers.X86] = ...
|
|
803
|
-
ESP: ClassVar[CorePrStatus.Registers.X86] = ...
|
|
804
|
-
FS: ClassVar[CorePrStatus.Registers.X86] = ...
|
|
805
|
-
GS: ClassVar[CorePrStatus.Registers.X86] = ...
|
|
806
|
-
ORIG_EAX: ClassVar[CorePrStatus.Registers.X86] = ...
|
|
807
|
-
SS: ClassVar[CorePrStatus.Registers.X86] = ...
|
|
808
|
-
__name__: str
|
|
809
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
810
|
-
@staticmethod
|
|
811
|
-
def from_value(arg: int, /) -> lief.ELF.CorePrStatus.Registers.X86: ...
|
|
812
|
-
def __ge__(self, other) -> bool: ...
|
|
813
|
-
def __gt__(self, other) -> bool: ...
|
|
814
|
-
def __hash__(self) -> int: ...
|
|
815
|
-
def __index__(self) -> Any: ...
|
|
816
|
-
def __int__(self) -> int: ...
|
|
817
|
-
def __le__(self, other) -> bool: ...
|
|
818
|
-
def __lt__(self, other) -> bool: ...
|
|
819
|
-
@property
|
|
820
|
-
def value(self) -> int: ...
|
|
821
|
-
|
|
822
|
-
class X86_64:
|
|
823
|
-
CS: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
824
|
-
EFLAGS: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
825
|
-
ORIG_RAX: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
826
|
-
R10: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
827
|
-
R11: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
828
|
-
R12: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
829
|
-
R13: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
830
|
-
R14: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
831
|
-
R15: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
832
|
-
R8: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
833
|
-
R9: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
834
|
-
RAX: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
835
|
-
RBP: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
836
|
-
RBX: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
837
|
-
RCX: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
838
|
-
RDI: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
839
|
-
RDX: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
840
|
-
RIP: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
841
|
-
RSI: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
842
|
-
RSP: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
843
|
-
SS: ClassVar[CorePrStatus.Registers.X86_64] = ...
|
|
844
|
-
__name__: str
|
|
845
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
846
|
-
@staticmethod
|
|
847
|
-
def from_value(arg: int, /) -> lief.ELF.CorePrStatus.Registers.X86_64: ...
|
|
848
|
-
def __ge__(self, other) -> bool: ...
|
|
849
|
-
def __gt__(self, other) -> bool: ...
|
|
850
|
-
def __hash__(self) -> int: ...
|
|
851
|
-
def __index__(self) -> Any: ...
|
|
852
|
-
def __int__(self) -> int: ...
|
|
853
|
-
def __le__(self, other) -> bool: ...
|
|
854
|
-
def __lt__(self, other) -> bool: ...
|
|
855
|
-
@property
|
|
856
|
-
def value(self) -> int: ...
|
|
857
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
858
|
-
|
|
859
|
-
class pr_status_t:
|
|
860
|
-
cstime: lief.ELF.CorePrStatus.timeval_t # type: ignore
|
|
861
|
-
cursig: int
|
|
862
|
-
cutime: lief.ELF.CorePrStatus.timeval_t # type: ignore
|
|
863
|
-
info: lief.ELF.CorePrStatus.siginfo_t # type: ignore
|
|
864
|
-
pgrp: int
|
|
865
|
-
pid: int
|
|
866
|
-
ppid: int
|
|
867
|
-
reserved: int
|
|
868
|
-
sid: int
|
|
869
|
-
sighold: int
|
|
870
|
-
sigpend: int
|
|
871
|
-
stime: lief.ELF.CorePrStatus.timeval_t # type: ignore
|
|
872
|
-
utime: lief.ELF.CorePrStatus.timeval_t # type: ignore
|
|
873
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
874
|
-
|
|
875
|
-
class siginfo_t:
|
|
876
|
-
errno: int
|
|
877
|
-
sicode: int
|
|
878
|
-
signo: int
|
|
879
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
880
|
-
|
|
881
|
-
class timeval_t:
|
|
882
|
-
sec: int
|
|
883
|
-
usec: int
|
|
884
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
885
|
-
status: lief.ELF.CorePrStatus.pr_status_t
|
|
886
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
887
|
-
@overload
|
|
888
|
-
def get(self, reg: lief.ELF.CorePrStatus.Registers.X86) -> Optional[int]: ...
|
|
889
|
-
@overload
|
|
890
|
-
def get(self, reg: lief.ELF.CorePrStatus.Registers.X86_64) -> Optional[int]: ...
|
|
891
|
-
@overload
|
|
892
|
-
def get(self, reg: lief.ELF.CorePrStatus.Registers.ARM) -> Optional[int]: ...
|
|
893
|
-
@overload
|
|
894
|
-
def get(self, reg: lief.ELF.CorePrStatus.Registers.AARCH64) -> Optional[int]: ...
|
|
895
|
-
@overload
|
|
896
|
-
def set(self, reg: lief.ELF.CorePrStatus.Registers.X86, value: int) -> lief.ok_error_t: ...
|
|
897
|
-
@overload
|
|
898
|
-
def set(self, reg: lief.ELF.CorePrStatus.Registers.X86_64, value: int) -> lief.ok_error_t: ...
|
|
899
|
-
@overload
|
|
900
|
-
def set(self, reg: lief.ELF.CorePrStatus.Registers.ARM, value: int) -> lief.ok_error_t: ...
|
|
901
|
-
@overload
|
|
902
|
-
def set(self, reg: lief.ELF.CorePrStatus.Registers.AARCH64, value: int) -> lief.ok_error_t: ...
|
|
903
|
-
@overload
|
|
904
|
-
def __getitem__(self, arg: lief.ELF.CorePrStatus.Registers.X86, /) -> Optional[int]: ...
|
|
905
|
-
@overload
|
|
906
|
-
def __getitem__(self, arg: lief.ELF.CorePrStatus.Registers.X86_64, /) -> Optional[int]: ...
|
|
907
|
-
@overload
|
|
908
|
-
def __getitem__(self, arg: lief.ELF.CorePrStatus.Registers.ARM, /) -> Optional[int]: ...
|
|
909
|
-
@overload
|
|
910
|
-
def __getitem__(self, arg: lief.ELF.CorePrStatus.Registers.AARCH64, /) -> Optional[int]: ...
|
|
911
|
-
@overload
|
|
912
|
-
def __setitem__(self, arg0: lief.ELF.CorePrStatus.Registers.X86, arg1: int, /) -> lief.ok_error_t: ...
|
|
913
|
-
@overload
|
|
914
|
-
def __setitem__(self, arg0: lief.ELF.CorePrStatus.Registers.X86_64, arg1: int, /) -> lief.ok_error_t: ...
|
|
915
|
-
@overload
|
|
916
|
-
def __setitem__(self, arg0: lief.ELF.CorePrStatus.Registers.ARM, arg1: int, /) -> lief.ok_error_t: ...
|
|
917
|
-
@overload
|
|
918
|
-
def __setitem__(self, arg0: lief.ELF.CorePrStatus.Registers.AARCH64, arg1: int, /) -> lief.ok_error_t: ...
|
|
919
|
-
@property
|
|
920
|
-
def architecture(self) -> lief.ELF.ARCH: ...
|
|
921
|
-
@property
|
|
922
|
-
def pc(self) -> Optional[int]: ...
|
|
923
|
-
@property
|
|
924
|
-
def register_values(self) -> list[int]: ...
|
|
925
|
-
@property
|
|
926
|
-
def return_value(self) -> Optional[int]: ...
|
|
927
|
-
@property
|
|
928
|
-
def sp(self) -> Optional[int]: ...
|
|
929
|
-
|
|
930
|
-
class CoreSigInfo(Note):
|
|
931
|
-
sigcode: Optional[int]
|
|
932
|
-
sigerrno: Optional[int]
|
|
933
|
-
signo: Optional[int]
|
|
934
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
935
|
-
|
|
936
|
-
class DynamicEntry(lief.Object):
|
|
937
|
-
class TAG:
|
|
938
|
-
AARCH64_BTI_PLT: ClassVar[DynamicEntry.TAG] = ...
|
|
939
|
-
AARCH64_MEMTAG_GLOBALS: ClassVar[DynamicEntry.TAG] = ...
|
|
940
|
-
AARCH64_MEMTAG_GLOBALSSZ: ClassVar[DynamicEntry.TAG] = ...
|
|
941
|
-
AARCH64_MEMTAG_HEAP: ClassVar[DynamicEntry.TAG] = ...
|
|
942
|
-
AARCH64_MEMTAG_MODE: ClassVar[DynamicEntry.TAG] = ...
|
|
943
|
-
AARCH64_MEMTAG_STACK: ClassVar[DynamicEntry.TAG] = ...
|
|
944
|
-
AARCH64_PAC_PLT: ClassVar[DynamicEntry.TAG] = ...
|
|
945
|
-
AARCH64_VARIANT_PCS: ClassVar[DynamicEntry.TAG] = ...
|
|
946
|
-
ANDROID_REL: ClassVar[DynamicEntry.TAG] = ...
|
|
947
|
-
ANDROID_RELA: ClassVar[DynamicEntry.TAG] = ...
|
|
948
|
-
ANDROID_RELASZ: ClassVar[DynamicEntry.TAG] = ...
|
|
949
|
-
ANDROID_RELR: ClassVar[DynamicEntry.TAG] = ...
|
|
950
|
-
ANDROID_RELRCOUNT: ClassVar[DynamicEntry.TAG] = ...
|
|
951
|
-
ANDROID_RELRENT: ClassVar[DynamicEntry.TAG] = ...
|
|
952
|
-
ANDROID_RELRSZ: ClassVar[DynamicEntry.TAG] = ...
|
|
953
|
-
ANDROID_RELSZ: ClassVar[DynamicEntry.TAG] = ...
|
|
954
|
-
ANDROID_REL_OFFSET: ClassVar[DynamicEntry.TAG] = ...
|
|
955
|
-
ANDROID_REL_SIZE: ClassVar[DynamicEntry.TAG] = ...
|
|
956
|
-
BIND_NOW: ClassVar[DynamicEntry.TAG] = ...
|
|
957
|
-
DEBUG_TAG: ClassVar[DynamicEntry.TAG] = ...
|
|
958
|
-
FINI: ClassVar[DynamicEntry.TAG] = ...
|
|
959
|
-
FINI_ARRAY: ClassVar[DynamicEntry.TAG] = ...
|
|
960
|
-
FINI_ARRAYSZ: ClassVar[DynamicEntry.TAG] = ...
|
|
961
|
-
FLAGS: ClassVar[DynamicEntry.TAG] = ...
|
|
962
|
-
FLAGS_1: ClassVar[DynamicEntry.TAG] = ...
|
|
963
|
-
GNU_HASH: ClassVar[DynamicEntry.TAG] = ...
|
|
964
|
-
HASH: ClassVar[DynamicEntry.TAG] = ...
|
|
965
|
-
HEXAGON_PLT: ClassVar[DynamicEntry.TAG] = ...
|
|
966
|
-
HEXAGON_SYMSZ: ClassVar[DynamicEntry.TAG] = ...
|
|
967
|
-
HEXAGON_VER: ClassVar[DynamicEntry.TAG] = ...
|
|
968
|
-
INIT: ClassVar[DynamicEntry.TAG] = ...
|
|
969
|
-
INIT_ARRAY: ClassVar[DynamicEntry.TAG] = ...
|
|
970
|
-
INIT_ARRAYSZ: ClassVar[DynamicEntry.TAG] = ...
|
|
971
|
-
JMPREL: ClassVar[DynamicEntry.TAG] = ...
|
|
972
|
-
MIPS_AUX_DYNAMIC: ClassVar[DynamicEntry.TAG] = ...
|
|
973
|
-
MIPS_BASE_ADDRESS: ClassVar[DynamicEntry.TAG] = ...
|
|
974
|
-
MIPS_COMPACT_SIZE: ClassVar[DynamicEntry.TAG] = ...
|
|
975
|
-
MIPS_CONFLICT: ClassVar[DynamicEntry.TAG] = ...
|
|
976
|
-
MIPS_CONFLICTNO: ClassVar[DynamicEntry.TAG] = ...
|
|
977
|
-
MIPS_CXX_FLAGS: ClassVar[DynamicEntry.TAG] = ...
|
|
978
|
-
MIPS_DELTA_CLASS: ClassVar[DynamicEntry.TAG] = ...
|
|
979
|
-
MIPS_DELTA_CLASSSYM: ClassVar[DynamicEntry.TAG] = ...
|
|
980
|
-
MIPS_DELTA_CLASSSYM_NO: ClassVar[DynamicEntry.TAG] = ...
|
|
981
|
-
MIPS_DELTA_CLASS_NO: ClassVar[DynamicEntry.TAG] = ...
|
|
982
|
-
MIPS_DELTA_INSTANCE: ClassVar[DynamicEntry.TAG] = ...
|
|
983
|
-
MIPS_DELTA_INSTANCE_NO: ClassVar[DynamicEntry.TAG] = ...
|
|
984
|
-
MIPS_DELTA_RELOC: ClassVar[DynamicEntry.TAG] = ...
|
|
985
|
-
MIPS_DELTA_RELOC_NO: ClassVar[DynamicEntry.TAG] = ...
|
|
986
|
-
MIPS_DELTA_SYM: ClassVar[DynamicEntry.TAG] = ...
|
|
987
|
-
MIPS_DELTA_SYM_NO: ClassVar[DynamicEntry.TAG] = ...
|
|
988
|
-
MIPS_DYNSTR_ALIGN: ClassVar[DynamicEntry.TAG] = ...
|
|
989
|
-
MIPS_FLAGS: ClassVar[DynamicEntry.TAG] = ...
|
|
990
|
-
MIPS_GOTSYM: ClassVar[DynamicEntry.TAG] = ...
|
|
991
|
-
MIPS_GP_VALUE: ClassVar[DynamicEntry.TAG] = ...
|
|
992
|
-
MIPS_HIDDEN_GOTIDX: ClassVar[DynamicEntry.TAG] = ...
|
|
993
|
-
MIPS_HIPAGENO: ClassVar[DynamicEntry.TAG] = ...
|
|
994
|
-
MIPS_ICHECKSUM: ClassVar[DynamicEntry.TAG] = ...
|
|
995
|
-
MIPS_INTERFACE: ClassVar[DynamicEntry.TAG] = ...
|
|
996
|
-
MIPS_INTERFACE_SIZE: ClassVar[DynamicEntry.TAG] = ...
|
|
997
|
-
MIPS_IVERSION: ClassVar[DynamicEntry.TAG] = ...
|
|
998
|
-
MIPS_LIBLIST: ClassVar[DynamicEntry.TAG] = ...
|
|
999
|
-
MIPS_LIBLISTNO: ClassVar[DynamicEntry.TAG] = ...
|
|
1000
|
-
MIPS_LOCALPAGE_GOTIDX: ClassVar[DynamicEntry.TAG] = ...
|
|
1001
|
-
MIPS_LOCAL_GOTIDX: ClassVar[DynamicEntry.TAG] = ...
|
|
1002
|
-
MIPS_LOCAL_GOTNO: ClassVar[DynamicEntry.TAG] = ...
|
|
1003
|
-
MIPS_MSYM: ClassVar[DynamicEntry.TAG] = ...
|
|
1004
|
-
MIPS_OPTIONS: ClassVar[DynamicEntry.TAG] = ...
|
|
1005
|
-
MIPS_PERF_SUFFIX: ClassVar[DynamicEntry.TAG] = ...
|
|
1006
|
-
MIPS_PIXIE_INIT: ClassVar[DynamicEntry.TAG] = ...
|
|
1007
|
-
MIPS_PLTGOT: ClassVar[DynamicEntry.TAG] = ...
|
|
1008
|
-
MIPS_PROTECTED_GOTIDX: ClassVar[DynamicEntry.TAG] = ...
|
|
1009
|
-
MIPS_RLD_MAP: ClassVar[DynamicEntry.TAG] = ...
|
|
1010
|
-
MIPS_RLD_MAP_REL: ClassVar[DynamicEntry.TAG] = ...
|
|
1011
|
-
MIPS_RLD_TEXT_RESOLVE_ADDR: ClassVar[DynamicEntry.TAG] = ...
|
|
1012
|
-
MIPS_RLD_VERSION: ClassVar[DynamicEntry.TAG] = ...
|
|
1013
|
-
MIPS_RWPLT: ClassVar[DynamicEntry.TAG] = ...
|
|
1014
|
-
MIPS_SYMBOL_LIB: ClassVar[DynamicEntry.TAG] = ...
|
|
1015
|
-
MIPS_SYMTABNO: ClassVar[DynamicEntry.TAG] = ...
|
|
1016
|
-
MIPS_TIME_STAMP: ClassVar[DynamicEntry.TAG] = ...
|
|
1017
|
-
MIPS_UNREFEXTNO: ClassVar[DynamicEntry.TAG] = ...
|
|
1018
|
-
MIPS_XHASH: ClassVar[DynamicEntry.TAG] = ...
|
|
1019
|
-
NEEDED: ClassVar[DynamicEntry.TAG] = ...
|
|
1020
|
-
NULL: ClassVar[DynamicEntry.TAG] = ...
|
|
1021
|
-
PLTGOT: ClassVar[DynamicEntry.TAG] = ...
|
|
1022
|
-
PLTREL: ClassVar[DynamicEntry.TAG] = ...
|
|
1023
|
-
PLTRELSZ: ClassVar[DynamicEntry.TAG] = ...
|
|
1024
|
-
PPC64_GLINK: ClassVar[DynamicEntry.TAG] = ...
|
|
1025
|
-
PPC64_OPT: ClassVar[DynamicEntry.TAG] = ...
|
|
1026
|
-
PPC_GOT: ClassVar[DynamicEntry.TAG] = ...
|
|
1027
|
-
PPC_OPT: ClassVar[DynamicEntry.TAG] = ...
|
|
1028
|
-
PREINIT_ARRAY: ClassVar[DynamicEntry.TAG] = ...
|
|
1029
|
-
PREINIT_ARRAYSZ: ClassVar[DynamicEntry.TAG] = ...
|
|
1030
|
-
REL: ClassVar[DynamicEntry.TAG] = ...
|
|
1031
|
-
RELA: ClassVar[DynamicEntry.TAG] = ...
|
|
1032
|
-
RELACOUNT: ClassVar[DynamicEntry.TAG] = ...
|
|
1033
|
-
RELAENT: ClassVar[DynamicEntry.TAG] = ...
|
|
1034
|
-
RELASZ: ClassVar[DynamicEntry.TAG] = ...
|
|
1035
|
-
RELCOUNT: ClassVar[DynamicEntry.TAG] = ...
|
|
1036
|
-
RELENT: ClassVar[DynamicEntry.TAG] = ...
|
|
1037
|
-
RELR: ClassVar[DynamicEntry.TAG] = ...
|
|
1038
|
-
RELRENT: ClassVar[DynamicEntry.TAG] = ...
|
|
1039
|
-
RELRSZ: ClassVar[DynamicEntry.TAG] = ...
|
|
1040
|
-
RELSZ: ClassVar[DynamicEntry.TAG] = ...
|
|
1041
|
-
RISCV_VARIANT_CC: ClassVar[DynamicEntry.TAG] = ...
|
|
1042
|
-
RPATH: ClassVar[DynamicEntry.TAG] = ...
|
|
1043
|
-
RUNPATH: ClassVar[DynamicEntry.TAG] = ...
|
|
1044
|
-
SONAME: ClassVar[DynamicEntry.TAG] = ...
|
|
1045
|
-
STRSZ: ClassVar[DynamicEntry.TAG] = ...
|
|
1046
|
-
STRTAB: ClassVar[DynamicEntry.TAG] = ...
|
|
1047
|
-
SYMBOLIC: ClassVar[DynamicEntry.TAG] = ...
|
|
1048
|
-
SYMENT: ClassVar[DynamicEntry.TAG] = ...
|
|
1049
|
-
SYMTAB: ClassVar[DynamicEntry.TAG] = ...
|
|
1050
|
-
SYMTAB_SHNDX: ClassVar[DynamicEntry.TAG] = ...
|
|
1051
|
-
TEXTREL: ClassVar[DynamicEntry.TAG] = ...
|
|
1052
|
-
UNKNOWN: ClassVar[DynamicEntry.TAG] = ...
|
|
1053
|
-
VERDEF: ClassVar[DynamicEntry.TAG] = ...
|
|
1054
|
-
VERDEFNUM: ClassVar[DynamicEntry.TAG] = ...
|
|
1055
|
-
VERNEED: ClassVar[DynamicEntry.TAG] = ...
|
|
1056
|
-
VERNEEDNUM: ClassVar[DynamicEntry.TAG] = ...
|
|
1057
|
-
VERSYM: ClassVar[DynamicEntry.TAG] = ...
|
|
1058
|
-
__name__: str
|
|
1059
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1060
|
-
@staticmethod
|
|
1061
|
-
def from_value(arg: int, /) -> lief.ELF.DynamicEntry.TAG: ...
|
|
1062
|
-
def __ge__(self, other) -> bool: ...
|
|
1063
|
-
def __gt__(self, other) -> bool: ...
|
|
1064
|
-
def __hash__(self) -> int: ...
|
|
1065
|
-
def __index__(self) -> Any: ...
|
|
1066
|
-
def __int__(self) -> int: ...
|
|
1067
|
-
def __le__(self, other) -> bool: ...
|
|
1068
|
-
def __lt__(self, other) -> bool: ...
|
|
1069
|
-
@property
|
|
1070
|
-
def value(self) -> int: ...
|
|
1071
|
-
tag: lief.ELF.DynamicEntry.TAG
|
|
1072
|
-
value: int
|
|
1073
|
-
@overload
|
|
1074
|
-
def __init__(self) -> None: ...
|
|
1075
|
-
@overload
|
|
1076
|
-
def __init__(self, tag: lief.ELF.DynamicEntry.TAG, value: int) -> None: ...
|
|
1077
|
-
|
|
1078
|
-
class DynamicEntryArray(DynamicEntry):
|
|
1079
|
-
array: list[int]
|
|
1080
|
-
def __init__(self, tag: lief.ELF.DynamicEntry.TAG, array: list[int]) -> None: ...
|
|
1081
|
-
def append(self, function: int) -> lief.ELF.DynamicEntryArray: ...
|
|
1082
|
-
def insert(self, pos: int, function: int) -> lief.ELF.DynamicEntryArray: ...
|
|
1083
|
-
def remove(self, function: int) -> lief.ELF.DynamicEntryArray: ...
|
|
1084
|
-
def __getitem__(self, arg: int, /) -> int: ...
|
|
1085
|
-
def __iadd__(self, arg: int, /) -> lief.ELF.DynamicEntryArray: ...
|
|
1086
|
-
def __isub__(self, arg: int, /) -> lief.ELF.DynamicEntryArray: ...
|
|
1087
|
-
def __len__(self) -> int: ...
|
|
1088
|
-
|
|
1089
|
-
class DynamicEntryFlags(DynamicEntry):
|
|
1090
|
-
class FLAG:
|
|
1091
|
-
BIND_NOW: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1092
|
-
CONFALT: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1093
|
-
DIRECT: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1094
|
-
DISPRELDNE: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1095
|
-
DISPRELPND: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1096
|
-
EDITED: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1097
|
-
ENDFILTEE: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1098
|
-
GLOBAL: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1099
|
-
GLOBAUDIT: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1100
|
-
GROUP: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1101
|
-
HANDLE_ORIGIN: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1102
|
-
IGNMULDEF: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1103
|
-
INITFIRST: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1104
|
-
INTERPOSE: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1105
|
-
KMOD: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1106
|
-
LOADFLTR: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1107
|
-
NOCOMMON: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1108
|
-
NODEFLIB: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1109
|
-
NODELETE: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1110
|
-
NODIRECT: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1111
|
-
NODUMP: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1112
|
-
NOHDR: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1113
|
-
NOKSYMS: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1114
|
-
NOOPEN: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1115
|
-
NORELOC: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1116
|
-
NOW: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1117
|
-
ORIGIN: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1118
|
-
PIE: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1119
|
-
SINGLETON: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1120
|
-
STATIC_TLS: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1121
|
-
SYMBOLIC: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1122
|
-
SYMINTPOSE: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1123
|
-
TEXTREL: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1124
|
-
TRANS: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1125
|
-
WEAKFILTER: ClassVar[DynamicEntryFlags.FLAG] = ...
|
|
1126
|
-
__name__: str
|
|
1127
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1128
|
-
@staticmethod
|
|
1129
|
-
def from_value(arg: int, /) -> lief.ELF.DynamicEntryFlags.FLAG: ...
|
|
1130
|
-
def __ge__(self, other) -> bool: ...
|
|
1131
|
-
def __gt__(self, other) -> bool: ...
|
|
1132
|
-
def __hash__(self) -> int: ...
|
|
1133
|
-
def __index__(self) -> Any: ...
|
|
1134
|
-
def __int__(self) -> int: ...
|
|
1135
|
-
def __le__(self, other) -> bool: ...
|
|
1136
|
-
def __lt__(self, other) -> bool: ...
|
|
1137
|
-
@property
|
|
1138
|
-
def value(self) -> int: ...
|
|
1139
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1140
|
-
def add(self, flag: lief.ELF.DynamicEntryFlags.FLAG) -> None: ...
|
|
1141
|
-
def has(self, flag: lief.ELF.DynamicEntryFlags.FLAG) -> bool: ...
|
|
1142
|
-
def remove(self, flag: lief.ELF.DynamicEntryFlags.FLAG) -> None: ...
|
|
1143
|
-
def __contains__(self, arg: lief.ELF.DynamicEntryFlags.FLAG, /) -> bool: ...
|
|
1144
|
-
def __iadd__(self, arg: lief.ELF.DynamicEntryFlags.FLAG, /) -> lief.ELF.DynamicEntryFlags: ...
|
|
1145
|
-
def __isub__(self, arg: lief.ELF.DynamicEntryFlags.FLAG, /) -> lief.ELF.DynamicEntryFlags: ...
|
|
1146
|
-
@property
|
|
1147
|
-
def flags(self) -> list[lief.ELF.DynamicEntryFlags.FLAG]: ...
|
|
1148
|
-
|
|
1149
|
-
class DynamicEntryLibrary(DynamicEntry):
|
|
1150
|
-
name: Union[str,bytes]
|
|
1151
|
-
def __init__(self, library_name: str) -> None: ...
|
|
1152
|
-
|
|
1153
|
-
class DynamicEntryRpath(DynamicEntry):
|
|
1154
|
-
paths: list[str]
|
|
1155
|
-
rpath: Union[str,bytes]
|
|
1156
|
-
@overload
|
|
1157
|
-
def __init__(self, path: str = ...) -> None: ...
|
|
1158
|
-
@overload
|
|
1159
|
-
def __init__(self, paths: list[str]) -> None: ...
|
|
1160
|
-
def append(self, path: str) -> lief.ELF.DynamicEntryRpath: ...
|
|
1161
|
-
def insert(self, position: int, path: str) -> lief.ELF.DynamicEntryRpath: ...
|
|
1162
|
-
def remove(self, path: str) -> lief.ELF.DynamicEntryRpath: ...
|
|
1163
|
-
def __iadd__(self, arg: str, /) -> lief.ELF.DynamicEntryRpath: ...
|
|
1164
|
-
def __isub__(self, arg: str, /) -> lief.ELF.DynamicEntryRpath: ...
|
|
1165
|
-
|
|
1166
|
-
class DynamicEntryRunPath(DynamicEntry):
|
|
1167
|
-
paths: list[str]
|
|
1168
|
-
runpath: Union[str,bytes]
|
|
1169
|
-
@overload
|
|
1170
|
-
def __init__(self, path: str = ...) -> None: ...
|
|
1171
|
-
@overload
|
|
1172
|
-
def __init__(self, paths: list[str]) -> None: ...
|
|
1173
|
-
def append(self, path: str) -> lief.ELF.DynamicEntryRunPath: ...
|
|
1174
|
-
def insert(self, position: int, path: str) -> lief.ELF.DynamicEntryRunPath: ...
|
|
1175
|
-
def remove(self, path: str) -> lief.ELF.DynamicEntryRunPath: ...
|
|
1176
|
-
def __iadd__(self, arg: str, /) -> lief.ELF.DynamicEntryRunPath: ...
|
|
1177
|
-
def __isub__(self, arg: str, /) -> lief.ELF.DynamicEntryRunPath: ...
|
|
1178
|
-
|
|
1179
|
-
class DynamicSharedObject(DynamicEntry):
|
|
1180
|
-
name: Union[str,bytes]
|
|
1181
|
-
def __init__(self, library_name: str) -> None: ...
|
|
1182
|
-
|
|
1183
|
-
class Generic(NoteGnuProperty.Property):
|
|
1184
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1185
|
-
@property
|
|
1186
|
-
def raw_type(self) -> int: ...
|
|
1187
|
-
|
|
1188
|
-
class GnuHash(lief.Object):
|
|
1189
|
-
def __init__(self) -> None: ...
|
|
1190
|
-
@overload
|
|
1191
|
-
def check(self, symbol_name: str) -> bool: ...
|
|
1192
|
-
@overload
|
|
1193
|
-
def check(self, hash_value: int) -> bool: ...
|
|
1194
|
-
def check_bloom_filter(self, hash: int) -> bool: ...
|
|
1195
|
-
def check_bucket(self, hash: int) -> bool: ...
|
|
1196
|
-
@property
|
|
1197
|
-
def bloom_filters(self) -> list[int]: ...
|
|
1198
|
-
@property
|
|
1199
|
-
def buckets(self) -> list[int]: ...
|
|
1200
|
-
@property
|
|
1201
|
-
def hash_values(self) -> list[int]: ...
|
|
1202
|
-
@property
|
|
1203
|
-
def nb_buckets(self) -> int: ...
|
|
1204
|
-
@property
|
|
1205
|
-
def shift2(self) -> int: ...
|
|
1206
|
-
@property
|
|
1207
|
-
def symbol_index(self) -> int: ...
|
|
1208
|
-
|
|
1209
|
-
class Header(lief.Object):
|
|
1210
|
-
class CLASS:
|
|
1211
|
-
ELF32: ClassVar[Header.CLASS] = ...
|
|
1212
|
-
ELF64: ClassVar[Header.CLASS] = ...
|
|
1213
|
-
NONE: ClassVar[Header.CLASS] = ...
|
|
1214
|
-
__name__: str
|
|
1215
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1216
|
-
@staticmethod
|
|
1217
|
-
def from_value(arg: int, /) -> lief.ELF.Header.CLASS: ...
|
|
1218
|
-
def __ge__(self, other) -> bool: ...
|
|
1219
|
-
def __gt__(self, other) -> bool: ...
|
|
1220
|
-
def __hash__(self) -> int: ...
|
|
1221
|
-
def __index__(self) -> Any: ...
|
|
1222
|
-
def __int__(self) -> int: ...
|
|
1223
|
-
def __le__(self, other) -> bool: ...
|
|
1224
|
-
def __lt__(self, other) -> bool: ...
|
|
1225
|
-
@property
|
|
1226
|
-
def value(self) -> int: ...
|
|
1227
|
-
|
|
1228
|
-
class ELF_DATA:
|
|
1229
|
-
LSB: ClassVar[Header.ELF_DATA] = ...
|
|
1230
|
-
MSB: ClassVar[Header.ELF_DATA] = ...
|
|
1231
|
-
NONE: ClassVar[Header.ELF_DATA] = ...
|
|
1232
|
-
__name__: str
|
|
1233
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1234
|
-
@staticmethod
|
|
1235
|
-
def from_value(arg: int, /) -> lief.ELF.Header.ELF_DATA: ...
|
|
1236
|
-
def __ge__(self, other) -> bool: ...
|
|
1237
|
-
def __gt__(self, other) -> bool: ...
|
|
1238
|
-
def __hash__(self) -> int: ...
|
|
1239
|
-
def __index__(self) -> Any: ...
|
|
1240
|
-
def __int__(self) -> int: ...
|
|
1241
|
-
def __le__(self, other) -> bool: ...
|
|
1242
|
-
def __lt__(self, other) -> bool: ...
|
|
1243
|
-
@property
|
|
1244
|
-
def value(self) -> int: ...
|
|
1245
|
-
|
|
1246
|
-
class FILE_TYPE:
|
|
1247
|
-
CORE: ClassVar[Header.FILE_TYPE] = ...
|
|
1248
|
-
DYN: ClassVar[Header.FILE_TYPE] = ...
|
|
1249
|
-
EXEC: ClassVar[Header.FILE_TYPE] = ...
|
|
1250
|
-
NONE: ClassVar[Header.FILE_TYPE] = ...
|
|
1251
|
-
REL: ClassVar[Header.FILE_TYPE] = ...
|
|
1252
|
-
__name__: str
|
|
1253
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1254
|
-
@staticmethod
|
|
1255
|
-
def from_value(arg: int, /) -> lief.ELF.Header.FILE_TYPE: ...
|
|
1256
|
-
def __ge__(self, other) -> bool: ...
|
|
1257
|
-
def __gt__(self, other) -> bool: ...
|
|
1258
|
-
def __hash__(self) -> int: ...
|
|
1259
|
-
def __index__(self) -> Any: ...
|
|
1260
|
-
def __int__(self) -> int: ...
|
|
1261
|
-
def __le__(self, other) -> bool: ...
|
|
1262
|
-
def __lt__(self, other) -> bool: ...
|
|
1263
|
-
@property
|
|
1264
|
-
def value(self) -> int: ...
|
|
1265
|
-
|
|
1266
|
-
class OS_ABI:
|
|
1267
|
-
AIX: ClassVar[Header.OS_ABI] = ...
|
|
1268
|
-
AMDGPU_HSA: ClassVar[Header.OS_ABI] = ...
|
|
1269
|
-
ARM: ClassVar[Header.OS_ABI] = ...
|
|
1270
|
-
AROS: ClassVar[Header.OS_ABI] = ...
|
|
1271
|
-
C6000_LINUX: ClassVar[Header.OS_ABI] = ...
|
|
1272
|
-
CLOUDABI: ClassVar[Header.OS_ABI] = ...
|
|
1273
|
-
FENIXOS: ClassVar[Header.OS_ABI] = ...
|
|
1274
|
-
FREEBSD: ClassVar[Header.OS_ABI] = ...
|
|
1275
|
-
HPUX: ClassVar[Header.OS_ABI] = ...
|
|
1276
|
-
HURD: ClassVar[Header.OS_ABI] = ...
|
|
1277
|
-
IRIX: ClassVar[Header.OS_ABI] = ...
|
|
1278
|
-
LINUX: ClassVar[Header.OS_ABI] = ...
|
|
1279
|
-
MODESTO: ClassVar[Header.OS_ABI] = ...
|
|
1280
|
-
NETBSD: ClassVar[Header.OS_ABI] = ...
|
|
1281
|
-
NSK: ClassVar[Header.OS_ABI] = ...
|
|
1282
|
-
OPENBSD: ClassVar[Header.OS_ABI] = ...
|
|
1283
|
-
OPENVMS: ClassVar[Header.OS_ABI] = ...
|
|
1284
|
-
SOLARIS: ClassVar[Header.OS_ABI] = ...
|
|
1285
|
-
STANDALONE: ClassVar[Header.OS_ABI] = ...
|
|
1286
|
-
SYSTEMV: ClassVar[Header.OS_ABI] = ...
|
|
1287
|
-
TRU64: ClassVar[Header.OS_ABI] = ...
|
|
1288
|
-
__name__: str
|
|
1289
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1290
|
-
@staticmethod
|
|
1291
|
-
def from_value(arg: int, /) -> lief.ELF.Header.OS_ABI: ...
|
|
1292
|
-
def __ge__(self, other) -> bool: ...
|
|
1293
|
-
def __gt__(self, other) -> bool: ...
|
|
1294
|
-
def __hash__(self) -> int: ...
|
|
1295
|
-
def __index__(self) -> Any: ...
|
|
1296
|
-
def __int__(self) -> int: ...
|
|
1297
|
-
def __le__(self, other) -> bool: ...
|
|
1298
|
-
def __lt__(self, other) -> bool: ...
|
|
1299
|
-
@property
|
|
1300
|
-
def value(self) -> int: ...
|
|
1301
|
-
|
|
1302
|
-
class VERSION:
|
|
1303
|
-
CURRENT: ClassVar[Header.VERSION] = ...
|
|
1304
|
-
NONE: ClassVar[Header.VERSION] = ...
|
|
1305
|
-
__name__: str
|
|
1306
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1307
|
-
@staticmethod
|
|
1308
|
-
def from_value(arg: int, /) -> lief.ELF.Header.VERSION: ...
|
|
1309
|
-
def __ge__(self, other) -> bool: ...
|
|
1310
|
-
def __gt__(self, other) -> bool: ...
|
|
1311
|
-
def __hash__(self) -> int: ...
|
|
1312
|
-
def __index__(self) -> Any: ...
|
|
1313
|
-
def __int__(self) -> int: ...
|
|
1314
|
-
def __le__(self, other) -> bool: ...
|
|
1315
|
-
def __lt__(self, other) -> bool: ...
|
|
1316
|
-
@property
|
|
1317
|
-
def value(self) -> int: ...
|
|
1318
|
-
entrypoint: int
|
|
1319
|
-
file_type: lief.ELF.Header.FILE_TYPE
|
|
1320
|
-
header_size: int
|
|
1321
|
-
identity: list[int]
|
|
1322
|
-
identity_abi_version: int
|
|
1323
|
-
identity_class: lief.ELF.Header.CLASS
|
|
1324
|
-
identity_data: lief.ELF.Header.ELF_DATA
|
|
1325
|
-
identity_os_abi: lief.ELF.Header.OS_ABI
|
|
1326
|
-
identity_version: lief.ELF.Header.VERSION
|
|
1327
|
-
machine_type: lief.ELF.ARCH
|
|
1328
|
-
numberof_sections: int
|
|
1329
|
-
numberof_segments: int
|
|
1330
|
-
object_file_version: lief.ELF.Header.VERSION
|
|
1331
|
-
processor_flag: int
|
|
1332
|
-
program_header_offset: int
|
|
1333
|
-
program_header_size: int
|
|
1334
|
-
section_header_offset: int
|
|
1335
|
-
section_header_size: int
|
|
1336
|
-
section_name_table_idx: int
|
|
1337
|
-
def __init__(self) -> None: ...
|
|
1338
|
-
def has(self, arg: lief.ELF.PROCESSOR_FLAGS, /) -> bool: ...
|
|
1339
|
-
@property
|
|
1340
|
-
def flags_list(self) -> list[lief.ELF.PROCESSOR_FLAGS]: ...
|
|
1341
|
-
|
|
1342
|
-
class Note(lief.Object):
|
|
1343
|
-
class TYPE:
|
|
1344
|
-
ANDROID_IDENT: ClassVar[Note.TYPE] = ...
|
|
1345
|
-
ANDROID_KUSER: ClassVar[Note.TYPE] = ...
|
|
1346
|
-
ANDROID_MEMTAG: ClassVar[Note.TYPE] = ...
|
|
1347
|
-
CORE_ARM_HW_BREAK: ClassVar[Note.TYPE] = ...
|
|
1348
|
-
CORE_ARM_HW_WATCH: ClassVar[Note.TYPE] = ...
|
|
1349
|
-
CORE_ARM_PACA_KEYS: ClassVar[Note.TYPE] = ...
|
|
1350
|
-
CORE_ARM_PACG_KEYS: ClassVar[Note.TYPE] = ...
|
|
1351
|
-
CORE_ARM_PAC_MASK: ClassVar[Note.TYPE] = ...
|
|
1352
|
-
CORE_ARM_SVE: ClassVar[Note.TYPE] = ...
|
|
1353
|
-
CORE_ARM_SYSTEM_CALL: ClassVar[Note.TYPE] = ...
|
|
1354
|
-
CORE_ARM_TLS: ClassVar[Note.TYPE] = ...
|
|
1355
|
-
CORE_ARM_VFP: ClassVar[Note.TYPE] = ...
|
|
1356
|
-
CORE_AUXV: ClassVar[Note.TYPE] = ...
|
|
1357
|
-
CORE_FILE: ClassVar[Note.TYPE] = ...
|
|
1358
|
-
CORE_FPREGS: ClassVar[Note.TYPE] = ...
|
|
1359
|
-
CORE_FPREGSET: ClassVar[Note.TYPE] = ...
|
|
1360
|
-
CORE_LWPSINFO: ClassVar[Note.TYPE] = ...
|
|
1361
|
-
CORE_LWPSTATUS: ClassVar[Note.TYPE] = ...
|
|
1362
|
-
CORE_PAC_ENABLED_KEYS: ClassVar[Note.TYPE] = ...
|
|
1363
|
-
CORE_PRPSINFO: ClassVar[Note.TYPE] = ...
|
|
1364
|
-
CORE_PRSTATUS: ClassVar[Note.TYPE] = ...
|
|
1365
|
-
CORE_PRXFPREG: ClassVar[Note.TYPE] = ...
|
|
1366
|
-
CORE_PSINFO: ClassVar[Note.TYPE] = ...
|
|
1367
|
-
CORE_PSTATUS: ClassVar[Note.TYPE] = ...
|
|
1368
|
-
CORE_SIGINFO: ClassVar[Note.TYPE] = ...
|
|
1369
|
-
CORE_TAGGED_ADDR_CTRL: ClassVar[Note.TYPE] = ...
|
|
1370
|
-
CORE_TASKSTRUCT: ClassVar[Note.TYPE] = ...
|
|
1371
|
-
CORE_WIN32PSTATUS: ClassVar[Note.TYPE] = ...
|
|
1372
|
-
CORE_X86_CET: ClassVar[Note.TYPE] = ...
|
|
1373
|
-
CORE_X86_IOPERM: ClassVar[Note.TYPE] = ...
|
|
1374
|
-
CORE_X86_TLS: ClassVar[Note.TYPE] = ...
|
|
1375
|
-
CORE_X86_XSTATE: ClassVar[Note.TYPE] = ...
|
|
1376
|
-
CRASHPAD: ClassVar[Note.TYPE] = ...
|
|
1377
|
-
GNU_ABI_TAG: ClassVar[Note.TYPE] = ...
|
|
1378
|
-
GNU_BUILD_ATTRIBUTE_FUNC: ClassVar[Note.TYPE] = ...
|
|
1379
|
-
GNU_BUILD_ATTRIBUTE_OPEN: ClassVar[Note.TYPE] = ...
|
|
1380
|
-
GNU_BUILD_ID: ClassVar[Note.TYPE] = ...
|
|
1381
|
-
GNU_GOLD_VERSION: ClassVar[Note.TYPE] = ...
|
|
1382
|
-
GNU_HWCAP: ClassVar[Note.TYPE] = ...
|
|
1383
|
-
GNU_PROPERTY_TYPE_0: ClassVar[Note.TYPE] = ...
|
|
1384
|
-
GO_BUILDID: ClassVar[Note.TYPE] = ...
|
|
1385
|
-
QNX_STACK: ClassVar[Note.TYPE] = ...
|
|
1386
|
-
STAPSDT: ClassVar[Note.TYPE] = ...
|
|
1387
|
-
UNKNOWN: ClassVar[Note.TYPE] = ...
|
|
1388
|
-
__name__: str
|
|
1389
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1390
|
-
@staticmethod
|
|
1391
|
-
def from_value(arg: int, /) -> lief.ELF.Note.TYPE: ...
|
|
1392
|
-
def __ge__(self, other) -> bool: ...
|
|
1393
|
-
def __gt__(self, other) -> bool: ...
|
|
1394
|
-
def __hash__(self) -> int: ...
|
|
1395
|
-
def __index__(self) -> Any: ...
|
|
1396
|
-
def __int__(self) -> int: ...
|
|
1397
|
-
def __le__(self, other) -> bool: ...
|
|
1398
|
-
def __lt__(self, other) -> bool: ...
|
|
1399
|
-
@property
|
|
1400
|
-
def value(self) -> int: ...
|
|
1401
|
-
description: memoryview
|
|
1402
|
-
name: str
|
|
1403
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1404
|
-
def copy(self) -> Optional[lief.ELF.Note]: ...
|
|
1405
|
-
@overload
|
|
1406
|
-
@staticmethod
|
|
1407
|
-
def create(name: str, original_type: int, description: list[int], section_name: str, file_type: lief.ELF.Header.FILE_TYPE = ..., arch: lief.ELF.ARCH = ..., cls: lief.ELF.Header.CLASS = ...) -> Optional[lief.ELF.Note]: ...
|
|
1408
|
-
@overload
|
|
1409
|
-
@staticmethod
|
|
1410
|
-
def create(raw: bytes, section_name: str = ..., file_type: lief.ELF.Header.FILE_TYPE = ..., arch: lief.ELF.ARCH = ..., cls: lief.ELF.Header.CLASS = ...) -> Optional[lief.ELF.Note]: ...
|
|
1411
|
-
@overload
|
|
1412
|
-
@staticmethod
|
|
1413
|
-
def create(name: str, type: lief.ELF.Note.TYPE, description: list[int], section_name: str, arch: lief.ELF.ARCH = ..., cls: lief.ELF.Header.CLASS = ...) -> Optional[lief.ELF.Note]: ...
|
|
1414
|
-
@property
|
|
1415
|
-
def original_type(self) -> int: ...
|
|
1416
|
-
@property
|
|
1417
|
-
def size(self) -> int: ...
|
|
1418
|
-
@property
|
|
1419
|
-
def type(self) -> lief.ELF.Note.TYPE: ...
|
|
1420
|
-
|
|
1421
|
-
class NoteAbi(Note):
|
|
1422
|
-
class ABI:
|
|
1423
|
-
FREEBSD: ClassVar[NoteAbi.ABI] = ...
|
|
1424
|
-
GNU: ClassVar[NoteAbi.ABI] = ...
|
|
1425
|
-
LINUX: ClassVar[NoteAbi.ABI] = ...
|
|
1426
|
-
NACL: ClassVar[NoteAbi.ABI] = ...
|
|
1427
|
-
NETBSD: ClassVar[NoteAbi.ABI] = ...
|
|
1428
|
-
SOLARIS2: ClassVar[NoteAbi.ABI] = ...
|
|
1429
|
-
SYLLABLE: ClassVar[NoteAbi.ABI] = ...
|
|
1430
|
-
__name__: str
|
|
1431
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1432
|
-
@staticmethod
|
|
1433
|
-
def from_value(arg: int, /) -> lief.ELF.NoteAbi.ABI: ...
|
|
1434
|
-
def __ge__(self, other) -> bool: ...
|
|
1435
|
-
def __gt__(self, other) -> bool: ...
|
|
1436
|
-
def __hash__(self) -> int: ...
|
|
1437
|
-
def __index__(self) -> Any: ...
|
|
1438
|
-
def __int__(self) -> int: ...
|
|
1439
|
-
def __le__(self, other) -> bool: ...
|
|
1440
|
-
def __lt__(self, other) -> bool: ...
|
|
1441
|
-
@property
|
|
1442
|
-
def value(self) -> int: ...
|
|
1443
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1444
|
-
@property
|
|
1445
|
-
def abi(self) -> Optional[lief.ELF.NoteAbi.ABI]: ...
|
|
1446
|
-
@property
|
|
1447
|
-
def version(self) -> Optional[list[int]]: ...
|
|
1448
|
-
|
|
1449
|
-
class NoteGnuProperty(Note):
|
|
1450
|
-
class Property:
|
|
1451
|
-
class TYPE:
|
|
1452
|
-
AARCH64_FEATURES: ClassVar[NoteGnuProperty.Property.TYPE] = ...
|
|
1453
|
-
GENERIC: ClassVar[NoteGnuProperty.Property.TYPE] = ...
|
|
1454
|
-
NEEDED: ClassVar[NoteGnuProperty.Property.TYPE] = ...
|
|
1455
|
-
NO_COPY_ON_PROTECTED: ClassVar[NoteGnuProperty.Property.TYPE] = ...
|
|
1456
|
-
STACK_SIZE: ClassVar[NoteGnuProperty.Property.TYPE] = ...
|
|
1457
|
-
UNKNOWN: ClassVar[NoteGnuProperty.Property.TYPE] = ...
|
|
1458
|
-
X86_FEATURE: ClassVar[NoteGnuProperty.Property.TYPE] = ...
|
|
1459
|
-
X86_ISA: ClassVar[NoteGnuProperty.Property.TYPE] = ...
|
|
1460
|
-
__name__: str
|
|
1461
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1462
|
-
@staticmethod
|
|
1463
|
-
def from_value(arg: int, /) -> lief.ELF.NoteGnuProperty.Property.TYPE: ...
|
|
1464
|
-
def __ge__(self, other) -> bool: ...
|
|
1465
|
-
def __gt__(self, other) -> bool: ...
|
|
1466
|
-
def __hash__(self) -> int: ...
|
|
1467
|
-
def __index__(self) -> Any: ...
|
|
1468
|
-
def __int__(self) -> int: ...
|
|
1469
|
-
def __le__(self, other) -> bool: ...
|
|
1470
|
-
def __lt__(self, other) -> bool: ...
|
|
1471
|
-
@property
|
|
1472
|
-
def value(self) -> int: ...
|
|
1473
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1474
|
-
@property
|
|
1475
|
-
def type(self) -> lief.ELF.NoteGnuProperty.Property.TYPE: ...
|
|
1476
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1477
|
-
def find(self, arg: lief.ELF.NoteGnuProperty.Property.TYPE, /) -> Optional[lief.ELF.NoteGnuProperty.Property]: ...
|
|
1478
|
-
@property
|
|
1479
|
-
def properties(self) -> list[Optional[lief.ELF.NoteGnuProperty.Property]]: ...
|
|
1480
|
-
|
|
1481
|
-
class NoteNoCopyOnProtected(NoteGnuProperty.Property):
|
|
1482
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1483
|
-
|
|
1484
|
-
class PROCESSOR_FLAGS:
|
|
1485
|
-
ARM_EABI_UNKNOWN: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1486
|
-
ARM_EABI_VER1: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1487
|
-
ARM_EABI_VER2: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1488
|
-
ARM_EABI_VER3: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1489
|
-
ARM_EABI_VER4: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1490
|
-
ARM_EABI_VER5: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1491
|
-
ARM_SOFT_FLOAT: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1492
|
-
ARM_VFP_FLOAT: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1493
|
-
HEXAGON_ISA_V2: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1494
|
-
HEXAGON_ISA_V3: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1495
|
-
HEXAGON_ISA_V4: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1496
|
-
HEXAGON_ISA_V5: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1497
|
-
HEXAGON_MACH_V2: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1498
|
-
HEXAGON_MACH_V3: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1499
|
-
HEXAGON_MACH_V4: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1500
|
-
HEXAGON_MACH_V5: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1501
|
-
LOONGARCH_ABI_DOUBLE_FLOAT: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1502
|
-
LOONGARCH_ABI_SINGLE_FLOAT: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1503
|
-
LOONGARCH_ABI_SOFT_FLOAT: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1504
|
-
MIPS_32BITMODE: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1505
|
-
MIPS_ABI2: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1506
|
-
MIPS_ABI_EABI32: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1507
|
-
MIPS_ABI_EABI64: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1508
|
-
MIPS_ABI_O32: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1509
|
-
MIPS_ABI_O64: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1510
|
-
MIPS_ARCH_1: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1511
|
-
MIPS_ARCH_2: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1512
|
-
MIPS_ARCH_3: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1513
|
-
MIPS_ARCH_32: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1514
|
-
MIPS_ARCH_32R2: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1515
|
-
MIPS_ARCH_32R6: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1516
|
-
MIPS_ARCH_4: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1517
|
-
MIPS_ARCH_5: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1518
|
-
MIPS_ARCH_64: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1519
|
-
MIPS_ARCH_64R2: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1520
|
-
MIPS_ARCH_64R6: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1521
|
-
MIPS_ARCH_ASE_M16: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1522
|
-
MIPS_ARCH_ASE_MDMX: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1523
|
-
MIPS_CPIC: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1524
|
-
MIPS_FP64: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1525
|
-
MIPS_MACH_3900: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1526
|
-
MIPS_MACH_4010: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1527
|
-
MIPS_MACH_4100: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1528
|
-
MIPS_MACH_4111: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1529
|
-
MIPS_MACH_4120: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1530
|
-
MIPS_MACH_4650: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1531
|
-
MIPS_MACH_5400: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1532
|
-
MIPS_MACH_5500: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1533
|
-
MIPS_MACH_5900: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1534
|
-
MIPS_MACH_9000: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1535
|
-
MIPS_MACH_LS2E: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1536
|
-
MIPS_MACH_LS2F: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1537
|
-
MIPS_MACH_LS3A: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1538
|
-
MIPS_MACH_OCTEON: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1539
|
-
MIPS_MACH_OCTEON2: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1540
|
-
MIPS_MACH_OCTEON3: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1541
|
-
MIPS_MACH_SB1: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1542
|
-
MIPS_MACH_XLR: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1543
|
-
MIPS_MICROMIPS: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1544
|
-
MIPS_NAN2008: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1545
|
-
MIPS_NOREORDER: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1546
|
-
MIPS_PIC: ClassVar[PROCESSOR_FLAGS] = ...
|
|
1547
|
-
__name__: str
|
|
1548
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1549
|
-
@staticmethod
|
|
1550
|
-
def from_value(arg: int, /) -> lief.ELF.PROCESSOR_FLAGS: ...
|
|
1551
|
-
def __ge__(self, other) -> bool: ...
|
|
1552
|
-
def __gt__(self, other) -> bool: ...
|
|
1553
|
-
def __hash__(self) -> int: ...
|
|
1554
|
-
def __index__(self) -> Any: ...
|
|
1555
|
-
def __int__(self) -> int: ...
|
|
1556
|
-
def __le__(self, other) -> bool: ...
|
|
1557
|
-
def __lt__(self, other) -> bool: ...
|
|
1558
|
-
@property
|
|
1559
|
-
def value(self) -> int: ...
|
|
1560
|
-
|
|
1561
|
-
class ParserConfig:
|
|
1562
|
-
class DYNSYM_COUNT:
|
|
1563
|
-
AUTO: ClassVar[ParserConfig.DYNSYM_COUNT] = ...
|
|
1564
|
-
HASH: ClassVar[ParserConfig.DYNSYM_COUNT] = ...
|
|
1565
|
-
RELOCATIONS: ClassVar[ParserConfig.DYNSYM_COUNT] = ...
|
|
1566
|
-
SECTION: ClassVar[ParserConfig.DYNSYM_COUNT] = ...
|
|
1567
|
-
__name__: str
|
|
1568
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1569
|
-
@staticmethod
|
|
1570
|
-
def from_value(arg: int, /) -> lief.ELF.ParserConfig.DYNSYM_COUNT: ...
|
|
1571
|
-
def __ge__(self, other) -> bool: ...
|
|
1572
|
-
def __gt__(self, other) -> bool: ...
|
|
1573
|
-
def __hash__(self) -> int: ...
|
|
1574
|
-
def __index__(self) -> Any: ...
|
|
1575
|
-
def __int__(self) -> int: ...
|
|
1576
|
-
def __le__(self, other) -> bool: ...
|
|
1577
|
-
def __lt__(self, other) -> bool: ...
|
|
1578
|
-
@property
|
|
1579
|
-
def value(self) -> int: ...
|
|
1580
|
-
count_mtd: lief.ELF.ParserConfig.DYNSYM_COUNT
|
|
1581
|
-
parse_dyn_symbols: bool
|
|
1582
|
-
parse_notes: bool
|
|
1583
|
-
parse_overlay: bool
|
|
1584
|
-
parse_relocations: bool
|
|
1585
|
-
parse_symbol_versions: bool
|
|
1586
|
-
parse_symtab_symbols: bool
|
|
1587
|
-
def __init__(self) -> None: ...
|
|
1588
|
-
@property
|
|
1589
|
-
def all(self) -> lief.ELF.ParserConfig: ...
|
|
1590
|
-
|
|
1591
|
-
class QNXStack(Note):
|
|
1592
|
-
is_executable: bool
|
|
1593
|
-
stack_allocated: int
|
|
1594
|
-
stack_size: int
|
|
1595
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1596
|
-
|
|
1597
|
-
class Relocation(lief.Relocation):
|
|
1598
|
-
class ENCODING:
|
|
1599
|
-
ANDROID_SLEB: ClassVar[Relocation.ENCODING] = ...
|
|
1600
|
-
REL: ClassVar[Relocation.ENCODING] = ...
|
|
1601
|
-
RELA: ClassVar[Relocation.ENCODING] = ...
|
|
1602
|
-
RELR: ClassVar[Relocation.ENCODING] = ...
|
|
1603
|
-
UNKNOWN: ClassVar[Relocation.ENCODING] = ...
|
|
1604
|
-
__name__: str
|
|
1605
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1606
|
-
@staticmethod
|
|
1607
|
-
def from_value(arg: int, /) -> lief.ELF.Relocation.ENCODING: ...
|
|
1608
|
-
def __ge__(self, other) -> bool: ...
|
|
1609
|
-
def __gt__(self, other) -> bool: ...
|
|
1610
|
-
def __hash__(self) -> int: ...
|
|
1611
|
-
def __index__(self) -> Any: ...
|
|
1612
|
-
def __int__(self) -> int: ...
|
|
1613
|
-
def __le__(self, other) -> bool: ...
|
|
1614
|
-
def __lt__(self, other) -> bool: ...
|
|
1615
|
-
@property
|
|
1616
|
-
def value(self) -> int: ...
|
|
1617
|
-
|
|
1618
|
-
class PURPOSE:
|
|
1619
|
-
DYNAMIC: ClassVar[Relocation.PURPOSE] = ...
|
|
1620
|
-
NONE: ClassVar[Relocation.PURPOSE] = ...
|
|
1621
|
-
OBJECT: ClassVar[Relocation.PURPOSE] = ...
|
|
1622
|
-
PLTGOT: ClassVar[Relocation.PURPOSE] = ...
|
|
1623
|
-
__name__: str
|
|
1624
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
1625
|
-
@staticmethod
|
|
1626
|
-
def from_value(arg: int, /) -> lief.ELF.Relocation.PURPOSE: ...
|
|
1627
|
-
def __ge__(self, other) -> bool: ...
|
|
1628
|
-
def __gt__(self, other) -> bool: ...
|
|
1629
|
-
def __hash__(self) -> int: ...
|
|
1630
|
-
def __index__(self) -> Any: ...
|
|
1631
|
-
def __int__(self) -> int: ...
|
|
1632
|
-
def __le__(self, other) -> bool: ...
|
|
1633
|
-
def __lt__(self, other) -> bool: ...
|
|
1634
|
-
@property
|
|
1635
|
-
def value(self) -> int: ...
|
|
1636
|
-
|
|
1637
|
-
class TYPE:
|
|
1638
|
-
AARCH64_ABS16: ClassVar[Relocation.TYPE] = ...
|
|
1639
|
-
AARCH64_ABS32: ClassVar[Relocation.TYPE] = ...
|
|
1640
|
-
AARCH64_ABS64: ClassVar[Relocation.TYPE] = ...
|
|
1641
|
-
AARCH64_ADD_ABS_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1642
|
-
AARCH64_ADR_GOT_PAGE: ClassVar[Relocation.TYPE] = ...
|
|
1643
|
-
AARCH64_ADR_PREL_LO21: ClassVar[Relocation.TYPE] = ...
|
|
1644
|
-
AARCH64_ADR_PREL_PG_HI21: ClassVar[Relocation.TYPE] = ...
|
|
1645
|
-
AARCH64_ADR_PREL_PG_HI21_NC: ClassVar[Relocation.TYPE] = ...
|
|
1646
|
-
AARCH64_CALL26: ClassVar[Relocation.TYPE] = ...
|
|
1647
|
-
AARCH64_CONDBR19: ClassVar[Relocation.TYPE] = ...
|
|
1648
|
-
AARCH64_COPY: ClassVar[Relocation.TYPE] = ...
|
|
1649
|
-
AARCH64_GLOB_DAT: ClassVar[Relocation.TYPE] = ...
|
|
1650
|
-
AARCH64_GOTREL32: ClassVar[Relocation.TYPE] = ...
|
|
1651
|
-
AARCH64_GOTREL64: ClassVar[Relocation.TYPE] = ...
|
|
1652
|
-
AARCH64_GOT_LD_PREL19: ClassVar[Relocation.TYPE] = ...
|
|
1653
|
-
AARCH64_IRELATIVE: ClassVar[Relocation.TYPE] = ...
|
|
1654
|
-
AARCH64_JUMP26: ClassVar[Relocation.TYPE] = ...
|
|
1655
|
-
AARCH64_JUMP_SLOT: ClassVar[Relocation.TYPE] = ...
|
|
1656
|
-
AARCH64_LD64_GOTOFF_LO15: ClassVar[Relocation.TYPE] = ...
|
|
1657
|
-
AARCH64_LD64_GOTPAGE_LO15: ClassVar[Relocation.TYPE] = ...
|
|
1658
|
-
AARCH64_LD64_GOT_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1659
|
-
AARCH64_LDST128_ABS_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1660
|
-
AARCH64_LDST16_ABS_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1661
|
-
AARCH64_LDST32_ABS_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1662
|
-
AARCH64_LDST64_ABS_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1663
|
-
AARCH64_LDST8_ABS_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1664
|
-
AARCH64_LD_PREL_LO19: ClassVar[Relocation.TYPE] = ...
|
|
1665
|
-
AARCH64_MOVW_GOTOFF_G0: ClassVar[Relocation.TYPE] = ...
|
|
1666
|
-
AARCH64_MOVW_GOTOFF_G0_NC: ClassVar[Relocation.TYPE] = ...
|
|
1667
|
-
AARCH64_MOVW_GOTOFF_G1: ClassVar[Relocation.TYPE] = ...
|
|
1668
|
-
AARCH64_MOVW_GOTOFF_G1_NC: ClassVar[Relocation.TYPE] = ...
|
|
1669
|
-
AARCH64_MOVW_GOTOFF_G2: ClassVar[Relocation.TYPE] = ...
|
|
1670
|
-
AARCH64_MOVW_GOTOFF_G2_NC: ClassVar[Relocation.TYPE] = ...
|
|
1671
|
-
AARCH64_MOVW_GOTOFF_G3: ClassVar[Relocation.TYPE] = ...
|
|
1672
|
-
AARCH64_MOVW_PREL_G0: ClassVar[Relocation.TYPE] = ...
|
|
1673
|
-
AARCH64_MOVW_PREL_G0_NC: ClassVar[Relocation.TYPE] = ...
|
|
1674
|
-
AARCH64_MOVW_PREL_G1: ClassVar[Relocation.TYPE] = ...
|
|
1675
|
-
AARCH64_MOVW_PREL_G1_NC: ClassVar[Relocation.TYPE] = ...
|
|
1676
|
-
AARCH64_MOVW_PREL_G2: ClassVar[Relocation.TYPE] = ...
|
|
1677
|
-
AARCH64_MOVW_PREL_G2_NC: ClassVar[Relocation.TYPE] = ...
|
|
1678
|
-
AARCH64_MOVW_PREL_G3: ClassVar[Relocation.TYPE] = ...
|
|
1679
|
-
AARCH64_MOVW_SABS_G0: ClassVar[Relocation.TYPE] = ...
|
|
1680
|
-
AARCH64_MOVW_SABS_G1: ClassVar[Relocation.TYPE] = ...
|
|
1681
|
-
AARCH64_MOVW_SABS_G2: ClassVar[Relocation.TYPE] = ...
|
|
1682
|
-
AARCH64_MOVW_UABS_G0: ClassVar[Relocation.TYPE] = ...
|
|
1683
|
-
AARCH64_MOVW_UABS_G0_NC: ClassVar[Relocation.TYPE] = ...
|
|
1684
|
-
AARCH64_MOVW_UABS_G1: ClassVar[Relocation.TYPE] = ...
|
|
1685
|
-
AARCH64_MOVW_UABS_G1_NC: ClassVar[Relocation.TYPE] = ...
|
|
1686
|
-
AARCH64_MOVW_UABS_G2: ClassVar[Relocation.TYPE] = ...
|
|
1687
|
-
AARCH64_MOVW_UABS_G2_NC: ClassVar[Relocation.TYPE] = ...
|
|
1688
|
-
AARCH64_MOVW_UABS_G3: ClassVar[Relocation.TYPE] = ...
|
|
1689
|
-
AARCH64_NONE: ClassVar[Relocation.TYPE] = ...
|
|
1690
|
-
AARCH64_PREL16: ClassVar[Relocation.TYPE] = ...
|
|
1691
|
-
AARCH64_PREL32: ClassVar[Relocation.TYPE] = ...
|
|
1692
|
-
AARCH64_PREL64: ClassVar[Relocation.TYPE] = ...
|
|
1693
|
-
AARCH64_RELATIVE: ClassVar[Relocation.TYPE] = ...
|
|
1694
|
-
AARCH64_TLSDESC: ClassVar[Relocation.TYPE] = ...
|
|
1695
|
-
AARCH64_TLSDESC_ADD: ClassVar[Relocation.TYPE] = ...
|
|
1696
|
-
AARCH64_TLSDESC_ADD_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1697
|
-
AARCH64_TLSDESC_ADR_PAGE21: ClassVar[Relocation.TYPE] = ...
|
|
1698
|
-
AARCH64_TLSDESC_ADR_PREL21: ClassVar[Relocation.TYPE] = ...
|
|
1699
|
-
AARCH64_TLSDESC_CALL: ClassVar[Relocation.TYPE] = ...
|
|
1700
|
-
AARCH64_TLSDESC_LD64_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1701
|
-
AARCH64_TLSDESC_LDR: ClassVar[Relocation.TYPE] = ...
|
|
1702
|
-
AARCH64_TLSDESC_LD_PREL19: ClassVar[Relocation.TYPE] = ...
|
|
1703
|
-
AARCH64_TLSDESC_OFF_G0_NC: ClassVar[Relocation.TYPE] = ...
|
|
1704
|
-
AARCH64_TLSDESC_OFF_G1: ClassVar[Relocation.TYPE] = ...
|
|
1705
|
-
AARCH64_TLSGD_ADD_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1706
|
-
AARCH64_TLSGD_ADR_PAGE21: ClassVar[Relocation.TYPE] = ...
|
|
1707
|
-
AARCH64_TLSGD_ADR_PREL21: ClassVar[Relocation.TYPE] = ...
|
|
1708
|
-
AARCH64_TLSGD_MOVW_G0_NC: ClassVar[Relocation.TYPE] = ...
|
|
1709
|
-
AARCH64_TLSGD_MOVW_G1: ClassVar[Relocation.TYPE] = ...
|
|
1710
|
-
AARCH64_TLSIE_ADR_GOTTPREL_PAGE21: ClassVar[Relocation.TYPE] = ...
|
|
1711
|
-
AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1712
|
-
AARCH64_TLSIE_LD_GOTTPREL_PREL19: ClassVar[Relocation.TYPE] = ...
|
|
1713
|
-
AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC: ClassVar[Relocation.TYPE] = ...
|
|
1714
|
-
AARCH64_TLSIE_MOVW_GOTTPREL_G1: ClassVar[Relocation.TYPE] = ...
|
|
1715
|
-
AARCH64_TLSLD_ADD_DTPREL_HI12: ClassVar[Relocation.TYPE] = ...
|
|
1716
|
-
AARCH64_TLSLD_ADD_DTPREL_LO12: ClassVar[Relocation.TYPE] = ...
|
|
1717
|
-
AARCH64_TLSLD_ADD_DTPREL_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1718
|
-
AARCH64_TLSLD_ADD_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1719
|
-
AARCH64_TLSLD_ADR_PAGE21: ClassVar[Relocation.TYPE] = ...
|
|
1720
|
-
AARCH64_TLSLD_ADR_PREL21: ClassVar[Relocation.TYPE] = ...
|
|
1721
|
-
AARCH64_TLSLD_LDST128_DTPREL_LO12: ClassVar[Relocation.TYPE] = ...
|
|
1722
|
-
AARCH64_TLSLD_LDST128_DTPREL_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1723
|
-
AARCH64_TLSLD_LDST16_DTPREL_LO12: ClassVar[Relocation.TYPE] = ...
|
|
1724
|
-
AARCH64_TLSLD_LDST16_DTPREL_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1725
|
-
AARCH64_TLSLD_LDST32_DTPREL_LO12: ClassVar[Relocation.TYPE] = ...
|
|
1726
|
-
AARCH64_TLSLD_LDST32_DTPREL_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1727
|
-
AARCH64_TLSLD_LDST64_DTPREL_LO12: ClassVar[Relocation.TYPE] = ...
|
|
1728
|
-
AARCH64_TLSLD_LDST64_DTPREL_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1729
|
-
AARCH64_TLSLD_LDST8_DTPREL_LO12: ClassVar[Relocation.TYPE] = ...
|
|
1730
|
-
AARCH64_TLSLD_LDST8_DTPREL_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1731
|
-
AARCH64_TLSLD_LD_PREL19: ClassVar[Relocation.TYPE] = ...
|
|
1732
|
-
AARCH64_TLSLD_MOVW_DTPREL_G0: ClassVar[Relocation.TYPE] = ...
|
|
1733
|
-
AARCH64_TLSLD_MOVW_DTPREL_G0_NC: ClassVar[Relocation.TYPE] = ...
|
|
1734
|
-
AARCH64_TLSLD_MOVW_DTPREL_G1: ClassVar[Relocation.TYPE] = ...
|
|
1735
|
-
AARCH64_TLSLD_MOVW_DTPREL_G1_NC: ClassVar[Relocation.TYPE] = ...
|
|
1736
|
-
AARCH64_TLSLD_MOVW_DTPREL_G2: ClassVar[Relocation.TYPE] = ...
|
|
1737
|
-
AARCH64_TLSLD_MOVW_G0_NC: ClassVar[Relocation.TYPE] = ...
|
|
1738
|
-
AARCH64_TLSLD_MOVW_G1: ClassVar[Relocation.TYPE] = ...
|
|
1739
|
-
AARCH64_TLSLE_ADD_TPREL_HI12: ClassVar[Relocation.TYPE] = ...
|
|
1740
|
-
AARCH64_TLSLE_ADD_TPREL_LO12: ClassVar[Relocation.TYPE] = ...
|
|
1741
|
-
AARCH64_TLSLE_ADD_TPREL_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1742
|
-
AARCH64_TLSLE_LDST128_TPREL_LO12: ClassVar[Relocation.TYPE] = ...
|
|
1743
|
-
AARCH64_TLSLE_LDST128_TPREL_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1744
|
-
AARCH64_TLSLE_LDST16_TPREL_LO12: ClassVar[Relocation.TYPE] = ...
|
|
1745
|
-
AARCH64_TLSLE_LDST16_TPREL_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1746
|
-
AARCH64_TLSLE_LDST32_TPREL_LO12: ClassVar[Relocation.TYPE] = ...
|
|
1747
|
-
AARCH64_TLSLE_LDST32_TPREL_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1748
|
-
AARCH64_TLSLE_LDST64_TPREL_LO12: ClassVar[Relocation.TYPE] = ...
|
|
1749
|
-
AARCH64_TLSLE_LDST64_TPREL_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1750
|
-
AARCH64_TLSLE_LDST8_TPREL_LO12: ClassVar[Relocation.TYPE] = ...
|
|
1751
|
-
AARCH64_TLSLE_LDST8_TPREL_LO12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1752
|
-
AARCH64_TLSLE_MOVW_TPREL_G0: ClassVar[Relocation.TYPE] = ...
|
|
1753
|
-
AARCH64_TLSLE_MOVW_TPREL_G0_NC: ClassVar[Relocation.TYPE] = ...
|
|
1754
|
-
AARCH64_TLSLE_MOVW_TPREL_G1: ClassVar[Relocation.TYPE] = ...
|
|
1755
|
-
AARCH64_TLSLE_MOVW_TPREL_G1_NC: ClassVar[Relocation.TYPE] = ...
|
|
1756
|
-
AARCH64_TLSLE_MOVW_TPREL_G2: ClassVar[Relocation.TYPE] = ...
|
|
1757
|
-
AARCH64_TLS_DTPMOD64: ClassVar[Relocation.TYPE] = ...
|
|
1758
|
-
AARCH64_TLS_DTPREL64: ClassVar[Relocation.TYPE] = ...
|
|
1759
|
-
AARCH64_TLS_TPREL64: ClassVar[Relocation.TYPE] = ...
|
|
1760
|
-
AARCH64_TSTBR14: ClassVar[Relocation.TYPE] = ...
|
|
1761
|
-
ARM_ABS12: ClassVar[Relocation.TYPE] = ...
|
|
1762
|
-
ARM_ABS16: ClassVar[Relocation.TYPE] = ...
|
|
1763
|
-
ARM_ABS32: ClassVar[Relocation.TYPE] = ...
|
|
1764
|
-
ARM_ABS32_NOI: ClassVar[Relocation.TYPE] = ...
|
|
1765
|
-
ARM_ABS8: ClassVar[Relocation.TYPE] = ...
|
|
1766
|
-
ARM_ALU_PCREL_15_8: ClassVar[Relocation.TYPE] = ...
|
|
1767
|
-
ARM_ALU_PCREL_23_15: ClassVar[Relocation.TYPE] = ...
|
|
1768
|
-
ARM_ALU_PCREL_7_0: ClassVar[Relocation.TYPE] = ...
|
|
1769
|
-
ARM_ALU_PC_G0: ClassVar[Relocation.TYPE] = ...
|
|
1770
|
-
ARM_ALU_PC_G0_NC: ClassVar[Relocation.TYPE] = ...
|
|
1771
|
-
ARM_ALU_PC_G1: ClassVar[Relocation.TYPE] = ...
|
|
1772
|
-
ARM_ALU_PC_G1_NC: ClassVar[Relocation.TYPE] = ...
|
|
1773
|
-
ARM_ALU_PC_G2: ClassVar[Relocation.TYPE] = ...
|
|
1774
|
-
ARM_ALU_SBREL_19_12_NC: ClassVar[Relocation.TYPE] = ...
|
|
1775
|
-
ARM_ALU_SBREL_27_20_CK: ClassVar[Relocation.TYPE] = ...
|
|
1776
|
-
ARM_ALU_SB_G0: ClassVar[Relocation.TYPE] = ...
|
|
1777
|
-
ARM_ALU_SB_G0_NC: ClassVar[Relocation.TYPE] = ...
|
|
1778
|
-
ARM_ALU_SB_G1: ClassVar[Relocation.TYPE] = ...
|
|
1779
|
-
ARM_ALU_SB_G1_NC: ClassVar[Relocation.TYPE] = ...
|
|
1780
|
-
ARM_ALU_SB_G2: ClassVar[Relocation.TYPE] = ...
|
|
1781
|
-
ARM_BASE_ABS: ClassVar[Relocation.TYPE] = ...
|
|
1782
|
-
ARM_BASE_PREL: ClassVar[Relocation.TYPE] = ...
|
|
1783
|
-
ARM_BREL_ADJ: ClassVar[Relocation.TYPE] = ...
|
|
1784
|
-
ARM_CALL: ClassVar[Relocation.TYPE] = ...
|
|
1785
|
-
ARM_COPY: ClassVar[Relocation.TYPE] = ...
|
|
1786
|
-
ARM_GLOB_DAT: ClassVar[Relocation.TYPE] = ...
|
|
1787
|
-
ARM_GNU_VTENTRY: ClassVar[Relocation.TYPE] = ...
|
|
1788
|
-
ARM_GNU_VTINHERIT: ClassVar[Relocation.TYPE] = ...
|
|
1789
|
-
ARM_GOTOFF12: ClassVar[Relocation.TYPE] = ...
|
|
1790
|
-
ARM_GOTOFF32: ClassVar[Relocation.TYPE] = ...
|
|
1791
|
-
ARM_GOTRELAX: ClassVar[Relocation.TYPE] = ...
|
|
1792
|
-
ARM_GOT_ABS: ClassVar[Relocation.TYPE] = ...
|
|
1793
|
-
ARM_GOT_BREL: ClassVar[Relocation.TYPE] = ...
|
|
1794
|
-
ARM_GOT_BREL12: ClassVar[Relocation.TYPE] = ...
|
|
1795
|
-
ARM_GOT_PREL: ClassVar[Relocation.TYPE] = ...
|
|
1796
|
-
ARM_IRELATIVE: ClassVar[Relocation.TYPE] = ...
|
|
1797
|
-
ARM_JUMP24: ClassVar[Relocation.TYPE] = ...
|
|
1798
|
-
ARM_JUMP_SLOT: ClassVar[Relocation.TYPE] = ...
|
|
1799
|
-
ARM_LDC_PC_G0: ClassVar[Relocation.TYPE] = ...
|
|
1800
|
-
ARM_LDC_PC_G1: ClassVar[Relocation.TYPE] = ...
|
|
1801
|
-
ARM_LDC_PC_G2: ClassVar[Relocation.TYPE] = ...
|
|
1802
|
-
ARM_LDC_SB_G0: ClassVar[Relocation.TYPE] = ...
|
|
1803
|
-
ARM_LDC_SB_G1: ClassVar[Relocation.TYPE] = ...
|
|
1804
|
-
ARM_LDC_SB_G2: ClassVar[Relocation.TYPE] = ...
|
|
1805
|
-
ARM_LDRS_PC_G0: ClassVar[Relocation.TYPE] = ...
|
|
1806
|
-
ARM_LDRS_PC_G1: ClassVar[Relocation.TYPE] = ...
|
|
1807
|
-
ARM_LDRS_PC_G2: ClassVar[Relocation.TYPE] = ...
|
|
1808
|
-
ARM_LDRS_SB_G0: ClassVar[Relocation.TYPE] = ...
|
|
1809
|
-
ARM_LDRS_SB_G1: ClassVar[Relocation.TYPE] = ...
|
|
1810
|
-
ARM_LDRS_SB_G2: ClassVar[Relocation.TYPE] = ...
|
|
1811
|
-
ARM_LDR_PC_G0: ClassVar[Relocation.TYPE] = ...
|
|
1812
|
-
ARM_LDR_PC_G1: ClassVar[Relocation.TYPE] = ...
|
|
1813
|
-
ARM_LDR_PC_G2: ClassVar[Relocation.TYPE] = ...
|
|
1814
|
-
ARM_LDR_SBREL_11_0_NC: ClassVar[Relocation.TYPE] = ...
|
|
1815
|
-
ARM_LDR_SB_G0: ClassVar[Relocation.TYPE] = ...
|
|
1816
|
-
ARM_LDR_SB_G1: ClassVar[Relocation.TYPE] = ...
|
|
1817
|
-
ARM_LDR_SB_G2: ClassVar[Relocation.TYPE] = ...
|
|
1818
|
-
ARM_ME_TOO: ClassVar[Relocation.TYPE] = ...
|
|
1819
|
-
ARM_MOVT_ABS: ClassVar[Relocation.TYPE] = ...
|
|
1820
|
-
ARM_MOVT_BREL: ClassVar[Relocation.TYPE] = ...
|
|
1821
|
-
ARM_MOVT_PREL: ClassVar[Relocation.TYPE] = ...
|
|
1822
|
-
ARM_MOVW_ABS_NC: ClassVar[Relocation.TYPE] = ...
|
|
1823
|
-
ARM_MOVW_BREL: ClassVar[Relocation.TYPE] = ...
|
|
1824
|
-
ARM_MOVW_BREL_NC: ClassVar[Relocation.TYPE] = ...
|
|
1825
|
-
ARM_MOVW_PREL_NC: ClassVar[Relocation.TYPE] = ...
|
|
1826
|
-
ARM_NONE: ClassVar[Relocation.TYPE] = ...
|
|
1827
|
-
ARM_PC24: ClassVar[Relocation.TYPE] = ...
|
|
1828
|
-
ARM_PLT32: ClassVar[Relocation.TYPE] = ...
|
|
1829
|
-
ARM_PLT32_ABS: ClassVar[Relocation.TYPE] = ...
|
|
1830
|
-
ARM_PREL31: ClassVar[Relocation.TYPE] = ...
|
|
1831
|
-
ARM_PRIVATE_0: ClassVar[Relocation.TYPE] = ...
|
|
1832
|
-
ARM_PRIVATE_1: ClassVar[Relocation.TYPE] = ...
|
|
1833
|
-
ARM_PRIVATE_10: ClassVar[Relocation.TYPE] = ...
|
|
1834
|
-
ARM_PRIVATE_11: ClassVar[Relocation.TYPE] = ...
|
|
1835
|
-
ARM_PRIVATE_12: ClassVar[Relocation.TYPE] = ...
|
|
1836
|
-
ARM_PRIVATE_13: ClassVar[Relocation.TYPE] = ...
|
|
1837
|
-
ARM_PRIVATE_14: ClassVar[Relocation.TYPE] = ...
|
|
1838
|
-
ARM_PRIVATE_15: ClassVar[Relocation.TYPE] = ...
|
|
1839
|
-
ARM_PRIVATE_2: ClassVar[Relocation.TYPE] = ...
|
|
1840
|
-
ARM_PRIVATE_3: ClassVar[Relocation.TYPE] = ...
|
|
1841
|
-
ARM_PRIVATE_4: ClassVar[Relocation.TYPE] = ...
|
|
1842
|
-
ARM_PRIVATE_5: ClassVar[Relocation.TYPE] = ...
|
|
1843
|
-
ARM_PRIVATE_6: ClassVar[Relocation.TYPE] = ...
|
|
1844
|
-
ARM_PRIVATE_7: ClassVar[Relocation.TYPE] = ...
|
|
1845
|
-
ARM_PRIVATE_8: ClassVar[Relocation.TYPE] = ...
|
|
1846
|
-
ARM_PRIVATE_9: ClassVar[Relocation.TYPE] = ...
|
|
1847
|
-
ARM_RBASE: ClassVar[Relocation.TYPE] = ...
|
|
1848
|
-
ARM_REL32: ClassVar[Relocation.TYPE] = ...
|
|
1849
|
-
ARM_REL32_NOI: ClassVar[Relocation.TYPE] = ...
|
|
1850
|
-
ARM_RELATIVE: ClassVar[Relocation.TYPE] = ...
|
|
1851
|
-
ARM_RPC24: ClassVar[Relocation.TYPE] = ...
|
|
1852
|
-
ARM_RREL32: ClassVar[Relocation.TYPE] = ...
|
|
1853
|
-
ARM_RSBREL32: ClassVar[Relocation.TYPE] = ...
|
|
1854
|
-
ARM_RXPC25: ClassVar[Relocation.TYPE] = ...
|
|
1855
|
-
ARM_SBREL31: ClassVar[Relocation.TYPE] = ...
|
|
1856
|
-
ARM_SBREL32: ClassVar[Relocation.TYPE] = ...
|
|
1857
|
-
ARM_TARGET1: ClassVar[Relocation.TYPE] = ...
|
|
1858
|
-
ARM_TARGET2: ClassVar[Relocation.TYPE] = ...
|
|
1859
|
-
ARM_THM_ABS5: ClassVar[Relocation.TYPE] = ...
|
|
1860
|
-
ARM_THM_ALU_PREL_11_0: ClassVar[Relocation.TYPE] = ...
|
|
1861
|
-
ARM_THM_CALL: ClassVar[Relocation.TYPE] = ...
|
|
1862
|
-
ARM_THM_JUMP11: ClassVar[Relocation.TYPE] = ...
|
|
1863
|
-
ARM_THM_JUMP19: ClassVar[Relocation.TYPE] = ...
|
|
1864
|
-
ARM_THM_JUMP24: ClassVar[Relocation.TYPE] = ...
|
|
1865
|
-
ARM_THM_JUMP6: ClassVar[Relocation.TYPE] = ...
|
|
1866
|
-
ARM_THM_JUMP8: ClassVar[Relocation.TYPE] = ...
|
|
1867
|
-
ARM_THM_MOVT_ABS: ClassVar[Relocation.TYPE] = ...
|
|
1868
|
-
ARM_THM_MOVT_BREL: ClassVar[Relocation.TYPE] = ...
|
|
1869
|
-
ARM_THM_MOVT_PREL: ClassVar[Relocation.TYPE] = ...
|
|
1870
|
-
ARM_THM_MOVW_ABS_NC: ClassVar[Relocation.TYPE] = ...
|
|
1871
|
-
ARM_THM_MOVW_BREL: ClassVar[Relocation.TYPE] = ...
|
|
1872
|
-
ARM_THM_MOVW_BREL_NC: ClassVar[Relocation.TYPE] = ...
|
|
1873
|
-
ARM_THM_MOVW_PREL_NC: ClassVar[Relocation.TYPE] = ...
|
|
1874
|
-
ARM_THM_PC12: ClassVar[Relocation.TYPE] = ...
|
|
1875
|
-
ARM_THM_PC8: ClassVar[Relocation.TYPE] = ...
|
|
1876
|
-
ARM_THM_RPC22: ClassVar[Relocation.TYPE] = ...
|
|
1877
|
-
ARM_THM_SWI8: ClassVar[Relocation.TYPE] = ...
|
|
1878
|
-
ARM_THM_TLS_CALL: ClassVar[Relocation.TYPE] = ...
|
|
1879
|
-
ARM_THM_TLS_DESCSEQ16: ClassVar[Relocation.TYPE] = ...
|
|
1880
|
-
ARM_THM_TLS_DESCSEQ32: ClassVar[Relocation.TYPE] = ...
|
|
1881
|
-
ARM_THM_XPC22: ClassVar[Relocation.TYPE] = ...
|
|
1882
|
-
ARM_TLS_CALL: ClassVar[Relocation.TYPE] = ...
|
|
1883
|
-
ARM_TLS_DESC: ClassVar[Relocation.TYPE] = ...
|
|
1884
|
-
ARM_TLS_DESCSEQ: ClassVar[Relocation.TYPE] = ...
|
|
1885
|
-
ARM_TLS_DTPMOD32: ClassVar[Relocation.TYPE] = ...
|
|
1886
|
-
ARM_TLS_DTPOFF32: ClassVar[Relocation.TYPE] = ...
|
|
1887
|
-
ARM_TLS_GD32: ClassVar[Relocation.TYPE] = ...
|
|
1888
|
-
ARM_TLS_GOTDESC: ClassVar[Relocation.TYPE] = ...
|
|
1889
|
-
ARM_TLS_IE12GP: ClassVar[Relocation.TYPE] = ...
|
|
1890
|
-
ARM_TLS_IE32: ClassVar[Relocation.TYPE] = ...
|
|
1891
|
-
ARM_TLS_LDM32: ClassVar[Relocation.TYPE] = ...
|
|
1892
|
-
ARM_TLS_LDO12: ClassVar[Relocation.TYPE] = ...
|
|
1893
|
-
ARM_TLS_LDO32: ClassVar[Relocation.TYPE] = ...
|
|
1894
|
-
ARM_TLS_LE12: ClassVar[Relocation.TYPE] = ...
|
|
1895
|
-
ARM_TLS_LE32: ClassVar[Relocation.TYPE] = ...
|
|
1896
|
-
ARM_TLS_TPOFF32: ClassVar[Relocation.TYPE] = ...
|
|
1897
|
-
ARM_V4BX: ClassVar[Relocation.TYPE] = ...
|
|
1898
|
-
ARM_XPC25: ClassVar[Relocation.TYPE] = ...
|
|
1899
|
-
HEX_10_X: ClassVar[Relocation.TYPE] = ...
|
|
1900
|
-
HEX_11_X: ClassVar[Relocation.TYPE] = ...
|
|
1901
|
-
HEX_12_X: ClassVar[Relocation.TYPE] = ...
|
|
1902
|
-
HEX_16: ClassVar[Relocation.TYPE] = ...
|
|
1903
|
-
HEX_16_X: ClassVar[Relocation.TYPE] = ...
|
|
1904
|
-
HEX_32: ClassVar[Relocation.TYPE] = ...
|
|
1905
|
-
HEX_32_6_X: ClassVar[Relocation.TYPE] = ...
|
|
1906
|
-
HEX_32_PCREL: ClassVar[Relocation.TYPE] = ...
|
|
1907
|
-
HEX_6_PCREL_X: ClassVar[Relocation.TYPE] = ...
|
|
1908
|
-
HEX_6_X: ClassVar[Relocation.TYPE] = ...
|
|
1909
|
-
HEX_7_X: ClassVar[Relocation.TYPE] = ...
|
|
1910
|
-
HEX_8: ClassVar[Relocation.TYPE] = ...
|
|
1911
|
-
HEX_8_X: ClassVar[Relocation.TYPE] = ...
|
|
1912
|
-
HEX_9_X: ClassVar[Relocation.TYPE] = ...
|
|
1913
|
-
HEX_B13_PCREL: ClassVar[Relocation.TYPE] = ...
|
|
1914
|
-
HEX_B13_PCREL_X: ClassVar[Relocation.TYPE] = ...
|
|
1915
|
-
HEX_B15_PCREL: ClassVar[Relocation.TYPE] = ...
|
|
1916
|
-
HEX_B15_PCREL_X: ClassVar[Relocation.TYPE] = ...
|
|
1917
|
-
HEX_B22_PCREL: ClassVar[Relocation.TYPE] = ...
|
|
1918
|
-
HEX_B22_PCREL_X: ClassVar[Relocation.TYPE] = ...
|
|
1919
|
-
HEX_B32_PCREL_X: ClassVar[Relocation.TYPE] = ...
|
|
1920
|
-
HEX_B7_PCREL: ClassVar[Relocation.TYPE] = ...
|
|
1921
|
-
HEX_B7_PCREL_X: ClassVar[Relocation.TYPE] = ...
|
|
1922
|
-
HEX_B9_PCREL: ClassVar[Relocation.TYPE] = ...
|
|
1923
|
-
HEX_B9_PCREL_X: ClassVar[Relocation.TYPE] = ...
|
|
1924
|
-
HEX_COPY: ClassVar[Relocation.TYPE] = ...
|
|
1925
|
-
HEX_DTPMOD_32: ClassVar[Relocation.TYPE] = ...
|
|
1926
|
-
HEX_DTPREL_11_X: ClassVar[Relocation.TYPE] = ...
|
|
1927
|
-
HEX_DTPREL_16: ClassVar[Relocation.TYPE] = ...
|
|
1928
|
-
HEX_DTPREL_16_X: ClassVar[Relocation.TYPE] = ...
|
|
1929
|
-
HEX_DTPREL_32: ClassVar[Relocation.TYPE] = ...
|
|
1930
|
-
HEX_DTPREL_32_6_X: ClassVar[Relocation.TYPE] = ...
|
|
1931
|
-
HEX_DTPREL_HI16: ClassVar[Relocation.TYPE] = ...
|
|
1932
|
-
HEX_DTPREL_LO16: ClassVar[Relocation.TYPE] = ...
|
|
1933
|
-
HEX_GD_GOT_11_X: ClassVar[Relocation.TYPE] = ...
|
|
1934
|
-
HEX_GD_GOT_16: ClassVar[Relocation.TYPE] = ...
|
|
1935
|
-
HEX_GD_GOT_16_X: ClassVar[Relocation.TYPE] = ...
|
|
1936
|
-
HEX_GD_GOT_32: ClassVar[Relocation.TYPE] = ...
|
|
1937
|
-
HEX_GD_GOT_32_6_X: ClassVar[Relocation.TYPE] = ...
|
|
1938
|
-
HEX_GD_GOT_HI16: ClassVar[Relocation.TYPE] = ...
|
|
1939
|
-
HEX_GD_GOT_LO16: ClassVar[Relocation.TYPE] = ...
|
|
1940
|
-
HEX_GD_PLT_B22_PCREL: ClassVar[Relocation.TYPE] = ...
|
|
1941
|
-
HEX_GLOB_DAT: ClassVar[Relocation.TYPE] = ...
|
|
1942
|
-
HEX_GOTREL_11_X: ClassVar[Relocation.TYPE] = ...
|
|
1943
|
-
HEX_GOTREL_16_X: ClassVar[Relocation.TYPE] = ...
|
|
1944
|
-
HEX_GOTREL_32: ClassVar[Relocation.TYPE] = ...
|
|
1945
|
-
HEX_GOTREL_32_6_X: ClassVar[Relocation.TYPE] = ...
|
|
1946
|
-
HEX_GOTREL_HI16: ClassVar[Relocation.TYPE] = ...
|
|
1947
|
-
HEX_GOTREL_LO16: ClassVar[Relocation.TYPE] = ...
|
|
1948
|
-
HEX_GOT_11_X: ClassVar[Relocation.TYPE] = ...
|
|
1949
|
-
HEX_GOT_16: ClassVar[Relocation.TYPE] = ...
|
|
1950
|
-
HEX_GOT_16_X: ClassVar[Relocation.TYPE] = ...
|
|
1951
|
-
HEX_GOT_32: ClassVar[Relocation.TYPE] = ...
|
|
1952
|
-
HEX_GOT_32_6_X: ClassVar[Relocation.TYPE] = ...
|
|
1953
|
-
HEX_GOT_HI16: ClassVar[Relocation.TYPE] = ...
|
|
1954
|
-
HEX_GOT_LO16: ClassVar[Relocation.TYPE] = ...
|
|
1955
|
-
HEX_GPREL16_0: ClassVar[Relocation.TYPE] = ...
|
|
1956
|
-
HEX_GPREL16_1: ClassVar[Relocation.TYPE] = ...
|
|
1957
|
-
HEX_GPREL16_2: ClassVar[Relocation.TYPE] = ...
|
|
1958
|
-
HEX_GPREL16_3: ClassVar[Relocation.TYPE] = ...
|
|
1959
|
-
HEX_HI16: ClassVar[Relocation.TYPE] = ...
|
|
1960
|
-
HEX_HL16: ClassVar[Relocation.TYPE] = ...
|
|
1961
|
-
HEX_IE_16_X: ClassVar[Relocation.TYPE] = ...
|
|
1962
|
-
HEX_IE_32: ClassVar[Relocation.TYPE] = ...
|
|
1963
|
-
HEX_IE_32_6_X: ClassVar[Relocation.TYPE] = ...
|
|
1964
|
-
HEX_IE_GOT_11_X: ClassVar[Relocation.TYPE] = ...
|
|
1965
|
-
HEX_IE_GOT_16: ClassVar[Relocation.TYPE] = ...
|
|
1966
|
-
HEX_IE_GOT_16_X: ClassVar[Relocation.TYPE] = ...
|
|
1967
|
-
HEX_IE_GOT_32: ClassVar[Relocation.TYPE] = ...
|
|
1968
|
-
HEX_IE_GOT_32_6_X: ClassVar[Relocation.TYPE] = ...
|
|
1969
|
-
HEX_IE_GOT_HI16: ClassVar[Relocation.TYPE] = ...
|
|
1970
|
-
HEX_IE_GOT_LO16: ClassVar[Relocation.TYPE] = ...
|
|
1971
|
-
HEX_IE_HI16: ClassVar[Relocation.TYPE] = ...
|
|
1972
|
-
HEX_IE_LO16: ClassVar[Relocation.TYPE] = ...
|
|
1973
|
-
HEX_JMP_SLOT: ClassVar[Relocation.TYPE] = ...
|
|
1974
|
-
HEX_LD_GOT_11_X: ClassVar[Relocation.TYPE] = ...
|
|
1975
|
-
HEX_LD_GOT_16: ClassVar[Relocation.TYPE] = ...
|
|
1976
|
-
HEX_LD_GOT_16_X: ClassVar[Relocation.TYPE] = ...
|
|
1977
|
-
HEX_LD_GOT_32: ClassVar[Relocation.TYPE] = ...
|
|
1978
|
-
HEX_LD_GOT_32_6_X: ClassVar[Relocation.TYPE] = ...
|
|
1979
|
-
HEX_LD_GOT_HI16: ClassVar[Relocation.TYPE] = ...
|
|
1980
|
-
HEX_LD_GOT_LO16: ClassVar[Relocation.TYPE] = ...
|
|
1981
|
-
HEX_LD_PLT_B22_PCREL: ClassVar[Relocation.TYPE] = ...
|
|
1982
|
-
HEX_LO16: ClassVar[Relocation.TYPE] = ...
|
|
1983
|
-
HEX_NONE: ClassVar[Relocation.TYPE] = ...
|
|
1984
|
-
HEX_PLT_B22_PCREL: ClassVar[Relocation.TYPE] = ...
|
|
1985
|
-
HEX_RELATIVE: ClassVar[Relocation.TYPE] = ...
|
|
1986
|
-
HEX_TPREL_11_X: ClassVar[Relocation.TYPE] = ...
|
|
1987
|
-
HEX_TPREL_16: ClassVar[Relocation.TYPE] = ...
|
|
1988
|
-
HEX_TPREL_16_X: ClassVar[Relocation.TYPE] = ...
|
|
1989
|
-
HEX_TPREL_32: ClassVar[Relocation.TYPE] = ...
|
|
1990
|
-
HEX_TPREL_32_6_X: ClassVar[Relocation.TYPE] = ...
|
|
1991
|
-
HEX_TPREL_HI16: ClassVar[Relocation.TYPE] = ...
|
|
1992
|
-
HEX_TPREL_LO16: ClassVar[Relocation.TYPE] = ...
|
|
1993
|
-
LARCH_32: ClassVar[Relocation.TYPE] = ...
|
|
1994
|
-
LARCH_32_PCREL: ClassVar[Relocation.TYPE] = ...
|
|
1995
|
-
LARCH_64: ClassVar[Relocation.TYPE] = ...
|
|
1996
|
-
LARCH_ABS64_HI12: ClassVar[Relocation.TYPE] = ...
|
|
1997
|
-
LARCH_ABS64_LO20: ClassVar[Relocation.TYPE] = ...
|
|
1998
|
-
LARCH_ABS_HI20: ClassVar[Relocation.TYPE] = ...
|
|
1999
|
-
LARCH_ABS_LO12: ClassVar[Relocation.TYPE] = ...
|
|
2000
|
-
LARCH_ADD16: ClassVar[Relocation.TYPE] = ...
|
|
2001
|
-
LARCH_ADD24: ClassVar[Relocation.TYPE] = ...
|
|
2002
|
-
LARCH_ADD32: ClassVar[Relocation.TYPE] = ...
|
|
2003
|
-
LARCH_ADD64: ClassVar[Relocation.TYPE] = ...
|
|
2004
|
-
LARCH_ADD8: ClassVar[Relocation.TYPE] = ...
|
|
2005
|
-
LARCH_B16: ClassVar[Relocation.TYPE] = ...
|
|
2006
|
-
LARCH_B21: ClassVar[Relocation.TYPE] = ...
|
|
2007
|
-
LARCH_B26: ClassVar[Relocation.TYPE] = ...
|
|
2008
|
-
LARCH_COPY: ClassVar[Relocation.TYPE] = ...
|
|
2009
|
-
LARCH_GNU_VTENTRY: ClassVar[Relocation.TYPE] = ...
|
|
2010
|
-
LARCH_GNU_VTINHERIT: ClassVar[Relocation.TYPE] = ...
|
|
2011
|
-
LARCH_GOT64_HI12: ClassVar[Relocation.TYPE] = ...
|
|
2012
|
-
LARCH_GOT64_LO20: ClassVar[Relocation.TYPE] = ...
|
|
2013
|
-
LARCH_GOT64_PC_HI12: ClassVar[Relocation.TYPE] = ...
|
|
2014
|
-
LARCH_GOT64_PC_LO20: ClassVar[Relocation.TYPE] = ...
|
|
2015
|
-
LARCH_GOT_HI20: ClassVar[Relocation.TYPE] = ...
|
|
2016
|
-
LARCH_GOT_LO12: ClassVar[Relocation.TYPE] = ...
|
|
2017
|
-
LARCH_GOT_PC_HI20: ClassVar[Relocation.TYPE] = ...
|
|
2018
|
-
LARCH_GOT_PC_LO12: ClassVar[Relocation.TYPE] = ...
|
|
2019
|
-
LARCH_IRELATIVE: ClassVar[Relocation.TYPE] = ...
|
|
2020
|
-
LARCH_JUMP_SLOT: ClassVar[Relocation.TYPE] = ...
|
|
2021
|
-
LARCH_MARK_LA: ClassVar[Relocation.TYPE] = ...
|
|
2022
|
-
LARCH_MARK_PCREL: ClassVar[Relocation.TYPE] = ...
|
|
2023
|
-
LARCH_NONE: ClassVar[Relocation.TYPE] = ...
|
|
2024
|
-
LARCH_PCALA64_HI12: ClassVar[Relocation.TYPE] = ...
|
|
2025
|
-
LARCH_PCALA64_LO20: ClassVar[Relocation.TYPE] = ...
|
|
2026
|
-
LARCH_PCALA_HI20: ClassVar[Relocation.TYPE] = ...
|
|
2027
|
-
LARCH_PCALA_LO12: ClassVar[Relocation.TYPE] = ...
|
|
2028
|
-
LARCH_RELATIVE: ClassVar[Relocation.TYPE] = ...
|
|
2029
|
-
LARCH_RELAX: ClassVar[Relocation.TYPE] = ...
|
|
2030
|
-
LARCH_SOP_ADD: ClassVar[Relocation.TYPE] = ...
|
|
2031
|
-
LARCH_SOP_AND: ClassVar[Relocation.TYPE] = ...
|
|
2032
|
-
LARCH_SOP_ASSERT: ClassVar[Relocation.TYPE] = ...
|
|
2033
|
-
LARCH_SOP_IF_ELSE: ClassVar[Relocation.TYPE] = ...
|
|
2034
|
-
LARCH_SOP_NOT: ClassVar[Relocation.TYPE] = ...
|
|
2035
|
-
LARCH_SOP_POP_32_S_0_10_10_16_S2: ClassVar[Relocation.TYPE] = ...
|
|
2036
|
-
LARCH_SOP_POP_32_S_0_5_10_16_S2: ClassVar[Relocation.TYPE] = ...
|
|
2037
|
-
LARCH_SOP_POP_32_S_10_12: ClassVar[Relocation.TYPE] = ...
|
|
2038
|
-
LARCH_SOP_POP_32_S_10_16: ClassVar[Relocation.TYPE] = ...
|
|
2039
|
-
LARCH_SOP_POP_32_S_10_16_S2: ClassVar[Relocation.TYPE] = ...
|
|
2040
|
-
LARCH_SOP_POP_32_S_10_5: ClassVar[Relocation.TYPE] = ...
|
|
2041
|
-
LARCH_SOP_POP_32_S_5_20: ClassVar[Relocation.TYPE] = ...
|
|
2042
|
-
LARCH_SOP_POP_32_U: ClassVar[Relocation.TYPE] = ...
|
|
2043
|
-
LARCH_SOP_POP_32_U_10_12: ClassVar[Relocation.TYPE] = ...
|
|
2044
|
-
LARCH_SOP_PUSH_ABSOLUTE: ClassVar[Relocation.TYPE] = ...
|
|
2045
|
-
LARCH_SOP_PUSH_DUP: ClassVar[Relocation.TYPE] = ...
|
|
2046
|
-
LARCH_SOP_PUSH_GPREL: ClassVar[Relocation.TYPE] = ...
|
|
2047
|
-
LARCH_SOP_PUSH_PCREL: ClassVar[Relocation.TYPE] = ...
|
|
2048
|
-
LARCH_SOP_PUSH_PLT_PCREL: ClassVar[Relocation.TYPE] = ...
|
|
2049
|
-
LARCH_SOP_PUSH_TLS_GD: ClassVar[Relocation.TYPE] = ...
|
|
2050
|
-
LARCH_SOP_PUSH_TLS_GOT: ClassVar[Relocation.TYPE] = ...
|
|
2051
|
-
LARCH_SOP_PUSH_TLS_TPREL: ClassVar[Relocation.TYPE] = ...
|
|
2052
|
-
LARCH_SOP_SL: ClassVar[Relocation.TYPE] = ...
|
|
2053
|
-
LARCH_SOP_SR: ClassVar[Relocation.TYPE] = ...
|
|
2054
|
-
LARCH_SOP_SUB: ClassVar[Relocation.TYPE] = ...
|
|
2055
|
-
LARCH_SUB16: ClassVar[Relocation.TYPE] = ...
|
|
2056
|
-
LARCH_SUB24: ClassVar[Relocation.TYPE] = ...
|
|
2057
|
-
LARCH_SUB32: ClassVar[Relocation.TYPE] = ...
|
|
2058
|
-
LARCH_SUB64: ClassVar[Relocation.TYPE] = ...
|
|
2059
|
-
LARCH_SUB8: ClassVar[Relocation.TYPE] = ...
|
|
2060
|
-
LARCH_TLS_DTPMOD32: ClassVar[Relocation.TYPE] = ...
|
|
2061
|
-
LARCH_TLS_DTPMOD64: ClassVar[Relocation.TYPE] = ...
|
|
2062
|
-
LARCH_TLS_DTPREL32: ClassVar[Relocation.TYPE] = ...
|
|
2063
|
-
LARCH_TLS_DTPREL64: ClassVar[Relocation.TYPE] = ...
|
|
2064
|
-
LARCH_TLS_GD_HI20: ClassVar[Relocation.TYPE] = ...
|
|
2065
|
-
LARCH_TLS_GD_PC_HI20: ClassVar[Relocation.TYPE] = ...
|
|
2066
|
-
LARCH_TLS_IE64_HI12: ClassVar[Relocation.TYPE] = ...
|
|
2067
|
-
LARCH_TLS_IE64_LO20: ClassVar[Relocation.TYPE] = ...
|
|
2068
|
-
LARCH_TLS_IE64_PC_HI12: ClassVar[Relocation.TYPE] = ...
|
|
2069
|
-
LARCH_TLS_IE64_PC_LO20: ClassVar[Relocation.TYPE] = ...
|
|
2070
|
-
LARCH_TLS_IE_HI20: ClassVar[Relocation.TYPE] = ...
|
|
2071
|
-
LARCH_TLS_IE_LO12: ClassVar[Relocation.TYPE] = ...
|
|
2072
|
-
LARCH_TLS_IE_PC_HI20: ClassVar[Relocation.TYPE] = ...
|
|
2073
|
-
LARCH_TLS_IE_PC_LO12: ClassVar[Relocation.TYPE] = ...
|
|
2074
|
-
LARCH_TLS_LD_HI20: ClassVar[Relocation.TYPE] = ...
|
|
2075
|
-
LARCH_TLS_LD_PC_HI20: ClassVar[Relocation.TYPE] = ...
|
|
2076
|
-
LARCH_TLS_LE64_HI12: ClassVar[Relocation.TYPE] = ...
|
|
2077
|
-
LARCH_TLS_LE64_LO20: ClassVar[Relocation.TYPE] = ...
|
|
2078
|
-
LARCH_TLS_LE_HI20: ClassVar[Relocation.TYPE] = ...
|
|
2079
|
-
LARCH_TLS_LE_LO12: ClassVar[Relocation.TYPE] = ...
|
|
2080
|
-
LARCH_TLS_TPREL32: ClassVar[Relocation.TYPE] = ...
|
|
2081
|
-
LARCH_TLS_TPREL64: ClassVar[Relocation.TYPE] = ...
|
|
2082
|
-
MICROMIPS_26_S1: ClassVar[Relocation.TYPE] = ...
|
|
2083
|
-
MICROMIPS_CALL16: ClassVar[Relocation.TYPE] = ...
|
|
2084
|
-
MICROMIPS_CALL_HI16: ClassVar[Relocation.TYPE] = ...
|
|
2085
|
-
MICROMIPS_CALL_LO16: ClassVar[Relocation.TYPE] = ...
|
|
2086
|
-
MICROMIPS_GOT16: ClassVar[Relocation.TYPE] = ...
|
|
2087
|
-
MICROMIPS_GOT_DISP: ClassVar[Relocation.TYPE] = ...
|
|
2088
|
-
MICROMIPS_GOT_HI16: ClassVar[Relocation.TYPE] = ...
|
|
2089
|
-
MICROMIPS_GOT_LO16: ClassVar[Relocation.TYPE] = ...
|
|
2090
|
-
MICROMIPS_GOT_OFST: ClassVar[Relocation.TYPE] = ...
|
|
2091
|
-
MICROMIPS_GOT_PAGE: ClassVar[Relocation.TYPE] = ...
|
|
2092
|
-
MICROMIPS_GPREL16: ClassVar[Relocation.TYPE] = ...
|
|
2093
|
-
MICROMIPS_GPREL7_S2: ClassVar[Relocation.TYPE] = ...
|
|
2094
|
-
MICROMIPS_HI0_LO16: ClassVar[Relocation.TYPE] = ...
|
|
2095
|
-
MICROMIPS_HI16: ClassVar[Relocation.TYPE] = ...
|
|
2096
|
-
MICROMIPS_HIGHER: ClassVar[Relocation.TYPE] = ...
|
|
2097
|
-
MICROMIPS_HIGHEST: ClassVar[Relocation.TYPE] = ...
|
|
2098
|
-
MICROMIPS_JALR: ClassVar[Relocation.TYPE] = ...
|
|
2099
|
-
MICROMIPS_LITERAL: ClassVar[Relocation.TYPE] = ...
|
|
2100
|
-
MICROMIPS_LO16: ClassVar[Relocation.TYPE] = ...
|
|
2101
|
-
MICROMIPS_PC10_S1: ClassVar[Relocation.TYPE] = ...
|
|
2102
|
-
MICROMIPS_PC16_S1: ClassVar[Relocation.TYPE] = ...
|
|
2103
|
-
MICROMIPS_PC18_S3: ClassVar[Relocation.TYPE] = ...
|
|
2104
|
-
MICROMIPS_PC19_S2: ClassVar[Relocation.TYPE] = ...
|
|
2105
|
-
MICROMIPS_PC21_S2: ClassVar[Relocation.TYPE] = ...
|
|
2106
|
-
MICROMIPS_PC23_S2: ClassVar[Relocation.TYPE] = ...
|
|
2107
|
-
MICROMIPS_PC26_S2: ClassVar[Relocation.TYPE] = ...
|
|
2108
|
-
MICROMIPS_PC7_S1: ClassVar[Relocation.TYPE] = ...
|
|
2109
|
-
MICROMIPS_SCN_DISP: ClassVar[Relocation.TYPE] = ...
|
|
2110
|
-
MICROMIPS_SUB: ClassVar[Relocation.TYPE] = ...
|
|
2111
|
-
MICROMIPS_TLS_DTPREL_HI16: ClassVar[Relocation.TYPE] = ...
|
|
2112
|
-
MICROMIPS_TLS_DTPREL_LO16: ClassVar[Relocation.TYPE] = ...
|
|
2113
|
-
MICROMIPS_TLS_GD: ClassVar[Relocation.TYPE] = ...
|
|
2114
|
-
MICROMIPS_TLS_GOTTPREL: ClassVar[Relocation.TYPE] = ...
|
|
2115
|
-
MICROMIPS_TLS_LDM: ClassVar[Relocation.TYPE] = ...
|
|
2116
|
-
MICROMIPS_TLS_TPREL_HI16: ClassVar[Relocation.TYPE] = ...
|
|
2117
|
-
MICROMIPS_TLS_TPREL_LO16: ClassVar[Relocation.TYPE] = ...
|
|
2118
|
-
MIPS16_26: ClassVar[Relocation.TYPE] = ...
|
|
2119
|
-
MIPS16_CALL16: ClassVar[Relocation.TYPE] = ...
|
|
2120
|
-
MIPS16_GOT16: ClassVar[Relocation.TYPE] = ...
|
|
2121
|
-
MIPS16_GPREL: ClassVar[Relocation.TYPE] = ...
|
|
2122
|
-
MIPS16_HI16: ClassVar[Relocation.TYPE] = ...
|
|
2123
|
-
MIPS16_LO16: ClassVar[Relocation.TYPE] = ...
|
|
2124
|
-
MIPS16_TLS_DTPREL_HI16: ClassVar[Relocation.TYPE] = ...
|
|
2125
|
-
MIPS16_TLS_DTPREL_LO16: ClassVar[Relocation.TYPE] = ...
|
|
2126
|
-
MIPS16_TLS_GD: ClassVar[Relocation.TYPE] = ...
|
|
2127
|
-
MIPS16_TLS_GOTTPREL: ClassVar[Relocation.TYPE] = ...
|
|
2128
|
-
MIPS16_TLS_LDM: ClassVar[Relocation.TYPE] = ...
|
|
2129
|
-
MIPS16_TLS_TPREL_HI16: ClassVar[Relocation.TYPE] = ...
|
|
2130
|
-
MIPS16_TLS_TPREL_LO16: ClassVar[Relocation.TYPE] = ...
|
|
2131
|
-
MIPS_16: ClassVar[Relocation.TYPE] = ...
|
|
2132
|
-
MIPS_26: ClassVar[Relocation.TYPE] = ...
|
|
2133
|
-
MIPS_32: ClassVar[Relocation.TYPE] = ...
|
|
2134
|
-
MIPS_64: ClassVar[Relocation.TYPE] = ...
|
|
2135
|
-
MIPS_ADD_IMMEDIATE: ClassVar[Relocation.TYPE] = ...
|
|
2136
|
-
MIPS_CALL16: ClassVar[Relocation.TYPE] = ...
|
|
2137
|
-
MIPS_CALL_HI16: ClassVar[Relocation.TYPE] = ...
|
|
2138
|
-
MIPS_CALL_LO16: ClassVar[Relocation.TYPE] = ...
|
|
2139
|
-
MIPS_COPY: ClassVar[Relocation.TYPE] = ...
|
|
2140
|
-
MIPS_DELETE: ClassVar[Relocation.TYPE] = ...
|
|
2141
|
-
MIPS_EH: ClassVar[Relocation.TYPE] = ...
|
|
2142
|
-
MIPS_GLOB_DAT: ClassVar[Relocation.TYPE] = ...
|
|
2143
|
-
MIPS_GOT16: ClassVar[Relocation.TYPE] = ...
|
|
2144
|
-
MIPS_GOT_DISP: ClassVar[Relocation.TYPE] = ...
|
|
2145
|
-
MIPS_GOT_HI16: ClassVar[Relocation.TYPE] = ...
|
|
2146
|
-
MIPS_GOT_LO16: ClassVar[Relocation.TYPE] = ...
|
|
2147
|
-
MIPS_GOT_OFST: ClassVar[Relocation.TYPE] = ...
|
|
2148
|
-
MIPS_GOT_PAGE: ClassVar[Relocation.TYPE] = ...
|
|
2149
|
-
MIPS_GPREL16: ClassVar[Relocation.TYPE] = ...
|
|
2150
|
-
MIPS_GPREL32: ClassVar[Relocation.TYPE] = ...
|
|
2151
|
-
MIPS_HI16: ClassVar[Relocation.TYPE] = ...
|
|
2152
|
-
MIPS_HIGHER: ClassVar[Relocation.TYPE] = ...
|
|
2153
|
-
MIPS_HIGHEST: ClassVar[Relocation.TYPE] = ...
|
|
2154
|
-
MIPS_INSERT_A: ClassVar[Relocation.TYPE] = ...
|
|
2155
|
-
MIPS_INSERT_B: ClassVar[Relocation.TYPE] = ...
|
|
2156
|
-
MIPS_JALR: ClassVar[Relocation.TYPE] = ...
|
|
2157
|
-
MIPS_JUMP_SLOT: ClassVar[Relocation.TYPE] = ...
|
|
2158
|
-
MIPS_LITERAL: ClassVar[Relocation.TYPE] = ...
|
|
2159
|
-
MIPS_LO16: ClassVar[Relocation.TYPE] = ...
|
|
2160
|
-
MIPS_NONE: ClassVar[Relocation.TYPE] = ...
|
|
2161
|
-
MIPS_NUM: ClassVar[Relocation.TYPE] = ...
|
|
2162
|
-
MIPS_PC16: ClassVar[Relocation.TYPE] = ...
|
|
2163
|
-
MIPS_PC18_S3: ClassVar[Relocation.TYPE] = ...
|
|
2164
|
-
MIPS_PC19_S2: ClassVar[Relocation.TYPE] = ...
|
|
2165
|
-
MIPS_PC21_S2: ClassVar[Relocation.TYPE] = ...
|
|
2166
|
-
MIPS_PC26_S2: ClassVar[Relocation.TYPE] = ...
|
|
2167
|
-
MIPS_PC32: ClassVar[Relocation.TYPE] = ...
|
|
2168
|
-
MIPS_PCHI16: ClassVar[Relocation.TYPE] = ...
|
|
2169
|
-
MIPS_PCLO16: ClassVar[Relocation.TYPE] = ...
|
|
2170
|
-
MIPS_PJUMP: ClassVar[Relocation.TYPE] = ...
|
|
2171
|
-
MIPS_REL16: ClassVar[Relocation.TYPE] = ...
|
|
2172
|
-
MIPS_REL32: ClassVar[Relocation.TYPE] = ...
|
|
2173
|
-
MIPS_RELGOT: ClassVar[Relocation.TYPE] = ...
|
|
2174
|
-
MIPS_SCN_DISP: ClassVar[Relocation.TYPE] = ...
|
|
2175
|
-
MIPS_SHIFT5: ClassVar[Relocation.TYPE] = ...
|
|
2176
|
-
MIPS_SHIFT6: ClassVar[Relocation.TYPE] = ...
|
|
2177
|
-
MIPS_SUB: ClassVar[Relocation.TYPE] = ...
|
|
2178
|
-
MIPS_TLS_DTPMOD32: ClassVar[Relocation.TYPE] = ...
|
|
2179
|
-
MIPS_TLS_DTPMOD64: ClassVar[Relocation.TYPE] = ...
|
|
2180
|
-
MIPS_TLS_DTPREL32: ClassVar[Relocation.TYPE] = ...
|
|
2181
|
-
MIPS_TLS_DTPREL64: ClassVar[Relocation.TYPE] = ...
|
|
2182
|
-
MIPS_TLS_DTPREL_HI16: ClassVar[Relocation.TYPE] = ...
|
|
2183
|
-
MIPS_TLS_DTPREL_LO16: ClassVar[Relocation.TYPE] = ...
|
|
2184
|
-
MIPS_TLS_GD: ClassVar[Relocation.TYPE] = ...
|
|
2185
|
-
MIPS_TLS_GOTTPREL: ClassVar[Relocation.TYPE] = ...
|
|
2186
|
-
MIPS_TLS_LDM: ClassVar[Relocation.TYPE] = ...
|
|
2187
|
-
MIPS_TLS_TPREL32: ClassVar[Relocation.TYPE] = ...
|
|
2188
|
-
MIPS_TLS_TPREL64: ClassVar[Relocation.TYPE] = ...
|
|
2189
|
-
MIPS_TLS_TPREL_HI16: ClassVar[Relocation.TYPE] = ...
|
|
2190
|
-
MIPS_TLS_TPREL_LO16: ClassVar[Relocation.TYPE] = ...
|
|
2191
|
-
MIPS_UNUSED1: ClassVar[Relocation.TYPE] = ...
|
|
2192
|
-
MIPS_UNUSED2: ClassVar[Relocation.TYPE] = ...
|
|
2193
|
-
MIPS_UNUSED3: ClassVar[Relocation.TYPE] = ...
|
|
2194
|
-
PPC64_ADDR14: ClassVar[Relocation.TYPE] = ...
|
|
2195
|
-
PPC64_ADDR14_BRNTAKEN: ClassVar[Relocation.TYPE] = ...
|
|
2196
|
-
PPC64_ADDR14_BRTAKEN: ClassVar[Relocation.TYPE] = ...
|
|
2197
|
-
PPC64_ADDR16: ClassVar[Relocation.TYPE] = ...
|
|
2198
|
-
PPC64_ADDR16_DS: ClassVar[Relocation.TYPE] = ...
|
|
2199
|
-
PPC64_ADDR16_HA: ClassVar[Relocation.TYPE] = ...
|
|
2200
|
-
PPC64_ADDR16_HI: ClassVar[Relocation.TYPE] = ...
|
|
2201
|
-
PPC64_ADDR16_HIGHER: ClassVar[Relocation.TYPE] = ...
|
|
2202
|
-
PPC64_ADDR16_HIGHERA: ClassVar[Relocation.TYPE] = ...
|
|
2203
|
-
PPC64_ADDR16_HIGHEST: ClassVar[Relocation.TYPE] = ...
|
|
2204
|
-
PPC64_ADDR16_HIGHESTA: ClassVar[Relocation.TYPE] = ...
|
|
2205
|
-
PPC64_ADDR16_LO: ClassVar[Relocation.TYPE] = ...
|
|
2206
|
-
PPC64_ADDR16_LO_DS: ClassVar[Relocation.TYPE] = ...
|
|
2207
|
-
PPC64_ADDR24: ClassVar[Relocation.TYPE] = ...
|
|
2208
|
-
PPC64_ADDR32: ClassVar[Relocation.TYPE] = ...
|
|
2209
|
-
PPC64_ADDR64: ClassVar[Relocation.TYPE] = ...
|
|
2210
|
-
PPC64_DTPMOD64: ClassVar[Relocation.TYPE] = ...
|
|
2211
|
-
PPC64_DTPREL16: ClassVar[Relocation.TYPE] = ...
|
|
2212
|
-
PPC64_DTPREL16_DS: ClassVar[Relocation.TYPE] = ...
|
|
2213
|
-
PPC64_DTPREL16_HA: ClassVar[Relocation.TYPE] = ...
|
|
2214
|
-
PPC64_DTPREL16_HI: ClassVar[Relocation.TYPE] = ...
|
|
2215
|
-
PPC64_DTPREL16_HIGHER: ClassVar[Relocation.TYPE] = ...
|
|
2216
|
-
PPC64_DTPREL16_HIGHERA: ClassVar[Relocation.TYPE] = ...
|
|
2217
|
-
PPC64_DTPREL16_HIGHEST: ClassVar[Relocation.TYPE] = ...
|
|
2218
|
-
PPC64_DTPREL16_HIGHESTA: ClassVar[Relocation.TYPE] = ...
|
|
2219
|
-
PPC64_DTPREL16_LO: ClassVar[Relocation.TYPE] = ...
|
|
2220
|
-
PPC64_DTPREL16_LO_DS: ClassVar[Relocation.TYPE] = ...
|
|
2221
|
-
PPC64_DTPREL64: ClassVar[Relocation.TYPE] = ...
|
|
2222
|
-
PPC64_GOT16: ClassVar[Relocation.TYPE] = ...
|
|
2223
|
-
PPC64_GOT16_DS: ClassVar[Relocation.TYPE] = ...
|
|
2224
|
-
PPC64_GOT16_HA: ClassVar[Relocation.TYPE] = ...
|
|
2225
|
-
PPC64_GOT16_HI: ClassVar[Relocation.TYPE] = ...
|
|
2226
|
-
PPC64_GOT16_LO: ClassVar[Relocation.TYPE] = ...
|
|
2227
|
-
PPC64_GOT16_LO_DS: ClassVar[Relocation.TYPE] = ...
|
|
2228
|
-
PPC64_GOT_DTPREL16_DS: ClassVar[Relocation.TYPE] = ...
|
|
2229
|
-
PPC64_GOT_DTPREL16_HA: ClassVar[Relocation.TYPE] = ...
|
|
2230
|
-
PPC64_GOT_DTPREL16_HI: ClassVar[Relocation.TYPE] = ...
|
|
2231
|
-
PPC64_GOT_DTPREL16_LO_DS: ClassVar[Relocation.TYPE] = ...
|
|
2232
|
-
PPC64_GOT_TLSGD16: ClassVar[Relocation.TYPE] = ...
|
|
2233
|
-
PPC64_GOT_TLSGD16_HA: ClassVar[Relocation.TYPE] = ...
|
|
2234
|
-
PPC64_GOT_TLSGD16_HI: ClassVar[Relocation.TYPE] = ...
|
|
2235
|
-
PPC64_GOT_TLSGD16_LO: ClassVar[Relocation.TYPE] = ...
|
|
2236
|
-
PPC64_GOT_TLSLD16: ClassVar[Relocation.TYPE] = ...
|
|
2237
|
-
PPC64_GOT_TLSLD16_HA: ClassVar[Relocation.TYPE] = ...
|
|
2238
|
-
PPC64_GOT_TLSLD16_HI: ClassVar[Relocation.TYPE] = ...
|
|
2239
|
-
PPC64_GOT_TLSLD16_LO: ClassVar[Relocation.TYPE] = ...
|
|
2240
|
-
PPC64_GOT_TPREL16_DS: ClassVar[Relocation.TYPE] = ...
|
|
2241
|
-
PPC64_GOT_TPREL16_HA: ClassVar[Relocation.TYPE] = ...
|
|
2242
|
-
PPC64_GOT_TPREL16_HI: ClassVar[Relocation.TYPE] = ...
|
|
2243
|
-
PPC64_GOT_TPREL16_LO_DS: ClassVar[Relocation.TYPE] = ...
|
|
2244
|
-
PPC64_JMP_SLOT: ClassVar[Relocation.TYPE] = ...
|
|
2245
|
-
PPC64_NONE: ClassVar[Relocation.TYPE] = ...
|
|
2246
|
-
PPC64_REL14: ClassVar[Relocation.TYPE] = ...
|
|
2247
|
-
PPC64_REL14_BRNTAKEN: ClassVar[Relocation.TYPE] = ...
|
|
2248
|
-
PPC64_REL14_BRTAKEN: ClassVar[Relocation.TYPE] = ...
|
|
2249
|
-
PPC64_REL16: ClassVar[Relocation.TYPE] = ...
|
|
2250
|
-
PPC64_REL16_HA: ClassVar[Relocation.TYPE] = ...
|
|
2251
|
-
PPC64_REL16_HI: ClassVar[Relocation.TYPE] = ...
|
|
2252
|
-
PPC64_REL16_LO: ClassVar[Relocation.TYPE] = ...
|
|
2253
|
-
PPC64_REL24: ClassVar[Relocation.TYPE] = ...
|
|
2254
|
-
PPC64_REL32: ClassVar[Relocation.TYPE] = ...
|
|
2255
|
-
PPC64_REL64: ClassVar[Relocation.TYPE] = ...
|
|
2256
|
-
PPC64_RELATIVE: ClassVar[Relocation.TYPE] = ...
|
|
2257
|
-
PPC64_TLS: ClassVar[Relocation.TYPE] = ...
|
|
2258
|
-
PPC64_TLSGD: ClassVar[Relocation.TYPE] = ...
|
|
2259
|
-
PPC64_TLSLD: ClassVar[Relocation.TYPE] = ...
|
|
2260
|
-
PPC64_TOC: ClassVar[Relocation.TYPE] = ...
|
|
2261
|
-
PPC64_TOC16: ClassVar[Relocation.TYPE] = ...
|
|
2262
|
-
PPC64_TOC16_DS: ClassVar[Relocation.TYPE] = ...
|
|
2263
|
-
PPC64_TOC16_HA: ClassVar[Relocation.TYPE] = ...
|
|
2264
|
-
PPC64_TOC16_HI: ClassVar[Relocation.TYPE] = ...
|
|
2265
|
-
PPC64_TOC16_LO: ClassVar[Relocation.TYPE] = ...
|
|
2266
|
-
PPC64_TOC16_LO_DS: ClassVar[Relocation.TYPE] = ...
|
|
2267
|
-
PPC64_TPREL16: ClassVar[Relocation.TYPE] = ...
|
|
2268
|
-
PPC64_TPREL16_DS: ClassVar[Relocation.TYPE] = ...
|
|
2269
|
-
PPC64_TPREL16_HA: ClassVar[Relocation.TYPE] = ...
|
|
2270
|
-
PPC64_TPREL16_HI: ClassVar[Relocation.TYPE] = ...
|
|
2271
|
-
PPC64_TPREL16_HIGHER: ClassVar[Relocation.TYPE] = ...
|
|
2272
|
-
PPC64_TPREL16_HIGHERA: ClassVar[Relocation.TYPE] = ...
|
|
2273
|
-
PPC64_TPREL16_HIGHEST: ClassVar[Relocation.TYPE] = ...
|
|
2274
|
-
PPC64_TPREL16_HIGHESTA: ClassVar[Relocation.TYPE] = ...
|
|
2275
|
-
PPC64_TPREL16_LO: ClassVar[Relocation.TYPE] = ...
|
|
2276
|
-
PPC64_TPREL16_LO_DS: ClassVar[Relocation.TYPE] = ...
|
|
2277
|
-
PPC64_TPREL64: ClassVar[Relocation.TYPE] = ...
|
|
2278
|
-
PPC_ADDR14: ClassVar[Relocation.TYPE] = ...
|
|
2279
|
-
PPC_ADDR14_BRNTAKEN: ClassVar[Relocation.TYPE] = ...
|
|
2280
|
-
PPC_ADDR14_BRTAKEN: ClassVar[Relocation.TYPE] = ...
|
|
2281
|
-
PPC_ADDR16: ClassVar[Relocation.TYPE] = ...
|
|
2282
|
-
PPC_ADDR16_HA: ClassVar[Relocation.TYPE] = ...
|
|
2283
|
-
PPC_ADDR16_HI: ClassVar[Relocation.TYPE] = ...
|
|
2284
|
-
PPC_ADDR16_LO: ClassVar[Relocation.TYPE] = ...
|
|
2285
|
-
PPC_ADDR24: ClassVar[Relocation.TYPE] = ...
|
|
2286
|
-
PPC_ADDR32: ClassVar[Relocation.TYPE] = ...
|
|
2287
|
-
PPC_DTPMOD32: ClassVar[Relocation.TYPE] = ...
|
|
2288
|
-
PPC_DTPREL16: ClassVar[Relocation.TYPE] = ...
|
|
2289
|
-
PPC_DTPREL16_HA: ClassVar[Relocation.TYPE] = ...
|
|
2290
|
-
PPC_DTPREL16_HI: ClassVar[Relocation.TYPE] = ...
|
|
2291
|
-
PPC_DTPREL16_LO: ClassVar[Relocation.TYPE] = ...
|
|
2292
|
-
PPC_DTPREL32: ClassVar[Relocation.TYPE] = ...
|
|
2293
|
-
PPC_GOT16: ClassVar[Relocation.TYPE] = ...
|
|
2294
|
-
PPC_GOT16_HA: ClassVar[Relocation.TYPE] = ...
|
|
2295
|
-
PPC_GOT16_HI: ClassVar[Relocation.TYPE] = ...
|
|
2296
|
-
PPC_GOT16_LO: ClassVar[Relocation.TYPE] = ...
|
|
2297
|
-
PPC_GOT_DTPREL16: ClassVar[Relocation.TYPE] = ...
|
|
2298
|
-
PPC_GOT_DTPREL16_HA: ClassVar[Relocation.TYPE] = ...
|
|
2299
|
-
PPC_GOT_DTPREL16_HI: ClassVar[Relocation.TYPE] = ...
|
|
2300
|
-
PPC_GOT_DTPREL16_LO: ClassVar[Relocation.TYPE] = ...
|
|
2301
|
-
PPC_GOT_TLSGD16: ClassVar[Relocation.TYPE] = ...
|
|
2302
|
-
PPC_GOT_TLSGD16_HA: ClassVar[Relocation.TYPE] = ...
|
|
2303
|
-
PPC_GOT_TLSGD16_HI: ClassVar[Relocation.TYPE] = ...
|
|
2304
|
-
PPC_GOT_TLSGD16_LO: ClassVar[Relocation.TYPE] = ...
|
|
2305
|
-
PPC_GOT_TLSLD16: ClassVar[Relocation.TYPE] = ...
|
|
2306
|
-
PPC_GOT_TLSLD16_HA: ClassVar[Relocation.TYPE] = ...
|
|
2307
|
-
PPC_GOT_TLSLD16_HI: ClassVar[Relocation.TYPE] = ...
|
|
2308
|
-
PPC_GOT_TLSLD16_LO: ClassVar[Relocation.TYPE] = ...
|
|
2309
|
-
PPC_GOT_TPREL16: ClassVar[Relocation.TYPE] = ...
|
|
2310
|
-
PPC_GOT_TPREL16_HA: ClassVar[Relocation.TYPE] = ...
|
|
2311
|
-
PPC_GOT_TPREL16_HI: ClassVar[Relocation.TYPE] = ...
|
|
2312
|
-
PPC_GOT_TPREL16_LO: ClassVar[Relocation.TYPE] = ...
|
|
2313
|
-
PPC_JMP_SLOT: ClassVar[Relocation.TYPE] = ...
|
|
2314
|
-
PPC_LOCAL24PC: ClassVar[Relocation.TYPE] = ...
|
|
2315
|
-
PPC_NONE: ClassVar[Relocation.TYPE] = ...
|
|
2316
|
-
PPC_PLTREL24: ClassVar[Relocation.TYPE] = ...
|
|
2317
|
-
PPC_REL14: ClassVar[Relocation.TYPE] = ...
|
|
2318
|
-
PPC_REL14_BRNTAKEN: ClassVar[Relocation.TYPE] = ...
|
|
2319
|
-
PPC_REL14_BRTAKEN: ClassVar[Relocation.TYPE] = ...
|
|
2320
|
-
PPC_REL16: ClassVar[Relocation.TYPE] = ...
|
|
2321
|
-
PPC_REL16_HA: ClassVar[Relocation.TYPE] = ...
|
|
2322
|
-
PPC_REL16_HI: ClassVar[Relocation.TYPE] = ...
|
|
2323
|
-
PPC_REL16_LO: ClassVar[Relocation.TYPE] = ...
|
|
2324
|
-
PPC_REL24: ClassVar[Relocation.TYPE] = ...
|
|
2325
|
-
PPC_REL32: ClassVar[Relocation.TYPE] = ...
|
|
2326
|
-
PPC_RELATIVE: ClassVar[Relocation.TYPE] = ...
|
|
2327
|
-
PPC_TLS: ClassVar[Relocation.TYPE] = ...
|
|
2328
|
-
PPC_TLSGD: ClassVar[Relocation.TYPE] = ...
|
|
2329
|
-
PPC_TLSLD: ClassVar[Relocation.TYPE] = ...
|
|
2330
|
-
PPC_TPREL16: ClassVar[Relocation.TYPE] = ...
|
|
2331
|
-
PPC_TPREL16_HA: ClassVar[Relocation.TYPE] = ...
|
|
2332
|
-
PPC_TPREL16_HI: ClassVar[Relocation.TYPE] = ...
|
|
2333
|
-
PPC_TPREL16_LO: ClassVar[Relocation.TYPE] = ...
|
|
2334
|
-
PPC_TPREL32: ClassVar[Relocation.TYPE] = ...
|
|
2335
|
-
SPARC_10: ClassVar[Relocation.TYPE] = ...
|
|
2336
|
-
SPARC_11: ClassVar[Relocation.TYPE] = ...
|
|
2337
|
-
SPARC_13: ClassVar[Relocation.TYPE] = ...
|
|
2338
|
-
SPARC_16: ClassVar[Relocation.TYPE] = ...
|
|
2339
|
-
SPARC_22: ClassVar[Relocation.TYPE] = ...
|
|
2340
|
-
SPARC_32: ClassVar[Relocation.TYPE] = ...
|
|
2341
|
-
SPARC_5: ClassVar[Relocation.TYPE] = ...
|
|
2342
|
-
SPARC_6: ClassVar[Relocation.TYPE] = ...
|
|
2343
|
-
SPARC_64: ClassVar[Relocation.TYPE] = ...
|
|
2344
|
-
SPARC_7: ClassVar[Relocation.TYPE] = ...
|
|
2345
|
-
SPARC_8: ClassVar[Relocation.TYPE] = ...
|
|
2346
|
-
SPARC_COPY: ClassVar[Relocation.TYPE] = ...
|
|
2347
|
-
SPARC_DISP16: ClassVar[Relocation.TYPE] = ...
|
|
2348
|
-
SPARC_DISP32: ClassVar[Relocation.TYPE] = ...
|
|
2349
|
-
SPARC_DISP64: ClassVar[Relocation.TYPE] = ...
|
|
2350
|
-
SPARC_DISP8: ClassVar[Relocation.TYPE] = ...
|
|
2351
|
-
SPARC_GLOB_DAT: ClassVar[Relocation.TYPE] = ...
|
|
2352
|
-
SPARC_GOT10: ClassVar[Relocation.TYPE] = ...
|
|
2353
|
-
SPARC_GOT13: ClassVar[Relocation.TYPE] = ...
|
|
2354
|
-
SPARC_GOT22: ClassVar[Relocation.TYPE] = ...
|
|
2355
|
-
SPARC_GOTDATA_HIX22: ClassVar[Relocation.TYPE] = ...
|
|
2356
|
-
SPARC_GOTDATA_LOX10: ClassVar[Relocation.TYPE] = ...
|
|
2357
|
-
SPARC_GOTDATA_OP: ClassVar[Relocation.TYPE] = ...
|
|
2358
|
-
SPARC_GOTDATA_OP_HIX22: ClassVar[Relocation.TYPE] = ...
|
|
2359
|
-
SPARC_GOTDATA_OP_LOX10: ClassVar[Relocation.TYPE] = ...
|
|
2360
|
-
SPARC_H44: ClassVar[Relocation.TYPE] = ...
|
|
2361
|
-
SPARC_HH22: ClassVar[Relocation.TYPE] = ...
|
|
2362
|
-
SPARC_HI22: ClassVar[Relocation.TYPE] = ...
|
|
2363
|
-
SPARC_HIPLT22: ClassVar[Relocation.TYPE] = ...
|
|
2364
|
-
SPARC_HIX22: ClassVar[Relocation.TYPE] = ...
|
|
2365
|
-
SPARC_HM10: ClassVar[Relocation.TYPE] = ...
|
|
2366
|
-
SPARC_JMP_SLOT: ClassVar[Relocation.TYPE] = ...
|
|
2367
|
-
SPARC_L44: ClassVar[Relocation.TYPE] = ...
|
|
2368
|
-
SPARC_LM22: ClassVar[Relocation.TYPE] = ...
|
|
2369
|
-
SPARC_LO10: ClassVar[Relocation.TYPE] = ...
|
|
2370
|
-
SPARC_LOPLT10: ClassVar[Relocation.TYPE] = ...
|
|
2371
|
-
SPARC_LOX10: ClassVar[Relocation.TYPE] = ...
|
|
2372
|
-
SPARC_M44: ClassVar[Relocation.TYPE] = ...
|
|
2373
|
-
SPARC_NONE: ClassVar[Relocation.TYPE] = ...
|
|
2374
|
-
SPARC_OLO10: ClassVar[Relocation.TYPE] = ...
|
|
2375
|
-
SPARC_PC10: ClassVar[Relocation.TYPE] = ...
|
|
2376
|
-
SPARC_PC22: ClassVar[Relocation.TYPE] = ...
|
|
2377
|
-
SPARC_PCPLT10: ClassVar[Relocation.TYPE] = ...
|
|
2378
|
-
SPARC_PCPLT22: ClassVar[Relocation.TYPE] = ...
|
|
2379
|
-
SPARC_PCPLT32: ClassVar[Relocation.TYPE] = ...
|
|
2380
|
-
SPARC_PC_HH22: ClassVar[Relocation.TYPE] = ...
|
|
2381
|
-
SPARC_PC_HM10: ClassVar[Relocation.TYPE] = ...
|
|
2382
|
-
SPARC_PC_LM22: ClassVar[Relocation.TYPE] = ...
|
|
2383
|
-
SPARC_PLT32: ClassVar[Relocation.TYPE] = ...
|
|
2384
|
-
SPARC_PLT64: ClassVar[Relocation.TYPE] = ...
|
|
2385
|
-
SPARC_REGISTER: ClassVar[Relocation.TYPE] = ...
|
|
2386
|
-
SPARC_RELATIVE: ClassVar[Relocation.TYPE] = ...
|
|
2387
|
-
SPARC_TLS_DTPMOD32: ClassVar[Relocation.TYPE] = ...
|
|
2388
|
-
SPARC_TLS_DTPMOD64: ClassVar[Relocation.TYPE] = ...
|
|
2389
|
-
SPARC_TLS_DTPOFF32: ClassVar[Relocation.TYPE] = ...
|
|
2390
|
-
SPARC_TLS_DTPOFF64: ClassVar[Relocation.TYPE] = ...
|
|
2391
|
-
SPARC_TLS_GD_ADD: ClassVar[Relocation.TYPE] = ...
|
|
2392
|
-
SPARC_TLS_GD_CALL: ClassVar[Relocation.TYPE] = ...
|
|
2393
|
-
SPARC_TLS_GD_HI22: ClassVar[Relocation.TYPE] = ...
|
|
2394
|
-
SPARC_TLS_GD_LO10: ClassVar[Relocation.TYPE] = ...
|
|
2395
|
-
SPARC_TLS_IE_ADD: ClassVar[Relocation.TYPE] = ...
|
|
2396
|
-
SPARC_TLS_IE_HI22: ClassVar[Relocation.TYPE] = ...
|
|
2397
|
-
SPARC_TLS_IE_LD: ClassVar[Relocation.TYPE] = ...
|
|
2398
|
-
SPARC_TLS_IE_LDX: ClassVar[Relocation.TYPE] = ...
|
|
2399
|
-
SPARC_TLS_IE_LO10: ClassVar[Relocation.TYPE] = ...
|
|
2400
|
-
SPARC_TLS_LDM_ADD: ClassVar[Relocation.TYPE] = ...
|
|
2401
|
-
SPARC_TLS_LDM_CALL: ClassVar[Relocation.TYPE] = ...
|
|
2402
|
-
SPARC_TLS_LDM_HI22: ClassVar[Relocation.TYPE] = ...
|
|
2403
|
-
SPARC_TLS_LDM_LO10: ClassVar[Relocation.TYPE] = ...
|
|
2404
|
-
SPARC_TLS_LDO_ADD: ClassVar[Relocation.TYPE] = ...
|
|
2405
|
-
SPARC_TLS_LDO_HIX22: ClassVar[Relocation.TYPE] = ...
|
|
2406
|
-
SPARC_TLS_LDO_LOX10: ClassVar[Relocation.TYPE] = ...
|
|
2407
|
-
SPARC_TLS_LE_HIX22: ClassVar[Relocation.TYPE] = ...
|
|
2408
|
-
SPARC_TLS_LE_LOX10: ClassVar[Relocation.TYPE] = ...
|
|
2409
|
-
SPARC_TLS_TPOFF32: ClassVar[Relocation.TYPE] = ...
|
|
2410
|
-
SPARC_TLS_TPOFF64: ClassVar[Relocation.TYPE] = ...
|
|
2411
|
-
SPARC_UA16: ClassVar[Relocation.TYPE] = ...
|
|
2412
|
-
SPARC_UA32: ClassVar[Relocation.TYPE] = ...
|
|
2413
|
-
SPARC_UA64: ClassVar[Relocation.TYPE] = ...
|
|
2414
|
-
SPARC_WDISP16: ClassVar[Relocation.TYPE] = ...
|
|
2415
|
-
SPARC_WDISP19: ClassVar[Relocation.TYPE] = ...
|
|
2416
|
-
SPARC_WDISP22: ClassVar[Relocation.TYPE] = ...
|
|
2417
|
-
SPARC_WDISP30: ClassVar[Relocation.TYPE] = ...
|
|
2418
|
-
SPARC_WPLT30: ClassVar[Relocation.TYPE] = ...
|
|
2419
|
-
SYSZ_12: ClassVar[Relocation.TYPE] = ...
|
|
2420
|
-
SYSZ_16: ClassVar[Relocation.TYPE] = ...
|
|
2421
|
-
SYSZ_20: ClassVar[Relocation.TYPE] = ...
|
|
2422
|
-
SYSZ_32: ClassVar[Relocation.TYPE] = ...
|
|
2423
|
-
SYSZ_64: ClassVar[Relocation.TYPE] = ...
|
|
2424
|
-
SYSZ_8: ClassVar[Relocation.TYPE] = ...
|
|
2425
|
-
SYSZ_COPY: ClassVar[Relocation.TYPE] = ...
|
|
2426
|
-
SYSZ_GLOB_DAT: ClassVar[Relocation.TYPE] = ...
|
|
2427
|
-
SYSZ_GOT12: ClassVar[Relocation.TYPE] = ...
|
|
2428
|
-
SYSZ_GOT16: ClassVar[Relocation.TYPE] = ...
|
|
2429
|
-
SYSZ_GOT20: ClassVar[Relocation.TYPE] = ...
|
|
2430
|
-
SYSZ_GOT32: ClassVar[Relocation.TYPE] = ...
|
|
2431
|
-
SYSZ_GOT64: ClassVar[Relocation.TYPE] = ...
|
|
2432
|
-
SYSZ_GOTENT: ClassVar[Relocation.TYPE] = ...
|
|
2433
|
-
SYSZ_GOTOFF: ClassVar[Relocation.TYPE] = ...
|
|
2434
|
-
SYSZ_GOTOFF16: ClassVar[Relocation.TYPE] = ...
|
|
2435
|
-
SYSZ_GOTOFF64: ClassVar[Relocation.TYPE] = ...
|
|
2436
|
-
SYSZ_GOTPC: ClassVar[Relocation.TYPE] = ...
|
|
2437
|
-
SYSZ_GOTPCDBL: ClassVar[Relocation.TYPE] = ...
|
|
2438
|
-
SYSZ_GOTPLT12: ClassVar[Relocation.TYPE] = ...
|
|
2439
|
-
SYSZ_GOTPLT16: ClassVar[Relocation.TYPE] = ...
|
|
2440
|
-
SYSZ_GOTPLT20: ClassVar[Relocation.TYPE] = ...
|
|
2441
|
-
SYSZ_GOTPLT32: ClassVar[Relocation.TYPE] = ...
|
|
2442
|
-
SYSZ_GOTPLT64: ClassVar[Relocation.TYPE] = ...
|
|
2443
|
-
SYSZ_GOTPLTENT: ClassVar[Relocation.TYPE] = ...
|
|
2444
|
-
SYSZ_IRELATIVE: ClassVar[Relocation.TYPE] = ...
|
|
2445
|
-
SYSZ_JMP_SLOT: ClassVar[Relocation.TYPE] = ...
|
|
2446
|
-
SYSZ_NONE: ClassVar[Relocation.TYPE] = ...
|
|
2447
|
-
SYSZ_PC16: ClassVar[Relocation.TYPE] = ...
|
|
2448
|
-
SYSZ_PC16DBL: ClassVar[Relocation.TYPE] = ...
|
|
2449
|
-
SYSZ_PC32: ClassVar[Relocation.TYPE] = ...
|
|
2450
|
-
SYSZ_PC32DBL: ClassVar[Relocation.TYPE] = ...
|
|
2451
|
-
SYSZ_PC64: ClassVar[Relocation.TYPE] = ...
|
|
2452
|
-
SYSZ_PLT16DBL: ClassVar[Relocation.TYPE] = ...
|
|
2453
|
-
SYSZ_PLT32: ClassVar[Relocation.TYPE] = ...
|
|
2454
|
-
SYSZ_PLT32DBL: ClassVar[Relocation.TYPE] = ...
|
|
2455
|
-
SYSZ_PLT64: ClassVar[Relocation.TYPE] = ...
|
|
2456
|
-
SYSZ_PLTOFF16: ClassVar[Relocation.TYPE] = ...
|
|
2457
|
-
SYSZ_PLTOFF32: ClassVar[Relocation.TYPE] = ...
|
|
2458
|
-
SYSZ_PLTOFF64: ClassVar[Relocation.TYPE] = ...
|
|
2459
|
-
SYSZ_RELATIVE: ClassVar[Relocation.TYPE] = ...
|
|
2460
|
-
SYSZ_TLS_DTPMOD: ClassVar[Relocation.TYPE] = ...
|
|
2461
|
-
SYSZ_TLS_DTPOFF: ClassVar[Relocation.TYPE] = ...
|
|
2462
|
-
SYSZ_TLS_GD32: ClassVar[Relocation.TYPE] = ...
|
|
2463
|
-
SYSZ_TLS_GD64: ClassVar[Relocation.TYPE] = ...
|
|
2464
|
-
SYSZ_TLS_GDCALL: ClassVar[Relocation.TYPE] = ...
|
|
2465
|
-
SYSZ_TLS_GOTIE12: ClassVar[Relocation.TYPE] = ...
|
|
2466
|
-
SYSZ_TLS_GOTIE20: ClassVar[Relocation.TYPE] = ...
|
|
2467
|
-
SYSZ_TLS_GOTIE32: ClassVar[Relocation.TYPE] = ...
|
|
2468
|
-
SYSZ_TLS_GOTIE64: ClassVar[Relocation.TYPE] = ...
|
|
2469
|
-
SYSZ_TLS_IE32: ClassVar[Relocation.TYPE] = ...
|
|
2470
|
-
SYSZ_TLS_IE64: ClassVar[Relocation.TYPE] = ...
|
|
2471
|
-
SYSZ_TLS_IEENT: ClassVar[Relocation.TYPE] = ...
|
|
2472
|
-
SYSZ_TLS_LDCALL: ClassVar[Relocation.TYPE] = ...
|
|
2473
|
-
SYSZ_TLS_LDM32: ClassVar[Relocation.TYPE] = ...
|
|
2474
|
-
SYSZ_TLS_LDM64: ClassVar[Relocation.TYPE] = ...
|
|
2475
|
-
SYSZ_TLS_LDO32: ClassVar[Relocation.TYPE] = ...
|
|
2476
|
-
SYSZ_TLS_LDO64: ClassVar[Relocation.TYPE] = ...
|
|
2477
|
-
SYSZ_TLS_LE32: ClassVar[Relocation.TYPE] = ...
|
|
2478
|
-
SYSZ_TLS_LE64: ClassVar[Relocation.TYPE] = ...
|
|
2479
|
-
SYSZ_TLS_LOAD: ClassVar[Relocation.TYPE] = ...
|
|
2480
|
-
SYSZ_TLS_TPOFF: ClassVar[Relocation.TYPE] = ...
|
|
2481
|
-
X86_16: ClassVar[Relocation.TYPE] = ...
|
|
2482
|
-
X86_32: ClassVar[Relocation.TYPE] = ...
|
|
2483
|
-
X86_32PLT: ClassVar[Relocation.TYPE] = ...
|
|
2484
|
-
X86_64_16: ClassVar[Relocation.TYPE] = ...
|
|
2485
|
-
X86_64_32: ClassVar[Relocation.TYPE] = ...
|
|
2486
|
-
X86_64_32S: ClassVar[Relocation.TYPE] = ...
|
|
2487
|
-
X86_64_64: ClassVar[Relocation.TYPE] = ...
|
|
2488
|
-
X86_64_8: ClassVar[Relocation.TYPE] = ...
|
|
2489
|
-
X86_64_COPY: ClassVar[Relocation.TYPE] = ...
|
|
2490
|
-
X86_64_DTPMOD64: ClassVar[Relocation.TYPE] = ...
|
|
2491
|
-
X86_64_DTPOFF32: ClassVar[Relocation.TYPE] = ...
|
|
2492
|
-
X86_64_DTPOFF64: ClassVar[Relocation.TYPE] = ...
|
|
2493
|
-
X86_64_GLOB_DAT: ClassVar[Relocation.TYPE] = ...
|
|
2494
|
-
X86_64_GOT32: ClassVar[Relocation.TYPE] = ...
|
|
2495
|
-
X86_64_GOT64: ClassVar[Relocation.TYPE] = ...
|
|
2496
|
-
X86_64_GOTOFF64: ClassVar[Relocation.TYPE] = ...
|
|
2497
|
-
X86_64_GOTPC32: ClassVar[Relocation.TYPE] = ...
|
|
2498
|
-
X86_64_GOTPC32_TLSDESC: ClassVar[Relocation.TYPE] = ...
|
|
2499
|
-
X86_64_GOTPC64: ClassVar[Relocation.TYPE] = ...
|
|
2500
|
-
X86_64_GOTPCREL: ClassVar[Relocation.TYPE] = ...
|
|
2501
|
-
X86_64_GOTPCREL64: ClassVar[Relocation.TYPE] = ...
|
|
2502
|
-
X86_64_GOTPCRELX: ClassVar[Relocation.TYPE] = ...
|
|
2503
|
-
X86_64_GOTPLT64: ClassVar[Relocation.TYPE] = ...
|
|
2504
|
-
X86_64_GOTTPOFF: ClassVar[Relocation.TYPE] = ...
|
|
2505
|
-
X86_64_IRELATIVE: ClassVar[Relocation.TYPE] = ...
|
|
2506
|
-
X86_64_JUMP_SLOT: ClassVar[Relocation.TYPE] = ...
|
|
2507
|
-
X86_64_NONE: ClassVar[Relocation.TYPE] = ...
|
|
2508
|
-
X86_64_PC16: ClassVar[Relocation.TYPE] = ...
|
|
2509
|
-
X86_64_PC32: ClassVar[Relocation.TYPE] = ...
|
|
2510
|
-
X86_64_PC32_BND: ClassVar[Relocation.TYPE] = ...
|
|
2511
|
-
X86_64_PC64: ClassVar[Relocation.TYPE] = ...
|
|
2512
|
-
X86_64_PC8: ClassVar[Relocation.TYPE] = ...
|
|
2513
|
-
X86_64_PLT32: ClassVar[Relocation.TYPE] = ...
|
|
2514
|
-
X86_64_PLT32_BND: ClassVar[Relocation.TYPE] = ...
|
|
2515
|
-
X86_64_PLTOFF64: ClassVar[Relocation.TYPE] = ...
|
|
2516
|
-
X86_64_RELATIVE: ClassVar[Relocation.TYPE] = ...
|
|
2517
|
-
X86_64_RELATIVE64: ClassVar[Relocation.TYPE] = ...
|
|
2518
|
-
X86_64_REX_GOTPCRELX: ClassVar[Relocation.TYPE] = ...
|
|
2519
|
-
X86_64_SIZE32: ClassVar[Relocation.TYPE] = ...
|
|
2520
|
-
X86_64_SIZE64: ClassVar[Relocation.TYPE] = ...
|
|
2521
|
-
X86_64_TLSDESC: ClassVar[Relocation.TYPE] = ...
|
|
2522
|
-
X86_64_TLSDESC_CALL: ClassVar[Relocation.TYPE] = ...
|
|
2523
|
-
X86_64_TLSGD: ClassVar[Relocation.TYPE] = ...
|
|
2524
|
-
X86_64_TLSLD: ClassVar[Relocation.TYPE] = ...
|
|
2525
|
-
X86_64_TPOFF32: ClassVar[Relocation.TYPE] = ...
|
|
2526
|
-
X86_64_TPOFF64: ClassVar[Relocation.TYPE] = ...
|
|
2527
|
-
X86_8: ClassVar[Relocation.TYPE] = ...
|
|
2528
|
-
X86_COPY: ClassVar[Relocation.TYPE] = ...
|
|
2529
|
-
X86_GLOB_DAT: ClassVar[Relocation.TYPE] = ...
|
|
2530
|
-
X86_GOT32: ClassVar[Relocation.TYPE] = ...
|
|
2531
|
-
X86_GOTOFF: ClassVar[Relocation.TYPE] = ...
|
|
2532
|
-
X86_GOTPC: ClassVar[Relocation.TYPE] = ...
|
|
2533
|
-
X86_IRELATIVE: ClassVar[Relocation.TYPE] = ...
|
|
2534
|
-
X86_JUMP_SLOT: ClassVar[Relocation.TYPE] = ...
|
|
2535
|
-
X86_NONE: ClassVar[Relocation.TYPE] = ...
|
|
2536
|
-
X86_PC16: ClassVar[Relocation.TYPE] = ...
|
|
2537
|
-
X86_PC32: ClassVar[Relocation.TYPE] = ...
|
|
2538
|
-
X86_PC8: ClassVar[Relocation.TYPE] = ...
|
|
2539
|
-
X86_PLT32: ClassVar[Relocation.TYPE] = ...
|
|
2540
|
-
X86_RELATIVE: ClassVar[Relocation.TYPE] = ...
|
|
2541
|
-
X86_TLS_DESC: ClassVar[Relocation.TYPE] = ...
|
|
2542
|
-
X86_TLS_DESC_CALL: ClassVar[Relocation.TYPE] = ...
|
|
2543
|
-
X86_TLS_DTPMOD32: ClassVar[Relocation.TYPE] = ...
|
|
2544
|
-
X86_TLS_DTPOFF32: ClassVar[Relocation.TYPE] = ...
|
|
2545
|
-
X86_TLS_GD: ClassVar[Relocation.TYPE] = ...
|
|
2546
|
-
X86_TLS_GD_32: ClassVar[Relocation.TYPE] = ...
|
|
2547
|
-
X86_TLS_GD_CALL: ClassVar[Relocation.TYPE] = ...
|
|
2548
|
-
X86_TLS_GD_POP: ClassVar[Relocation.TYPE] = ...
|
|
2549
|
-
X86_TLS_GD_PUSH: ClassVar[Relocation.TYPE] = ...
|
|
2550
|
-
X86_TLS_GOTDESC: ClassVar[Relocation.TYPE] = ...
|
|
2551
|
-
X86_TLS_GOTIE: ClassVar[Relocation.TYPE] = ...
|
|
2552
|
-
X86_TLS_IE: ClassVar[Relocation.TYPE] = ...
|
|
2553
|
-
X86_TLS_IE_32: ClassVar[Relocation.TYPE] = ...
|
|
2554
|
-
X86_TLS_LDM: ClassVar[Relocation.TYPE] = ...
|
|
2555
|
-
X86_TLS_LDM_32: ClassVar[Relocation.TYPE] = ...
|
|
2556
|
-
X86_TLS_LDM_CALL: ClassVar[Relocation.TYPE] = ...
|
|
2557
|
-
X86_TLS_LDM_POP: ClassVar[Relocation.TYPE] = ...
|
|
2558
|
-
X86_TLS_LDM_PUSH: ClassVar[Relocation.TYPE] = ...
|
|
2559
|
-
X86_TLS_LDO_32: ClassVar[Relocation.TYPE] = ...
|
|
2560
|
-
X86_TLS_LE: ClassVar[Relocation.TYPE] = ...
|
|
2561
|
-
X86_TLS_LE_32: ClassVar[Relocation.TYPE] = ...
|
|
2562
|
-
X86_TLS_TPOFF: ClassVar[Relocation.TYPE] = ...
|
|
2563
|
-
X86_TLS_TPOFF32: ClassVar[Relocation.TYPE] = ...
|
|
2564
|
-
__name__: str
|
|
2565
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
2566
|
-
@staticmethod
|
|
2567
|
-
def from_value(arg: int, /) -> lief.ELF.Relocation.TYPE: ...
|
|
2568
|
-
def __ge__(self, other) -> bool: ...
|
|
2569
|
-
def __gt__(self, other) -> bool: ...
|
|
2570
|
-
def __hash__(self) -> int: ...
|
|
2571
|
-
def __index__(self) -> Any: ...
|
|
2572
|
-
def __int__(self) -> int: ...
|
|
2573
|
-
def __le__(self, other) -> bool: ...
|
|
2574
|
-
def __lt__(self, other) -> bool: ...
|
|
2575
|
-
@property
|
|
2576
|
-
def value(self) -> int: ...
|
|
2577
|
-
addend: int
|
|
2578
|
-
info: int
|
|
2579
|
-
purpose: lief.ELF.Relocation.PURPOSE
|
|
2580
|
-
symbol: lief.ELF.Symbol
|
|
2581
|
-
type: lief.ELF.Relocation.TYPE
|
|
2582
|
-
@overload
|
|
2583
|
-
def __init__(self) -> None: ...
|
|
2584
|
-
@overload
|
|
2585
|
-
def __init__(self, arch: lief.ELF.ARCH) -> None: ...
|
|
2586
|
-
@overload
|
|
2587
|
-
def __init__(self, address: int, type: lief.ELF.Relocation.TYPE, encoding: lief.ELF.Relocation.ENCODING) -> None: ...
|
|
2588
|
-
def r_info(self, clazz: lief.ELF.Header.CLASS) -> int: ...
|
|
2589
|
-
@property
|
|
2590
|
-
def encoding(self) -> lief.ELF.Relocation.ENCODING: ...
|
|
2591
|
-
@property
|
|
2592
|
-
def has_section(self) -> bool: ...
|
|
2593
|
-
@property
|
|
2594
|
-
def has_symbol(self) -> bool: ...
|
|
2595
|
-
@property
|
|
2596
|
-
def is_android_packed(self) -> bool: ...
|
|
2597
|
-
@property
|
|
2598
|
-
def is_rel(self) -> bool: ...
|
|
2599
|
-
@property
|
|
2600
|
-
def is_rela(self) -> bool: ...
|
|
2601
|
-
@property
|
|
2602
|
-
def is_relatively_encoded(self) -> bool: ...
|
|
2603
|
-
@property
|
|
2604
|
-
def section(self) -> lief.ELF.Section: ...
|
|
2605
|
-
@property
|
|
2606
|
-
def symbol_table(self) -> lief.ELF.Section: ...
|
|
2607
|
-
|
|
2608
|
-
class Section(lief.Section):
|
|
2609
|
-
class FLAGS:
|
|
2610
|
-
ALLOC: ClassVar[Section.FLAGS] = ...
|
|
2611
|
-
ARM_PURECODE: ClassVar[Section.FLAGS] = ...
|
|
2612
|
-
COMPRESSED: ClassVar[Section.FLAGS] = ...
|
|
2613
|
-
EXCLUDE: ClassVar[Section.FLAGS] = ...
|
|
2614
|
-
EXECINSTR: ClassVar[Section.FLAGS] = ...
|
|
2615
|
-
GNU_RETAIN: ClassVar[Section.FLAGS] = ...
|
|
2616
|
-
GROUP: ClassVar[Section.FLAGS] = ...
|
|
2617
|
-
HEX_GPREL: ClassVar[Section.FLAGS] = ...
|
|
2618
|
-
INFO_LINK: ClassVar[Section.FLAGS] = ...
|
|
2619
|
-
LINK_ORDER: ClassVar[Section.FLAGS] = ...
|
|
2620
|
-
MERGE: ClassVar[Section.FLAGS] = ...
|
|
2621
|
-
MIPS_ADDR: ClassVar[Section.FLAGS] = ...
|
|
2622
|
-
MIPS_GPREL: ClassVar[Section.FLAGS] = ...
|
|
2623
|
-
MIPS_LOCAL: ClassVar[Section.FLAGS] = ...
|
|
2624
|
-
MIPS_MERGE: ClassVar[Section.FLAGS] = ...
|
|
2625
|
-
MIPS_NAMES: ClassVar[Section.FLAGS] = ...
|
|
2626
|
-
MIPS_NODUPES: ClassVar[Section.FLAGS] = ...
|
|
2627
|
-
MIPS_NOSTRIP: ClassVar[Section.FLAGS] = ...
|
|
2628
|
-
MIPS_STRING: ClassVar[Section.FLAGS] = ...
|
|
2629
|
-
NONE: ClassVar[Section.FLAGS] = ...
|
|
2630
|
-
OS_NONCONFORMING: ClassVar[Section.FLAGS] = ...
|
|
2631
|
-
STRINGS: ClassVar[Section.FLAGS] = ...
|
|
2632
|
-
TLS: ClassVar[Section.FLAGS] = ...
|
|
2633
|
-
WRITE: ClassVar[Section.FLAGS] = ...
|
|
2634
|
-
X86_64_LARGE: ClassVar[Section.FLAGS] = ...
|
|
2635
|
-
XCORE_SHF_CP_SECTION: ClassVar[Section.FLAGS] = ...
|
|
2636
|
-
XCORE_SHF_DP_SECTION: ClassVar[Section.FLAGS] = ...
|
|
2637
|
-
__name__: str
|
|
2638
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
2639
|
-
@staticmethod
|
|
2640
|
-
def from_value(arg: int, /) -> lief.ELF.Section.FLAGS: ...
|
|
2641
|
-
def __abs__(self) -> Any: ...
|
|
2642
|
-
def __add__(self, other) -> Any: ...
|
|
2643
|
-
@overload
|
|
2644
|
-
def __and__(self, arg: int, /) -> int: ...
|
|
2645
|
-
@overload
|
|
2646
|
-
def __and__(self, arg: lief.ELF.Section.FLAGS, /) -> int: ...
|
|
2647
|
-
def __floordiv__(self, other) -> Any: ...
|
|
2648
|
-
def __ge__(self, arg: int, /) -> bool: ...
|
|
2649
|
-
def __gt__(self, arg: int, /) -> bool: ...
|
|
2650
|
-
def __hash__(self) -> int: ...
|
|
2651
|
-
def __index__(self) -> Any: ...
|
|
2652
|
-
def __int__(self) -> int: ...
|
|
2653
|
-
def __invert__(self) -> int: ...
|
|
2654
|
-
def __le__(self, arg: int, /) -> bool: ...
|
|
2655
|
-
def __lshift__(self, other) -> Any: ...
|
|
2656
|
-
def __lt__(self, arg: int, /) -> bool: ...
|
|
2657
|
-
def __mul__(self, other) -> Any: ...
|
|
2658
|
-
def __neg__(self) -> Any: ...
|
|
2659
|
-
@overload
|
|
2660
|
-
def __or__(self, arg: int, /) -> int: ...
|
|
2661
|
-
@overload
|
|
2662
|
-
def __or__(self, arg: lief.ELF.Section.FLAGS, /) -> lief.ELF.Section.FLAGS: ...
|
|
2663
|
-
def __radd__(self, other) -> Any: ...
|
|
2664
|
-
def __rand__(self, arg: int, /) -> int: ...
|
|
2665
|
-
def __rfloordiv__(self, other) -> Any: ...
|
|
2666
|
-
def __rlshift__(self, other) -> Any: ...
|
|
2667
|
-
def __rmul__(self, other) -> Any: ...
|
|
2668
|
-
def __ror__(self, arg: int, /) -> int: ...
|
|
2669
|
-
def __rrshift__(self, other) -> Any: ...
|
|
2670
|
-
def __rshift__(self, other) -> Any: ...
|
|
2671
|
-
def __rsub__(self, other) -> Any: ...
|
|
2672
|
-
def __rxor__(self, arg: int, /) -> int: ...
|
|
2673
|
-
def __sub__(self, other) -> Any: ...
|
|
2674
|
-
@overload
|
|
2675
|
-
def __xor__(self, arg: int, /) -> int: ...
|
|
2676
|
-
@overload
|
|
2677
|
-
def __xor__(self, arg: lief.ELF.Section.FLAGS, /) -> int: ...
|
|
2678
|
-
@property
|
|
2679
|
-
def value(self) -> int: ...
|
|
2680
|
-
|
|
2681
|
-
class TYPE:
|
|
2682
|
-
ANDROID_REL: ClassVar[Section.TYPE] = ...
|
|
2683
|
-
ANDROID_RELA: ClassVar[Section.TYPE] = ...
|
|
2684
|
-
ANDROID_RELR: ClassVar[Section.TYPE] = ...
|
|
2685
|
-
ARM_ATTRIBUTES: ClassVar[Section.TYPE] = ...
|
|
2686
|
-
ARM_DEBUGOVERLAY: ClassVar[Section.TYPE] = ...
|
|
2687
|
-
ARM_EXIDX: ClassVar[Section.TYPE] = ...
|
|
2688
|
-
ARM_OVERLAYSECTION: ClassVar[Section.TYPE] = ...
|
|
2689
|
-
ARM_PREEMPTMAP: ClassVar[Section.TYPE] = ...
|
|
2690
|
-
DYNAMIC: ClassVar[Section.TYPE] = ...
|
|
2691
|
-
DYNSYM: ClassVar[Section.TYPE] = ...
|
|
2692
|
-
FINI_ARRAY: ClassVar[Section.TYPE] = ...
|
|
2693
|
-
GNU_ATTRIBUTES: ClassVar[Section.TYPE] = ...
|
|
2694
|
-
GNU_HASH: ClassVar[Section.TYPE] = ...
|
|
2695
|
-
GNU_VERDEF: ClassVar[Section.TYPE] = ...
|
|
2696
|
-
GNU_VERNEED: ClassVar[Section.TYPE] = ...
|
|
2697
|
-
GNU_VERSYM: ClassVar[Section.TYPE] = ...
|
|
2698
|
-
GROUP: ClassVar[Section.TYPE] = ...
|
|
2699
|
-
HASH: ClassVar[Section.TYPE] = ...
|
|
2700
|
-
HEX_ORDERED: ClassVar[Section.TYPE] = ...
|
|
2701
|
-
INIT_ARRAY: ClassVar[Section.TYPE] = ...
|
|
2702
|
-
LLVM_ADDRSIG: ClassVar[Section.TYPE] = ...
|
|
2703
|
-
MIPS_ABIFLAGS: ClassVar[Section.TYPE] = ...
|
|
2704
|
-
MIPS_OPTIONS: ClassVar[Section.TYPE] = ...
|
|
2705
|
-
MIPS_REGINFO: ClassVar[Section.TYPE] = ...
|
|
2706
|
-
NOBITS: ClassVar[Section.TYPE] = ...
|
|
2707
|
-
NOTE: ClassVar[Section.TYPE] = ...
|
|
2708
|
-
PREINIT_ARRAY: ClassVar[Section.TYPE] = ...
|
|
2709
|
-
PROGBITS: ClassVar[Section.TYPE] = ...
|
|
2710
|
-
REL: ClassVar[Section.TYPE] = ...
|
|
2711
|
-
RELA: ClassVar[Section.TYPE] = ...
|
|
2712
|
-
RELR: ClassVar[Section.TYPE] = ...
|
|
2713
|
-
SHLIB: ClassVar[Section.TYPE] = ...
|
|
2714
|
-
SHT_NULL: ClassVar[Section.TYPE] = ...
|
|
2715
|
-
STRTAB: ClassVar[Section.TYPE] = ...
|
|
2716
|
-
SYMTAB: ClassVar[Section.TYPE] = ...
|
|
2717
|
-
SYMTAB_SHNDX: ClassVar[Section.TYPE] = ...
|
|
2718
|
-
X86_64_UNWIND: ClassVar[Section.TYPE] = ...
|
|
2719
|
-
__name__: str
|
|
2720
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
2721
|
-
@staticmethod
|
|
2722
|
-
def from_value(arg: int, /) -> lief.ELF.Section.TYPE: ...
|
|
2723
|
-
def __ge__(self, other) -> bool: ...
|
|
2724
|
-
def __gt__(self, other) -> bool: ...
|
|
2725
|
-
def __hash__(self) -> int: ...
|
|
2726
|
-
def __index__(self) -> Any: ...
|
|
2727
|
-
def __int__(self) -> int: ...
|
|
2728
|
-
def __le__(self, other) -> bool: ...
|
|
2729
|
-
def __lt__(self, other) -> bool: ...
|
|
2730
|
-
@property
|
|
2731
|
-
def value(self) -> int: ...
|
|
2732
|
-
|
|
2733
|
-
class it_segments:
|
|
2734
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
2735
|
-
def __getitem__(self, arg: int, /) -> lief.ELF.Segment: ...
|
|
2736
|
-
def __iter__(self) -> lief.ELF.Section.it_segments: ...
|
|
2737
|
-
def __len__(self) -> int: ...
|
|
2738
|
-
def __next__(self) -> lief.ELF.Segment: ...
|
|
2739
|
-
alignment: int
|
|
2740
|
-
entry_size: int
|
|
2741
|
-
file_offset: int
|
|
2742
|
-
flags: int
|
|
2743
|
-
information: int
|
|
2744
|
-
link: int
|
|
2745
|
-
type: lief.ELF.Section.TYPE
|
|
2746
|
-
@overload
|
|
2747
|
-
def __init__(self) -> None: ...
|
|
2748
|
-
@overload
|
|
2749
|
-
def __init__(self, name: str, type: lief.ELF.Section.TYPE = ...) -> None: ...
|
|
2750
|
-
def add(self, flag: lief.ELF.Section.FLAGS) -> None: ...
|
|
2751
|
-
def as_frame(self) -> lief.ELF.Section: ...
|
|
2752
|
-
def clear(self, value: int = ...) -> lief.ELF.Section: ...
|
|
2753
|
-
@overload
|
|
2754
|
-
def has(self, flag: lief.ELF.Section.FLAGS) -> bool: ...
|
|
2755
|
-
@overload
|
|
2756
|
-
def has(self, segment: lief.ELF.Segment) -> bool: ...
|
|
2757
|
-
def remove(self, flag: lief.ELF.Section.FLAGS) -> None: ...
|
|
2758
|
-
@overload
|
|
2759
|
-
def __contains__(self, arg: lief.ELF.Section.FLAGS, /) -> bool: ...
|
|
2760
|
-
@overload
|
|
2761
|
-
def __contains__(self, arg: lief.ELF.Segment, /) -> bool: ...
|
|
2762
|
-
def __iadd__(self, arg: lief.ELF.Section.FLAGS, /) -> lief.ELF.Section: ...
|
|
2763
|
-
def __isub__(self, arg: lief.ELF.Section.FLAGS, /) -> lief.ELF.Section: ...
|
|
2764
|
-
@property
|
|
2765
|
-
def flags_list(self) -> list[lief.ELF.Section.FLAGS]: ...
|
|
2766
|
-
@property
|
|
2767
|
-
def is_frame(self) -> bool: ...
|
|
2768
|
-
@property
|
|
2769
|
-
def original_size(self) -> int: ...
|
|
2770
|
-
@property
|
|
2771
|
-
def segments(self) -> lief.ELF.Section.it_segments: ...
|
|
2772
|
-
|
|
2773
|
-
class Segment(lief.Object):
|
|
2774
|
-
class FLAGS:
|
|
2775
|
-
NONE: ClassVar[Segment.FLAGS] = ...
|
|
2776
|
-
R: ClassVar[Segment.FLAGS] = ...
|
|
2777
|
-
W: ClassVar[Segment.FLAGS] = ...
|
|
2778
|
-
X: ClassVar[Segment.FLAGS] = ...
|
|
2779
|
-
__name__: str
|
|
2780
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
2781
|
-
@staticmethod
|
|
2782
|
-
def from_value(arg: int, /) -> lief.ELF.Segment.FLAGS: ...
|
|
2783
|
-
def __abs__(self) -> Any: ...
|
|
2784
|
-
def __add__(self, other) -> Any: ...
|
|
2785
|
-
@overload
|
|
2786
|
-
def __and__(self, arg: int, /) -> int: ...
|
|
2787
|
-
@overload
|
|
2788
|
-
def __and__(self, arg: lief.ELF.Segment.FLAGS, /) -> int: ...
|
|
2789
|
-
def __floordiv__(self, other) -> Any: ...
|
|
2790
|
-
def __ge__(self, arg: int, /) -> bool: ...
|
|
2791
|
-
def __gt__(self, arg: int, /) -> bool: ...
|
|
2792
|
-
def __hash__(self) -> int: ...
|
|
2793
|
-
def __index__(self) -> Any: ...
|
|
2794
|
-
def __int__(self) -> int: ...
|
|
2795
|
-
def __invert__(self) -> int: ...
|
|
2796
|
-
def __le__(self, arg: int, /) -> bool: ...
|
|
2797
|
-
def __lshift__(self, other) -> Any: ...
|
|
2798
|
-
def __lt__(self, arg: int, /) -> bool: ...
|
|
2799
|
-
def __mul__(self, other) -> Any: ...
|
|
2800
|
-
def __neg__(self) -> Any: ...
|
|
2801
|
-
@overload
|
|
2802
|
-
def __or__(self, arg: int, /) -> int: ...
|
|
2803
|
-
@overload
|
|
2804
|
-
def __or__(self, arg: lief.ELF.Segment.FLAGS, /) -> lief.ELF.Segment.FLAGS: ...
|
|
2805
|
-
def __radd__(self, other) -> Any: ...
|
|
2806
|
-
def __rand__(self, arg: int, /) -> int: ...
|
|
2807
|
-
def __rfloordiv__(self, other) -> Any: ...
|
|
2808
|
-
def __rlshift__(self, other) -> Any: ...
|
|
2809
|
-
def __rmul__(self, other) -> Any: ...
|
|
2810
|
-
def __ror__(self, arg: int, /) -> int: ...
|
|
2811
|
-
def __rrshift__(self, other) -> Any: ...
|
|
2812
|
-
def __rshift__(self, other) -> Any: ...
|
|
2813
|
-
def __rsub__(self, other) -> Any: ...
|
|
2814
|
-
def __rxor__(self, arg: int, /) -> int: ...
|
|
2815
|
-
def __sub__(self, other) -> Any: ...
|
|
2816
|
-
@overload
|
|
2817
|
-
def __xor__(self, arg: int, /) -> int: ...
|
|
2818
|
-
@overload
|
|
2819
|
-
def __xor__(self, arg: lief.ELF.Segment.FLAGS, /) -> int: ...
|
|
2820
|
-
@property
|
|
2821
|
-
def value(self) -> int: ...
|
|
2822
|
-
|
|
2823
|
-
class TYPE:
|
|
2824
|
-
AARCH64_MEMTAG_MTE: ClassVar[Segment.TYPE] = ...
|
|
2825
|
-
ARM_ARCHEXT: ClassVar[Segment.TYPE] = ...
|
|
2826
|
-
ARM_EXIDX: ClassVar[Segment.TYPE] = ...
|
|
2827
|
-
DYNAMIC: ClassVar[Segment.TYPE] = ...
|
|
2828
|
-
GNU_EH_FRAME: ClassVar[Segment.TYPE] = ...
|
|
2829
|
-
GNU_PROPERTY: ClassVar[Segment.TYPE] = ...
|
|
2830
|
-
GNU_RELRO: ClassVar[Segment.TYPE] = ...
|
|
2831
|
-
GNU_STACK: ClassVar[Segment.TYPE] = ...
|
|
2832
|
-
INTERP: ClassVar[Segment.TYPE] = ...
|
|
2833
|
-
LOAD: ClassVar[Segment.TYPE] = ...
|
|
2834
|
-
MIPS_ABIFLAGS: ClassVar[Segment.TYPE] = ...
|
|
2835
|
-
MIPS_OPTIONS: ClassVar[Segment.TYPE] = ...
|
|
2836
|
-
MIPS_REGINFO: ClassVar[Segment.TYPE] = ...
|
|
2837
|
-
MIPS_RTPROC: ClassVar[Segment.TYPE] = ...
|
|
2838
|
-
NOTE: ClassVar[Segment.TYPE] = ...
|
|
2839
|
-
PHDR: ClassVar[Segment.TYPE] = ...
|
|
2840
|
-
PT_NULL: ClassVar[Segment.TYPE] = ...
|
|
2841
|
-
RISCV_ATTRIBUTES: ClassVar[Segment.TYPE] = ...
|
|
2842
|
-
SHLIB: ClassVar[Segment.TYPE] = ...
|
|
2843
|
-
TLS: ClassVar[Segment.TYPE] = ...
|
|
2844
|
-
__name__: str
|
|
2845
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
2846
|
-
@staticmethod
|
|
2847
|
-
def from_value(arg: int, /) -> lief.ELF.Segment.TYPE: ...
|
|
2848
|
-
def __ge__(self, other) -> bool: ...
|
|
2849
|
-
def __gt__(self, other) -> bool: ...
|
|
2850
|
-
def __hash__(self) -> int: ...
|
|
2851
|
-
def __index__(self) -> Any: ...
|
|
2852
|
-
def __int__(self) -> int: ...
|
|
2853
|
-
def __le__(self, other) -> bool: ...
|
|
2854
|
-
def __lt__(self, other) -> bool: ...
|
|
2855
|
-
@property
|
|
2856
|
-
def value(self) -> int: ...
|
|
2857
|
-
|
|
2858
|
-
class it_sections:
|
|
2859
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
2860
|
-
def __getitem__(self, arg: int, /) -> lief.ELF.Section: ...
|
|
2861
|
-
def __iter__(self) -> lief.ELF.Segment.it_sections: ...
|
|
2862
|
-
def __len__(self) -> int: ...
|
|
2863
|
-
def __next__(self) -> lief.ELF.Section: ...
|
|
2864
|
-
alignment: int
|
|
2865
|
-
content: memoryview
|
|
2866
|
-
file_offset: int
|
|
2867
|
-
flags: lief.ELF.Segment.FLAGS
|
|
2868
|
-
physical_address: int
|
|
2869
|
-
physical_size: int
|
|
2870
|
-
type: lief.ELF.Segment.TYPE
|
|
2871
|
-
virtual_address: int
|
|
2872
|
-
virtual_size: int
|
|
2873
|
-
def __init__(self) -> None: ...
|
|
2874
|
-
def add(self, flag: lief.ELF.Segment.FLAGS) -> None: ...
|
|
2875
|
-
@staticmethod
|
|
2876
|
-
def from_raw(arg: bytes, /) -> Union[lief.ELF.Segment,lief.lief_errors]: ...
|
|
2877
|
-
@overload
|
|
2878
|
-
def has(self, flag: lief.ELF.Segment.FLAGS) -> bool: ...
|
|
2879
|
-
@overload
|
|
2880
|
-
def has(self, section: lief.ELF.Section) -> bool: ...
|
|
2881
|
-
@overload
|
|
2882
|
-
def has(self, section_name: str) -> bool: ...
|
|
2883
|
-
def remove(self, flag: lief.ELF.Segment.FLAGS) -> None: ...
|
|
2884
|
-
@overload
|
|
2885
|
-
def __contains__(self, arg: lief.ELF.Segment.FLAGS, /) -> bool: ...
|
|
2886
|
-
@overload
|
|
2887
|
-
def __contains__(self, arg: lief.ELF.Section, /) -> bool: ...
|
|
2888
|
-
@overload
|
|
2889
|
-
def __contains__(self, arg: str, /) -> bool: ...
|
|
2890
|
-
def __iadd__(self, arg: lief.ELF.Segment.FLAGS, /) -> lief.ELF.Segment: ...
|
|
2891
|
-
def __isub__(self, arg: lief.ELF.Segment.FLAGS, /) -> lief.ELF.Segment: ...
|
|
2892
|
-
@property
|
|
2893
|
-
def sections(self) -> lief.ELF.Segment.it_sections: ...
|
|
2894
|
-
|
|
2895
|
-
class StackSize(NoteGnuProperty.Property):
|
|
2896
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
2897
|
-
@property
|
|
2898
|
-
def stack_size(self) -> int: ...
|
|
2899
|
-
|
|
2900
|
-
class Symbol(lief.Symbol):
|
|
2901
|
-
class BINDING:
|
|
2902
|
-
GLOBAL: ClassVar[Symbol.BINDING] = ...
|
|
2903
|
-
GNU_UNIQUE: ClassVar[Symbol.BINDING] = ...
|
|
2904
|
-
LOCAL: ClassVar[Symbol.BINDING] = ...
|
|
2905
|
-
WEAK: ClassVar[Symbol.BINDING] = ...
|
|
2906
|
-
__name__: str
|
|
2907
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
2908
|
-
@staticmethod
|
|
2909
|
-
def from_value(arg: int, /) -> lief.ELF.Symbol.BINDING: ...
|
|
2910
|
-
def __ge__(self, other) -> bool: ...
|
|
2911
|
-
def __gt__(self, other) -> bool: ...
|
|
2912
|
-
def __hash__(self) -> int: ...
|
|
2913
|
-
def __index__(self) -> Any: ...
|
|
2914
|
-
def __int__(self) -> int: ...
|
|
2915
|
-
def __le__(self, other) -> bool: ...
|
|
2916
|
-
def __lt__(self, other) -> bool: ...
|
|
2917
|
-
@property
|
|
2918
|
-
def value(self) -> int: ...
|
|
2919
|
-
|
|
2920
|
-
class TYPE:
|
|
2921
|
-
COMMON: ClassVar[Symbol.TYPE] = ...
|
|
2922
|
-
FILE: ClassVar[Symbol.TYPE] = ...
|
|
2923
|
-
FUNC: ClassVar[Symbol.TYPE] = ...
|
|
2924
|
-
GNU_IFUNC: ClassVar[Symbol.TYPE] = ...
|
|
2925
|
-
NOTYPE: ClassVar[Symbol.TYPE] = ...
|
|
2926
|
-
OBJECT: ClassVar[Symbol.TYPE] = ...
|
|
2927
|
-
SECTION: ClassVar[Symbol.TYPE] = ...
|
|
2928
|
-
TLS: ClassVar[Symbol.TYPE] = ...
|
|
2929
|
-
__name__: str
|
|
2930
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
2931
|
-
@staticmethod
|
|
2932
|
-
def from_value(arg: int, /) -> lief.ELF.Symbol.TYPE: ...
|
|
2933
|
-
def __ge__(self, other) -> bool: ...
|
|
2934
|
-
def __gt__(self, other) -> bool: ...
|
|
2935
|
-
def __hash__(self) -> int: ...
|
|
2936
|
-
def __index__(self) -> Any: ...
|
|
2937
|
-
def __int__(self) -> int: ...
|
|
2938
|
-
def __le__(self, other) -> bool: ...
|
|
2939
|
-
def __lt__(self, other) -> bool: ...
|
|
2940
|
-
@property
|
|
2941
|
-
def value(self) -> int: ...
|
|
2942
|
-
|
|
2943
|
-
class VISIBILITY:
|
|
2944
|
-
DEFAULT: ClassVar[Symbol.VISIBILITY] = ...
|
|
2945
|
-
HIDDEN: ClassVar[Symbol.VISIBILITY] = ...
|
|
2946
|
-
INTERNAL: ClassVar[Symbol.VISIBILITY] = ...
|
|
2947
|
-
PROTECTED: ClassVar[Symbol.VISIBILITY] = ...
|
|
2948
|
-
__name__: str
|
|
2949
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
2950
|
-
@staticmethod
|
|
2951
|
-
def from_value(arg: int, /) -> lief.ELF.Symbol.VISIBILITY: ...
|
|
2952
|
-
def __ge__(self, other) -> bool: ...
|
|
2953
|
-
def __gt__(self, other) -> bool: ...
|
|
2954
|
-
def __hash__(self) -> int: ...
|
|
2955
|
-
def __index__(self) -> Any: ...
|
|
2956
|
-
def __int__(self) -> int: ...
|
|
2957
|
-
def __le__(self, other) -> bool: ...
|
|
2958
|
-
def __lt__(self, other) -> bool: ...
|
|
2959
|
-
@property
|
|
2960
|
-
def value(self) -> int: ...
|
|
2961
|
-
binding: lief.ELF.Symbol.BINDING
|
|
2962
|
-
exported: bool
|
|
2963
|
-
imported: bool
|
|
2964
|
-
information: int
|
|
2965
|
-
other: int
|
|
2966
|
-
shndx: int
|
|
2967
|
-
size: int
|
|
2968
|
-
type: lief.ELF.Symbol.TYPE
|
|
2969
|
-
value: int
|
|
2970
|
-
visibility: lief.ELF.Symbol.VISIBILITY
|
|
2971
|
-
def __init__(self) -> None: ...
|
|
2972
|
-
@property
|
|
2973
|
-
def demangled_name(self) -> str: ...
|
|
2974
|
-
@property
|
|
2975
|
-
def has_version(self) -> bool: ...
|
|
2976
|
-
@property
|
|
2977
|
-
def is_function(self) -> bool: ...
|
|
2978
|
-
@property
|
|
2979
|
-
def is_static(self) -> bool: ...
|
|
2980
|
-
@property
|
|
2981
|
-
def is_variable(self) -> bool: ...
|
|
2982
|
-
@property
|
|
2983
|
-
def section(self) -> lief.ELF.Section: ...
|
|
2984
|
-
@property
|
|
2985
|
-
def symbol_version(self) -> lief.ELF.SymbolVersion: ...
|
|
2986
|
-
|
|
2987
|
-
class SymbolVersion(lief.Object):
|
|
2988
|
-
symbol_version_auxiliary: lief.ELF.SymbolVersionAux
|
|
2989
|
-
value: int
|
|
2990
|
-
@overload
|
|
2991
|
-
def __init__(self) -> None: ...
|
|
2992
|
-
@overload
|
|
2993
|
-
def __init__(self, arg: int, /) -> None: ...
|
|
2994
|
-
@property
|
|
2995
|
-
def global_(self) -> lief.ELF.SymbolVersion: ...
|
|
2996
|
-
@property
|
|
2997
|
-
def has_auxiliary_version(self) -> bool: ...
|
|
2998
|
-
@property
|
|
2999
|
-
def local(self) -> lief.ELF.SymbolVersion: ...
|
|
3000
|
-
|
|
3001
|
-
class SymbolVersionAux(lief.Object):
|
|
3002
|
-
name: Union[str,bytes]
|
|
3003
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
3004
|
-
|
|
3005
|
-
class SymbolVersionAuxRequirement(SymbolVersionAux):
|
|
3006
|
-
flags: int
|
|
3007
|
-
hash: int
|
|
3008
|
-
other: int
|
|
3009
|
-
def __init__(self) -> None: ...
|
|
3010
|
-
|
|
3011
|
-
class SymbolVersionDefinition(lief.Object):
|
|
3012
|
-
class it_version_aux:
|
|
3013
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
3014
|
-
def __getitem__(self, arg: int, /) -> lief.ELF.SymbolVersionAux: ...
|
|
3015
|
-
def __iter__(self) -> lief.ELF.SymbolVersionDefinition.it_version_aux: ...
|
|
3016
|
-
def __len__(self) -> int: ...
|
|
3017
|
-
def __next__(self) -> lief.ELF.SymbolVersionAux: ...
|
|
3018
|
-
flags: int
|
|
3019
|
-
hash: int
|
|
3020
|
-
version: int
|
|
3021
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
3022
|
-
@property
|
|
3023
|
-
def auxiliary_symbols(self) -> lief.ELF.SymbolVersionDefinition.it_version_aux: ...
|
|
3024
|
-
@property
|
|
3025
|
-
def ndx(self) -> int: ...
|
|
3026
|
-
|
|
3027
|
-
class SymbolVersionRequirement(lief.Object):
|
|
3028
|
-
class it_aux_requirement:
|
|
3029
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
3030
|
-
def __getitem__(self, arg: int, /) -> lief.ELF.SymbolVersionAuxRequirement: ...
|
|
3031
|
-
def __iter__(self) -> lief.ELF.SymbolVersionRequirement.it_aux_requirement: ...
|
|
3032
|
-
def __len__(self) -> int: ...
|
|
3033
|
-
def __next__(self) -> lief.ELF.SymbolVersionAuxRequirement: ...
|
|
3034
|
-
name: str
|
|
3035
|
-
version: int
|
|
3036
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
3037
|
-
def add_auxiliary_requirement(self, arg: lief.ELF.SymbolVersionAuxRequirement, /) -> lief.ELF.SymbolVersionAuxRequirement: ...
|
|
3038
|
-
def get_auxiliary_symbols(self) -> lief.ELF.SymbolVersionRequirement.it_aux_requirement: ...
|
|
3039
|
-
|
|
3040
|
-
class SysvHash(lief.Object):
|
|
3041
|
-
nchain: int
|
|
3042
|
-
def __init__(self) -> None: ...
|
|
3043
|
-
@property
|
|
3044
|
-
def buckets(self) -> list[int]: ...
|
|
3045
|
-
@property
|
|
3046
|
-
def chains(self) -> list[int]: ...
|
|
3047
|
-
@property
|
|
3048
|
-
def nbucket(self) -> int: ...
|
|
3049
|
-
|
|
3050
|
-
class X86Features(NoteGnuProperty.Property):
|
|
3051
|
-
class FEATURE:
|
|
3052
|
-
FXSR: ClassVar[X86Features.FEATURE] = ...
|
|
3053
|
-
IBT: ClassVar[X86Features.FEATURE] = ...
|
|
3054
|
-
LAM_U48: ClassVar[X86Features.FEATURE] = ...
|
|
3055
|
-
LAM_U57: ClassVar[X86Features.FEATURE] = ...
|
|
3056
|
-
MASK: ClassVar[X86Features.FEATURE] = ...
|
|
3057
|
-
MMX: ClassVar[X86Features.FEATURE] = ...
|
|
3058
|
-
SHSTK: ClassVar[X86Features.FEATURE] = ...
|
|
3059
|
-
TMM: ClassVar[X86Features.FEATURE] = ...
|
|
3060
|
-
UNKNOWN: ClassVar[X86Features.FEATURE] = ...
|
|
3061
|
-
X86: ClassVar[X86Features.FEATURE] = ...
|
|
3062
|
-
X87: ClassVar[X86Features.FEATURE] = ...
|
|
3063
|
-
XMM: ClassVar[X86Features.FEATURE] = ...
|
|
3064
|
-
XSAVE: ClassVar[X86Features.FEATURE] = ...
|
|
3065
|
-
XSAVEC: ClassVar[X86Features.FEATURE] = ...
|
|
3066
|
-
XSAVEOPT: ClassVar[X86Features.FEATURE] = ...
|
|
3067
|
-
YMM: ClassVar[X86Features.FEATURE] = ...
|
|
3068
|
-
ZMM: ClassVar[X86Features.FEATURE] = ...
|
|
3069
|
-
__name__: str
|
|
3070
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
3071
|
-
@staticmethod
|
|
3072
|
-
def from_value(arg: int, /) -> lief.ELF.X86Features.FEATURE: ...
|
|
3073
|
-
def __ge__(self, other) -> bool: ...
|
|
3074
|
-
def __gt__(self, other) -> bool: ...
|
|
3075
|
-
def __hash__(self) -> int: ...
|
|
3076
|
-
def __index__(self) -> Any: ...
|
|
3077
|
-
def __int__(self) -> int: ...
|
|
3078
|
-
def __le__(self, other) -> bool: ...
|
|
3079
|
-
def __lt__(self, other) -> bool: ...
|
|
3080
|
-
@property
|
|
3081
|
-
def value(self) -> int: ...
|
|
3082
|
-
|
|
3083
|
-
class FLAG:
|
|
3084
|
-
NEEDED: ClassVar[X86Features.FLAG] = ...
|
|
3085
|
-
NONE: ClassVar[X86Features.FLAG] = ...
|
|
3086
|
-
USED: ClassVar[X86Features.FLAG] = ...
|
|
3087
|
-
__name__: str
|
|
3088
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
3089
|
-
@staticmethod
|
|
3090
|
-
def from_value(arg: int, /) -> lief.ELF.X86Features.FLAG: ...
|
|
3091
|
-
def __ge__(self, other) -> bool: ...
|
|
3092
|
-
def __gt__(self, other) -> bool: ...
|
|
3093
|
-
def __hash__(self) -> int: ...
|
|
3094
|
-
def __index__(self) -> Any: ...
|
|
3095
|
-
def __int__(self) -> int: ...
|
|
3096
|
-
def __le__(self, other) -> bool: ...
|
|
3097
|
-
def __lt__(self, other) -> bool: ...
|
|
3098
|
-
@property
|
|
3099
|
-
def value(self) -> int: ...
|
|
3100
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
3101
|
-
@property
|
|
3102
|
-
def features(self) -> list[tuple[lief.ELF.X86Features.FLAG,lief.ELF.X86Features.FEATURE]]: ...
|
|
3103
|
-
|
|
3104
|
-
class X86ISA(NoteGnuProperty.Property):
|
|
3105
|
-
class FLAG:
|
|
3106
|
-
NEEDED: ClassVar[X86ISA.FLAG] = ...
|
|
3107
|
-
NONE: ClassVar[X86ISA.FLAG] = ...
|
|
3108
|
-
USED: ClassVar[X86ISA.FLAG] = ...
|
|
3109
|
-
__name__: str
|
|
3110
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
3111
|
-
@staticmethod
|
|
3112
|
-
def from_value(arg: int, /) -> lief.ELF.X86ISA.FLAG: ...
|
|
3113
|
-
def __ge__(self, other) -> bool: ...
|
|
3114
|
-
def __gt__(self, other) -> bool: ...
|
|
3115
|
-
def __hash__(self) -> int: ...
|
|
3116
|
-
def __index__(self) -> Any: ...
|
|
3117
|
-
def __int__(self) -> int: ...
|
|
3118
|
-
def __le__(self, other) -> bool: ...
|
|
3119
|
-
def __lt__(self, other) -> bool: ...
|
|
3120
|
-
@property
|
|
3121
|
-
def value(self) -> int: ...
|
|
3122
|
-
|
|
3123
|
-
class ISA:
|
|
3124
|
-
AVX: ClassVar[X86ISA.ISA] = ...
|
|
3125
|
-
AVX2: ClassVar[X86ISA.ISA] = ...
|
|
3126
|
-
AVX512BW: ClassVar[X86ISA.ISA] = ...
|
|
3127
|
-
AVX512CD: ClassVar[X86ISA.ISA] = ...
|
|
3128
|
-
AVX512DQ: ClassVar[X86ISA.ISA] = ...
|
|
3129
|
-
AVX512ER: ClassVar[X86ISA.ISA] = ...
|
|
3130
|
-
AVX512F: ClassVar[X86ISA.ISA] = ...
|
|
3131
|
-
AVX512PF: ClassVar[X86ISA.ISA] = ...
|
|
3132
|
-
AVX512VL: ClassVar[X86ISA.ISA] = ...
|
|
3133
|
-
AVX512_4FMAPS: ClassVar[X86ISA.ISA] = ...
|
|
3134
|
-
AVX512_4VNNIW: ClassVar[X86ISA.ISA] = ...
|
|
3135
|
-
AVX512_BF16: ClassVar[X86ISA.ISA] = ...
|
|
3136
|
-
AVX512_BITALG: ClassVar[X86ISA.ISA] = ...
|
|
3137
|
-
AVX512_IFMA: ClassVar[X86ISA.ISA] = ...
|
|
3138
|
-
AVX512_VBMI: ClassVar[X86ISA.ISA] = ...
|
|
3139
|
-
AVX512_VBMI2: ClassVar[X86ISA.ISA] = ...
|
|
3140
|
-
AVX512_VNNI: ClassVar[X86ISA.ISA] = ...
|
|
3141
|
-
BASELINE: ClassVar[X86ISA.ISA] = ...
|
|
3142
|
-
CMOV: ClassVar[X86ISA.ISA] = ...
|
|
3143
|
-
FMA: ClassVar[X86ISA.ISA] = ...
|
|
3144
|
-
I486: ClassVar[X86ISA.ISA] = ...
|
|
3145
|
-
I586: ClassVar[X86ISA.ISA] = ...
|
|
3146
|
-
I686: ClassVar[X86ISA.ISA] = ...
|
|
3147
|
-
SSE: ClassVar[X86ISA.ISA] = ...
|
|
3148
|
-
SSE2: ClassVar[X86ISA.ISA] = ...
|
|
3149
|
-
SSE3: ClassVar[X86ISA.ISA] = ...
|
|
3150
|
-
SSE4_1: ClassVar[X86ISA.ISA] = ...
|
|
3151
|
-
SSE4_2: ClassVar[X86ISA.ISA] = ...
|
|
3152
|
-
SSSE3: ClassVar[X86ISA.ISA] = ...
|
|
3153
|
-
UNKNOWN: ClassVar[X86ISA.ISA] = ...
|
|
3154
|
-
V2: ClassVar[X86ISA.ISA] = ...
|
|
3155
|
-
V3: ClassVar[X86ISA.ISA] = ...
|
|
3156
|
-
V4: ClassVar[X86ISA.ISA] = ...
|
|
3157
|
-
__name__: str
|
|
3158
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
3159
|
-
@staticmethod
|
|
3160
|
-
def from_value(arg: int, /) -> lief.ELF.X86ISA.ISA: ...
|
|
3161
|
-
def __ge__(self, other) -> bool: ...
|
|
3162
|
-
def __gt__(self, other) -> bool: ...
|
|
3163
|
-
def __hash__(self) -> int: ...
|
|
3164
|
-
def __index__(self) -> Any: ...
|
|
3165
|
-
def __int__(self) -> int: ...
|
|
3166
|
-
def __le__(self, other) -> bool: ...
|
|
3167
|
-
def __lt__(self, other) -> bool: ...
|
|
3168
|
-
@property
|
|
3169
|
-
def value(self) -> int: ...
|
|
3170
|
-
def __init__(self, *args, **kwargs) -> None: ...
|
|
3171
|
-
@property
|
|
3172
|
-
def values(self) -> list[tuple[lief.ELF.X86ISA.FLAG,lief.ELF.X86ISA.ISA]]: ...
|
|
3173
|
-
|
|
3174
|
-
@overload
|
|
3175
|
-
def parse(filename: str, config: lief.ELF.ParserConfig = ...) -> Optional[lief.ELF.Binary]: ...
|
|
3176
|
-
@overload
|
|
3177
|
-
def parse(raw: list[int], config: lief.ELF.ParserConfig = ...) -> Optional[lief.ELF.Binary]: ...
|
|
3178
|
-
@overload
|
|
3179
|
-
def parse(obj: Union[io.IOBase|os.PathLike], config: lief.ELF.ParserConfig = ...) -> Optional[lief.ELF.Binary]: ...
|