Example #1
0
        public static Instruction CreateLifted(Type type)
        {
            Debug.Assert(!type.IsEnum());
            switch (type.GetTypeCode())
            {
            case TypeCode.Int16: return(_Int16Lifted ?? (_Int16Lifted = new AndInt16Lifted()));

            case TypeCode.Int32: return(_Int32Lifted ?? (_Int32Lifted = new AndInt32Lifted()));

            case TypeCode.Int64: return(_Int64Lifted ?? (_Int64Lifted = new AndInt64Lifted()));

            case TypeCode.UInt16: return(_UInt16Lifted ?? (_UInt16Lifted = new AndUInt16Lifted()));

            case TypeCode.UInt32: return(_UInt32Lifted ?? (_UInt32Lifted = new AndUInt32Lifted()));

            case TypeCode.UInt64: return(_UInt64Lifted ?? (_UInt64Lifted = new AndUInt64Lifted()));

            case TypeCode.Boolean: return(_BooleanLifted ?? (_BooleanLifted = new AndBooleanLifted()));

            default:
                throw Assert.Unreachable;
            }
        }
Example #2
0
        public static Instruction CreateLifted(Type type) {
            Debug.Assert(!type.IsEnum());
            switch (type.GetTypeCode()) {
                case TypeCode.Int16: return _Int16Lifted ?? (_Int16Lifted = new AndInt16Lifted());
                case TypeCode.Int32: return _Int32Lifted ?? (_Int32Lifted = new AndInt32Lifted());
                case TypeCode.Int64: return _Int64Lifted ?? (_Int64Lifted = new AndInt64Lifted());
                case TypeCode.UInt16: return _UInt16Lifted ?? (_UInt16Lifted = new AndUInt16Lifted());
                case TypeCode.UInt32: return _UInt32Lifted ?? (_UInt32Lifted = new AndUInt32Lifted());
                case TypeCode.UInt64: return _UInt64Lifted ?? (_UInt64Lifted = new AndUInt64Lifted());
                case TypeCode.Boolean: return _BooleanLifted ?? (_BooleanLifted = new AndBooleanLifted());

                default:
                    throw Assert.Unreachable;
            }
        }