public static Instruction CreateLifted(Type type) { Debug.Assert(!type.IsEnum()); switch (type.GetTypeCode()) { case TypeCode.Int16: return(_Int16Lifted ?? (_Int16Lifted = new ShrInt16Lifted())); case TypeCode.Int32: return(_Int32Lifted ?? (_Int32Lifted = new ShrInt32Lifted())); case TypeCode.Int64: return(_Int64Lifted ?? (_Int64Lifted = new ShrInt64Lifted())); case TypeCode.UInt16: return(_UInt16Lifted ?? (_UInt16Lifted = new ShrUInt16Lifted())); case TypeCode.UInt32: return(_UInt32Lifted ?? (_UInt32Lifted = new ShrUInt32Lifted())); case TypeCode.UInt64: return(_UInt64Lifted ?? (_UInt64Lifted = new ShrUInt64Lifted())); default: throw Assert.Unreachable; } }
public static Instruction CreateLifted(Type type) { Debug.Assert(!type.IsEnum()); switch (type.GetTypeCode()) { case TypeCode.Int16: return _Int16Lifted ?? (_Int16Lifted = new ShrInt16Lifted()); case TypeCode.Int32: return _Int32Lifted ?? (_Int32Lifted = new ShrInt32Lifted()); case TypeCode.Int64: return _Int64Lifted ?? (_Int64Lifted = new ShrInt64Lifted()); case TypeCode.UInt16: return _UInt16Lifted ?? (_UInt16Lifted = new ShrUInt16Lifted()); case TypeCode.UInt32: return _UInt32Lifted ?? (_UInt32Lifted = new ShrUInt32Lifted()); case TypeCode.UInt64: return _UInt64Lifted ?? (_UInt64Lifted = new ShrUInt64Lifted()); default: throw Assert.Unreachable; } }