(self, operand_index: int)
| 1046 | return self.instr.operands[operand_index] |
| 1047 | |
| 1048 | def _get_expr(self, operand_index: int) -> 'LowLevelILInstruction': |
| 1049 | return LowLevelILInstruction.create(self.function, self.instr.operands[operand_index], self.instr_index) |
| 1050 | |
| 1051 | def _get_reg_stack_adjust(self, operand_index: int) -> Dict['architecture.RegisterStackName', int]: |
| 1052 | count = ctypes.c_ulonglong() |