lief 0.17.3__cp38-cp38-musllinux_1_2_x86_64.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.
@@ -0,0 +1,48 @@
1
+ import enum
2
+ import lief.assembly.aarch64
3
+ from typing import Iterator, Optional, Union
4
+
5
+ import lief.assembly.aarch64
6
+
7
+
8
+ class Immediate(lief.assembly.aarch64.Operand):
9
+ @property
10
+ def value(self) -> int: ...
11
+
12
+ class Register(lief.assembly.aarch64.Operand):
13
+ @property
14
+ def value(self) -> Optional[Union[lief.assembly.aarch64.REG, lief.assembly.aarch64.SYSREG]]: ...
15
+
16
+ class Memory(lief.assembly.aarch64.Operand):
17
+ class SHIFT(enum.Enum):
18
+ UNKNOWN = 0
19
+
20
+ LSL = 1
21
+
22
+ UXTX = 2
23
+
24
+ UXTW = 3
25
+
26
+ SXTX = 4
27
+
28
+ SXTW = 5
29
+
30
+ class shift_info_t:
31
+ @property
32
+ def type(self) -> Memory.SHIFT: ...
33
+
34
+ @property
35
+ def value(self) -> int: ...
36
+
37
+ @property
38
+ def base(self) -> lief.assembly.aarch64.REG: ...
39
+
40
+ @property
41
+ def offset(self) -> Optional[Union[lief.assembly.aarch64.REG, int]]: ...
42
+
43
+ @property
44
+ def shift(self) -> Memory.shift_info_t: ...
45
+
46
+ class PCRelative(lief.assembly.aarch64.Operand):
47
+ @property
48
+ def value(self) -> int: ...