public static Instruction CreateLifted(Type type) { Debug.Assert(!type.IsEnum()); switch (type.GetTypeCode()) { case TypeCode.Int16: return(_Int16Lifted ?? (_Int16Lifted = new NotInt16Lifted())); case TypeCode.Int32: return(_Int32Lifted ?? (_Int32Lifted = new NotInt32Lifted())); case TypeCode.Int64: return(_Int64Lifted ?? (_Int64Lifted = new NotInt64Lifted())); case TypeCode.UInt16: return(_UInt16Lifted ?? (_UInt16Lifted = new NotUInt16Lifted())); case TypeCode.UInt32: return(_UInt32Lifted ?? (_UInt32Lifted = new NotUInt32Lifted())); case TypeCode.UInt64: return(_UInt64Lifted ?? (_UInt64Lifted = new NotUInt64Lifted())); case TypeCode.Boolean: return(_BooleanLifted ?? (_BooleanLifted = new NotBooleanLifted())); default: throw Assert.Unreachable; } }
public static Instruction CreateLifted(Type type) { Debug.Assert(!type.IsEnum()); switch (type.GetTypeCode()) { case TypeCode.Int16: return _Int16Lifted ?? (_Int16Lifted = new NotInt16Lifted()); case TypeCode.Int32: return _Int32Lifted ?? (_Int32Lifted = new NotInt32Lifted()); case TypeCode.Int64: return _Int64Lifted ?? (_Int64Lifted = new NotInt64Lifted()); case TypeCode.UInt16: return _UInt16Lifted ?? (_UInt16Lifted = new NotUInt16Lifted()); case TypeCode.UInt32: return _UInt32Lifted ?? (_UInt32Lifted = new NotUInt32Lifted()); case TypeCode.UInt64: return _UInt64Lifted ?? (_UInt64Lifted = new NotUInt64Lifted()); case TypeCode.Boolean: return _BooleanLifted ?? (_BooleanLifted = new NotBooleanLifted()); default: throw Assert.Unreachable; } }