(self, reg_ssa: SSARegister)
| 5993 | return core.BNGetLowLevelILNonSSAInstructionIndex(self.handle, instr) |
| 5994 | |
| 5995 | def get_ssa_reg_definition(self, reg_ssa: SSARegister) -> Optional[LowLevelILInstruction]: |
| 5996 | reg = self.arch.get_reg_index(reg_ssa.reg) |
| 5997 | result = core.BNGetLowLevelILSSARegisterDefinition(self.handle, reg, reg_ssa.version) |
| 5998 | if result >= core.BNGetLowLevelILInstructionCount(self.handle): |
| 5999 | return None |
| 6000 | return self[result] |
| 6001 | |
| 6002 | def get_ssa_flag_definition(self, flag_ssa: SSAFlag) -> Optional[LowLevelILInstruction]: |
| 6003 | flag = self.arch.get_flag_index(flag_ssa.flag) |
nothing calls this directly
no test coverage detected