summaryrefslogtreecommitdiff
path: root/python/commonil.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/commonil.py')
-rw-r--r--python/commonil.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/python/commonil.py b/python/commonil.py
index f84da073..288db8d9 100644
--- a/python/commonil.py
+++ b/python/commonil.py
@@ -189,3 +189,18 @@ class SetReg:
@dataclass(frozen=True, repr=False, eq=False)
class Intrinsic(BaseILInstruction):
pass
+
+
+@dataclass(frozen=True, repr=False, eq=False)
+class VariableInstruction(BaseILInstruction):
+ pass
+
+
+@dataclass(frozen=True, repr=False, eq=False)
+class SSAVariableInstruction(SSA, VariableInstruction):
+ pass
+
+
+@dataclass(frozen=True, repr=False, eq=False)
+class AliasedVariableInstruction(VariableInstruction):
+ pass