Exemplo n.º 1
0
        protected override void VisitIndirectStoreI4Instruction(IndirectStoreI4Instruction instruction)
        {
            ControlState.EvaluationStack.PopValue(out CilValueManagedPointer pointer, out CilValueInt32 value);

            var int32PointerValue = pointer.ValueToRef as CilValueInt32;

            int32PointerValue.Value = value.Value;

            ControlState.MoveToNextInstruction();
        }
Exemplo n.º 2
0
 protected abstract void VisitIndirectStoreI4Instruction(IndirectStoreI4Instruction instruction);