lief 0.16.7__cp314-cp314-musllinux_1_2_aarch64.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/__init__.pyi +102 -0
- lief/Android/__init__.pyi +33 -0
- lief/DEX/__init__.pyi +512 -0
- lief/ELF/__init__.pyi +5342 -0
- lief/MachO/__init__.pyi +2680 -0
- lief/OAT/__init__.pyi +351 -0
- lief/PE/__init__.pyi +4098 -0
- lief/VDEX/__init__.pyi +56 -0
- lief/__init__.py +16 -0
- lief/__init__.pyi +574 -0
- lief/_lief.so +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 +222 -0
- lief/dwarf/__init__.pyi +293 -0
- 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 +102 -0
- lief/pdb/types/__init__.pyi +69 -0
- lief/py.typed +0 -0
- lief-0.16.7.dist-info/METADATA +85 -0
- lief-0.16.7.dist-info/RECORD +33 -0
- lief-0.16.7.dist-info/WHEEL +5 -0
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import enum
|
|
2
|
+
from typing import Iterator, Optional, Union
|
|
3
|
+
|
|
4
|
+
from . import (
|
|
5
|
+
aarch64 as aarch64,
|
|
6
|
+
arm as arm,
|
|
7
|
+
ebpf as ebpf,
|
|
8
|
+
mips as mips,
|
|
9
|
+
powerpc as powerpc,
|
|
10
|
+
riscv as riscv,
|
|
11
|
+
x86 as x86
|
|
12
|
+
)
|
|
13
|
+
import lief
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class Engine:
|
|
17
|
+
pass
|
|
18
|
+
|
|
19
|
+
class Instruction:
|
|
20
|
+
class MemoryAccess(enum.Flag):
|
|
21
|
+
@staticmethod
|
|
22
|
+
def from_value(arg: int, /) -> Instruction.MemoryAccess: ...
|
|
23
|
+
|
|
24
|
+
def __eq__(self, arg, /) -> bool: ...
|
|
25
|
+
|
|
26
|
+
def __ne__(self, arg, /) -> bool: ...
|
|
27
|
+
|
|
28
|
+
def __int__(self) -> int: ...
|
|
29
|
+
|
|
30
|
+
NONE = 0
|
|
31
|
+
|
|
32
|
+
READ = 1
|
|
33
|
+
|
|
34
|
+
WRITE = 2
|
|
35
|
+
|
|
36
|
+
@property
|
|
37
|
+
def address(self) -> int: ...
|
|
38
|
+
|
|
39
|
+
@property
|
|
40
|
+
def size(self) -> int: ...
|
|
41
|
+
|
|
42
|
+
@property
|
|
43
|
+
def mnemonic(self) -> str: ...
|
|
44
|
+
|
|
45
|
+
def to_string(self, with_address: bool = True) -> str: ...
|
|
46
|
+
|
|
47
|
+
@property
|
|
48
|
+
def raw(self) -> bytes: ...
|
|
49
|
+
|
|
50
|
+
@property
|
|
51
|
+
def is_call(self) -> bool: ...
|
|
52
|
+
|
|
53
|
+
@property
|
|
54
|
+
def is_terminator(self) -> bool: ...
|
|
55
|
+
|
|
56
|
+
@property
|
|
57
|
+
def is_branch(self) -> bool: ...
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
def is_syscall(self) -> bool: ...
|
|
61
|
+
|
|
62
|
+
@property
|
|
63
|
+
def is_memory_access(self) -> bool: ...
|
|
64
|
+
|
|
65
|
+
@property
|
|
66
|
+
def is_move_reg(self) -> bool: ...
|
|
67
|
+
|
|
68
|
+
@property
|
|
69
|
+
def is_add(self) -> bool: ...
|
|
70
|
+
|
|
71
|
+
@property
|
|
72
|
+
def is_trap(self) -> bool: ...
|
|
73
|
+
|
|
74
|
+
@property
|
|
75
|
+
def is_barrier(self) -> bool: ...
|
|
76
|
+
|
|
77
|
+
@property
|
|
78
|
+
def is_return(self) -> bool: ...
|
|
79
|
+
|
|
80
|
+
@property
|
|
81
|
+
def is_indirect_branch(self) -> bool: ...
|
|
82
|
+
|
|
83
|
+
@property
|
|
84
|
+
def is_conditional_branch(self) -> bool: ...
|
|
85
|
+
|
|
86
|
+
@property
|
|
87
|
+
def is_unconditional_branch(self) -> bool: ...
|
|
88
|
+
|
|
89
|
+
@property
|
|
90
|
+
def is_compare(self) -> bool: ...
|
|
91
|
+
|
|
92
|
+
@property
|
|
93
|
+
def is_move_immediate(self) -> bool: ...
|
|
94
|
+
|
|
95
|
+
@property
|
|
96
|
+
def is_bitcast(self) -> bool: ...
|
|
97
|
+
|
|
98
|
+
@property
|
|
99
|
+
def memory_access(self) -> Instruction.MemoryAccess: ...
|
|
100
|
+
|
|
101
|
+
@property
|
|
102
|
+
def branch_target(self) -> Union[int, lief.lief_errors]: ...
|
|
103
|
+
|
|
104
|
+
def __str__(self) -> str: ...
|