summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2017-03-02 00:37:46 -0500
committerRusty Wagner <rusty@vector35.com>2017-03-02 00:37:46 -0500
commit7aab4e4a3f8f2daadd1fbd00259da5b01090d84c (patch)
tree7b9db291c184b44b6b2a4a9f2af66e5d9bc6b464 /binaryninjacore.h
parent94b38cee51eff16f1e79945806088c7ae60016d7 (diff)
Adding MLIL instructions, moving stack contents data flow to a later stage
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h
index aa9bb49b..d35f806c 100644
--- a/binaryninjacore.h
+++ b/binaryninjacore.h
@@ -645,10 +645,13 @@ extern "C"
MLIL_NOP,
MLIL_SET_VAR, // Not valid in SSA form (see MLIL_SET_VAR_SSA)
MLIL_SET_VAR_FIELD, // Not valid in SSA form (see MLIL_SET_VAR_FIELD)
+ MLIL_SET_VAR_SPLIT, // Not valid in SSA form (see MLIL_SET_VAR_SPLIT_SSA)
MLIL_LOAD, // Not valid in SSA form (see MLIL_LOAD_SSA)
MLIL_STORE, // Not valid in SSA form (see MLIL_STORE_SSA)
MLIL_VAR, // Not valid in SSA form (see MLIL_VAR_SSA)
MLIL_VAR_FIELD, // Not valid in SSA form (see MLIL_VAR_SSA_FIELD)
+ MLIL_ADDRESS_OF,
+ MLIL_ADDRESS_OF_FIELD,
MLIL_CONST,
MLIL_ADD,
MLIL_ADC,
@@ -708,6 +711,8 @@ extern "C"
// The following instructions are only used in SSA form
MLIL_SET_VAR_SSA,
MLIL_SET_VAR_SSA_FIELD,
+ MLIL_SET_VAR_SPLIT_SSA,
+ MLIL_VAR_SPLIT_DEST_SSA,
MLIL_VAR_SSA,
MLIL_VAR_SSA_FIELD,
MLIL_CALL_SSA,
@@ -2151,8 +2156,6 @@ extern "C"
uint32_t reg, size_t idx);
BINARYNINJACOREAPI BNRegisterValue BNGetLowLevelILSSAFlagValue(BNLowLevelILFunction* func,
uint32_t flag, size_t idx);
- BINARYNINJACOREAPI BNRegisterValue BNGetLowLevelILSSAStackContents(BNLowLevelILFunction* func,
- size_t memoryIndex, int64_t offset, size_t size);
BINARYNINJACOREAPI BNRegisterValue BNGetLowLevelILExprValue(BNLowLevelILFunction* func, size_t expr);