lief 0.16.7__cp314-cp314-manylinux2014_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.

@@ -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: ...