diff options
| author | Rusty Wagner <rusty@vector35.com> | 2019-12-19 16:04:11 -0500 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2019-12-19 16:04:11 -0500 |
| commit | 741fb0538e0ac6ab14928f78697196803dbd2ed5 (patch) | |
| tree | dd0b8da88791b03553d659e6672c8d5ba0fdecfa /binaryninjaapi.h | |
| parent | 98771ab9f325e310ae07120cf559f601837380f9 (diff) | |
LLIL_JUMP_TO/MLIL_JUMP_TO now contain mappings from address to destination instruction
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index c4911697..b4b9a602 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -3468,7 +3468,7 @@ __attribute__ ((format (printf, 1, 2))) ExprId LowPart(size_t size, ExprId a, uint32_t flags = 0, const ILSourceLocation& loc = ILSourceLocation()); ExprId Jump(ExprId dest, const ILSourceLocation& loc = ILSourceLocation()); - ExprId JumpTo(ExprId dest, const std::vector<BNLowLevelILLabel*>& targets, + ExprId JumpTo(ExprId dest, const std::map<uint64_t, BNLowLevelILLabel*>& targets, const ILSourceLocation& loc = ILSourceLocation()); ExprId Call(ExprId dest, const ILSourceLocation& loc = ILSourceLocation()); ExprId CallStackAdjust(ExprId dest, int64_t adjust, const std::map<uint32_t, int32_t>& regStackAdjust, @@ -3562,7 +3562,7 @@ __attribute__ ((format (printf, 1, 2))) void MarkLabel(BNLowLevelILLabel& label); std::vector<uint64_t> GetOperandList(ExprId i, size_t listOperand); - ExprId AddLabelList(const std::vector<BNLowLevelILLabel*>& labels); + ExprId AddLabelMap(const std::map<uint64_t, BNLowLevelILLabel*>& labels); ExprId AddOperandList(const std::vector<ExprId> operands); ExprId AddIndexList(const std::vector<size_t> operands); ExprId AddRegisterOrFlagList(const std::vector<RegisterOrFlag>& regs); @@ -3792,7 +3792,7 @@ __attribute__ ((format (printf, 1, 2))) ExprId ZeroExtend(size_t size, ExprId src, const ILSourceLocation& loc = ILSourceLocation()); ExprId LowPart(size_t size, ExprId src, const ILSourceLocation& loc = ILSourceLocation()); ExprId Jump(ExprId dest, const ILSourceLocation& loc = ILSourceLocation()); - ExprId JumpTo(ExprId dest, const std::vector<BNMediumLevelILLabel*>& targets, + ExprId JumpTo(ExprId dest, const std::map<uint64_t, BNMediumLevelILLabel*>& targets, const ILSourceLocation& loc = ILSourceLocation()); ExprId ReturnHint(ExprId dest, const ILSourceLocation& loc = ILSourceLocation()); ExprId Call(const std::vector<Variable>& output, ExprId dest, const std::vector<ExprId>& params, @@ -3897,7 +3897,7 @@ __attribute__ ((format (printf, 1, 2))) ExprId AddInstruction(ExprId expr); std::vector<uint64_t> GetOperandList(ExprId i, size_t listOperand); - ExprId AddLabelList(const std::vector<BNMediumLevelILLabel*>& labels); + ExprId AddLabelMap(const std::map<uint64_t, BNMediumLevelILLabel*>& labels); ExprId AddOperandList(const std::vector<ExprId> operands); ExprId AddIndexList(const std::vector<size_t>& operands); ExprId AddVariableList(const std::vector<Variable>& vars); |
