| 1015 | return variable.ConstantData(value, 0, state, core.max_confidence, self.instr.size, self.function.source_function) |
| 1016 | |
| 1017 | def _get_expr(self, operand_index: int) -> 'MediumLevelILInstruction': |
| 1018 | return MediumLevelILInstruction.create(self.function, ExpressionIndex(self.instr.operands[operand_index])) |
| 1019 | |
| 1020 | def _get_intrinsic(self, operand_index: int) -> 'lowlevelil.ILIntrinsic': |
| 1021 | assert self.function.arch is not None, "Attempting to create ILIntrinsic from function with no Architecture" |