File size: 6,558 Bytes
8c763fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 | /* ****************************************************************************
*
* Copyright (c) Microsoft Corporation.
*
* This source code is subject to terms and conditions of the Apache License, Version 2.0. A
* copy of the license can be found in the License.html file at the root of this distribution. If
* you cannot locate the Apache License, Version 2.0, please send an email to
* dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
* by the terms of the Apache License, Version 2.0.
*
* You must not remove this notice, or any other, from this software.
*
*
* ***************************************************************************/
using System.Reflection;
namespace System.Management.Automation.Interpreter
{
internal abstract class EqualInstruction : Instruction
{
// Perf: EqualityComparer<T> but is 3/2 to 2 times slower.
private static Instruction s_reference, s_boolean, s_SByte, s_int16, s_char, s_int32, s_int64, s_byte, s_UInt16, s_UInt32, s_UInt64, s_single, s_double;
public override int ConsumedStack { get { return 2; } }
public override int ProducedStack { get { return 1; } }
private EqualInstruction()
{
}
internal sealed class EqualBoolean : EqualInstruction
{
public override int Run(InterpretedFrame frame)
{
frame.Push(((bool)frame.Pop()) == ((bool)frame.Pop()));
return +1;
}
}
internal sealed class EqualSByte : EqualInstruction
{
public override int Run(InterpretedFrame frame)
{
frame.Push(((sbyte)frame.Pop()) == ((sbyte)frame.Pop()));
return +1;
}
}
internal sealed class EqualInt16 : EqualInstruction
{
public override int Run(InterpretedFrame frame)
{
frame.Push(((Int16)frame.Pop()) == ((Int16)frame.Pop()));
return +1;
}
}
internal sealed class EqualChar : EqualInstruction
{
public override int Run(InterpretedFrame frame)
{
frame.Push(((char)frame.Pop()) == ((char)frame.Pop()));
return +1;
}
}
internal sealed class EqualInt32 : EqualInstruction
{
public override int Run(InterpretedFrame frame)
{
frame.Push(((Int32)frame.Pop()) == ((Int32)frame.Pop()));
return +1;
}
}
internal sealed class EqualInt64 : EqualInstruction
{
public override int Run(InterpretedFrame frame)
{
frame.Push(((Int64)frame.Pop()) == ((Int64)frame.Pop()));
return +1;
}
}
internal sealed class EqualByte : EqualInstruction
{
public override int Run(InterpretedFrame frame)
{
frame.Push(((byte)frame.Pop()) == ((byte)frame.Pop()));
return +1;
}
}
internal sealed class EqualUInt16 : EqualInstruction
{
public override int Run(InterpretedFrame frame)
{
frame.Push(((UInt16)frame.Pop()) == ((UInt16)frame.Pop()));
return +1;
}
}
internal sealed class EqualUInt32 : EqualInstruction
{
public override int Run(InterpretedFrame frame)
{
frame.Push(((UInt32)frame.Pop()) == ((UInt32)frame.Pop()));
return +1;
}
}
internal sealed class EqualUInt64 : EqualInstruction
{
public override int Run(InterpretedFrame frame)
{
frame.Push(((UInt64)frame.Pop()) == ((UInt64)frame.Pop()));
return +1;
}
}
internal sealed class EqualSingle : EqualInstruction
{
public override int Run(InterpretedFrame frame)
{
frame.Push(((Single)frame.Pop()) == ((Single)frame.Pop()));
return +1;
}
}
internal sealed class EqualDouble : EqualInstruction
{
public override int Run(InterpretedFrame frame)
{
frame.Push(((double)frame.Pop()) == ((double)frame.Pop()));
return +1;
}
}
internal sealed class EqualReference : EqualInstruction
{
public override int Run(InterpretedFrame frame)
{
frame.Push(frame.Pop() == frame.Pop());
return +1;
}
}
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
public static Instruction Create(Type type)
{
// Boxed enums can be unboxed as their underlying types:
var typeToUse = type.IsEnum ? Enum.GetUnderlyingType(type) : type;
switch (typeToUse.GetTypeCode())
{
case TypeCode.Boolean: return s_boolean ??= new EqualBoolean();
case TypeCode.SByte: return s_SByte ??= new EqualSByte();
case TypeCode.Byte: return s_byte ??= new EqualByte();
case TypeCode.Char: return s_char ??= new EqualChar();
case TypeCode.Int16: return s_int16 ??= new EqualInt16();
case TypeCode.Int32: return s_int32 ??= new EqualInt32();
case TypeCode.Int64: return s_int64 ??= new EqualInt64();
case TypeCode.UInt16: return s_UInt16 ??= new EqualInt16();
case TypeCode.UInt32: return s_UInt32 ??= new EqualInt32();
case TypeCode.UInt64: return s_UInt64 ??= new EqualInt64();
case TypeCode.Single: return s_single ??= new EqualSingle();
case TypeCode.Double: return s_double ??= new EqualDouble();
case TypeCode.Object:
if (!type.IsValueType)
{
return s_reference ??= new EqualReference();
}
// TODO: Nullable<T>
throw new NotImplementedException();
default:
throw new NotImplementedException();
}
}
public override string ToString()
{
return "Equal()";
}
}
}
|