diff options
| author | Rusty Wagner <rusty@vector35.com> | 2019-08-01 16:31:34 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2020-04-17 14:20:36 -0400 |
| commit | c9845e5a200228f20809336d9e9afee45e776d19 (patch) | |
| tree | 3b02742c03e6a63075663a68c0a36d9ad16187fa /binaryninjacore.h | |
| parent | 652dd72149b9c030e438d6de1a03ef54eafd8091 (diff) | |
Add mem SSA to HLIL
Diffstat (limited to 'binaryninjacore.h')
| -rw-r--r-- | binaryninjacore.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index 03ddcd4d..077f743b 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -1157,8 +1157,17 @@ extern "C" HLIL_FCMP_UO, // The following instructions are only used in SSA form + HLIL_ASSIGN_MEM_SSA, + HLIL_ASSIGN_UNPACK_MEM_SSA, HLIL_VAR_SSA, - HLIL_VAR_PHI + HLIL_ARRAY_INDEX_SSA, + HLIL_DEREF_SSA, + HLIL_DEREF_FIELD_SSA, + HLIL_CALL_SSA, + HLIL_SYSCALL_SSA, + HLIL_INTRINSIC_SSA, + HLIL_VAR_PHI, + HLIL_MEM_PHI }; struct BNHighLevelILInstruction |
