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 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
|
//
// UnaryExpression.cs
//
// Author:
// Jb Evain (jbevain@novell.com)
//
// (C) 2008 Novell, Inc. (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.Reflection;
using System.Reflection.Emit;
namespace System.Linq.Expressions {
public sealed class UnaryExpression : Expression {
Expression operand;
MethodInfo method;
bool is_lifted;
public Expression Operand {
get { return operand; }
}
public MethodInfo Method {
get { return method; }
}
public bool IsLifted {
get { return is_lifted; }
}
public bool IsLiftedToNull {
get { return is_lifted && this.Type.IsNullable (); }
}
internal UnaryExpression (ExpressionType node_type, Expression operand, Type type)
: base (node_type, type)
{
this.operand = operand;
}
internal UnaryExpression (ExpressionType node_type, Expression operand, Type type, MethodInfo method, bool is_lifted)
: base (node_type, type)
{
this.operand = operand;
this.method = method;
this.is_lifted = is_lifted;
}
void EmitArrayLength (EmitContext ec)
{
operand.Emit (ec);
ec.ig.Emit (OpCodes.Ldlen);
}
void EmitTypeAs (EmitContext ec)
{
var type = this.Type;
ec.EmitIsInst (operand, type);
if (type.IsNullable ())
ec.ig.Emit (OpCodes.Unbox_Any, type);
}
void EmitLiftedUnary (EmitContext ec)
{
var ig = ec.ig;
var from = ec.EmitStored (operand);
var to = ig.DeclareLocal (Type);
var has_value = ig.DefineLabel ();
var done = ig.DefineLabel ();
ec.EmitNullableHasValue (from);
ig.Emit (OpCodes.Brtrue, has_value);
// if not has value
ec.EmitNullableInitialize (to);
ig.Emit (OpCodes.Br, done);
ig.MarkLabel (has_value);
// if has value
ec.EmitNullableGetValueOrDefault (from);
EmitUnaryOperator (ec);
ec.EmitNullableNew (Type);
ig.MarkLabel (done);
}
void EmitUnaryOperator (EmitContext ec)
{
var ig = ec.ig;
switch (NodeType) {
case ExpressionType.Not:
if (operand.Type.GetNotNullableType () == typeof (bool)) {
ig.Emit (OpCodes.Ldc_I4_0);
ig.Emit (OpCodes.Ceq);
} else
ig.Emit (OpCodes.Not);
break;
case ExpressionType.Negate:
ig.Emit (OpCodes.Neg);
break;
case ExpressionType.NegateChecked:
ig.Emit (OpCodes.Ldc_I4_M1);
ig.Emit (IsUnsigned (operand.Type) ? OpCodes.Mul_Ovf_Un : OpCodes.Mul_Ovf);
break;
case ExpressionType.Convert:
case ExpressionType.ConvertChecked:
// Called when converting from nullable from nullable
EmitPrimitiveConversion (ec,
operand.Type.GetNotNullableType (),
Type.GetNotNullableType ());
break;
}
}
void EmitConvert (EmitContext ec)
{
var from = operand.Type;
var target = Type;
if (from == target)
operand.Emit (ec);
else if (from.IsNullable () && !target.IsNullable ())
EmitConvertFromNullable (ec);
else if (!from.IsNullable () && target.IsNullable ())
EmitConvertToNullable (ec);
else if (from.IsNullable () && target.IsNullable ())
EmitConvertFromNullableToNullable (ec);
else if (IsReferenceConversion (from, target))
EmitCast (ec);
else if (IsPrimitiveConversion (from, target))
EmitPrimitiveConversion (ec);
else
throw new NotImplementedException ();
}
void EmitConvertFromNullableToNullable (EmitContext ec)
{
EmitLiftedUnary (ec);
}
void EmitConvertToNullable (EmitContext ec)
{
ec.Emit (operand);
if (IsUnBoxing ()) {
EmitUnbox (ec);
return;
}
if (operand.Type != Type.GetNotNullableType ()) {
EmitPrimitiveConversion (ec,
operand.Type,
Type.GetNotNullableType ());
}
ec.EmitNullableNew (Type);
}
void EmitConvertFromNullable (EmitContext ec)
{
if (IsBoxing ()) {
ec.Emit (operand);
EmitBox (ec);
return;
}
ec.EmitCall (operand, operand.Type.GetMethod ("get_Value"));
if (operand.Type.GetNotNullableType () != Type) {
EmitPrimitiveConversion (ec,
operand.Type.GetNotNullableType (),
Type);
}
}
bool IsBoxing ()
{
return operand.Type.IsValueType && !Type.IsValueType;
}
void EmitBox (EmitContext ec)
{
ec.ig.Emit (OpCodes.Box, operand.Type);
}
bool IsUnBoxing ()
{
return !operand.Type.IsValueType && Type.IsValueType;
}
void EmitUnbox (EmitContext ec)
{
ec.ig.Emit (OpCodes.Unbox_Any, Type);
}
void EmitCast (EmitContext ec)
{
operand.Emit (ec);
if (IsBoxing ()) {
EmitBox (ec);
} else if (IsUnBoxing ()) {
EmitUnbox (ec);
} else
ec.ig.Emit (OpCodes.Castclass, Type);
}
void EmitPrimitiveConversion (EmitContext ec, bool is_unsigned,
OpCode signed, OpCode unsigned, OpCode signed_checked, OpCode unsigned_checked)
{
if (this.NodeType != ExpressionType.ConvertChecked)
ec.ig.Emit (is_unsigned ? unsigned : signed);
else
ec.ig.Emit (is_unsigned ? unsigned_checked : signed_checked);
}
void EmitPrimitiveConversion (EmitContext ec)
{
operand.Emit (ec);
EmitPrimitiveConversion (ec, operand.Type, Type);
}
void EmitPrimitiveConversion (EmitContext ec, Type from, Type to)
{
var is_unsigned = IsUnsigned (from);
switch (Type.GetTypeCode (to)) {
case TypeCode.SByte:
EmitPrimitiveConversion (ec,
is_unsigned,
OpCodes.Conv_I1,
OpCodes.Conv_U1,
OpCodes.Conv_Ovf_I1,
OpCodes.Conv_Ovf_I1_Un);
return;
case TypeCode.Byte:
EmitPrimitiveConversion (ec,
is_unsigned,
OpCodes.Conv_I1,
OpCodes.Conv_U1,
OpCodes.Conv_Ovf_U1,
OpCodes.Conv_Ovf_U1_Un);
return;
case TypeCode.Int16:
EmitPrimitiveConversion (ec,
is_unsigned,
OpCodes.Conv_I2,
OpCodes.Conv_U2,
OpCodes.Conv_Ovf_I2,
OpCodes.Conv_Ovf_I2_Un);
return;
case TypeCode.UInt16:
EmitPrimitiveConversion (ec,
is_unsigned,
OpCodes.Conv_I2,
OpCodes.Conv_U2,
OpCodes.Conv_Ovf_U2,
OpCodes.Conv_Ovf_U2_Un);
return;
case TypeCode.Int32:
EmitPrimitiveConversion (ec,
is_unsigned,
OpCodes.Conv_I4,
OpCodes.Conv_U4,
OpCodes.Conv_Ovf_I4,
OpCodes.Conv_Ovf_I4_Un);
return;
case TypeCode.UInt32:
EmitPrimitiveConversion (ec,
is_unsigned,
OpCodes.Conv_I4,
OpCodes.Conv_U4,
OpCodes.Conv_Ovf_U4,
OpCodes.Conv_Ovf_U4_Un);
return;
case TypeCode.Int64:
EmitPrimitiveConversion (ec,
is_unsigned,
OpCodes.Conv_I8,
OpCodes.Conv_U8,
OpCodes.Conv_Ovf_I8,
OpCodes.Conv_Ovf_I8_Un);
return;
case TypeCode.UInt64:
EmitPrimitiveConversion (ec,
is_unsigned,
OpCodes.Conv_I8,
OpCodes.Conv_U8,
OpCodes.Conv_Ovf_U8,
OpCodes.Conv_Ovf_U8_Un);
return;
case TypeCode.Single:
if (is_unsigned)
ec.ig.Emit (OpCodes.Conv_R_Un);
ec.ig.Emit (OpCodes.Conv_R4);
return;
case TypeCode.Double:
if (is_unsigned)
ec.ig.Emit (OpCodes.Conv_R_Un);
ec.ig.Emit (OpCodes.Conv_R8);
return;
default:
throw new NotImplementedException (this.Type.ToString ());
}
}
void EmitArithmeticUnary (EmitContext ec)
{
if (!IsLifted) {
operand.Emit (ec);
EmitUnaryOperator (ec);
} else
EmitLiftedUnary (ec);
}
void EmitUserDefinedLiftedToNullOperator (EmitContext ec)
{
var ig = ec.ig;
var local = ec.EmitStored (operand);
var ret = ig.DefineLabel ();
var done = ig.DefineLabel ();
ec.EmitNullableHasValue (local);
ig.Emit (OpCodes.Brfalse, ret);
ec.EmitNullableGetValueOrDefault (local);
ec.EmitCall (method);
ec.EmitNullableNew (Type);
ig.Emit (OpCodes.Br, done);
ig.MarkLabel (ret);
var temp = ig.DeclareLocal (Type);
ec.EmitNullableInitialize (temp);
ig.MarkLabel (done);
}
void EmitUserDefinedLiftedOperator (EmitContext ec)
{
var local = ec.EmitStored (operand);
ec.EmitNullableGetValue (local);
ec.EmitCall (method);
}
void EmitUserDefinedOperator (EmitContext ec)
{
if (!IsLifted) {
ec.Emit (operand);
ec.EmitCall (method);
} else if (IsLiftedToNull) {
EmitUserDefinedLiftedToNullOperator (ec);
} else
EmitUserDefinedLiftedOperator (ec);
}
void EmitQuote (EmitContext ec)
{
ec.EmitScope ();
ec.EmitReadGlobal (operand, typeof (Expression));
if (ec.HasHoistedLocals)
ec.EmitLoadHoistedLocalsStore ();
else
ec.ig.Emit (OpCodes.Ldnull);
ec.EmitIsolateExpression ();
}
internal override void Emit (EmitContext ec)
{
if (method != null) {
EmitUserDefinedOperator (ec);
return;
}
switch (this.NodeType) {
case ExpressionType.ArrayLength:
EmitArrayLength (ec);
return;
case ExpressionType.TypeAs:
EmitTypeAs (ec);
return;
case ExpressionType.Convert:
case ExpressionType.ConvertChecked:
EmitConvert (ec);
return;
case ExpressionType.Not:
case ExpressionType.Negate:
case ExpressionType.NegateChecked:
case ExpressionType.UnaryPlus:
EmitArithmeticUnary (ec);
return;
case ExpressionType.Quote:
EmitQuote (ec);
return;
default:
throw new NotImplementedException (this.NodeType.ToString ());
}
}
}
}
|