lief 0.16.5__cp310-cp310-musllinux_1_2_aarch64.whl → 0.17.0__cp310-cp310-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 +19 -18
- lief/COFF/__init__.pyi +708 -0
- lief/DEX/__init__.pyi +165 -159
- lief/ELF/__init__.pyi +2807 -2348
- lief/MachO/__init__.pyi +1877 -1457
- lief/OAT/__init__.pyi +153 -150
- lief/PE/__init__.pyi +2633 -2021
- lief/PE/unwind_aarch64/__init__.pyi +58 -0
- lief/PE/unwind_x64/__init__.pyi +53 -0
- lief/VDEX/__init__.pyi +10 -8
- lief/__init__.py +1 -1
- lief/__init__.pyi +280 -249
- lief/_lief.so +0 -0
- lief/assembly/__init__.pyi +17 -0
- lief/assembly/aarch64/__init__.pyi +11015 -8889
- lief/assembly/aarch64/operands/__init__.pyi +5 -5
- lief/assembly/arm/__init__.pyi +4521 -4491
- lief/assembly/ebpf/__init__.pyi +535 -481
- lief/assembly/mips/__init__.pyi +2926 -2888
- lief/assembly/powerpc/__init__.pyi +2958 -2846
- lief/assembly/riscv/__init__.pyi +14788 -13826
- lief/assembly/x86/__init__.pyi +24970 -19926
- lief/assembly/x86/operands/__init__.pyi +5 -5
- lief/dsc/__init__.pyi +31 -25
- lief/dwarf/__init__.pyi +160 -146
- lief/dwarf/editor/__init__.pyi +138 -0
- lief/dwarf/parameters/__init__.pyi +3 -3
- lief/dwarf/types/__init__.pyi +49 -49
- lief/logging/__init__.pyi +12 -12
- lief/objc/__init__.pyi +26 -26
- lief/pdb/__init__.pyi +272 -38
- lief/pdb/types/__init__.pyi +22 -22
- {lief-0.16.5.dist-info → lief-0.17.0.dist-info}/METADATA +1 -1
- lief-0.17.0.dist-info/RECORD +37 -0
- lief-0.16.5.dist-info/RECORD +0 -33
- {lief-0.16.5.dist-info → lief-0.17.0.dist-info}/WHEEL +0 -0
lief/_lief.so
CHANGED
|
Binary file
|
lief/assembly/__init__.pyi
CHANGED
|
@@ -102,3 +102,20 @@ class Instruction:
|
|
|
102
102
|
def branch_target(self) -> Union[int, lief.lief_errors]: ...
|
|
103
103
|
|
|
104
104
|
def __str__(self) -> str: ...
|
|
105
|
+
|
|
106
|
+
class AssemblerConfig:
|
|
107
|
+
def __init__(self) -> None: ...
|
|
108
|
+
|
|
109
|
+
class DIALECT(enum.Enum):
|
|
110
|
+
DEFAULT_DIALECT = 0
|
|
111
|
+
|
|
112
|
+
X86_INTEL = 1
|
|
113
|
+
|
|
114
|
+
X86_ATT = 2
|
|
115
|
+
|
|
116
|
+
@staticmethod
|
|
117
|
+
def default_config() -> AssemblerConfig: ...
|
|
118
|
+
|
|
119
|
+
dialect: AssemblerConfig.DIALECT
|
|
120
|
+
|
|
121
|
+
def resolve_symbol(self, name: str) -> int | None: ...
|