Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[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 using System.Reflection.Emit;
34
35 namespace System.Linq.Expressions {
36
37         public sealed class NewArrayExpression : Expression {
38
39                 ReadOnlyCollection<Expression> expressions;
40
41                 public ReadOnlyCollection<Expression> Expressions {
42                         get { return expressions; }
43                 }
44
45                 internal NewArrayExpression (ExpressionType et, Type type, ReadOnlyCollection<Expression> expressions)
46                         : base (et, type)
47                 {
48                         this.expressions = expressions;
49                 }
50
51 #if !FULL_AOT_RUNTIME
52                 void EmitNewArrayInit (EmitContext ec, Type type)
53                 {
54                         var size = expressions.Count;
55
56                         ec.ig.Emit (OpCodes.Ldc_I4, size);
57                         ec.ig.Emit (OpCodes.Newarr, type);
58
59                         for (int i = 0; i < size; i++) {
60                                 ec.ig.Emit (OpCodes.Dup);
61                                 ec.ig.Emit (OpCodes.Ldc_I4, i);
62                                 expressions [i].Emit (ec);
63                                 ec.ig.Emit (OpCodes.Stelem, type);
64                         }
65                 }
66
67                 void EmitNewArrayBounds (EmitContext ec, Type type)
68                 {
69                         int rank = expressions.Count;
70
71                         ec.EmitCollection (expressions);
72
73                         if (rank == 1) {
74                                 ec.ig.Emit (OpCodes.Newarr, type);
75                                 return;
76                         }
77
78                         ec.ig.Emit(OpCodes.Newobj, GetArrayConstructor (type, rank));
79                 }
80
81                 static ConstructorInfo GetArrayConstructor (Type type, int rank)
82                 {
83                         return CreateArray (type, rank).GetConstructor (CreateTypeParameters (rank));
84                 }
85
86                 static Type [] CreateTypeParameters (int rank)
87                 {
88                         return Enumerable.Repeat (typeof (int), rank).ToArray ();
89                 }
90
91                 static Type CreateArray (Type type, int rank)
92                 {
93                         return type.MakeArrayType (rank);
94                 }
95
96                 internal override void Emit (EmitContext ec)
97                 {
98                         var type = this.Type.GetElementType ();
99
100                         switch (this.NodeType) {
101                         case ExpressionType.NewArrayInit:
102                                 EmitNewArrayInit (ec, type);
103                                 return;
104                         case ExpressionType.NewArrayBounds:
105                                 EmitNewArrayBounds (ec, type);
106                                 return;
107                         default:
108                                 throw new NotSupportedException ();
109                         }
110                 }
111 #endif
112         }
113 }