| 143 | |
| 144 | |
| 145 | static size_t DirectJump(Architecture* arch, LowLevelILFunction& il, uint64_t target, size_t addrSize) |
| 146 | { |
| 147 | BNLowLevelILLabel* label = il.GetLabelForAddress(arch, target); |
| 148 | if (label) |
| 149 | return il.Goto(*label); |
| 150 | else |
| 151 | return il.Jump(il.ConstPointer(addrSize, target)); |
| 152 | } |
| 153 | |
| 154 | |
| 155 | static void ConditionalJump(Architecture* arch, LowLevelILFunction& il, size_t cond, size_t addrSize, uint64_t t, uint64_t f) |
no test coverage detected