Implements lifted nullable comparison with null
[mono.git] / mcs / class / System.Core / System.Linq.Expressions / NewArrayExpression.cs
1 //
2 // NewArrayExpression.cs
3 //
4 // Author:
5 //   Jb Evain (jbevain@novell.com)
6 //
7 // (C) 2008 Novell, Inc. (http://www.novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using System;
30 using System.Collections.ObjectModel;
31 using System.Linq;
32 using System.Reflection;
33 #if !FULL_AOT_RUNTIME
34 using System.Reflection.Emit;
35 #endif
36
37 namespace System.Linq.Expressions {
38
39         public sealed class NewArrayExpression : Expression {
40
41                 ReadOnlyCollection<Expression> expressions;
42
43                 public ReadOnlyCollection<Expression> Expressions {
44                         get { return expressions; }
45                 }
46
47                 internal NewArrayExpression (ExpressionType et, Type type, ReadOnlyCollection<Expression> expressions)
48                         : base (et, type)
49                 {
50                         this.expressions = expressions;
51                 }
52
53 #if !FULL_AOT_RUNTIME
54                 void EmitNewArrayInit (EmitContext ec, Type type)
55                 {
56                         var size = expressions.Count;
57
58                         ec.ig.Emit (OpCodes.Ldc_I4, size);
59                         ec.ig.Emit (OpCodes.Newarr, type);
60
61                         for (int i = 0; i < size; i++) {
62                                 ec.ig.Emit (OpCodes.Dup);
63                                 ec.ig.Emit (OpCodes.Ldc_I4, i);
64                                 expressions [i].Emit (ec);
65                                 ec.ig.Emit (OpCodes.Stelem, type);
66                         }
67                 }
68
69                 void EmitNewArrayBounds (EmitContext ec, Type type)
70                 {
71                         int rank = expressions.Count;
72
73                         ec.EmitCollection (expressions);
74
75                         if (rank == 1) {
76                                 ec.ig.Emit (OpCodes.Newarr, type);
77                                 return;
78                         }
79
80                         ec.ig.Emit(OpCodes.Newobj, GetArrayConstructor (type, rank));
81                 }
82
83                 static ConstructorInfo GetArrayConstructor (Type type, int rank)
84                 {
85                         return CreateArray (type, rank).GetConstructor (CreateTypeParameters (rank));
86                 }
87
88                 static Type [] CreateTypeParameters (int rank)
89                 {
90                         return Enumerable.Repeat (typeof (int), rank).ToArray ();
91                 }
92
93                 static Type CreateArray (Type type, int rank)
94                 {
95                         return type.MakeArrayType (rank);
96                 }
97
98                 internal override void Emit (EmitContext ec)
99                 {
100                         var type = this.Type.GetElementType ();
101
102                         switch (this.NodeType) {
103                         case ExpressionType.NewArrayInit:
104                                 EmitNewArrayInit (ec, type);
105                                 return;
106                         case ExpressionType.NewArrayBounds:
107                                 EmitNewArrayBounds (ec, type);
108                                 return;
109                         default:
110                                 throw new NotSupportedException ();
111                         }
112                 }
113 #endif
114         }
115 }