Esempio n. 1
0
        public static Instruction Create(Type type)
        {
            Debug.Assert(!type.IsEnum());
            switch (type.GetTypeCode())
            {
            case TypeCode.Int16: return(_Int16 ?? (_Int16 = new NegateOvfInt16()));

            case TypeCode.Int32: return(_Int32 ?? (_Int32 = new NegateOvfInt32()));

            case TypeCode.Int64: return(_Int64 ?? (_Int64 = new NegateOvfInt64()));

            case TypeCode.UInt16: return(_UInt16 ?? (_UInt16 = new NegateOvfUInt16()));

            case TypeCode.UInt32: return(_UInt32 ?? (_UInt32 = new NegateOvfUInt32()));

            case TypeCode.Single: return(_Single ?? (_Single = new NegateOvfSingle()));

            case TypeCode.Double: return(_Double ?? (_Double = new NegateOvfDouble()));

            default:
                throw Assert.Unreachable;
            }
        }
Esempio n. 2
0
        public static Instruction Create(Type type) {
            Debug.Assert(!type.IsEnum());
            switch (type.GetTypeCode()) {
                case TypeCode.Int16: return _Int16 ?? (_Int16 = new NegateOvfInt16());
                case TypeCode.Int32: return _Int32 ?? (_Int32 = new NegateOvfInt32());
                case TypeCode.Int64: return _Int64 ?? (_Int64 = new NegateOvfInt64());
                case TypeCode.UInt16: return _UInt16 ?? (_UInt16 = new NegateOvfUInt16());
                case TypeCode.UInt32: return _UInt32 ?? (_UInt32 = new NegateOvfUInt32());
                case TypeCode.Single: return _Single ?? (_Single = new NegateOvfSingle());
                case TypeCode.Double: return _Double ?? (_Double = new NegateOvfDouble());

                default:
                    throw Assert.Unreachable;
            }
        }