683da041faebf4943ca8cc25c1fa69f5dae72b51
[mono.git] / mcs / gmcs / ecore.cs
1 //
2 // ecore.cs: Core of the Expression representation for the intermediate tree.
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) 2001, 2002, 2003 Ximian, Inc.
8 //
9 //
10
11 namespace Mono.CSharp {
12         using System;
13         using System.Collections;
14         using System.Diagnostics;
15         using System.Reflection;
16         using System.Reflection.Emit;
17         using System.Text;
18
19         /// <remarks>
20         ///   The ExprClass class contains the is used to pass the 
21         ///   classification of an expression (value, variable, namespace,
22         ///   type, method group, property access, event access, indexer access,
23         ///   nothing).
24         /// </remarks>
25         public enum ExprClass : byte {
26                 Invalid,
27                 
28                 Value,
29                 Variable,
30                 Namespace,
31                 Type,
32                 MethodGroup,
33                 PropertyAccess,
34                 EventAccess,
35                 IndexerAccess,
36                 Nothing, 
37         }
38
39         /// <remarks>
40         ///   This is used to tell Resolve in which types of expressions we're
41         ///   interested.
42         /// </remarks>
43         [Flags]
44         public enum ResolveFlags {
45                 // Returns Value, Variable, PropertyAccess, EventAccess or IndexerAccess.
46                 VariableOrValue         = 1,
47
48                 // Returns a type expression.
49                 Type                    = 2,
50
51                 // Returns a method group.
52                 MethodGroup             = 4,
53
54                 // Mask of all the expression class flags.
55                 MaskExprClass           = 7,
56
57                 // Disable control flow analysis while resolving the expression.
58                 // This is used when resolving the instance expression of a field expression.
59                 DisableFlowAnalysis     = 8,
60
61                 // Set if this is resolving the first part of a MemberAccess.
62                 Intermediate            = 16
63         }
64
65         //
66         // This is just as a hint to AddressOf of what will be done with the
67         // address.
68         [Flags]
69         public enum AddressOp {
70                 Store = 1,
71                 Load  = 2,
72                 LoadStore = 3
73         };
74         
75         /// <summary>
76         ///   This interface is implemented by variables
77         /// </summary>
78         public interface IMemoryLocation {
79                 /// <summary>
80                 ///   The AddressOf method should generate code that loads
81                 ///   the address of the object and leaves it on the stack.
82                 ///
83                 ///   The `mode' argument is used to notify the expression
84                 ///   of whether this will be used to read from the address or
85                 ///   write to the address.
86                 ///
87                 ///   This is just a hint that can be used to provide good error
88                 ///   reporting, and should have no other side effects. 
89                 /// </summary>
90                 void AddressOf (EmitContext ec, AddressOp mode);
91         }
92
93         /// <summary>
94         ///   We are either a namespace or a type.
95         ///   If we're a type, `IsType' is true and we may use `Type' to get
96         ///   a TypeExpr representing that type.
97         /// </summary>
98         public interface IAlias {
99                 bool IsType {
100                         get;
101                 }
102
103                 string Name {
104                         get;
105                 }
106
107                 TypeExpr ResolveAsType (EmitContext ec);
108         }
109
110         /// <summary>
111         ///   This interface is implemented by variables
112         /// </summary>
113         public interface IVariable {
114                 VariableInfo VariableInfo {
115                         get;
116                 }
117
118                 bool VerifyFixed (bool is_expression);
119         }
120
121         /// <summary>
122         ///   This interface denotes an expression which evaluates to a member
123         ///   of a struct or a class.
124         /// </summary>
125         public interface IMemberExpr
126         {
127                 /// <summary>
128                 ///   The name of this member.
129                 /// </summary>
130                 string Name {
131                         get;
132                 }
133
134                 /// <summary>
135                 ///   Whether this is an instance member.
136                 /// </summary>
137                 bool IsInstance {
138                         get;
139                 }
140
141                 /// <summary>
142                 ///   Whether this is a static member.
143                 /// </summary>
144                 bool IsStatic {
145                         get;
146                 }
147
148                 /// <summary>
149                 ///   The type which declares this member.
150                 /// </summary>
151                 Type DeclaringType {
152                         get;
153                 }
154
155                 /// <summary>
156                 ///   The instance expression associated with this member, if it's a
157                 ///   non-static member.
158                 /// </summary>
159                 Expression InstanceExpression {
160                         get; set;
161                 }
162         }
163
164         /// <remarks>
165         ///   Base class for expressions
166         /// </remarks>
167         public abstract class Expression {
168                 public ExprClass eclass;
169                 protected Type type;
170                 protected Location loc;
171                 
172                 public Type Type {
173                         get {
174                                 return type;
175                         }
176
177                         set {
178                                 type = value;
179                         }
180                 }
181
182                 public Location Location {
183                         get {
184                                 return loc;
185                         }
186                 }
187
188                 /// <summary>
189                 ///   Utility wrapper routine for Error, just to beautify the code
190                 /// </summary>
191                 public void Error (int error, string s)
192                 {
193                         if (!Location.IsNull (loc))
194                                 Report.Error (error, loc, s);
195                         else
196                                 Report.Error (error, s);
197                 }
198
199                 /// <summary>
200                 ///   Utility wrapper routine for Warning, just to beautify the code
201                 /// </summary>
202                 public void Warning (int code, string format, params object[] args)
203                 {
204                         Report.Warning (code, loc, format, args);
205                 }
206
207                 // Not nice but we have broken hierarchy
208                 public virtual void CheckMarshallByRefAccess (Type container) {}
209
210                 /// <summary>
211                 /// Tests presence of ObsoleteAttribute and report proper error
212                 /// </summary>
213                 protected void CheckObsoleteAttribute (Type type)
214                 {
215                         ObsoleteAttribute obsolete_attr = AttributeTester.GetObsoleteAttribute (type);
216                         if (obsolete_attr == null)
217                                 return;
218
219                         AttributeTester.Report_ObsoleteMessage (obsolete_attr, type.FullName, loc);
220                 }
221
222                 public static bool IsAccessorAccessible (Type invocation_type, MethodInfo mi, out bool must_do_cs1540_check)
223                 {
224                         MethodAttributes ma = mi.Attributes & MethodAttributes.MemberAccessMask;
225
226                         must_do_cs1540_check = false; // by default we do not check for this
227
228                         //
229                         // If only accessible to the current class or children
230                         //
231                         if (ma == MethodAttributes.Private) {
232                                 Type declaring_type = mi.DeclaringType;
233
234                                 if (invocation_type != declaring_type)
235                                         return TypeManager.IsNestedChildOf (invocation_type, declaring_type);
236
237                                 return true;
238                         }
239                         //
240                         // FamAndAssem requires that we not only derivate, but we are on the
241                         // same assembly.  
242                         //
243                         if (ma == MethodAttributes.FamANDAssem){
244                                 return (mi.DeclaringType.Assembly != invocation_type.Assembly);
245                         }
246
247                         // Assembly and FamORAssem succeed if we're in the same assembly.
248                         if ((ma == MethodAttributes.Assembly) || (ma == MethodAttributes.FamORAssem)){
249                                 if (mi.DeclaringType.Assembly == invocation_type.Assembly)
250                                         return true;
251                         }
252
253                         // We already know that we aren't in the same assembly.
254                         if (ma == MethodAttributes.Assembly)
255                                 return false;
256
257                         // Family and FamANDAssem require that we derive.
258                         if ((ma == MethodAttributes.Family) || (ma == MethodAttributes.FamANDAssem) || (ma == MethodAttributes.FamORAssem)){
259                                 if (!TypeManager.IsNestedFamilyAccessible (invocation_type, mi.DeclaringType))
260                                         return false;
261
262                                 if (!TypeManager.IsNestedChildOf (invocation_type, mi.DeclaringType))
263                                         must_do_cs1540_check = true;
264
265                                 return true;
266                         }
267
268                         return true;
269                 }
270
271                 /// <summary>
272                 ///   Performs semantic analysis on the Expression
273                 /// </summary>
274                 ///
275                 /// <remarks>
276                 ///   The Resolve method is invoked to perform the semantic analysis
277                 ///   on the node.
278                 ///
279                 ///   The return value is an expression (it can be the
280                 ///   same expression in some cases) or a new
281                 ///   expression that better represents this node.
282                 ///   
283                 ///   For example, optimizations of Unary (LiteralInt)
284                 ///   would return a new LiteralInt with a negated
285                 ///   value.
286                 ///   
287                 ///   If there is an error during semantic analysis,
288                 ///   then an error should be reported (using Report)
289                 ///   and a null value should be returned.
290                 ///   
291                 ///   There are two side effects expected from calling
292                 ///   Resolve(): the the field variable "eclass" should
293                 ///   be set to any value of the enumeration
294                 ///   `ExprClass' and the type variable should be set
295                 ///   to a valid type (this is the type of the
296                 ///   expression).
297                 /// </remarks>
298                 public abstract Expression DoResolve (EmitContext ec);
299
300                 public virtual Expression DoResolveLValue (EmitContext ec, Expression right_side)
301                 {
302                         return null;
303                 }
304
305                 //
306                 // This is used if the expression should be resolved as a type or namespace name.
307                 // the default implementation fails.   
308                 //
309                 public virtual FullNamedExpression ResolveAsTypeStep (EmitContext ec)
310                 {
311                         return null;
312                 }
313
314                 //
315                 // This is used to resolve the expression as a type, a null
316                 // value will be returned if the expression is not a type
317                 // reference
318                 //
319                 public virtual TypeExpr ResolveAsTypeTerminal (EmitContext ec)
320                 {
321                         int errors = Report.Errors;
322
323                         FullNamedExpression fne = ResolveAsTypeStep (ec);
324
325                         if (fne == null) {
326                                 if (errors == Report.Errors)
327                                         Report.Error (246, Location, "Cannot find type '{0}'", ToString ());
328                                 return null;
329                         }
330
331                         if (fne.eclass != ExprClass.Type) {
332                                 if (errors == Report.Errors)
333                                         Report.Error (118, Location, "'{0}' denotes a '{1}', where a type was expected",
334                                                       fne.FullName, fne.ExprClassName ());
335                                 return null;
336                         }
337
338                         TypeExpr te = fne as TypeExpr;
339
340                         if (!te.CheckAccessLevel (ec.DeclSpace)) {
341                                 Report.Error (122, Location, "'{0}' is inaccessible due to its protection level", te.Name);
342                                 return null;
343                         }
344
345                         return te;
346                 }
347                
348                 /// <summary>
349                 ///   Resolves an expression and performs semantic analysis on it.
350                 /// </summary>
351                 ///
352                 /// <remarks>
353                 ///   Currently Resolve wraps DoResolve to perform sanity
354                 ///   checking and assertion checking on what we expect from Resolve.
355                 /// </remarks>
356                 public Expression Resolve (EmitContext ec, ResolveFlags flags)
357                 {
358                         if ((flags & ResolveFlags.MaskExprClass) == ResolveFlags.Type) 
359                                 return ResolveAsTypeStep (ec);
360
361                         bool old_do_flow_analysis = ec.DoFlowAnalysis;
362                         if ((flags & ResolveFlags.DisableFlowAnalysis) != 0)
363                                 ec.DoFlowAnalysis = false;
364
365                         Expression e;
366                         bool intermediate = (flags & ResolveFlags.Intermediate) == ResolveFlags.Intermediate;
367                         if (this is SimpleName)
368                                 e = ((SimpleName) this).DoResolveAllowStatic (ec, intermediate);
369
370                         else 
371                                 e = DoResolve (ec);
372
373                         ec.DoFlowAnalysis = old_do_flow_analysis;
374
375                         if (e == null)
376                                 return null;
377
378                         if ((e is TypeExpr) || (e is ComposedCast) || (e is Namespace)) {
379                                 if ((flags & ResolveFlags.Type) == 0) {
380                                         e.Error_UnexpectedKind (flags, loc);
381                                         return null;
382                                 }
383
384                                 return e;
385                         }
386
387                         switch (e.eclass) {
388                         case ExprClass.Type:
389                         case ExprClass.Namespace:
390                                 if ((flags & ResolveFlags.VariableOrValue) == 0) {
391                                         e.Error_UnexpectedKind (flags, loc);
392                                         return null;
393                                 }
394                                 break;
395
396                         case ExprClass.MethodGroup:
397                                 if (RootContext.Version == LanguageVersion.ISO_1){
398                                         if ((flags & ResolveFlags.MethodGroup) == 0) {
399                                                 ((MethodGroupExpr) e).ReportUsageError ();
400                                                 return null;
401                                         }
402                                 }
403                                 break;
404
405                         case ExprClass.Value:
406                         case ExprClass.Variable:
407                         case ExprClass.PropertyAccess:
408                         case ExprClass.EventAccess:
409                         case ExprClass.IndexerAccess:
410                                 if ((flags & ResolveFlags.VariableOrValue) == 0) {
411                                         Console.WriteLine ("I got: {0} and {1}", e.GetType (), e);
412                                         Console.WriteLine ("I am {0} and {1}", this.GetType (), this);
413                                         FieldInfo fi = ((FieldExpr) e).FieldInfo;
414                                         
415                                         Console.WriteLine ("{0} and {1}", fi.DeclaringType, fi.Name);
416                                         e.Error_UnexpectedKind (flags, loc);
417                                         return null;
418                                 }
419                                 break;
420
421                         default:
422                                 throw new Exception ("Expression " + e.GetType () +
423                                                      " ExprClass is Invalid after resolve");
424                         }
425
426                         if (e.type == null && !(e is Namespace)) {
427                                 throw new Exception (
428                                         "Expression " + e.GetType () +
429                                         " did not set its type after Resolve\n" +
430                                         "called from: " + this.GetType ());
431                         }
432
433                         return e;
434                 }
435
436                 /// <summary>
437                 ///   Resolves an expression and performs semantic analysis on it.
438                 /// </summary>
439                 public Expression Resolve (EmitContext ec)
440                 {
441                         return Resolve (ec, ResolveFlags.VariableOrValue);
442                 }
443
444                 /// <summary>
445                 ///   Resolves an expression for LValue assignment
446                 /// </summary>
447                 ///
448                 /// <remarks>
449                 ///   Currently ResolveLValue wraps DoResolveLValue to perform sanity
450                 ///   checking and assertion checking on what we expect from Resolve
451                 /// </remarks>
452                 public Expression ResolveLValue (EmitContext ec, Expression right_side)
453                 {
454                         int errors = Report.Errors;
455                         Expression e = DoResolveLValue (ec, right_side);
456
457                         if (e == null) {
458                                 if (errors == Report.Errors)
459                                         Report.Error (131, Location, "The left-hand side of an assignment or mutating operation must be a variable, property or indexer");
460                                 return null;
461                         }
462
463                         if (e != null){
464                                 if (e.eclass == ExprClass.Invalid)
465                                         throw new Exception ("Expression " + e +
466                                                              " ExprClass is Invalid after resolve");
467
468                                 if (e.eclass == ExprClass.MethodGroup) {
469                                         ((MethodGroupExpr) e).ReportUsageError ();
470                                         return null;
471                                 }
472
473                                 if ((e.type == null) && !(e is ConstructedType))
474                                         throw new Exception ("Expression " + e +
475                                                              " did not set its type after Resolve");
476                         }
477
478                         return e;
479                 }
480                 
481                 /// <summary>
482                 ///   Emits the code for the expression
483                 /// </summary>
484                 ///
485                 /// <remarks>
486                 ///   The Emit method is invoked to generate the code
487                 ///   for the expression.  
488                 /// </remarks>
489                 public abstract void Emit (EmitContext ec);
490
491                 public virtual void EmitBranchable (EmitContext ec, Label target, bool onTrue)
492                 {
493                         Emit (ec);
494                         ec.ig.Emit (onTrue ? OpCodes.Brtrue : OpCodes.Brfalse, target);
495                 }
496
497                 /// <summary>
498                 ///   Protected constructor.  Only derivate types should
499                 ///   be able to be created
500                 /// </summary>
501
502                 protected Expression ()
503                 {
504                         eclass = ExprClass.Invalid;
505                         type = null;
506                 }
507
508                 /// <summary>
509                 ///   Returns a literalized version of a literal FieldInfo
510                 /// </summary>
511                 ///
512                 /// <remarks>
513                 ///   The possible return values are:
514                 ///      IntConstant, UIntConstant
515                 ///      LongLiteral, ULongConstant
516                 ///      FloatConstant, DoubleConstant
517                 ///      StringConstant
518                 ///
519                 ///   The value returned is already resolved.
520                 /// </remarks>
521                 public static Constant Constantify (object v, Type t)
522                 {
523                         if (t == TypeManager.int32_type)
524                                 return new IntConstant ((int) v);
525                         else if (t == TypeManager.uint32_type)
526                                 return new UIntConstant ((uint) v);
527                         else if (t == TypeManager.int64_type)
528                                 return new LongConstant ((long) v);
529                         else if (t == TypeManager.uint64_type)
530                                 return new ULongConstant ((ulong) v);
531                         else if (t == TypeManager.float_type)
532                                 return new FloatConstant ((float) v);
533                         else if (t == TypeManager.double_type)
534                                 return new DoubleConstant ((double) v);
535                         else if (t == TypeManager.string_type)
536                                 return new StringConstant ((string) v);
537                         else if (t == TypeManager.short_type)
538                                 return new ShortConstant ((short)v);
539                         else if (t == TypeManager.ushort_type)
540                                 return new UShortConstant ((ushort)v);
541                         else if (t == TypeManager.sbyte_type)
542                                 return new SByteConstant (((sbyte)v));
543                         else if (t == TypeManager.byte_type)
544                                 return new ByteConstant ((byte)v);
545                         else if (t == TypeManager.char_type)
546                                 return new CharConstant ((char)v);
547                         else if (t == TypeManager.bool_type)
548                                 return new BoolConstant ((bool) v);
549                         else if (t == TypeManager.decimal_type)
550                                 return new DecimalConstant ((decimal) v);
551                         else if (TypeManager.IsEnumType (t)){
552                                 Type real_type = TypeManager.TypeToCoreType (v.GetType ());
553                                 if (real_type == t)
554                                         real_type = System.Enum.GetUnderlyingType (real_type);
555
556                                 Constant e = Constantify (v, real_type);
557
558                                 return new EnumConstant (e, t);
559                         } else if (v == null && !TypeManager.IsValueType (t))
560                                 return NullLiteral.Null;
561                         else
562                                 throw new Exception ("Unknown type for constant (" + t +
563                                                      "), details: " + v);
564                 }
565
566                 /// <summary>
567                 ///   Returns a fully formed expression after a MemberLookup
568                 /// </summary>
569                 public static Expression ExprClassFromMemberInfo (EmitContext ec, MemberInfo mi, Location loc)
570                 {
571                         if (mi is EventInfo)
572                                 return new EventExpr ((EventInfo) mi, loc);
573                         else if (mi is FieldInfo)
574                                 return new FieldExpr ((FieldInfo) mi, loc);
575                         else if (mi is PropertyInfo)
576                                 return new PropertyExpr (ec, (PropertyInfo) mi, loc);
577                         else if (mi is Type){
578                                 return new TypeExpression ((System.Type) mi, loc);
579                         }
580
581                         return null;
582                 }
583
584                 protected static ArrayList almostMatchedMembers = new ArrayList (4);
585
586                 //
587                 // FIXME: Probably implement a cache for (t,name,current_access_set)?
588                 //
589                 // This code could use some optimizations, but we need to do some
590                 // measurements.  For example, we could use a delegate to `flag' when
591                 // something can not any longer be a method-group (because it is something
592                 // else).
593                 //
594                 // Return values:
595                 //     If the return value is an Array, then it is an array of
596                 //     MethodBases
597                 //   
598                 //     If the return value is an MemberInfo, it is anything, but a Method
599                 //
600                 //     null on error.
601                 //
602                 // FIXME: When calling MemberLookup inside an `Invocation', we should pass
603                 // the arguments here and have MemberLookup return only the methods that
604                 // match the argument count/type, unlike we are doing now (we delay this
605                 // decision).
606                 //
607                 // This is so we can catch correctly attempts to invoke instance methods
608                 // from a static body (scan for error 120 in ResolveSimpleName).
609                 //
610                 //
611                 // FIXME: Potential optimization, have a static ArrayList
612                 //
613
614                 public static Expression MemberLookup (EmitContext ec, Type queried_type, string name,
615                                                        MemberTypes mt, BindingFlags bf, Location loc)
616                 {
617                         return MemberLookup (ec, ec.ContainerType, null, queried_type, name, mt, bf, loc);
618                 }
619
620                 //
621                 // Lookup type `queried_type' for code in class `container_type' with a qualifier of
622                 // `qualifier_type' or null to lookup members in the current class.
623                 //
624
625                 public static Expression MemberLookup (EmitContext ec, Type container_type,
626                                                        Type qualifier_type, Type queried_type,
627                                                        string name, MemberTypes mt,
628                                                        BindingFlags bf, Location loc)
629                 {
630                         almostMatchedMembers.Clear ();
631
632                         MemberInfo [] mi = TypeManager.MemberLookup (
633                                 container_type, qualifier_type,queried_type, mt, bf, name,
634                                 almostMatchedMembers);
635
636                         if (mi == null)
637                                 return null;
638
639                         int count = mi.Length;
640
641                         if (mi [0] is MethodBase)
642                                 return new MethodGroupExpr (mi, loc);
643
644                         if (count > 1)
645                                 return null;
646
647                         return ExprClassFromMemberInfo (ec, mi [0], loc);
648                 }
649
650                 public const MemberTypes AllMemberTypes =
651                         MemberTypes.Constructor |
652                         MemberTypes.Event       |
653                         MemberTypes.Field       |
654                         MemberTypes.Method      |
655                         MemberTypes.NestedType  |
656                         MemberTypes.Property;
657                 
658                 public const BindingFlags AllBindingFlags =
659                         BindingFlags.Public |
660                         BindingFlags.Static |
661                         BindingFlags.Instance;
662
663                 public static Expression MemberLookup (EmitContext ec, Type queried_type,
664                                                        string name, Location loc)
665                 {
666                         return MemberLookup (ec, ec.ContainerType, null, queried_type, name,
667                                              AllMemberTypes, AllBindingFlags, loc);
668                 }
669
670                 public static Expression MemberLookup (EmitContext ec, Type qualifier_type,
671                                                        Type queried_type, string name, Location loc)
672                 {
673                         return MemberLookup (ec, ec.ContainerType, qualifier_type, queried_type,
674                                              name, AllMemberTypes, AllBindingFlags, loc);
675                 }
676
677                 public static Expression MethodLookup (EmitContext ec, Type queried_type,
678                                                        string name, Location loc)
679                 {
680                         return MemberLookup (ec, ec.ContainerType, null, queried_type, name,
681                                              MemberTypes.Method, AllBindingFlags, loc);
682                 }
683
684                 /// <summary>
685                 ///   This is a wrapper for MemberLookup that is not used to "probe", but
686                 ///   to find a final definition.  If the final definition is not found, we
687                 ///   look for private members and display a useful debugging message if we
688                 ///   find it.
689                 /// </summary>
690                 public static Expression MemberLookupFinal (EmitContext ec, Type qualifier_type,
691                                                             Type queried_type, string name,
692                                                             Location loc)
693                 {
694                         return MemberLookupFinal (ec, qualifier_type, queried_type, name,
695                                                   AllMemberTypes, AllBindingFlags, loc);
696                 }
697
698                 public static Expression MemberLookupFinal (EmitContext ec, Type qualifier_type,
699                                                             Type queried_type, string name,
700                                                             MemberTypes mt, BindingFlags bf,
701                                                             Location loc)
702                 {
703                         Expression e;
704
705                         int errors = Report.Errors;
706
707                         e = MemberLookup (ec, ec.ContainerType, qualifier_type, queried_type,
708                                           name, mt, bf, loc);
709
710                         if (e == null && errors == Report.Errors)
711                                 // No errors were reported by MemberLookup, but there was an error.
712                                 MemberLookupFailed (ec, qualifier_type, queried_type, name, null, true, loc);
713
714                         return e;
715                 }
716
717                 public static void MemberLookupFailed (EmitContext ec, Type qualifier_type,
718                                                        Type queried_type, string name,
719                                                        string class_name, bool complain_if_none_found, 
720                                                        Location loc)
721                 {
722                         if (almostMatchedMembers.Count != 0) {
723                                 if (qualifier_type == null) {
724                                         foreach (MemberInfo m in almostMatchedMembers)
725                                                 Report.Error (38, loc, 
726                                                               "Cannot access non-static member `{0}' via nested type `{1}'", 
727                                                               TypeManager.GetFullNameSignature (m),
728                                                               TypeManager.CSharpName (ec.ContainerType));
729                                         return;
730                                 }
731
732
733                                 if (qualifier_type != ec.ContainerType) {
734                                         // Although a derived class can access protected members of
735                                         // its base class it cannot do so through an instance of the
736                                         // base class (CS1540).  If the qualifier_type is a base of the
737                                         // ec.ContainerType and the lookup succeeds with the latter one,
738                                         // then we are in this situation.
739                                         for (int i = 0; i < almostMatchedMembers.Count; ++i) {
740                                                 MemberInfo m = (MemberInfo) almostMatchedMembers [i];
741                                                 for (int j = 0; j < i; ++j) {
742                                                         if (m == almostMatchedMembers [j]) {
743                                                                 m = null;
744                                                                 break;
745                                                         }
746                                                 }
747                                                 if (m == null)
748                                                         continue;
749
750                                                 Report.SymbolRelatedToPreviousError (m);
751                                                 Report.Error (1540, loc, 
752                                                               "Cannot access protected member `{0}' via a qualifier of type `{1}';"
753                                                               + " the qualifier must be of type `{2}' (or derived from it)", 
754                                                               TypeManager.GetFullNameSignature (m),
755                                                               TypeManager.CSharpName (qualifier_type),
756                                                               TypeManager.CSharpName (ec.ContainerType));
757                                         }
758                                         return;
759                                 }
760                                 almostMatchedMembers.Clear ();
761                         }
762
763                         MemberInfo[] mi = TypeManager.MemberLookup (queried_type, null, queried_type,
764                                                                     AllMemberTypes, AllBindingFlags |
765                                                                     BindingFlags.NonPublic, name, null);
766
767                         if (mi == null) {
768                                 if (!complain_if_none_found)
769                                         return;
770
771                                 if (class_name != null)
772                                         Report.Error (103, loc, "The name `" + name + "' could not be " +
773                                                       "found in `" + class_name + "'");
774                                 else
775                                         Report.Error (
776                                                 117, loc, "`" + queried_type + "' does not contain a " +
777                                                 "definition for `" + name + "'");
778                                 return;
779                         }
780
781                         if (TypeManager.MemberLookup (queried_type, null, queried_type,
782                                                       AllMemberTypes, AllBindingFlags |
783                                                       BindingFlags.NonPublic, name, null) == null) {
784                                 if ((mi.Length == 1) && (mi [0] is Type)) {
785                                         Type t = (Type) mi [0];
786
787                                         Report.Error (305, loc,
788                                                       "Using the generic type `{0}' " +
789                                                       "requires {1} type arguments",
790                                                       TypeManager.GetFullName (t),
791                                                       TypeManager.GetNumberOfTypeArguments (t));
792                                         return;
793                                 }
794                         }
795
796                         if (name == ".ctor" && TypeManager.FindMembers (qualifier_type, MemberTypes.Constructor,
797                                 BindingFlags.Static | BindingFlags.Instance | BindingFlags.Public | BindingFlags.DeclaredOnly, null, null).Count == 0)
798                         {
799                                 Report.Error (143, loc, String.Format ("The type '{0}' has no constructors defined", TypeManager.CSharpName (queried_type)));
800                                 return;
801                         }
802
803                         if (qualifier_type != null) {
804                                 Report.Error (122, loc, "'{0}' is inaccessible due to its protection level", TypeManager.CSharpName (qualifier_type) + "." + name);
805                         } else {
806                                 Report.Error (122, loc, "'{0}' is inaccessible due to its protection level", name);
807                 }
808                 }
809
810                 static public MemberInfo GetFieldFromEvent (EventExpr event_expr)
811                 {
812                         EventInfo ei = event_expr.EventInfo;
813
814                         return TypeManager.GetPrivateFieldOfEvent (ei);
815                 }
816                 
817                 /// <summary>
818                 ///   Returns an expression that can be used to invoke operator true
819                 ///   on the expression if it exists.
820                 /// </summary>
821                 static public Expression GetOperatorTrue (EmitContext ec, Expression e, Location loc)
822                 {
823                         return GetOperatorTrueOrFalse (ec, e, true, loc);
824                 }
825
826                 /// <summary>
827                 ///   Returns an expression that can be used to invoke operator false
828                 ///   on the expression if it exists.
829                 /// </summary>
830                 static public Expression GetOperatorFalse (EmitContext ec, Expression e, Location loc)
831                 {
832                         return GetOperatorTrueOrFalse (ec, e, false, loc);
833                 }
834
835                 static Expression GetOperatorTrueOrFalse (EmitContext ec, Expression e, bool is_true, Location loc)
836                 {
837                         MethodBase method;
838                         Expression operator_group;
839
840                         if (TypeManager.IsNullableType (e.Type))
841                                 return new Nullable.OperatorTrueOrFalse (e, is_true, loc).Resolve (ec);
842
843                         operator_group = MethodLookup (ec, e.Type, is_true ? "op_True" : "op_False", loc);
844                         if (operator_group == null)
845                                 return null;
846
847                         ArrayList arguments = new ArrayList ();
848                         arguments.Add (new Argument (e, Argument.AType.Expression));
849                         method = Invocation.OverloadResolve (
850                                 ec, (MethodGroupExpr) operator_group, arguments, false, loc);
851
852                         if (method == null)
853                                 return null;
854
855                         return new StaticCallExpr ((MethodInfo) method, arguments, loc);
856                 }
857
858                 /// <summary>
859                 ///   Resolves the expression `e' into a boolean expression: either through
860                 ///   an implicit conversion, or through an `operator true' invocation
861                 /// </summary>
862                 public static Expression ResolveBoolean (EmitContext ec, Expression e, Location loc)
863                 {
864                         e = e.Resolve (ec);
865                         if (e == null)
866                                 return null;
867
868                         if (e.Type == TypeManager.bool_type)
869                                 return e;
870
871                         Expression converted = Convert.ImplicitConversion (ec, e, TypeManager.bool_type, new Location (-1));
872
873                         if (converted != null)
874                                 return converted;
875
876                         //
877                         // If no implicit conversion to bool exists, try using `operator true'
878                         //
879                         Expression operator_true = Expression.GetOperatorTrue (ec, e, loc);
880                         if (operator_true == null){
881                                 Report.Error (31, loc, "Can not convert the expression to a boolean");
882                                 return null;
883                         }
884                         return operator_true;
885                 }
886                 
887                 public string ExprClassName ()
888                 {
889                         switch (eclass){
890                         case ExprClass.Invalid:
891                                 return "Invalid";
892                         case ExprClass.Value:
893                                 return "value";
894                         case ExprClass.Variable:
895                                 return "variable";
896                         case ExprClass.Namespace:
897                                 return "namespace";
898                         case ExprClass.Type:
899                                 return "type";
900                         case ExprClass.MethodGroup:
901                                 return "method group";
902                         case ExprClass.PropertyAccess:
903                                 return "property access";
904                         case ExprClass.EventAccess:
905                                 return "event access";
906                         case ExprClass.IndexerAccess:
907                                 return "indexer access";
908                         case ExprClass.Nothing:
909                                 return "null";
910                         }
911                         throw new Exception ("Should not happen");
912                 }
913                 
914                 /// <summary>
915                 ///   Reports that we were expecting `expr' to be of class `expected'
916                 /// </summary>
917                 public void Error_UnexpectedKind (string expected, Location loc)
918                 {
919                         Report.Error (118, loc, "Expression denotes a `" + ExprClassName () +
920                                "' where a `" + expected + "' was expected");
921                 }
922
923                 public void Error_UnexpectedKind (ResolveFlags flags, Location loc)
924                 {
925                         ArrayList valid = new ArrayList (10);
926
927                         if ((flags & ResolveFlags.VariableOrValue) != 0) {
928                                 valid.Add ("variable");
929                                 valid.Add ("value");
930                         }
931
932                         if ((flags & ResolveFlags.Type) != 0)
933                                 valid.Add ("type");
934
935                         if ((flags & ResolveFlags.MethodGroup) != 0)
936                                 valid.Add ("method group");
937
938                         if (valid.Count == 0)
939                                 valid.Add ("unknown");
940
941                         StringBuilder sb = new StringBuilder ();
942                         for (int i = 0; i < valid.Count; i++) {
943                                 if (i > 0)
944                                         sb.Append (", ");
945                                 else if (i == valid.Count)
946                                         sb.Append (" or ");
947                                 sb.Append (valid [i]);
948                         }
949
950                         Report.Error (119, loc, "Expression denotes a `" + ExprClassName () + "' where " +
951                                "a `" + sb.ToString () + "' was expected");
952                 }
953                 
954                 static public void Error_ConstantValueCannotBeConverted (Location l, string val, Type t)
955                 {
956                         Report.Error (31, l, "Constant value `" + val + "' cannot be converted to " +
957                                       TypeManager.CSharpName (t));
958                 }
959
960                 public static void UnsafeError (Location loc)
961                 {
962                         Report.Error (214, loc, "Pointers may only be used in an unsafe context");
963                 }
964                 
965                 /// <summary>
966                 ///   Converts the IntConstant, UIntConstant, LongConstant or
967                 ///   ULongConstant into the integral target_type.   Notice
968                 ///   that we do not return an `Expression' we do return
969                 ///   a boxed integral type.
970                 ///
971                 ///   FIXME: Since I added the new constants, we need to
972                 ///   also support conversions from CharConstant, ByteConstant,
973                 ///   SByteConstant, UShortConstant, ShortConstant
974                 ///
975                 ///   This is used by the switch statement, so the domain
976                 ///   of work is restricted to the literals above, and the
977                 ///   targets are int32, uint32, char, byte, sbyte, ushort,
978                 ///   short, uint64 and int64
979                 /// </summary>
980                 public static object ConvertIntLiteral (Constant c, Type target_type, Location loc)
981                 {
982                         if (!Convert.ImplicitStandardConversionExists (Convert.ConstantEC, c, target_type)){
983                                 Convert.Error_CannotImplicitConversion (loc, c.Type, target_type);
984                                 return null;
985                         }
986                         
987                         string s = "";
988
989                         if (c.Type == target_type)
990                                 return ((Constant) c).GetValue ();
991
992                         //
993                         // Make into one of the literals we handle, we dont really care
994                         // about this value as we will just return a few limited types
995                         // 
996                         if (c is EnumConstant)
997                                 c = ((EnumConstant)c).WidenToCompilerConstant ();
998
999                         if (c is IntConstant){
1000                                 int v = ((IntConstant) c).Value;
1001                                 
1002                                 if (target_type == TypeManager.uint32_type){
1003                                         if (v >= 0)
1004                                                 return (uint) v;
1005                                 } else if (target_type == TypeManager.char_type){
1006                                         if (v >= Char.MinValue && v <= Char.MaxValue)
1007                                                 return (char) v;
1008                                 } else if (target_type == TypeManager.byte_type){
1009                                         if (v >= Byte.MinValue && v <= Byte.MaxValue)
1010                                                 return (byte) v;
1011                                 } else if (target_type == TypeManager.sbyte_type){
1012                                         if (v >= SByte.MinValue && v <= SByte.MaxValue)
1013                                                 return (sbyte) v;
1014                                 } else if (target_type == TypeManager.short_type){
1015                                         if (v >= Int16.MinValue && v <= UInt16.MaxValue)
1016                                                 return (short) v;
1017                                 } else if (target_type == TypeManager.ushort_type){
1018                                         if (v >= UInt16.MinValue && v <= UInt16.MaxValue)
1019                                                 return (ushort) v;
1020                                 } else if (target_type == TypeManager.int64_type)
1021                                         return (long) v;
1022                                 else if (target_type == TypeManager.uint64_type){
1023                                         if (v > 0)
1024                                                 return (ulong) v;
1025                                 }
1026
1027                                 s = v.ToString ();
1028                         } else if (c is UIntConstant){
1029                                 uint v = ((UIntConstant) c).Value;
1030
1031                                 if (target_type == TypeManager.int32_type){
1032                                         if (v <= Int32.MaxValue)
1033                                                 return (int) v;
1034                                 } else if (target_type == TypeManager.char_type){
1035                                         if (v >= Char.MinValue && v <= Char.MaxValue)
1036                                                 return (char) v;
1037                                 } else if (target_type == TypeManager.byte_type){
1038                                         if (v <= Byte.MaxValue)
1039                                                 return (byte) v;
1040                                 } else if (target_type == TypeManager.sbyte_type){
1041                                         if (v <= SByte.MaxValue)
1042                                                 return (sbyte) v;
1043                                 } else if (target_type == TypeManager.short_type){
1044                                         if (v <= UInt16.MaxValue)
1045                                                 return (short) v;
1046                                 } else if (target_type == TypeManager.ushort_type){
1047                                         if (v <= UInt16.MaxValue)
1048                                                 return (ushort) v;
1049                                 } else if (target_type == TypeManager.int64_type)
1050                                         return (long) v;
1051                                 else if (target_type == TypeManager.uint64_type)
1052                                         return (ulong) v;
1053                                 s = v.ToString ();
1054                         } else if (c is LongConstant){ 
1055                                 long v = ((LongConstant) c).Value;
1056
1057                                 if (target_type == TypeManager.int32_type){
1058                                         if (v >= UInt32.MinValue && v <= UInt32.MaxValue)
1059                                                 return (int) v;
1060                                 } else if (target_type == TypeManager.uint32_type){
1061                                         if (v >= 0 && v <= UInt32.MaxValue)
1062                                                 return (uint) v;
1063                                 } else if (target_type == TypeManager.char_type){
1064                                         if (v >= Char.MinValue && v <= Char.MaxValue)
1065                                                 return (char) v;
1066                                 } else if (target_type == TypeManager.byte_type){
1067                                         if (v >= Byte.MinValue && v <= Byte.MaxValue)
1068                                                 return (byte) v;
1069                                 } else if (target_type == TypeManager.sbyte_type){
1070                                         if (v >= SByte.MinValue && v <= SByte.MaxValue)
1071                                                 return (sbyte) v;
1072                                 } else if (target_type == TypeManager.short_type){
1073                                         if (v >= Int16.MinValue && v <= UInt16.MaxValue)
1074                                                 return (short) v;
1075                                 } else if (target_type == TypeManager.ushort_type){
1076                                         if (v >= UInt16.MinValue && v <= UInt16.MaxValue)
1077                                                 return (ushort) v;
1078                                 } else if (target_type == TypeManager.uint64_type){
1079                                         if (v > 0)
1080                                                 return (ulong) v;
1081                                 }
1082                                 s = v.ToString ();
1083                         } else if (c is ULongConstant){
1084                                 ulong v = ((ULongConstant) c).Value;
1085
1086                                 if (target_type == TypeManager.int32_type){
1087                                         if (v <= Int32.MaxValue)
1088                                                 return (int) v;
1089                                 } else if (target_type == TypeManager.uint32_type){
1090                                         if (v <= UInt32.MaxValue)
1091                                                 return (uint) v;
1092                                 } else if (target_type == TypeManager.char_type){
1093                                         if (v >= Char.MinValue && v <= Char.MaxValue)
1094                                                 return (char) v;
1095                                 } else if (target_type == TypeManager.byte_type){
1096                                         if (v >= Byte.MinValue && v <= Byte.MaxValue)
1097                                                 return (byte) v;
1098                                 } else if (target_type == TypeManager.sbyte_type){
1099                                         if (v <= (int) SByte.MaxValue)
1100                                                 return (sbyte) v;
1101                                 } else if (target_type == TypeManager.short_type){
1102                                         if (v <= UInt16.MaxValue)
1103                                                 return (short) v;
1104                                 } else if (target_type == TypeManager.ushort_type){
1105                                         if (v <= UInt16.MaxValue)
1106                                                 return (ushort) v;
1107                                 } else if (target_type == TypeManager.int64_type){
1108                                         if (v <= Int64.MaxValue)
1109                                                 return (long) v;
1110                                 }
1111                                 s = v.ToString ();
1112                         } else if (c is ByteConstant){
1113                                 byte v = ((ByteConstant) c).Value;
1114                                 
1115                                 if (target_type == TypeManager.int32_type)
1116                                         return (int) v;
1117                                 else if (target_type == TypeManager.uint32_type)
1118                                         return (uint) v;
1119                                 else if (target_type == TypeManager.char_type)
1120                                         return (char) v;
1121                                 else if (target_type == TypeManager.sbyte_type){
1122                                         if (v <= SByte.MaxValue)
1123                                                 return (sbyte) v;
1124                                 } else if (target_type == TypeManager.short_type)
1125                                         return (short) v;
1126                                 else if (target_type == TypeManager.ushort_type)
1127                                         return (ushort) v;
1128                                 else if (target_type == TypeManager.int64_type)
1129                                         return (long) v;
1130                                 else if (target_type == TypeManager.uint64_type)
1131                                         return (ulong) v;
1132                                 s = v.ToString ();
1133                         } else if (c is SByteConstant){
1134                                 sbyte v = ((SByteConstant) c).Value;
1135                                 
1136                                 if (target_type == TypeManager.int32_type)
1137                                         return (int) v;
1138                                 else if (target_type == TypeManager.uint32_type){
1139                                         if (v >= 0)
1140                                                 return (uint) v;
1141                                 } else if (target_type == TypeManager.char_type){
1142                                         if (v >= 0)
1143                                                 return (char) v;
1144                                 } else if (target_type == TypeManager.byte_type){
1145                                         if (v >= 0)
1146                                                 return (byte) v;
1147                                 } else if (target_type == TypeManager.short_type)
1148                                         return (short) v;
1149                                 else if (target_type == TypeManager.ushort_type){
1150                                         if (v >= 0)
1151                                                 return (ushort) v;
1152                                 } else if (target_type == TypeManager.int64_type)
1153                                         return (long) v;
1154                                 else if (target_type == TypeManager.uint64_type){
1155                                         if (v >= 0)
1156                                                 return (ulong) v;
1157                                 }
1158                                 s = v.ToString ();
1159                         } else if (c is ShortConstant){
1160                                 short v = ((ShortConstant) c).Value;
1161                                 
1162                                 if (target_type == TypeManager.int32_type){
1163                                         return (int) v;
1164                                 } else if (target_type == TypeManager.uint32_type){
1165                                         if (v >= 0)
1166                                                 return (uint) v;
1167                                 } else if (target_type == TypeManager.char_type){
1168                                         if (v >= 0)
1169                                                 return (char) v;
1170                                 } else if (target_type == TypeManager.byte_type){
1171                                         if (v >= Byte.MinValue && v <= Byte.MaxValue)
1172                                                 return (byte) v;
1173                                 } else if (target_type == TypeManager.sbyte_type){
1174                                         if (v >= SByte.MinValue && v <= SByte.MaxValue)
1175                                                 return (sbyte) v;
1176                                 } else if (target_type == TypeManager.ushort_type){
1177                                         if (v >= 0)
1178                                                 return (ushort) v;
1179                                 } else if (target_type == TypeManager.int64_type)
1180                                         return (long) v;
1181                                 else if (target_type == TypeManager.uint64_type)
1182                                         return (ulong) v;
1183
1184                                 s = v.ToString ();
1185                         } else if (c is UShortConstant){
1186                                 ushort v = ((UShortConstant) c).Value;
1187                                 
1188                                 if (target_type == TypeManager.int32_type)
1189                                         return (int) v;
1190                                 else if (target_type == TypeManager.uint32_type)
1191                                         return (uint) v;
1192                                 else if (target_type == TypeManager.char_type){
1193                                         if (v >= Char.MinValue && v <= Char.MaxValue)
1194                                                 return (char) v;
1195                                 } else if (target_type == TypeManager.byte_type){
1196                                         if (v >= Byte.MinValue && v <= Byte.MaxValue)
1197                                                 return (byte) v;
1198                                 } else if (target_type == TypeManager.sbyte_type){
1199                                         if (v <= SByte.MaxValue)
1200                                                 return (byte) v;
1201                                 } else if (target_type == TypeManager.short_type){
1202                                         if (v <= Int16.MaxValue)
1203                                                 return (short) v;
1204                                 } else if (target_type == TypeManager.int64_type)
1205                                         return (long) v;
1206                                 else if (target_type == TypeManager.uint64_type)
1207                                         return (ulong) v;
1208
1209                                 s = v.ToString ();
1210                         } else if (c is CharConstant){
1211                                 char v = ((CharConstant) c).Value;
1212                                 
1213                                 if (target_type == TypeManager.int32_type)
1214                                         return (int) v;
1215                                 else if (target_type == TypeManager.uint32_type)
1216                                         return (uint) v;
1217                                 else if (target_type == TypeManager.byte_type){
1218                                         if (v >= Byte.MinValue && v <= Byte.MaxValue)
1219                                                 return (byte) v;
1220                                 } else if (target_type == TypeManager.sbyte_type){
1221                                         if (v <= SByte.MaxValue)
1222                                                 return (sbyte) v;
1223                                 } else if (target_type == TypeManager.short_type){
1224                                         if (v <= Int16.MaxValue)
1225                                                 return (short) v;
1226                                 } else if (target_type == TypeManager.ushort_type)
1227                                         return (short) v;
1228                                 else if (target_type == TypeManager.int64_type)
1229                                         return (long) v;
1230                                 else if (target_type == TypeManager.uint64_type)
1231                                         return (ulong) v;
1232
1233                                 s = v.ToString ();
1234                         }
1235                         Error_ConstantValueCannotBeConverted (loc, s, target_type);
1236                         return null;
1237                 }
1238
1239                 //
1240                 // Load the object from the pointer.  
1241                 //
1242                 public static void LoadFromPtr (ILGenerator ig, Type t)
1243                 {
1244                         if (t == TypeManager.int32_type)
1245                                 ig.Emit (OpCodes.Ldind_I4);
1246                         else if (t == TypeManager.uint32_type)
1247                                 ig.Emit (OpCodes.Ldind_U4);
1248                         else if (t == TypeManager.short_type)
1249                                 ig.Emit (OpCodes.Ldind_I2);
1250                         else if (t == TypeManager.ushort_type)
1251                                 ig.Emit (OpCodes.Ldind_U2);
1252                         else if (t == TypeManager.char_type)
1253                                 ig.Emit (OpCodes.Ldind_U2);
1254                         else if (t == TypeManager.byte_type)
1255                                 ig.Emit (OpCodes.Ldind_U1);
1256                         else if (t == TypeManager.sbyte_type)
1257                                 ig.Emit (OpCodes.Ldind_I1);
1258                         else if (t == TypeManager.uint64_type)
1259                                 ig.Emit (OpCodes.Ldind_I8);
1260                         else if (t == TypeManager.int64_type)
1261                                 ig.Emit (OpCodes.Ldind_I8);
1262                         else if (t == TypeManager.float_type)
1263                                 ig.Emit (OpCodes.Ldind_R4);
1264                         else if (t == TypeManager.double_type)
1265                                 ig.Emit (OpCodes.Ldind_R8);
1266                         else if (t == TypeManager.bool_type)
1267                                 ig.Emit (OpCodes.Ldind_I1);
1268                         else if (t == TypeManager.intptr_type)
1269                                 ig.Emit (OpCodes.Ldind_I);
1270                         else if (TypeManager.IsEnumType (t)) {
1271                                 if (t == TypeManager.enum_type)
1272                                         ig.Emit (OpCodes.Ldind_Ref);
1273                                 else
1274                                         LoadFromPtr (ig, TypeManager.EnumToUnderlying (t));
1275                         } else if (t.IsValueType || t.IsGenericParameter)
1276                                 ig.Emit (OpCodes.Ldobj, t);
1277                         else if (t.IsPointer)
1278                                 ig.Emit (OpCodes.Ldind_I);
1279                         else
1280                                 ig.Emit (OpCodes.Ldind_Ref);
1281                 }
1282
1283                 //
1284                 // The stack contains the pointer and the value of type `type'
1285                 //
1286                 public static void StoreFromPtr (ILGenerator ig, Type type)
1287                 {
1288                         if (TypeManager.IsEnumType (type))
1289                                 type = TypeManager.EnumToUnderlying (type);
1290                         if (type == TypeManager.int32_type || type == TypeManager.uint32_type)
1291                                 ig.Emit (OpCodes.Stind_I4);
1292                         else if (type == TypeManager.int64_type || type == TypeManager.uint64_type)
1293                                 ig.Emit (OpCodes.Stind_I8);
1294                         else if (type == TypeManager.char_type || type == TypeManager.short_type ||
1295                                  type == TypeManager.ushort_type)
1296                                 ig.Emit (OpCodes.Stind_I2);
1297                         else if (type == TypeManager.float_type)
1298                                 ig.Emit (OpCodes.Stind_R4);
1299                         else if (type == TypeManager.double_type)
1300                                 ig.Emit (OpCodes.Stind_R8);
1301                         else if (type == TypeManager.byte_type || type == TypeManager.sbyte_type ||
1302                                  type == TypeManager.bool_type)
1303                                 ig.Emit (OpCodes.Stind_I1);
1304                         else if (type == TypeManager.intptr_type)
1305                                 ig.Emit (OpCodes.Stind_I);
1306                         else if (type.IsValueType || type.IsGenericParameter)
1307                                 ig.Emit (OpCodes.Stobj, type);
1308                         else
1309                                 ig.Emit (OpCodes.Stind_Ref);
1310                 }
1311                 
1312                 //
1313                 // Returns the size of type `t' if known, otherwise, 0
1314                 //
1315                 public static int GetTypeSize (Type t)
1316                 {
1317                         t = TypeManager.TypeToCoreType (t);
1318                         if (t == TypeManager.int32_type ||
1319                             t == TypeManager.uint32_type ||
1320                             t == TypeManager.float_type)
1321                                 return 4;
1322                         else if (t == TypeManager.int64_type ||
1323                                  t == TypeManager.uint64_type ||
1324                                  t == TypeManager.double_type)
1325                                 return 8;
1326                         else if (t == TypeManager.byte_type ||
1327                                  t == TypeManager.sbyte_type ||
1328                                  t == TypeManager.bool_type)    
1329                                 return 1;
1330                         else if (t == TypeManager.short_type ||
1331                                  t == TypeManager.char_type ||
1332                                  t == TypeManager.ushort_type)
1333                                 return 2;
1334                         else if (t == TypeManager.decimal_type)
1335                                 return 16;
1336                         else
1337                                 return 0;
1338                 }
1339
1340                 public static void Error_NegativeArrayIndex (Location loc)
1341                 {
1342                         Report.Error (248, loc, "Cannot create an array with a negative size");
1343                 }
1344                 
1345                 //
1346                 // Converts `source' to an int, uint, long or ulong.
1347                 //
1348                 public Expression ExpressionToArrayArgument (EmitContext ec, Expression source, Location loc)
1349                 {
1350                         Expression target;
1351                         
1352                         bool old_checked = ec.CheckState;
1353                         ec.CheckState = true;
1354                         
1355                         target = Convert.ImplicitConversion (ec, source, TypeManager.int32_type, loc);
1356                         if (target == null){
1357                                 target = Convert.ImplicitConversion (ec, source, TypeManager.uint32_type, loc);
1358                                 if (target == null){
1359                                         target = Convert.ImplicitConversion (ec, source, TypeManager.int64_type, loc);
1360                                         if (target == null){
1361                                                 target = Convert.ImplicitConversion (ec, source, TypeManager.uint64_type, loc);
1362                                                 if (target == null)
1363                                                         Convert.Error_CannotImplicitConversion (loc, source.Type, TypeManager.int32_type);
1364                                         }
1365                                 }
1366                         } 
1367                         ec.CheckState = old_checked;
1368
1369                         //
1370                         // Only positive constants are allowed at compile time
1371                         //
1372                         if (target is Constant){
1373                                 if (target is IntConstant){
1374                                         if (((IntConstant) target).Value < 0){
1375                                                 Error_NegativeArrayIndex (loc);
1376                                                 return null;
1377                                         }
1378                                 }
1379
1380                                 if (target is LongConstant){
1381                                         if (((LongConstant) target).Value < 0){
1382                                                 Error_NegativeArrayIndex (loc);
1383                                                 return null;
1384                                         }
1385                                 }
1386                                 
1387                         }
1388
1389                         return target;
1390                 }
1391                 
1392         }
1393
1394         /// <summary>
1395         ///   This is just a base class for expressions that can
1396         ///   appear on statements (invocations, object creation,
1397         ///   assignments, post/pre increment and decrement).  The idea
1398         ///   being that they would support an extra Emition interface that
1399         ///   does not leave a result on the stack.
1400         /// </summary>
1401         public abstract class ExpressionStatement : Expression {
1402
1403                 public virtual ExpressionStatement ResolveStatement (EmitContext ec)
1404                 {
1405                         Expression e = Resolve (ec);
1406                         if (e == null)
1407                                 return null;
1408
1409                         ExpressionStatement es = e as ExpressionStatement;
1410                         if (es == null)
1411                                 Error (201, "Only assignment, call, increment, decrement and new object " +
1412                                        "expressions can be used as a statement");
1413
1414                         return es;
1415                 }
1416
1417                 /// <summary>
1418                 ///   Requests the expression to be emitted in a `statement'
1419                 ///   context.  This means that no new value is left on the
1420                 ///   stack after invoking this method (constrasted with
1421                 ///   Emit that will always leave a value on the stack).
1422                 /// </summary>
1423                 public abstract void EmitStatement (EmitContext ec);
1424         }
1425
1426         /// <summary>
1427         ///   This kind of cast is used to encapsulate the child
1428         ///   whose type is child.Type into an expression that is
1429         ///   reported to return "return_type".  This is used to encapsulate
1430         ///   expressions which have compatible types, but need to be dealt
1431         ///   at higher levels with.
1432         ///
1433         ///   For example, a "byte" expression could be encapsulated in one
1434         ///   of these as an "unsigned int".  The type for the expression
1435         ///   would be "unsigned int".
1436         ///
1437         /// </summary>
1438         public class EmptyCast : Expression {
1439                 protected Expression child;
1440                 
1441                 public Expression Child {
1442                         get {
1443                                 return child;
1444                         }
1445                 }               
1446
1447                 public EmptyCast (Expression child, Type return_type)
1448                 {
1449                         eclass = child.eclass;
1450                         loc = child.Location;
1451                         type = return_type;
1452                         this.child = child;
1453                 }
1454
1455                 public override Expression DoResolve (EmitContext ec)
1456                 {
1457                         // This should never be invoked, we are born in fully
1458                         // initialized state.
1459
1460                         return this;
1461                 }
1462
1463                 public override void Emit (EmitContext ec)
1464                 {
1465                         child.Emit (ec);
1466                 }
1467         }
1468
1469         //
1470         // We need to special case this since an empty cast of
1471         // a NullLiteral is still a Constant
1472         //
1473         public class NullCast : Constant {
1474                 protected Expression child;
1475                                 
1476                 public NullCast (Expression child, Type return_type)
1477                 {
1478                         eclass = child.eclass;
1479                         type = return_type;
1480                         this.child = child;
1481                 }
1482
1483                 override public string AsString ()
1484                 {
1485                         return "null";
1486                 }
1487
1488                 public override object GetValue ()
1489                 {
1490                         return null;
1491                 }
1492
1493                 public override Expression DoResolve (EmitContext ec)
1494                 {
1495                         // This should never be invoked, we are born in fully
1496                         // initialized state.
1497
1498                         return this;
1499                 }
1500
1501                 public override void Emit (EmitContext ec)
1502                 {
1503                         child.Emit (ec);
1504                 }
1505
1506                 public override bool IsDefaultValue {
1507                         get {
1508                                 throw new NotImplementedException ();
1509                         }
1510                 }
1511
1512                 public override bool IsNegative {
1513                         get {
1514                                 return false;
1515                         }
1516                 }
1517         }
1518
1519
1520         /// <summary>
1521         ///  This class is used to wrap literals which belong inside Enums
1522         /// </summary>
1523         public class EnumConstant : Constant {
1524                 public Constant Child;
1525
1526                 public EnumConstant (Constant child, Type enum_type)
1527                 {
1528                         eclass = child.eclass;
1529                         this.Child = child;
1530                         type = enum_type;
1531                 }
1532                 
1533                 public override Expression DoResolve (EmitContext ec)
1534                 {
1535                         // This should never be invoked, we are born in fully
1536                         // initialized state.
1537
1538                         return this;
1539                 }
1540
1541                 public override void Emit (EmitContext ec)
1542                 {
1543                         Child.Emit (ec);
1544                 }
1545
1546                 public override object GetValue ()
1547                 {
1548                         return Child.GetValue ();
1549                 }
1550
1551                 public object GetValueAsEnumType ()
1552                 {
1553                         return System.Enum.ToObject (type, Child.GetValue ());
1554                 }
1555
1556                 //
1557                 // Converts from one of the valid underlying types for an enumeration
1558                 // (int32, uint32, int64, uint64, short, ushort, byte, sbyte) to
1559                 // one of the internal compiler literals: Int/UInt/Long/ULong Literals.
1560                 //
1561                 public Constant WidenToCompilerConstant ()
1562                 {
1563                         Type t = TypeManager.EnumToUnderlying (Child.Type);
1564                         object v = ((Constant) Child).GetValue ();;
1565                         
1566                         if (t == TypeManager.int32_type)
1567                                 return new IntConstant ((int) v);
1568                         if (t == TypeManager.uint32_type)
1569                                 return new UIntConstant ((uint) v);
1570                         if (t == TypeManager.int64_type)
1571                                 return new LongConstant ((long) v);
1572                         if (t == TypeManager.uint64_type)
1573                                 return new ULongConstant ((ulong) v);
1574                         if (t == TypeManager.short_type)
1575                                 return new ShortConstant ((short) v);
1576                         if (t == TypeManager.ushort_type)
1577                                 return new UShortConstant ((ushort) v);
1578                         if (t == TypeManager.byte_type)
1579                                 return new ByteConstant ((byte) v);
1580                         if (t == TypeManager.sbyte_type)
1581                                 return new SByteConstant ((sbyte) v);
1582
1583                         throw new Exception ("Invalid enumeration underlying type: " + t);
1584                 }
1585
1586                 //
1587                 // Extracts the value in the enumeration on its native representation
1588                 //
1589                 public object GetPlainValue ()
1590                 {
1591                         Type t = TypeManager.EnumToUnderlying (Child.Type);
1592                         object v = ((Constant) Child).GetValue ();;
1593                         
1594                         if (t == TypeManager.int32_type)
1595                                 return (int) v;
1596                         if (t == TypeManager.uint32_type)
1597                                 return (uint) v;
1598                         if (t == TypeManager.int64_type)
1599                                 return (long) v;
1600                         if (t == TypeManager.uint64_type)
1601                                 return (ulong) v;
1602                         if (t == TypeManager.short_type)
1603                                 return (short) v;
1604                         if (t == TypeManager.ushort_type)
1605                                 return (ushort) v;
1606                         if (t == TypeManager.byte_type)
1607                                 return (byte) v;
1608                         if (t == TypeManager.sbyte_type)
1609                                 return (sbyte) v;
1610
1611                         return null;
1612                 }
1613                 
1614                 public override string AsString ()
1615                 {
1616                         return Child.AsString ();
1617                 }
1618
1619                 public override DoubleConstant ConvertToDouble ()
1620                 {
1621                         return Child.ConvertToDouble ();
1622                 }
1623
1624                 public override FloatConstant ConvertToFloat ()
1625                 {
1626                         return Child.ConvertToFloat ();
1627                 }
1628
1629                 public override ULongConstant ConvertToULong ()
1630                 {
1631                         return Child.ConvertToULong ();
1632                 }
1633
1634                 public override LongConstant ConvertToLong ()
1635                 {
1636                         return Child.ConvertToLong ();
1637                 }
1638
1639                 public override UIntConstant ConvertToUInt ()
1640                 {
1641                         return Child.ConvertToUInt ();
1642                 }
1643
1644                 public override IntConstant ConvertToInt ()
1645                 {
1646                         return Child.ConvertToInt ();
1647                 }
1648
1649                 public override bool IsDefaultValue {
1650                         get {
1651                                 return Child.IsDefaultValue;
1652                         }
1653                 }
1654
1655                 public override bool IsZeroInteger {
1656                         get { return Child.IsZeroInteger; }
1657                 }
1658
1659                 public override bool IsNegative {
1660                         get {
1661                                 return Child.IsNegative;
1662                         }
1663                 }
1664         }
1665
1666         /// <summary>
1667         ///   This kind of cast is used to encapsulate Value Types in objects.
1668         ///
1669         ///   The effect of it is to box the value type emitted by the previous
1670         ///   operation.
1671         /// </summary>
1672         public class BoxedCast : EmptyCast {
1673
1674                 public BoxedCast (Expression expr)
1675                         : base (expr, TypeManager.object_type) 
1676                 {
1677                         eclass = ExprClass.Value;
1678                 }
1679
1680                 public BoxedCast (Expression expr, Type target_type)
1681                         : base (expr, target_type)
1682                 {
1683                         eclass = ExprClass.Value;
1684                 }
1685                 
1686                 public override Expression DoResolve (EmitContext ec)
1687                 {
1688                         // This should never be invoked, we are born in fully
1689                         // initialized state.
1690
1691                         return this;
1692                 }
1693
1694                 public override void Emit (EmitContext ec)
1695                 {
1696                         base.Emit (ec);
1697                         
1698                         ec.ig.Emit (OpCodes.Box, child.Type);
1699                 }
1700         }
1701
1702         public class UnboxCast : EmptyCast {
1703                 public UnboxCast (Expression expr, Type return_type)
1704                         : base (expr, return_type)
1705                 {
1706                 }
1707
1708                 public override Expression DoResolve (EmitContext ec)
1709                 {
1710                         // This should never be invoked, we are born in fully
1711                         // initialized state.
1712
1713                         return this;
1714                 }
1715
1716                 public override void Emit (EmitContext ec)
1717                 {
1718                         Type t = type;
1719                         ILGenerator ig = ec.ig;
1720                         
1721                         base.Emit (ec);
1722                         if (t.IsGenericParameter)
1723                                 ig.Emit (OpCodes.Unbox_Any, t);
1724                         else {
1725                                 ig.Emit (OpCodes.Unbox, t);
1726
1727                                 LoadFromPtr (ig, t);
1728                         }
1729                 }
1730         }
1731         
1732         /// <summary>
1733         ///   This is used to perform explicit numeric conversions.
1734         ///
1735         ///   Explicit numeric conversions might trigger exceptions in a checked
1736         ///   context, so they should generate the conv.ovf opcodes instead of
1737         ///   conv opcodes.
1738         /// </summary>
1739         public class ConvCast : EmptyCast {
1740                 public enum Mode : byte {
1741                         I1_U1, I1_U2, I1_U4, I1_U8, I1_CH,
1742                         U1_I1, U1_CH,
1743                         I2_I1, I2_U1, I2_U2, I2_U4, I2_U8, I2_CH,
1744                         U2_I1, U2_U1, U2_I2, U2_CH,
1745                         I4_I1, I4_U1, I4_I2, I4_U2, I4_U4, I4_U8, I4_CH,
1746                         U4_I1, U4_U1, U4_I2, U4_U2, U4_I4, U4_CH,
1747                         I8_I1, I8_U1, I8_I2, I8_U2, I8_I4, I8_U4, I8_U8, I8_CH,
1748                         U8_I1, U8_U1, U8_I2, U8_U2, U8_I4, U8_U4, U8_I8, U8_CH,
1749                         CH_I1, CH_U1, CH_I2,
1750                         R4_I1, R4_U1, R4_I2, R4_U2, R4_I4, R4_U4, R4_I8, R4_U8, R4_CH,
1751                         R8_I1, R8_U1, R8_I2, R8_U2, R8_I4, R8_U4, R8_I8, R8_U8, R8_CH, R8_R4
1752                 }
1753
1754                 Mode mode;
1755                 bool checked_state;
1756                 
1757                 public ConvCast (EmitContext ec, Expression child, Type return_type, Mode m)
1758                         : base (child, return_type)
1759                 {
1760                         checked_state = ec.CheckState;
1761                         mode = m;
1762                 }
1763
1764                 public override Expression DoResolve (EmitContext ec)
1765                 {
1766                         // This should never be invoked, we are born in fully
1767                         // initialized state.
1768
1769                         return this;
1770                 }
1771
1772                 public override string ToString ()
1773                 {
1774                         return String.Format ("ConvCast ({0}, {1})", mode, child);
1775                 }
1776                 
1777                 public override void Emit (EmitContext ec)
1778                 {
1779                         ILGenerator ig = ec.ig;
1780                         
1781                         base.Emit (ec);
1782
1783                         if (checked_state){
1784                                 switch (mode){
1785                                 case Mode.I1_U1: ig.Emit (OpCodes.Conv_Ovf_U1); break;
1786                                 case Mode.I1_U2: ig.Emit (OpCodes.Conv_Ovf_U2); break;
1787                                 case Mode.I1_U4: ig.Emit (OpCodes.Conv_Ovf_U4); break;
1788                                 case Mode.I1_U8: ig.Emit (OpCodes.Conv_Ovf_U8); break;
1789                                 case Mode.I1_CH: ig.Emit (OpCodes.Conv_Ovf_U2); break;
1790
1791                                 case Mode.U1_I1: ig.Emit (OpCodes.Conv_Ovf_I1_Un); break;
1792                                 case Mode.U1_CH: /* nothing */ break;
1793
1794                                 case Mode.I2_I1: ig.Emit (OpCodes.Conv_Ovf_I1); break;
1795                                 case Mode.I2_U1: ig.Emit (OpCodes.Conv_Ovf_U1); break;
1796                                 case Mode.I2_U2: ig.Emit (OpCodes.Conv_Ovf_U2); break;
1797                                 case Mode.I2_U4: ig.Emit (OpCodes.Conv_Ovf_U4); break;
1798                                 case Mode.I2_U8: ig.Emit (OpCodes.Conv_Ovf_U8); break;
1799                                 case Mode.I2_CH: ig.Emit (OpCodes.Conv_Ovf_U2); break;
1800
1801                                 case Mode.U2_I1: ig.Emit (OpCodes.Conv_Ovf_I1_Un); break;
1802                                 case Mode.U2_U1: ig.Emit (OpCodes.Conv_Ovf_U1_Un); break;
1803                                 case Mode.U2_I2: ig.Emit (OpCodes.Conv_Ovf_I2_Un); break;
1804                                 case Mode.U2_CH: /* nothing */ break;
1805
1806                                 case Mode.I4_I1: ig.Emit (OpCodes.Conv_Ovf_I1); break;
1807                                 case Mode.I4_U1: ig.Emit (OpCodes.Conv_Ovf_U1); break;
1808                                 case Mode.I4_I2: ig.Emit (OpCodes.Conv_Ovf_I2); break;
1809                                 case Mode.I4_U4: ig.Emit (OpCodes.Conv_Ovf_U4); break;
1810                                 case Mode.I4_U2: ig.Emit (OpCodes.Conv_Ovf_U2); break;
1811                                 case Mode.I4_U8: ig.Emit (OpCodes.Conv_Ovf_U8); break;
1812                                 case Mode.I4_CH: ig.Emit (OpCodes.Conv_Ovf_U2); break;
1813
1814                                 case Mode.U4_I1: ig.Emit (OpCodes.Conv_Ovf_I1_Un); break;
1815                                 case Mode.U4_U1: ig.Emit (OpCodes.Conv_Ovf_U1_Un); break;
1816                                 case Mode.U4_I2: ig.Emit (OpCodes.Conv_Ovf_I2_Un); break;
1817                                 case Mode.U4_U2: ig.Emit (OpCodes.Conv_Ovf_U2_Un); break;
1818                                 case Mode.U4_I4: ig.Emit (OpCodes.Conv_Ovf_I4_Un); break;
1819                                 case Mode.U4_CH: ig.Emit (OpCodes.Conv_Ovf_U2_Un); break;
1820
1821                                 case Mode.I8_I1: ig.Emit (OpCodes.Conv_Ovf_I1); break;
1822                                 case Mode.I8_U1: ig.Emit (OpCodes.Conv_Ovf_U1); break;
1823                                 case Mode.I8_I2: ig.Emit (OpCodes.Conv_Ovf_I2); break;
1824                                 case Mode.I8_U2: ig.Emit (OpCodes.Conv_Ovf_U2); break;
1825                                 case Mode.I8_I4: ig.Emit (OpCodes.Conv_Ovf_I4); break;
1826                                 case Mode.I8_U4: ig.Emit (OpCodes.Conv_Ovf_U4); break;
1827                                 case Mode.I8_U8: ig.Emit (OpCodes.Conv_Ovf_U8); break;
1828                                 case Mode.I8_CH: ig.Emit (OpCodes.Conv_Ovf_U2); break;
1829
1830                                 case Mode.U8_I1: ig.Emit (OpCodes.Conv_Ovf_I1_Un); break;
1831                                 case Mode.U8_U1: ig.Emit (OpCodes.Conv_Ovf_U1_Un); break;
1832                                 case Mode.U8_I2: ig.Emit (OpCodes.Conv_Ovf_I2_Un); break;
1833                                 case Mode.U8_U2: ig.Emit (OpCodes.Conv_Ovf_U2_Un); break;
1834                                 case Mode.U8_I4: ig.Emit (OpCodes.Conv_Ovf_I4_Un); break;
1835                                 case Mode.U8_U4: ig.Emit (OpCodes.Conv_Ovf_U4_Un); break;
1836                                 case Mode.U8_I8: ig.Emit (OpCodes.Conv_Ovf_I8_Un); break;
1837                                 case Mode.U8_CH: ig.Emit (OpCodes.Conv_Ovf_U2_Un); break;
1838
1839                                 case Mode.CH_I1: ig.Emit (OpCodes.Conv_Ovf_I1_Un); break;
1840                                 case Mode.CH_U1: ig.Emit (OpCodes.Conv_Ovf_U1_Un); break;
1841                                 case Mode.CH_I2: ig.Emit (OpCodes.Conv_Ovf_I2_Un); break;
1842
1843                                 case Mode.R4_I1: ig.Emit (OpCodes.Conv_Ovf_I1); break;
1844                                 case Mode.R4_U1: ig.Emit (OpCodes.Conv_Ovf_U1); break;
1845                                 case Mode.R4_I2: ig.Emit (OpCodes.Conv_Ovf_I2); break;
1846                                 case Mode.R4_U2: ig.Emit (OpCodes.Conv_Ovf_U2); break;
1847                                 case Mode.R4_I4: ig.Emit (OpCodes.Conv_Ovf_I4); break;
1848                                 case Mode.R4_U4: ig.Emit (OpCodes.Conv_Ovf_U4); break;
1849                                 case Mode.R4_I8: ig.Emit (OpCodes.Conv_Ovf_I8); break;
1850                                 case Mode.R4_U8: ig.Emit (OpCodes.Conv_Ovf_U8); break;
1851                                 case Mode.R4_CH: ig.Emit (OpCodes.Conv_Ovf_U2); break;
1852
1853                                 case Mode.R8_I1: ig.Emit (OpCodes.Conv_Ovf_I1); break;
1854                                 case Mode.R8_U1: ig.Emit (OpCodes.Conv_Ovf_U1); break;
1855                                 case Mode.R8_I2: ig.Emit (OpCodes.Conv_Ovf_I2); break;
1856                                 case Mode.R8_U2: ig.Emit (OpCodes.Conv_Ovf_U2); break;
1857                                 case Mode.R8_I4: ig.Emit (OpCodes.Conv_Ovf_I4); break;
1858                                 case Mode.R8_U4: ig.Emit (OpCodes.Conv_Ovf_U4); break;
1859                                 case Mode.R8_I8: ig.Emit (OpCodes.Conv_Ovf_I8); break;
1860                                 case Mode.R8_U8: ig.Emit (OpCodes.Conv_Ovf_U8); break;
1861                                 case Mode.R8_CH: ig.Emit (OpCodes.Conv_Ovf_U2); break;
1862                                 case Mode.R8_R4: ig.Emit (OpCodes.Conv_R4); break;
1863                                 }
1864                         } else {
1865                                 switch (mode){
1866                                 case Mode.I1_U1: ig.Emit (OpCodes.Conv_U1); break;
1867                                 case Mode.I1_U2: ig.Emit (OpCodes.Conv_U2); break;
1868                                 case Mode.I1_U4: ig.Emit (OpCodes.Conv_U4); break;
1869                                 case Mode.I1_U8: ig.Emit (OpCodes.Conv_I8); break;
1870                                 case Mode.I1_CH: ig.Emit (OpCodes.Conv_U2); break;
1871
1872                                 case Mode.U1_I1: ig.Emit (OpCodes.Conv_I1); break;
1873                                 case Mode.U1_CH: ig.Emit (OpCodes.Conv_U2); break;
1874
1875                                 case Mode.I2_I1: ig.Emit (OpCodes.Conv_I1); break;
1876                                 case Mode.I2_U1: ig.Emit (OpCodes.Conv_U1); break;
1877                                 case Mode.I2_U2: ig.Emit (OpCodes.Conv_U2); break;
1878                                 case Mode.I2_U4: ig.Emit (OpCodes.Conv_U4); break;
1879                                 case Mode.I2_U8: ig.Emit (OpCodes.Conv_I8); break;
1880                                 case Mode.I2_CH: ig.Emit (OpCodes.Conv_U2); break;
1881
1882                                 case Mode.U2_I1: ig.Emit (OpCodes.Conv_I1); break;
1883                                 case Mode.U2_U1: ig.Emit (OpCodes.Conv_U1); break;
1884                                 case Mode.U2_I2: ig.Emit (OpCodes.Conv_I2); break;
1885                                 case Mode.U2_CH: /* nothing */ break;
1886
1887                                 case Mode.I4_I1: ig.Emit (OpCodes.Conv_I1); break;
1888                                 case Mode.I4_U1: ig.Emit (OpCodes.Conv_U1); break;
1889                                 case Mode.I4_I2: ig.Emit (OpCodes.Conv_I2); break;
1890                                 case Mode.I4_U4: /* nothing */ break;
1891                                 case Mode.I4_U2: ig.Emit (OpCodes.Conv_U2); break;
1892                                 case Mode.I4_U8: ig.Emit (OpCodes.Conv_I8); break;
1893                                 case Mode.I4_CH: ig.Emit (OpCodes.Conv_U2); break;
1894
1895                                 case Mode.U4_I1: ig.Emit (OpCodes.Conv_I1); break;
1896                                 case Mode.U4_U1: ig.Emit (OpCodes.Conv_U1); break;
1897                                 case Mode.U4_I2: ig.Emit (OpCodes.Conv_I2); break;
1898                                 case Mode.U4_U2: ig.Emit (OpCodes.Conv_U2); break;
1899                                 case Mode.U4_I4: /* nothing */ break;
1900                                 case Mode.U4_CH: ig.Emit (OpCodes.Conv_U2); break;
1901
1902                                 case Mode.I8_I1: ig.Emit (OpCodes.Conv_I1); break;
1903                                 case Mode.I8_U1: ig.Emit (OpCodes.Conv_U1); break;
1904                                 case Mode.I8_I2: ig.Emit (OpCodes.Conv_I2); break;
1905                                 case Mode.I8_U2: ig.Emit (OpCodes.Conv_U2); break;
1906                                 case Mode.I8_I4: ig.Emit (OpCodes.Conv_I4); break;
1907                                 case Mode.I8_U4: ig.Emit (OpCodes.Conv_U4); break;
1908                                 case Mode.I8_U8: /* nothing */ break;
1909                                 case Mode.I8_CH: ig.Emit (OpCodes.Conv_U2); break;
1910
1911                                 case Mode.U8_I1: ig.Emit (OpCodes.Conv_I1); break;
1912                                 case Mode.U8_U1: ig.Emit (OpCodes.Conv_U1); break;
1913                                 case Mode.U8_I2: ig.Emit (OpCodes.Conv_I2); break;
1914                                 case Mode.U8_U2: ig.Emit (OpCodes.Conv_U2); break;
1915                                 case Mode.U8_I4: ig.Emit (OpCodes.Conv_I4); break;
1916                                 case Mode.U8_U4: ig.Emit (OpCodes.Conv_U4); break;
1917                                 case Mode.U8_I8: /* nothing */ break;
1918                                 case Mode.U8_CH: ig.Emit (OpCodes.Conv_U2); break;
1919
1920                                 case Mode.CH_I1: ig.Emit (OpCodes.Conv_I1); break;
1921                                 case Mode.CH_U1: ig.Emit (OpCodes.Conv_U1); break;
1922                                 case Mode.CH_I2: ig.Emit (OpCodes.Conv_I2); break;
1923
1924                                 case Mode.R4_I1: ig.Emit (OpCodes.Conv_I1); break;
1925                                 case Mode.R4_U1: ig.Emit (OpCodes.Conv_U1); break;
1926                                 case Mode.R4_I2: ig.Emit (OpCodes.Conv_I2); break;
1927                                 case Mode.R4_U2: ig.Emit (OpCodes.Conv_U2); break;
1928                                 case Mode.R4_I4: ig.Emit (OpCodes.Conv_I4); break;
1929                                 case Mode.R4_U4: ig.Emit (OpCodes.Conv_U4); break;
1930                                 case Mode.R4_I8: ig.Emit (OpCodes.Conv_I8); break;
1931                                 case Mode.R4_U8: ig.Emit (OpCodes.Conv_U8); break;
1932                                 case Mode.R4_CH: ig.Emit (OpCodes.Conv_U2); break;
1933
1934                                 case Mode.R8_I1: ig.Emit (OpCodes.Conv_I1); break;
1935                                 case Mode.R8_U1: ig.Emit (OpCodes.Conv_U1); break;
1936                                 case Mode.R8_I2: ig.Emit (OpCodes.Conv_I2); break;
1937                                 case Mode.R8_U2: ig.Emit (OpCodes.Conv_U2); break;
1938                                 case Mode.R8_I4: ig.Emit (OpCodes.Conv_I4); break;
1939                                 case Mode.R8_U4: ig.Emit (OpCodes.Conv_U4); break;
1940                                 case Mode.R8_I8: ig.Emit (OpCodes.Conv_I8); break;
1941                                 case Mode.R8_U8: ig.Emit (OpCodes.Conv_U8); break;
1942                                 case Mode.R8_CH: ig.Emit (OpCodes.Conv_U2); break;
1943                                 case Mode.R8_R4: ig.Emit (OpCodes.Conv_R4); break;
1944                                 }
1945                         }
1946                 }
1947         }
1948         
1949         public class OpcodeCast : EmptyCast {
1950                 OpCode op, op2;
1951                 bool second_valid;
1952                 
1953                 public OpcodeCast (Expression child, Type return_type, OpCode op)
1954                         : base (child, return_type)
1955                         
1956                 {
1957                         this.op = op;
1958                         second_valid = false;
1959                 }
1960
1961                 public OpcodeCast (Expression child, Type return_type, OpCode op, OpCode op2)
1962                         : base (child, return_type)
1963                         
1964                 {
1965                         this.op = op;
1966                         this.op2 = op2;
1967                         second_valid = true;
1968                 }
1969
1970                 public override Expression DoResolve (EmitContext ec)
1971                 {
1972                         // This should never be invoked, we are born in fully
1973                         // initialized state.
1974
1975                         return this;
1976                 }
1977
1978                 public override void Emit (EmitContext ec)
1979                 {
1980                         base.Emit (ec);
1981                         ec.ig.Emit (op);
1982
1983                         if (second_valid)
1984                                 ec.ig.Emit (op2);
1985                 }                       
1986         }
1987
1988         /// <summary>
1989         ///   This kind of cast is used to encapsulate a child and cast it
1990         ///   to the class requested
1991         /// </summary>
1992         public class ClassCast : EmptyCast {
1993                 public ClassCast (Expression child, Type return_type)
1994                         : base (child, return_type)
1995                         
1996                 {
1997                 }
1998
1999                 public override Expression DoResolve (EmitContext ec)
2000                 {
2001                         // This should never be invoked, we are born in fully
2002                         // initialized state.
2003
2004                         return this;
2005                 }
2006
2007                 public override void Emit (EmitContext ec)
2008                 {
2009                         base.Emit (ec);
2010
2011                         if (child.Type.IsGenericParameter)
2012                                 ec.ig.Emit (OpCodes.Box, child.Type);
2013
2014                         if (type.IsGenericParameter)
2015                                 ec.ig.Emit (OpCodes.Unbox_Any, type);
2016                         else
2017                                 ec.ig.Emit (OpCodes.Castclass, type);
2018                 }
2019         }
2020         
2021         /// <summary>
2022         ///   SimpleName expressions are formed of a single word and only happen at the beginning 
2023         ///   of a dotted-name.
2024         /// </summary>
2025         public class SimpleName : Expression {
2026                 public string Name;
2027                 public readonly TypeArguments Arguments;
2028
2029                 public SimpleName (string name, Location l)
2030                 {
2031                         Name = name;
2032                         loc = l;
2033                 }
2034
2035                 public SimpleName (string name, TypeArguments args, Location l)
2036                 {
2037                         Name = name;
2038                         Arguments = args;
2039                         loc = l;
2040                 }
2041
2042                 public SimpleName (string name, TypeParameter[] type_params, Location l)
2043                 {
2044                         Name = name;
2045                         loc = l;
2046
2047                         Arguments = new TypeArguments (l);
2048                         foreach (TypeParameter type_param in type_params)
2049                                 Arguments.Add (new TypeParameterExpr (type_param, l));
2050                 }
2051
2052                 public static string RemoveGenericArity (string name)
2053                 {
2054                         int start = 0;
2055                         StringBuilder sb = new StringBuilder ();
2056                         while (start < name.Length) {
2057                                 int pos = name.IndexOf ('`', start);
2058                                 if (pos < 0) {
2059                                         sb.Append (name.Substring (start));
2060                                         break;
2061                                 }
2062
2063                                 sb.Append (name.Substring (start, pos-start));
2064
2065                                 pos++;
2066                                 while ((pos < name.Length) && Char.IsNumber (name [pos]))
2067                                         pos++;
2068
2069                                 start = pos;
2070                         }
2071
2072                         return sb.ToString ();
2073                 }
2074
2075                 public SimpleName GetMethodGroup ()
2076                 {
2077                         return new SimpleName (RemoveGenericArity (Name), Arguments, loc);
2078                 }
2079
2080                 public static void Error_ObjectRefRequired (EmitContext ec, Location l, string name)
2081                 {
2082                         if (ec.IsFieldInitializer)
2083                                 Report.Error (
2084                                         236, l,
2085                                         "A field initializer cannot reference the non-static field, " +
2086                                         "method or property `"+name+"'");
2087                         else
2088                                 Report.Error (
2089                                         120, l,
2090                                         "An object reference is required " +
2091                                         "for the non-static field `"+name+"'");
2092                 }
2093                 
2094                 //
2095                 // Checks whether we are trying to access an instance
2096                 // property, method or field from a static body.
2097                 //
2098                 Expression MemberStaticCheck (EmitContext ec, Expression e)
2099                 {
2100                         if (e is IMemberExpr){
2101                                 IMemberExpr member = (IMemberExpr) e;
2102                                 
2103                                 if (!member.IsStatic){
2104                                         Error_ObjectRefRequired (ec, loc, Name);
2105                                         return null;
2106                                 }
2107                         }
2108
2109                         return e;
2110                 }
2111                 
2112                 public override Expression DoResolve (EmitContext ec)
2113                 {
2114                         return SimpleNameResolve (ec, null, false, false);
2115                 }
2116
2117                 public override Expression DoResolveLValue (EmitContext ec, Expression right_side)
2118                 {
2119                         return SimpleNameResolve (ec, right_side, false, false);
2120                 }
2121                 
2122
2123                 public Expression DoResolveAllowStatic (EmitContext ec, bool intermediate)
2124                 {
2125                         return SimpleNameResolve (ec, null, true, intermediate);
2126                 }
2127
2128                 private bool IsNestedChild (Type t, Type parent)
2129                 {
2130                         if (parent == null)
2131                                 return false;
2132
2133                         while (parent != null) {
2134                                 if (parent.IsGenericInstance)
2135                                         parent = parent.GetGenericTypeDefinition ();
2136
2137                                 if (TypeManager.IsNestedChildOf (t, parent))
2138                                         return true;
2139
2140                                 parent = parent.BaseType;
2141                         }
2142
2143                         return false;
2144                 }
2145
2146                 FullNamedExpression ResolveNested (EmitContext ec, Type t)
2147                 {
2148                         if (!t.IsGenericTypeDefinition)
2149                                 return null;
2150
2151                         DeclSpace ds = ec.DeclSpace;
2152                         while (ds != null) {
2153                                 if (IsNestedChild (t, ds.TypeBuilder))
2154                                         break;
2155
2156                                 ds = ds.Parent;
2157                         }
2158
2159                         if (ds == null)
2160                                 return null;
2161
2162                         Type[] gen_params = t.GetGenericArguments ();
2163
2164                         int arg_count = Arguments != null ? Arguments.Count : 0;
2165
2166                         for (; (ds != null) && ds.IsGeneric; ds = ds.Parent) {
2167                                 if (arg_count + ds.CountTypeParameters == gen_params.Length) {
2168                                         TypeArguments new_args = new TypeArguments (loc);
2169                                         foreach (TypeParameter param in ds.TypeParameters)
2170                                                 new_args.Add (new TypeParameterExpr (param, loc));
2171
2172                                         if (Arguments != null)
2173                                                 new_args.Add (Arguments);
2174
2175                                         return new ConstructedType (t, new_args, loc);
2176                                 }
2177                         }
2178
2179                         return null;
2180                 }
2181
2182                 public override FullNamedExpression ResolveAsTypeStep (EmitContext ec)
2183                 {
2184                         FullNamedExpression dt = ec.DeclSpace.LookupGeneric (Name, loc);
2185                         if (dt != null)
2186                                 return dt.ResolveAsTypeStep (ec);
2187
2188                         int errors = Report.Errors;
2189                         dt = ec.DeclSpace.LookupType (Name, loc, /*silent=*/ true, /*ignore_cs0104=*/ false);
2190                         if (Report.Errors != errors)
2191                                 return null;
2192
2193                         if ((dt == null) || (dt.Type == null))
2194                                 return dt;
2195
2196                         FullNamedExpression nested = ResolveNested (ec, dt.Type);
2197                         if (nested != null)
2198                                 return nested.ResolveAsTypeStep (ec);
2199
2200                         if (Arguments != null) {
2201                                 ConstructedType ct = new ConstructedType (dt, Arguments, loc);
2202                                 return ct.ResolveAsTypeStep (ec);
2203                         }
2204
2205                         return dt;
2206                 }
2207
2208                 Expression SimpleNameResolve (EmitContext ec, Expression right_side,
2209                                               bool allow_static, bool intermediate)
2210                 {
2211                         Expression e = DoSimpleNameResolve (ec, right_side, allow_static, intermediate);
2212                         if (e == null)
2213                                 return null;
2214
2215                         Block current_block = ec.CurrentBlock;
2216                         if (current_block != null){
2217                                 if (current_block.IsVariableNameUsedInChildBlock (Name)) {
2218                                         Report.Error (135, Location,
2219                                                       "'{0}' has a different meaning in a child block", Name);
2220                                         return null;
2221                                 }
2222                         }
2223
2224                         if (e.Type != null && e.Type.IsPointer && !ec.InUnsafe) {
2225                                 UnsafeError (loc);
2226                                 return null;
2227                         }
2228
2229                         return e;
2230                 }
2231
2232                 /// <remarks>
2233                 ///   7.5.2: Simple Names. 
2234                 ///
2235                 ///   Local Variables and Parameters are handled at
2236                 ///   parse time, so they never occur as SimpleNames.
2237                 ///
2238                 ///   The `allow_static' flag is used by MemberAccess only
2239                 ///   and it is used to inform us that it is ok for us to 
2240                 ///   avoid the static check, because MemberAccess might end
2241                 ///   up resolving the Name as a Type name and the access as
2242                 ///   a static type access.
2243                 ///
2244                 ///   ie: Type Type; .... { Type.GetType (""); }
2245                 ///
2246                 ///   Type is both an instance variable and a Type;  Type.GetType
2247                 ///   is the static method not an instance method of type.
2248                 /// </remarks>
2249                 Expression DoSimpleNameResolve (EmitContext ec, Expression right_side, bool allow_static, bool intermediate)
2250                 {
2251                         Expression e = null;
2252
2253                         //
2254                         // Stage 1: Performed by the parser (binding to locals or parameters).
2255                         //
2256                         Block current_block = ec.CurrentBlock;
2257                         if (current_block != null){
2258                                 LocalInfo vi = current_block.GetLocalInfo (Name);
2259                                 if (vi != null){
2260                                         Expression var;
2261                                         
2262                                         var = new LocalVariableReference (ec.CurrentBlock, Name, loc);
2263                                         
2264                                         if (right_side != null)
2265                                                 return var.ResolveLValue (ec, right_side);
2266                                         else
2267                                                 return var.Resolve (ec);
2268                                 }
2269
2270                                 ParameterReference pref = current_block.GetParameterReference (Name, loc);
2271                                 if (pref != null) {
2272                                         if (right_side != null)
2273                                                 return pref.ResolveLValue (ec, right_side);
2274                                         else
2275                                                 return pref.Resolve (ec);
2276                                 }
2277                         }
2278                         
2279                         //
2280                         // Stage 2: Lookup members 
2281                         //
2282
2283                         DeclSpace lookup_ds = ec.DeclSpace;
2284                         Type almost_matched_type = null;
2285                         ArrayList almost_matched = null;
2286                         do {
2287                                 if (lookup_ds.TypeBuilder == null)
2288                                         break;
2289
2290                                 e = MemberLookup (ec, lookup_ds.TypeBuilder, Name, loc);
2291                                 if (e != null)
2292                                         break;
2293
2294                                 if (almost_matched == null && almostMatchedMembers.Count > 0) {
2295                                         almost_matched_type = lookup_ds.TypeBuilder;
2296                                         almost_matched = (ArrayList) almostMatchedMembers.Clone ();
2297                                 }
2298
2299                                 lookup_ds =lookup_ds.Parent;
2300                         } while (lookup_ds != null);
2301
2302                         if (e == null && ec.ContainerType != null)
2303                                 e = MemberLookup (ec, ec.ContainerType, Name, loc);
2304
2305                         if (e == null) {
2306                                 if (almost_matched == null && almostMatchedMembers.Count > 0) {
2307                                         almost_matched_type = ec.ContainerType;
2308                                         almost_matched = (ArrayList) almostMatchedMembers.Clone ();
2309                                 }
2310                                 e = ResolveAsTypeStep (ec);
2311                         }
2312
2313                         if (e == null) {
2314                                 if (almost_matched != null)
2315                                         almostMatchedMembers = almost_matched;
2316                                 if (almost_matched_type == null)
2317                                         almost_matched_type = ec.ContainerType;
2318                                 MemberLookupFailed (ec, null, almost_matched_type, ((SimpleName) this).Name, ec.DeclSpace.Name, true, loc);
2319                                 return null;
2320                         }
2321
2322                         if (e is TypeExpr)
2323                                 return e;
2324
2325                         if (e is IMemberExpr) {
2326                                 e = MemberAccess.ResolveMemberAccess (ec, e, null, loc, this);
2327                                 if (e == null)
2328                                         return null;
2329
2330                                 IMemberExpr me = e as IMemberExpr;
2331                                 if (me == null)
2332                                         return e;
2333
2334                                 if (Arguments != null) {
2335                                         MethodGroupExpr mg = me as MethodGroupExpr;
2336                                         if (mg == null)
2337                                                 return null;
2338
2339                                         return mg.ResolveGeneric (ec, Arguments);
2340                                 }
2341
2342                                 // This fails if ResolveMemberAccess() was unable to decide whether
2343                                 // it's a field or a type of the same name.
2344                                 
2345                                 if (!me.IsStatic && (me.InstanceExpression == null))
2346                                         return e;
2347
2348                                 if (!me.IsStatic &&
2349                                     TypeManager.IsNestedFamilyAccessible (me.InstanceExpression.Type, me.DeclaringType) &&
2350                                     me.InstanceExpression.Type != me.DeclaringType &&
2351                                     !TypeManager.IsFamilyAccessible (me.InstanceExpression.Type, me.DeclaringType) &&
2352                                     (!intermediate || !MemberAccess.IdenticalNameAndTypeName (ec, this, e, loc))) {
2353                                         Error (38, "Cannot access nonstatic member `" + me.Name + "' of " +
2354                                                "outer type `" + me.DeclaringType + "' via nested type `" +
2355                                                me.InstanceExpression.Type + "'");
2356                                         return null;
2357                                 }
2358
2359                                 return (right_side != null)
2360                                         ? e.DoResolveLValue (ec, right_side)
2361                                         : e.DoResolve (ec);
2362                         }
2363
2364                         if (ec.IsStatic || ec.IsFieldInitializer){
2365                                 if (allow_static)
2366                                         return e;
2367
2368                                 return MemberStaticCheck (ec, e);
2369                         } else
2370                                 return e;
2371                 }
2372                 
2373                 public override void Emit (EmitContext ec)
2374                 {
2375                         //
2376                         // If this is ever reached, then we failed to
2377                         // find the name as a namespace
2378                         //
2379
2380                         Error (103, "The name `" + Name +
2381                                "' does not exist in the class `" +
2382                                ec.DeclSpace.Name + "'");
2383                 }
2384
2385                 public override string ToString ()
2386                 {
2387                         return Name;
2388                 }
2389         }
2390
2391         /// <summary>
2392         ///   Represents a namespace or a type.  The name of the class was inspired by
2393         ///   section 10.8.1 (Fully Qualified Names).
2394         /// </summary>
2395         public abstract class FullNamedExpression : Expression {
2396                 public override FullNamedExpression ResolveAsTypeStep (EmitContext ec)
2397                 {
2398                         return this;
2399                 }
2400
2401                 public abstract string FullName {
2402                         get;
2403                 }
2404         }
2405         
2406         /// <summary>
2407         ///   Fully resolved expression that evaluates to a type
2408         /// </summary>
2409         public abstract class TypeExpr : FullNamedExpression {
2410                 override public FullNamedExpression ResolveAsTypeStep (EmitContext ec)
2411                 {
2412                         TypeExpr t = DoResolveAsTypeStep (ec);
2413                         if (t == null)
2414                                 return null;
2415
2416                         eclass = ExprClass.Type;
2417                         return t;
2418                 }
2419
2420                 override public Expression DoResolve (EmitContext ec)
2421                 {
2422                         return ResolveAsTypeTerminal (ec);
2423                 }
2424
2425                 override public void Emit (EmitContext ec)
2426                 {
2427                         throw new Exception ("Should never be called");
2428                 }
2429
2430                 public virtual bool CheckAccessLevel (DeclSpace ds)
2431                 {
2432                         return ds.CheckAccessLevel (Type);
2433                 }
2434
2435                 public virtual bool AsAccessible (DeclSpace ds, int flags)
2436                 {
2437                         return ds.AsAccessible (Type, flags);
2438                 }
2439
2440                 public virtual bool IsClass {
2441                         get { return Type.IsClass; }
2442                 }
2443
2444                 public virtual bool IsValueType {
2445                         get { return Type.IsValueType; }
2446                 }
2447
2448                 public virtual bool IsInterface {
2449                         get { return Type.IsInterface; }
2450                 }
2451
2452                 public virtual bool IsSealed {
2453                         get { return Type.IsSealed; }
2454                 }
2455
2456                 public virtual bool CanInheritFrom ()
2457                 {
2458                         if (Type == TypeManager.enum_type ||
2459                             (Type == TypeManager.value_type && RootContext.StdLib) ||
2460                             Type == TypeManager.multicast_delegate_type ||
2461                             Type == TypeManager.delegate_type ||
2462                             Type == TypeManager.array_type)
2463                                 return false;
2464
2465                         return true;
2466                 }
2467
2468                 protected abstract TypeExpr DoResolveAsTypeStep (EmitContext ec);
2469
2470                 public virtual Type ResolveType (EmitContext ec)
2471                 {
2472                         TypeExpr t = ResolveAsTypeTerminal (ec);
2473                         if (t == null)
2474                                 return null;
2475
2476                         return t.Type;
2477                 }
2478
2479                 public abstract string Name {
2480                         get;
2481                 }
2482
2483                 public override bool Equals (object obj)
2484                 {
2485                         TypeExpr tobj = obj as TypeExpr;
2486                         if (tobj == null)
2487                                 return false;
2488
2489                         return Type == tobj.Type;
2490                 }
2491
2492                 public override int GetHashCode ()
2493                 {
2494                         return Type.GetHashCode ();
2495                 }
2496                 
2497                 public override string ToString ()
2498                 {
2499                         return Name;
2500                 }
2501         }
2502
2503         public class TypeExpression : TypeExpr {
2504                 public TypeExpression (Type t, Location l)
2505                 {
2506                         Type = t;
2507                         eclass = ExprClass.Type;
2508                         loc = l;
2509                 }
2510
2511                 protected override TypeExpr DoResolveAsTypeStep (EmitContext ec)
2512                 {
2513                         return this;
2514                 }
2515
2516                 public override string Name {
2517                         get {
2518                                 return Type.ToString ();
2519                         }
2520                 }
2521
2522                 public override string FullName {
2523                         get {
2524                                 return Type.FullName != null ? Type.FullName : Type.Name;
2525                         }
2526                 }
2527         }
2528
2529         /// <summary>
2530         ///   Used to create types from a fully qualified name.  These are just used
2531         ///   by the parser to setup the core types.  A TypeLookupExpression is always
2532         ///   classified as a type.
2533         /// </summary>
2534         public class TypeLookupExpression : TypeExpr {
2535                 string name;
2536                 
2537                 public TypeLookupExpression (string name)
2538                 {
2539                         this.name = name;
2540                 }
2541
2542                 protected override TypeExpr DoResolveAsTypeStep (EmitContext ec)
2543                 {
2544                         if (type == null) {
2545                                 FullNamedExpression t = ec.DeclSpace.LookupType (
2546                                         name, Location.Null, /*silent=*/ false, /*ignore_cs0104=*/ false);
2547                                 if (t == null)
2548                                         return null;
2549                                 if (!(t is TypeExpr))
2550                                         return null;
2551                                 type = ((TypeExpr) t).ResolveType (ec);
2552                         }
2553
2554                         return this;
2555                 }
2556
2557                 public override string Name {
2558                         get {
2559                                 return name;
2560                         }
2561                 }
2562
2563                 public override string FullName {
2564                         get {
2565                                 return name;
2566                         }
2567                 }
2568         }
2569
2570         /// <summary>
2571         ///   Represents an "unbound generic type", ie. typeof (Foo<>).
2572         ///   See 14.5.11.
2573         /// </summary>
2574         public class UnboundTypeExpression : TypeLookupExpression {
2575                 public UnboundTypeExpression (string name)
2576                         : base (name)
2577                 { }
2578         }
2579
2580         public class TypeAliasExpression : TypeExpr {
2581                 FullNamedExpression alias;
2582                 TypeExpr texpr;
2583                 TypeArguments args;
2584                 string name;
2585
2586                 public TypeAliasExpression (FullNamedExpression alias, TypeArguments args, Location l)
2587                 {
2588                         this.alias = alias;
2589                         this.args = args;
2590                         loc = l;
2591
2592                         eclass = ExprClass.Type;
2593                         if (args != null)
2594                                 name = alias.FullName + "<" + args.ToString () + ">";
2595                         else
2596                                 name = alias.FullName;
2597                 }
2598
2599                 public override string Name {
2600                         get { return alias.FullName; }
2601                 }
2602
2603                 public override string FullName {
2604                         get { return name; }
2605                 }
2606
2607                 protected override TypeExpr DoResolveAsTypeStep (EmitContext ec)
2608                 {
2609                         texpr = alias.ResolveAsTypeTerminal (ec);
2610                         if (texpr == null)
2611                                 return null;
2612
2613                         Type type = texpr.Type;
2614                         int num_args = TypeManager.GetNumberOfTypeArguments (type);
2615
2616                         if (args != null) {
2617                                 if (num_args == 0) {
2618                                         Report.Error (308, loc,
2619                                                       "The non-generic type `{0}' cannot " +
2620                                                       "be used with type arguments.",
2621                                                       TypeManager.CSharpName (type));
2622                                         return null;
2623                                 }
2624
2625                                 ConstructedType ctype = new ConstructedType (type, args, loc);
2626                                 return ctype.ResolveAsTypeTerminal (ec);
2627                         } else if (num_args > 0) {
2628                                 Report.Error (305, loc,
2629                                               "Using the generic type `{0}' " +
2630                                               "requires {1} type arguments",
2631                                               TypeManager.GetFullName (type), num_args);
2632                                 return null;
2633                         }
2634
2635                         return new TypeExpression (type, loc);
2636                 }
2637
2638                 public override bool CheckAccessLevel (DeclSpace ds)
2639                 {
2640                         return texpr.CheckAccessLevel (ds);
2641                 }
2642
2643                 public override bool AsAccessible (DeclSpace ds, int flags)
2644                 {
2645                         return texpr.AsAccessible (ds, flags);
2646                 }
2647
2648                 public override bool IsClass {
2649                         get { return texpr.IsClass; }
2650                 }
2651
2652                 public override bool IsValueType {
2653                         get { return texpr.IsValueType; }
2654                 }
2655
2656                 public override bool IsInterface {
2657                         get { return texpr.IsInterface; }
2658                 }
2659
2660                 public override bool IsSealed {
2661                         get { return texpr.IsSealed; }
2662                 }
2663         }
2664
2665         /// <summary>
2666         ///   MethodGroup Expression.
2667         ///  
2668         ///   This is a fully resolved expression that evaluates to a type
2669         /// </summary>
2670         public class MethodGroupExpr : Expression, IMemberExpr {
2671                 public MethodBase [] Methods;
2672                 Expression instance_expression = null;
2673                 bool is_explicit_impl = false;
2674                 bool has_type_arguments = false;
2675                 bool identical_type_name = false;
2676                 bool is_base;
2677                 
2678                 public MethodGroupExpr (MemberInfo [] mi, Location l)
2679                 {
2680                         Methods = new MethodBase [mi.Length];
2681                         mi.CopyTo (Methods, 0);
2682                         eclass = ExprClass.MethodGroup;
2683                         type = TypeManager.object_type;
2684                         loc = l;
2685                 }
2686
2687                 public MethodGroupExpr (ArrayList list, Location l)
2688                 {
2689                         Methods = new MethodBase [list.Count];
2690
2691                         try {
2692                                 list.CopyTo (Methods, 0);
2693                         } catch {
2694                                 foreach (MemberInfo m in list){
2695                                         if (!(m is MethodBase)){
2696                                                 Console.WriteLine ("Name " + m.Name);
2697                                                 Console.WriteLine ("Found a: " + m.GetType ().FullName);
2698                                         }
2699                                 }
2700                                 throw;
2701                         }
2702
2703                         loc = l;
2704                         eclass = ExprClass.MethodGroup;
2705                         type = TypeManager.object_type;
2706                 }
2707
2708                 public Type DeclaringType {
2709                         get {
2710                                 //
2711                                 // We assume that the top-level type is in the end
2712                                 //
2713                                 return Methods [Methods.Length - 1].DeclaringType;
2714                                 //return Methods [0].DeclaringType;
2715                         }
2716                 }
2717                 
2718                 //
2719                 // `A method group may have associated an instance expression' 
2720                 // 
2721                 public Expression InstanceExpression {
2722                         get {
2723                                 return instance_expression;
2724                         }
2725
2726                         set {
2727                                 instance_expression = value;
2728                         }
2729                 }
2730
2731                 public bool IsExplicitImpl {
2732                         get {
2733                                 return is_explicit_impl;
2734                         }
2735
2736                         set {
2737                                 is_explicit_impl = value;
2738                         }
2739                 }
2740
2741                 public bool HasTypeArguments {
2742                         get {
2743                                 return has_type_arguments;
2744                         }
2745
2746                         set {
2747                                 has_type_arguments = value;
2748                         }
2749                 }
2750
2751                 public bool IdenticalTypeName {
2752                         get {
2753                                 return identical_type_name;
2754                         }
2755
2756                         set {
2757                                 identical_type_name = value;
2758                         }
2759                 }
2760
2761                 public bool IsBase {
2762                         get {
2763                                 return is_base;
2764                         }
2765                         set {
2766                                 is_base = value;
2767                         }
2768                 }
2769
2770                 public string Name {
2771                         get {
2772                                 //return Methods [0].Name;
2773                                 return Methods [Methods.Length - 1].Name;
2774                         }
2775                 }
2776
2777                 public bool IsInstance {
2778                         get {
2779                                 foreach (MethodBase mb in Methods)
2780                                         if (!mb.IsStatic)
2781                                                 return true;
2782
2783                                 return false;
2784                         }
2785                 }
2786
2787                 public bool IsStatic {
2788                         get {
2789                                 foreach (MethodBase mb in Methods)
2790                                         if (mb.IsStatic)
2791                                                 return true;
2792
2793                                 return false;
2794                         }
2795                 }
2796                 
2797                 override public Expression DoResolve (EmitContext ec)
2798                 {
2799                         if (!IsInstance)
2800                                 instance_expression = null;
2801
2802                         if (instance_expression != null) {
2803                                 instance_expression = instance_expression.DoResolve (ec);
2804                                 if (instance_expression == null)
2805                                         return null;
2806                         }
2807
2808                         return this;
2809                 }
2810
2811                 public void ReportUsageError ()
2812                 {
2813                         Report.Error (654, loc, "Method `" + DeclaringType + "." +
2814                                       Name + "()' is referenced without parentheses");
2815                 }
2816
2817                 override public void Emit (EmitContext ec)
2818                 {
2819                         ReportUsageError ();
2820                 }
2821
2822                 bool RemoveMethods (bool keep_static)
2823                 {
2824                         ArrayList smethods = new ArrayList ();
2825
2826                         foreach (MethodBase mb in Methods){
2827                                 if (mb.IsStatic == keep_static)
2828                                         smethods.Add (mb);
2829                         }
2830
2831                         if (smethods.Count == 0)
2832                                 return false;
2833
2834                         Methods = new MethodBase [smethods.Count];
2835                         smethods.CopyTo (Methods, 0);
2836
2837                         return true;
2838                 }
2839                 
2840                 /// <summary>
2841                 ///   Removes any instance methods from the MethodGroup, returns
2842                 ///   false if the resulting set is empty.
2843                 /// </summary>
2844                 public bool RemoveInstanceMethods ()
2845                 {
2846                         return RemoveMethods (true);
2847                 }
2848
2849                 /// <summary>
2850                 ///   Removes any static methods from the MethodGroup, returns
2851                 ///   false if the resulting set is empty.
2852                 /// </summary>
2853                 public bool RemoveStaticMethods ()
2854                 {
2855                         return RemoveMethods (false);
2856                 }
2857
2858                 public Expression ResolveGeneric (EmitContext ec, TypeArguments args)
2859                 {
2860                         if (args.Resolve (ec) == false)
2861                                 return null;
2862
2863                         Type[] atypes = args.Arguments;
2864
2865                         int first_count = 0;
2866                         MethodInfo first = null;
2867
2868                         ArrayList list = new ArrayList ();
2869                         foreach (MethodBase mb in Methods) {
2870                                 MethodInfo mi = mb as MethodInfo;
2871                                 if ((mi == null) || !mi.HasGenericParameters)
2872                                         continue;
2873
2874                                 Type[] gen_params = mi.GetGenericArguments ();
2875
2876                                 if (first == null) {
2877                                         first = mi;
2878                                         first_count = gen_params.Length;
2879                                 }
2880
2881                                 if (gen_params.Length != atypes.Length)
2882                                         continue;
2883
2884                                 list.Add (mi.BindGenericParameters (atypes));
2885                         }
2886
2887                         if (list.Count > 0) {
2888                                 MethodGroupExpr new_mg = new MethodGroupExpr (list, Location);
2889                                 new_mg.InstanceExpression = InstanceExpression;
2890                                 new_mg.HasTypeArguments = true;
2891                                 return new_mg;
2892                         }
2893
2894                         if (first != null)
2895                                 Report.Error (
2896                                         305, loc, "Using the generic method `{0}' " +
2897                                         "requires {1} type arguments", Name,
2898                                         first_count);
2899                         else
2900                                 Report.Error (
2901                                         308, loc, "The non-generic method `{0}' " +
2902                                         "cannot be used with type arguments", Name);
2903
2904                         return null;
2905                 }
2906         }
2907
2908         /// <summary>
2909         ///   Fully resolved expression that evaluates to a Field
2910         /// </summary>
2911         public class FieldExpr : Expression, IAssignMethod, IMemoryLocation, IMemberExpr, IVariable {
2912                 public readonly FieldInfo FieldInfo;
2913                 Expression instance_expr;
2914                 VariableInfo variable_info;
2915                 
2916                 LocalTemporary temp;
2917                 bool prepared;
2918                 bool is_field_initializer;
2919                 
2920                 public FieldExpr (FieldInfo fi, Location l)
2921                 {
2922                         FieldInfo = fi;
2923                         eclass = ExprClass.Variable;
2924                         type = TypeManager.TypeToCoreType (fi.FieldType);
2925                         loc = l;
2926                 }
2927
2928                 public string Name {
2929                         get {
2930                                 return FieldInfo.Name;
2931                         }
2932                 }
2933
2934                 public bool IsInstance {
2935                         get {
2936                                 return !FieldInfo.IsStatic;
2937                         }
2938                 }
2939
2940                 public bool IsStatic {
2941                         get {
2942                                 return FieldInfo.IsStatic;
2943                         }
2944                 }
2945
2946                 public Type DeclaringType {
2947                         get {
2948                                 return FieldInfo.DeclaringType;
2949                         }
2950                 }
2951
2952                 public Expression InstanceExpression {
2953                         get {
2954                                 return instance_expr;
2955                         }
2956
2957                         set {
2958                                 instance_expr = value;
2959                         }
2960                 }
2961
2962                 public bool IsFieldInitializer {
2963                         get {
2964                                 return is_field_initializer;
2965                         }
2966
2967                         set {
2968                                 is_field_initializer = value;
2969                         }
2970                 }
2971
2972                 public VariableInfo VariableInfo {
2973                         get {
2974                                 return variable_info;
2975                         }
2976                 }
2977
2978                 override public Expression DoResolve (EmitContext ec)
2979                 {
2980                         if (!FieldInfo.IsStatic){
2981                                 if (instance_expr == null){
2982                                         //
2983                                         // This can happen when referencing an instance field using
2984                                         // a fully qualified type expression: TypeName.InstanceField = xxx
2985                                         // 
2986                                         SimpleName.Error_ObjectRefRequired (ec, loc, FieldInfo.Name);
2987                                         return null;
2988                                 }
2989
2990                                 // Resolve the field's instance expression while flow analysis is turned
2991                                 // off: when accessing a field "a.b", we must check whether the field
2992                                 // "a.b" is initialized, not whether the whole struct "a" is initialized.
2993                                 instance_expr = instance_expr.Resolve (ec, ResolveFlags.VariableOrValue |
2994                                                                        ResolveFlags.DisableFlowAnalysis);
2995                                 if (instance_expr == null)
2996                                         return null;
2997                         }
2998
2999                         ObsoleteAttribute oa;
3000                         FieldBase f = TypeManager.GetField (FieldInfo);
3001                         if (f != null) {
3002                                 oa = f.GetObsoleteAttribute (f.Parent);
3003                                 if (oa != null)
3004                                         AttributeTester.Report_ObsoleteMessage (oa, f.GetSignatureForError (), loc);
3005                                 // To be sure that type is external because we do not register generated fields
3006                         } else if (!(FieldInfo.DeclaringType is TypeBuilder)) {                                
3007                                 oa = AttributeTester.GetMemberObsoleteAttribute (FieldInfo);
3008                                 if (oa != null)
3009                                         AttributeTester.Report_ObsoleteMessage (oa, TypeManager.GetFullNameSignature (FieldInfo), loc);
3010                         }
3011
3012                         if (ec.CurrentAnonymousMethod != null){
3013                                 if (!FieldInfo.IsStatic){
3014                                         if (ec.TypeContainer is Struct){
3015                                                 Report.Error (1673, loc, "Can not reference instance variables in anonymous methods hosted in structs");
3016                                                 return null;
3017                                         }
3018                                         ec.CaptureField (this);
3019                                 } 
3020                         }
3021                         
3022                         // If the instance expression is a local variable or parameter.
3023                         IVariable var = instance_expr as IVariable;
3024                         if ((var == null) || (var.VariableInfo == null))
3025                                 return this;
3026
3027                         VariableInfo vi = var.VariableInfo;
3028                         if (!vi.IsFieldAssigned (ec, FieldInfo.Name, loc))
3029                                 return null;
3030
3031                         variable_info = vi.GetSubStruct (FieldInfo.Name);
3032                         return this;
3033                 }
3034
3035                 void Report_AssignToReadonly (bool is_instance)
3036                 {
3037                         string msg;
3038                         
3039                         if (is_instance)
3040                                 msg = "Readonly field can not be assigned outside " +
3041                                 "of constructor or variable initializer";
3042                         else
3043                                 msg = "A static readonly field can only be assigned in " +
3044                                 "a static constructor";
3045
3046                         Report.Error (is_instance ? 191 : 198, loc, msg);
3047                 }
3048                 
3049                 override public Expression DoResolveLValue (EmitContext ec, Expression right_side)
3050                 {
3051                         IVariable var = instance_expr as IVariable;
3052                         if ((var != null) && (var.VariableInfo != null))
3053                                 var.VariableInfo.SetFieldAssigned (ec, FieldInfo.Name);
3054
3055                         Expression e = DoResolve (ec);
3056
3057                         if (e == null)
3058                                 return null;
3059
3060                         if (!FieldInfo.IsStatic && (instance_expr.Type.IsValueType && !(instance_expr is IMemoryLocation))) {
3061                                 // FIXME: Provide better error reporting.
3062                                 Error (1612, "Cannot modify expression because it is not a variable.");
3063                                 return null;
3064                         }
3065
3066                         if (!FieldInfo.IsInitOnly)
3067                                 return this;
3068
3069                         FieldBase fb = TypeManager.GetField (FieldInfo);
3070                         if (fb != null)
3071                                 fb.SetAssigned ();
3072
3073                         //
3074                         // InitOnly fields can only be assigned in constructors
3075                         //
3076
3077                         if (ec.IsConstructor){
3078                                 if (IsStatic && !ec.IsStatic)
3079                                         Report_AssignToReadonly (false);
3080
3081                                 Type ctype;
3082                                 if (!is_field_initializer &&
3083                                     (ec.TypeContainer.CurrentType != null))
3084                                         ctype = ec.TypeContainer.CurrentType;
3085                                 else
3086                                         ctype = ec.ContainerType;
3087
3088                                 if (TypeManager.IsEqual (ctype, FieldInfo.DeclaringType))
3089                                         return this;
3090                         }
3091
3092                         Report_AssignToReadonly (!IsStatic);
3093                         
3094                         return null;
3095                 }
3096
3097                 public override void CheckMarshallByRefAccess (Type container)
3098                 {
3099                         if (!IsStatic && Type.IsValueType && !container.IsSubclassOf (TypeManager.mbr_type) && DeclaringType.IsSubclassOf (TypeManager.mbr_type)) {
3100                                 Report.SymbolRelatedToPreviousError (DeclaringType);
3101                                 Report.Error (1690, loc, "Cannot call '{0}' method, property, or indexer because it is a value type member of a marshal-by-reference class", Name);
3102                         }
3103                 }
3104
3105                 public bool VerifyFixed (bool is_expression)
3106                 {
3107                         IVariable variable = instance_expr as IVariable;
3108                         if ((variable == null) || !variable.VerifyFixed (true))
3109                                 return false;
3110
3111                         return true;
3112                 }
3113                 
3114                 public void Emit (EmitContext ec, bool leave_copy)
3115                 {
3116                         ILGenerator ig = ec.ig;
3117                         bool is_volatile = false;
3118
3119                         if (FieldInfo is FieldBuilder){
3120                                 FieldBase f = TypeManager.GetField (FieldInfo);
3121                                 if (f != null){
3122                                         if ((f.ModFlags & Modifiers.VOLATILE) != 0)
3123                                                 is_volatile = true;
3124                                         
3125                                         f.status |= Field.Status.USED;
3126                                 }
3127                         } 
3128                         
3129                         if (FieldInfo.IsStatic){
3130                                 if (is_volatile)
3131                                         ig.Emit (OpCodes.Volatile);
3132                                 
3133                                 ig.Emit (OpCodes.Ldsfld, FieldInfo);
3134                         } else {
3135                                 if (!prepared)
3136                                         EmitInstance (ec);
3137
3138                                 if (is_volatile)
3139                                         ig.Emit (OpCodes.Volatile);
3140
3141                                 IFixedBuffer ff = AttributeTester.GetFixedBuffer (FieldInfo);
3142                                 if (ff != null)
3143                                 {
3144                                         ig.Emit (OpCodes.Ldflda, FieldInfo);
3145                                         ig.Emit (OpCodes.Ldflda, ff.Element);
3146                                 }
3147                                 else {
3148                                         ig.Emit (OpCodes.Ldfld, FieldInfo);
3149                                 }
3150                         }
3151
3152                         if (leave_copy) {
3153                                 ec.ig.Emit (OpCodes.Dup);
3154                                 if (!FieldInfo.IsStatic) {
3155                                         temp = new LocalTemporary (ec, this.Type);
3156                                         temp.Store (ec);
3157                                 }
3158                         }
3159                 }
3160
3161                 public void EmitAssign (EmitContext ec, Expression source, bool leave_copy, bool prepare_for_load)
3162                 {
3163                         FieldAttributes fa = FieldInfo.Attributes;
3164                         bool is_static = (fa & FieldAttributes.Static) != 0;
3165                         bool is_readonly = (fa & FieldAttributes.InitOnly) != 0;
3166                         ILGenerator ig = ec.ig;
3167                         prepared = prepare_for_load;
3168
3169                         if (is_readonly && !ec.IsConstructor){
3170                                 Report_AssignToReadonly (!is_static);
3171                                 return;
3172                         }
3173
3174                         if (!is_static) {
3175                                 EmitInstance (ec);
3176                                 if (prepare_for_load)
3177                                         ig.Emit (OpCodes.Dup);
3178                         }
3179
3180                         source.Emit (ec);
3181                         if (leave_copy) {
3182                                 ec.ig.Emit (OpCodes.Dup);
3183                                 if (!FieldInfo.IsStatic) {
3184                                         temp = new LocalTemporary (ec, this.Type);
3185                                         temp.Store (ec);
3186                                 }
3187                         }
3188
3189                         if (FieldInfo is FieldBuilder){
3190                                 FieldBase f = TypeManager.GetField (FieldInfo);
3191                                 if (f != null){
3192                                         if ((f.ModFlags & Modifiers.VOLATILE) != 0)
3193                                                 ig.Emit (OpCodes.Volatile);
3194                                         
3195                                         f.status |= Field.Status.ASSIGNED;
3196                                 }
3197                         } 
3198
3199                         if (is_static)
3200                                 ig.Emit (OpCodes.Stsfld, FieldInfo);
3201                         else 
3202                                 ig.Emit (OpCodes.Stfld, FieldInfo);
3203                         
3204                         if (temp != null)
3205                                 temp.Emit (ec);
3206                 }
3207
3208                 void EmitInstance (EmitContext ec)
3209                 {
3210                         if (instance_expr.Type.IsValueType) {
3211                                 if (instance_expr is IMemoryLocation) {
3212                                         ((IMemoryLocation) instance_expr).AddressOf (ec, AddressOp.LoadStore);
3213                                 } else {
3214                                         LocalTemporary t = new LocalTemporary (ec, instance_expr.Type);
3215                                         instance_expr.Emit (ec);
3216                                         t.Store (ec);
3217                                         t.AddressOf (ec, AddressOp.Store);
3218                                 }
3219                         } else
3220                                 instance_expr.Emit (ec);
3221                 }
3222
3223                 public override void Emit (EmitContext ec)
3224                 {
3225                         Emit (ec, false);
3226                 }
3227
3228                 public void AddressOf (EmitContext ec, AddressOp mode)
3229                 {
3230                         ILGenerator ig = ec.ig;
3231                         
3232                         if (FieldInfo is FieldBuilder){
3233                                 FieldBase f = TypeManager.GetField (FieldInfo);
3234                                 if (f != null){
3235                                         if ((f.ModFlags & Modifiers.VOLATILE) != 0){
3236                                                 Error (676, "volatile variable: can not take its address, or pass as ref/out parameter");
3237                                                 return;
3238                                         }
3239                                         
3240                                         if ((mode & AddressOp.Store) != 0)
3241                                                 f.status |= Field.Status.ASSIGNED;
3242                                         if ((mode & AddressOp.Load) != 0)
3243                                                 f.status |= Field.Status.USED;
3244                                 }
3245                         } 
3246
3247                         //
3248                         // Handle initonly fields specially: make a copy and then
3249                         // get the address of the copy.
3250                         //
3251                         bool need_copy;
3252                         if (FieldInfo.IsInitOnly){
3253                                 need_copy = true;
3254                                 if (ec.IsConstructor){
3255                                         if (FieldInfo.IsStatic){
3256                                                 if (ec.IsStatic)
3257                                                         need_copy = false;
3258                                         } else
3259                                                 need_copy = false;
3260                                 }
3261                         } else
3262                                 need_copy = false;
3263                         
3264                         if (need_copy){
3265                                 LocalBuilder local;
3266                                 Emit (ec);
3267                                 local = ig.DeclareLocal (type);
3268                                 ig.Emit (OpCodes.Stloc, local);
3269                                 ig.Emit (OpCodes.Ldloca, local);
3270                                 return;
3271                         }
3272
3273
3274                         if (FieldInfo.IsStatic){
3275                                 ig.Emit (OpCodes.Ldsflda, FieldInfo);
3276                         } else {
3277                                 EmitInstance (ec);
3278                                 ig.Emit (OpCodes.Ldflda, FieldInfo);
3279                         }
3280                 }
3281         }
3282
3283         //
3284         // A FieldExpr whose address can not be taken
3285         //
3286         public class FieldExprNoAddress : FieldExpr, IMemoryLocation {
3287                 public FieldExprNoAddress (FieldInfo fi, Location loc) : base (fi, loc)
3288                 {
3289                 }
3290                 
3291                 public new void AddressOf (EmitContext ec, AddressOp mode)
3292                 {
3293                         Report.Error (-215, "Report this: Taking the address of a remapped parameter not supported");
3294                 }
3295         }
3296         
3297         /// <summary>
3298         ///   Expression that evaluates to a Property.  The Assign class
3299         ///   might set the `Value' expression if we are in an assignment.
3300         ///
3301         ///   This is not an LValue because we need to re-write the expression, we
3302         ///   can not take data from the stack and store it.  
3303         /// </summary>
3304         public class PropertyExpr : ExpressionStatement, IAssignMethod, IMemberExpr {
3305                 public readonly PropertyInfo PropertyInfo;
3306
3307                 //
3308                 // This is set externally by the  `BaseAccess' class
3309                 //
3310                 public bool IsBase;
3311                 MethodInfo getter, setter;
3312                 bool is_static;
3313                 
3314                 Expression instance_expr;
3315                 LocalTemporary temp;
3316                 bool prepared;
3317
3318                 internal static PtrHashtable AccessorTable = new PtrHashtable (); 
3319
3320                 public PropertyExpr (EmitContext ec, PropertyInfo pi, Location l)
3321                 {
3322                         PropertyInfo = pi;
3323                         eclass = ExprClass.PropertyAccess;
3324                         is_static = false;
3325                         loc = l;
3326
3327                         type = TypeManager.TypeToCoreType (pi.PropertyType);
3328
3329                         ResolveAccessors (ec);
3330                 }
3331
3332                 public string Name {
3333                         get {
3334                                 return PropertyInfo.Name;
3335                         }
3336                 }
3337
3338                 public bool IsInstance {
3339                         get {
3340                                 return !is_static;
3341                         }
3342                 }
3343
3344                 public bool IsStatic {
3345                         get {
3346                                 return is_static;
3347                         }
3348                 }
3349                 
3350                 public Type DeclaringType {
3351                         get {
3352                                 return PropertyInfo.DeclaringType;
3353                         }
3354                 }
3355
3356                 //
3357                 // The instance expression associated with this expression
3358                 //
3359                 public Expression InstanceExpression {
3360                         set {
3361                                 instance_expr = value;
3362                         }
3363
3364                         get {
3365                                 return instance_expr;
3366                         }
3367                 }
3368
3369                 public bool VerifyAssignable ()
3370                 {
3371                         if (setter == null) {
3372                                 Report.Error (200, loc, 
3373                                               "The property `" + PropertyInfo.Name +
3374                                               "' can not be assigned to, as it has not set accessor");
3375                                 return false;
3376                         }
3377
3378                         return true;
3379                 }
3380
3381                 void FindAccessors (Type invocation_type)
3382                 {
3383                         BindingFlags flags = BindingFlags.Public | BindingFlags.NonPublic |
3384                                 BindingFlags.Static | BindingFlags.Instance |
3385                                 BindingFlags.DeclaredOnly;
3386
3387                         Type current = PropertyInfo.DeclaringType;
3388                         for (; current != null; current = current.BaseType) {
3389                                 MemberInfo[] group = TypeManager.MemberLookup (
3390                                         invocation_type, invocation_type, current,
3391                                         MemberTypes.Property, flags, PropertyInfo.Name, null);
3392
3393                                 if (group == null)
3394                                         continue;
3395
3396                                 if (group.Length != 1)
3397                                         // Oooops, can this ever happen ?
3398                                         return;
3399
3400                                 PropertyInfo pi = (PropertyInfo) group [0];
3401
3402                                 if (getter == null)
3403                                         getter = pi.GetGetMethod (true);
3404
3405                                 if (setter == null)
3406                                         setter = pi.GetSetMethod (true);
3407
3408                                 MethodInfo accessor = getter != null ? getter : setter;
3409
3410                                 if (!accessor.IsVirtual)
3411                                         return;
3412                         }
3413                 }
3414
3415                 //
3416                 // We also perform the permission checking here, as the PropertyInfo does not
3417                 // hold the information for the accessibility of its setter/getter
3418                 //
3419                 void ResolveAccessors (EmitContext ec)
3420                 {
3421                         FindAccessors (ec.ContainerType);
3422
3423                         if (getter != null) {
3424                                 AccessorTable [getter] = PropertyInfo;
3425                                 is_static = getter.IsStatic;
3426                         }
3427
3428                         if (setter != null) {
3429                                 AccessorTable [setter] = PropertyInfo;
3430                                 is_static = setter.IsStatic;
3431                         }
3432                 }
3433
3434                 bool InstanceResolve (EmitContext ec, bool must_do_cs1540_check)
3435                 {
3436                         if ((instance_expr == null) && ec.IsStatic && !is_static) {
3437                                 SimpleName.Error_ObjectRefRequired (ec, loc, PropertyInfo.Name);
3438                                 return false;
3439                         }
3440
3441                         if (instance_expr != null) {
3442                                 instance_expr = instance_expr.DoResolve (ec);
3443                                 if (instance_expr == null)
3444                                         return false;
3445
3446                                 instance_expr.CheckMarshallByRefAccess (ec.ContainerType);
3447                         }
3448
3449                         if (must_do_cs1540_check && (instance_expr != null)) {
3450                                 if ((instance_expr.Type != ec.ContainerType) &&
3451                                     ec.ContainerType.IsSubclassOf (instance_expr.Type)) {
3452                                         Report.Error (1540, loc, "Cannot access protected member `" +
3453                                                       PropertyInfo.DeclaringType + "." + PropertyInfo.Name + 
3454                                                       "' via a qualifier of type `" +
3455                                                       TypeManager.CSharpName (instance_expr.Type) +
3456                                                       "'; the qualifier must be of type `" +
3457                                                       TypeManager.CSharpName (ec.ContainerType) +
3458                                                       "' (or derived from it)");
3459                                         return false;
3460                                 }
3461                         }
3462
3463                         return true;
3464                 }
3465                 
3466                 override public Expression DoResolve (EmitContext ec)
3467                 {
3468                         if (getter != null){
3469                                 if (TypeManager.GetArgumentTypes (getter).Length != 0){
3470                                         Report.Error (
3471                                                 117, loc, "`{0}' does not contain a " +
3472                                                 "definition for `{1}'.", getter.DeclaringType,
3473                                                 Name);
3474                                         return null;
3475                                 }
3476                         }
3477
3478                         if (getter == null){
3479                                 //
3480                                 // The following condition happens if the PropertyExpr was
3481                                 // created, but is invalid (ie, the property is inaccessible),
3482                                 // and we did not want to embed the knowledge about this in
3483                                 // the caller routine.  This only avoids double error reporting.
3484                                 //
3485                                 if (setter == null)
3486                                         return null;
3487                                 
3488                                 Report.Error (154, loc, 
3489                                               "The property `" + PropertyInfo.Name +
3490                                               "' can not be used in " +
3491                                               "this context because it lacks a get accessor");
3492                                 return null;
3493                         } 
3494
3495                         bool must_do_cs1540_check;
3496                         if (!IsAccessorAccessible (ec.ContainerType, getter, out must_do_cs1540_check)) {
3497                                 Report.Error (122, loc, "'{0}.get' is inaccessible due to its protection level", PropertyInfo.Name);
3498                                 return null;
3499                         }
3500
3501                         if (!InstanceResolve (ec, must_do_cs1540_check))
3502                                 return null;
3503
3504                         //
3505                         // Only base will allow this invocation to happen.
3506                         //
3507                         if (IsBase && getter.IsAbstract){
3508                                 Report.Error (205, loc, "Cannot call an abstract base property: " +
3509                                               PropertyInfo.DeclaringType + "." +PropertyInfo.Name);
3510                                 return null;
3511                         }
3512
3513                         if (PropertyInfo.PropertyType.IsPointer && !ec.InUnsafe){
3514                                 UnsafeError (loc);
3515                                 return null;
3516                         }
3517
3518                         return this;
3519                 }
3520
3521                 override public Expression DoResolveLValue (EmitContext ec, Expression right_side)
3522                 {
3523                         if (setter == null){
3524                                 //
3525                                 // The following condition happens if the PropertyExpr was
3526                                 // created, but is invalid (ie, the property is inaccessible),
3527                                 // and we did not want to embed the knowledge about this in
3528                                 // the caller routine.  This only avoids double error reporting.
3529                                 //
3530                                 if (getter == null)
3531                                         return null;
3532                                 
3533                                 // TODO: Print better property name
3534                                 Report.Error (200, loc, "Property or indexer '{0}' cannot be assigned to -- it is read only",
3535                                               PropertyInfo.Name);
3536                                 return null;
3537                         }
3538
3539                         if (TypeManager.GetArgumentTypes (setter).Length != 1){
3540                                 Report.Error (
3541                                         117, loc, "`{0}' does not contain a " +
3542                                         "definition for `{1}'.", getter.DeclaringType,
3543                                         Name);
3544                                 return null;
3545                         }
3546
3547                         bool must_do_cs1540_check;
3548                         if (!IsAccessorAccessible (ec.ContainerType, setter, out must_do_cs1540_check)) {
3549                                 Report.Error (122, loc, "'{0}.set' is inaccessible due to its protection level", PropertyInfo.Name);
3550                                 return null;
3551                         }
3552
3553                         if (!InstanceResolve (ec, must_do_cs1540_check))
3554                                 return null;
3555                         
3556                         //
3557                         // Only base will allow this invocation to happen.
3558                         //
3559                         if (IsBase && setter.IsAbstract){
3560                                 Report.Error (205, loc, "Cannot call an abstract base property: " +
3561                                               PropertyInfo.DeclaringType + "." +PropertyInfo.Name);
3562                                 return null;
3563                         }
3564
3565                         //
3566                         // Check that we are not making changes to a temporary memory location
3567                         //
3568                         if (instance_expr != null && instance_expr.Type.IsValueType && !(instance_expr is IMemoryLocation)) {
3569                                 // FIXME: Provide better error reporting.
3570                                 Error (1612, "Cannot modify expression because it is not a variable.");
3571                                 return null;
3572                         }
3573
3574                         return this;
3575                 }
3576
3577
3578                 
3579                 public override void Emit (EmitContext ec)
3580                 {
3581                         Emit (ec, false);
3582                 }
3583                 
3584                 void EmitInstance (EmitContext ec)
3585                 {
3586                         if (is_static)
3587                                 return;
3588
3589                         if (instance_expr.Type.IsValueType) {
3590                                 if (instance_expr is IMemoryLocation) {
3591                                         ((IMemoryLocation) instance_expr).AddressOf (ec, AddressOp.LoadStore);
3592                                 } else {
3593                                         LocalTemporary t = new LocalTemporary (ec, instance_expr.Type);
3594                                         instance_expr.Emit (ec);
3595                                         t.Store (ec);
3596                                         t.AddressOf (ec, AddressOp.Store);
3597                                 }
3598                         } else
3599                                 instance_expr.Emit (ec);
3600                         
3601                         if (prepared)
3602                                 ec.ig.Emit (OpCodes.Dup);
3603                 }
3604
3605                 
3606                 public void Emit (EmitContext ec, bool leave_copy)
3607                 {
3608                         if (!prepared)
3609                                 EmitInstance (ec);
3610                         
3611                         //
3612                         // Special case: length of single dimension array property is turned into ldlen
3613                         //
3614                         if ((getter == TypeManager.system_int_array_get_length) ||
3615                             (getter == TypeManager.int_array_get_length)){
3616                                 Type iet = instance_expr.Type;
3617
3618                                 //
3619                                 // System.Array.Length can be called, but the Type does not
3620                                 // support invoking GetArrayRank, so test for that case first
3621                                 //
3622                                 if (iet != TypeManager.array_type && (iet.GetArrayRank () == 1)) {
3623                                         ec.ig.Emit (OpCodes.Ldlen);
3624                                         ec.ig.Emit (OpCodes.Conv_I4);
3625                                         return;
3626                                 }
3627                         }
3628
3629                         Invocation.EmitCall (ec, IsBase, IsStatic, new EmptyAddressOf (), getter, null, loc);
3630                         
3631                         if (!leave_copy)
3632                                 return;
3633                         
3634                         ec.ig.Emit (OpCodes.Dup);
3635                         if (!is_static) {
3636                                 temp = new LocalTemporary (ec, this.Type);
3637                                 temp.Store (ec);
3638                         }
3639                 }
3640
3641                 //
3642                 // Implements the IAssignMethod interface for assignments
3643                 //
3644                 public void EmitAssign (EmitContext ec, Expression source, bool leave_copy, bool prepare_for_load)
3645                 {
3646                         prepared = prepare_for_load;
3647                         
3648                         EmitInstance (ec);
3649
3650                         source.Emit (ec);
3651                         if (leave_copy) {
3652                                 ec.ig.Emit (OpCodes.Dup);
3653                                 if (!is_static) {
3654                                         temp = new LocalTemporary (ec, this.Type);
3655                                         temp.Store (ec);
3656                                 }
3657                         }
3658                         
3659                         ArrayList args = new ArrayList (1);
3660                         args.Add (new Argument (new EmptyAddressOf (), Argument.AType.Expression));
3661                         
3662                         Invocation.EmitCall (ec, IsBase, IsStatic, new EmptyAddressOf (), setter, args, loc);
3663                         
3664                         if (temp != null)
3665                                 temp.Emit (ec);
3666                 }
3667
3668                 override public void EmitStatement (EmitContext ec)
3669                 {
3670                         Emit (ec);
3671                         ec.ig.Emit (OpCodes.Pop);
3672                 }
3673         }
3674
3675         /// <summary>
3676         ///   Fully resolved expression that evaluates to an Event
3677         /// </summary>
3678         public class EventExpr : Expression, IMemberExpr {
3679                 public readonly EventInfo EventInfo;
3680                 Expression instance_expr;
3681
3682                 bool is_static;
3683                 MethodInfo add_accessor, remove_accessor;
3684                 
3685                 public EventExpr (EventInfo ei, Location loc)
3686                 {
3687                         EventInfo = ei;
3688                         this.loc = loc;
3689                         eclass = ExprClass.EventAccess;
3690
3691                         add_accessor = TypeManager.GetAddMethod (ei);
3692                         remove_accessor = TypeManager.GetRemoveMethod (ei);
3693                         
3694                         if (add_accessor.IsStatic || remove_accessor.IsStatic)
3695                                 is_static = true;
3696
3697                         if (EventInfo is MyEventBuilder){
3698                                 MyEventBuilder eb = (MyEventBuilder) EventInfo;
3699                                 type = eb.EventType;
3700                                 eb.SetUsed ();
3701                         } else
3702                                 type = EventInfo.EventHandlerType;
3703                 }
3704
3705                 public string Name {
3706                         get {
3707                                 return EventInfo.Name;
3708                         }
3709                 }
3710
3711                 public bool IsInstance {
3712                         get {
3713                                 return !is_static;
3714                         }
3715                 }
3716
3717                 public bool IsStatic {
3718                         get {
3719                                 return is_static;
3720                         }
3721                 }
3722
3723                 public Type DeclaringType {
3724                         get {
3725                                 return EventInfo.DeclaringType;
3726                         }
3727                 }
3728
3729                 public Expression InstanceExpression {
3730                         get {
3731                                 return instance_expr;
3732                         }
3733
3734                         set {
3735                                 instance_expr = value;
3736                         }
3737                 }
3738
3739                 bool InstanceResolve (EmitContext ec, bool must_do_cs1540_check)
3740                 {
3741                         if ((instance_expr == null) && ec.IsStatic && !is_static) {
3742                                 SimpleName.Error_ObjectRefRequired (ec, loc, EventInfo.Name);
3743                                 return false;
3744                         }
3745
3746                         if (instance_expr != null) {
3747                                 instance_expr = instance_expr.DoResolve (ec);
3748                                 if (instance_expr == null)
3749                                         return false;
3750                         }
3751
3752                         //
3753                         // This is using the same mechanism as the CS1540 check in PropertyExpr.
3754                         // However, in the Event case, we reported a CS0122 instead.
3755                         //
3756                         if (must_do_cs1540_check && (instance_expr != null)) {
3757                                 if ((instance_expr.Type != ec.ContainerType) &&
3758                                         ec.ContainerType.IsSubclassOf (instance_expr.Type)) {
3759                                         Report.Error (122, loc, "'{0}' is inaccessible due to its protection level",
3760                                                 DeclaringType.Name + "." + EventInfo.Name);
3761
3762                                         return false;
3763                                 }
3764                         }
3765
3766                         return true;
3767                 }
3768
3769                 public override Expression DoResolveLValue (EmitContext ec, Expression right_side)
3770                 {
3771                         return DoResolve (ec);
3772                 }
3773
3774                 public override Expression DoResolve (EmitContext ec)
3775                 {
3776                         if (instance_expr != null) {
3777                                 instance_expr = instance_expr.DoResolve (ec);
3778                                 if (instance_expr == null)
3779                                         return null;
3780                         }
3781
3782                         bool must_do_cs1540_check;
3783                         if (!(IsAccessorAccessible (ec.ContainerType, add_accessor, out must_do_cs1540_check)
3784                                     && IsAccessorAccessible (ec.ContainerType, remove_accessor, out must_do_cs1540_check))) {
3785                                 
3786                                Report.Error (122, loc, "'{0}' is inaccessible due to its protection level",
3787                                                DeclaringType.Name + "." + EventInfo.Name);
3788                                return null;
3789                         }
3790
3791                         if (!InstanceResolve (ec, must_do_cs1540_check))
3792                                 return null;
3793                         
3794                         return this;
3795                 }               
3796
3797                 public override void Emit (EmitContext ec)
3798                 {
3799                         if (instance_expr is This)
3800                                 Report.Error (79, loc, "The event `{0}' can only appear on the left hand side of += or -=, try calling the actual delegate", Name);
3801                         else
3802                                 Report.Error (70, loc, "The event `{0}' can only appear on the left hand side of += or -= "+
3803                                               "(except on the defining type)", Name);
3804                 }
3805
3806                 public void EmitAddOrRemove (EmitContext ec, Expression source)
3807                 {
3808                         BinaryDelegate source_del = (BinaryDelegate) source;
3809                         Expression handler = source_del.Right;
3810                         
3811                         Argument arg = new Argument (handler, Argument.AType.Expression);
3812                         ArrayList args = new ArrayList ();
3813                                 
3814                         args.Add (arg);
3815                         
3816                         if (source_del.IsAddition)
3817                                 Invocation.EmitCall (
3818                                         ec, false, IsStatic, instance_expr, add_accessor, args, loc);
3819                         else
3820                                 Invocation.EmitCall (
3821                                         ec, false, IsStatic, instance_expr, remove_accessor, args, loc);
3822                 }
3823         }
3824 }