예제 #1
0
        protected override void VisitConvertUInstruction(ConvertUInstruction instruction)
        {
            ControlState.EvaluationStack.Pop(out var stackVal);
            var newStackVal = ComputeConversionOperation(
                stackVal,
                x => { throw new NotImplementedException(); },
                x => { throw new NotImplementedException(); },
                x => { throw new NotImplementedException(); },
                x => new CilStackValueNativeInt(x.ValueToRef.GetPointerValue()),
                x => { throw new NotImplementedException(); }
                );

            ControlState.EvaluationStack.Push(newStackVal);

            ControlState.MoveToNextInstruction();
        }
예제 #2
0
 protected abstract void VisitConvertUInstruction(ConvertUInstruction instruction);