summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2017-05-15 23:58:48 -0400
committerRusty Wagner <rusty@vector35.com>2017-05-15 23:58:48 -0400
commitd6c63268eb98fb0801d1c825e1aa4f72c1e1d99c (patch)
tree2f7cbdbf36ec06731fb3db40accb973eb6c12aaf /binaryninjacore.h
parent2111f1f77241c938b30bd3cf2851919094429dd6 (diff)
Adding a constant expression with pointer hint for improved types
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h
index c6a79cf5..949f5997 100644
--- a/binaryninjacore.h
+++ b/binaryninjacore.h
@@ -282,6 +282,7 @@ extern "C"
LLIL_POP, // Not valid in SSA form (expanded)
LLIL_REG, // Not valid in SSA form (see LLIL_REG_SSA)
LLIL_CONST,
+ LLIL_CONST_PTR,
LLIL_FLAG, // Not valid in SSA form (see LLIL_FLAG_SSA)
LLIL_FLAG_BIT, // Not valid in SSA form (see LLIL_FLAG_BIT_SSA)
LLIL_ADD,
@@ -598,7 +599,8 @@ extern "C"
UnsignedDecimalDisplayType,
SignedHexadecimalDisplayType,
UnsignedHexadecimalDisplayType,
- CharacterConstantDisplayType
+ CharacterConstantDisplayType,
+ PointerDisplayType
};
struct BNLowLevelILInstruction
@@ -638,6 +640,7 @@ extern "C"
UndeterminedValue,
EntryValue,
ConstantValue,
+ ConstantPointerValue,
StackFrameOffset,
ReturnAddressValue,
@@ -725,6 +728,7 @@ extern "C"
MLIL_ADDRESS_OF,
MLIL_ADDRESS_OF_FIELD,
MLIL_CONST,
+ MLIL_CONST_PTR,
MLIL_ADD,
MLIL_ADC,
MLIL_SUB,