By : Yonik <yonik@mainsoft.com>
[mono.git] / mcs / mcs / rootcontext.cs
1 //
2 // rootcontext.cs: keeps track of our tree representation, and assemblies loaded.
3 //
4 // Author: Miguel de Icaza (miguel@ximian.com)
5 //            Ravi Pratap  (ravi@ximian.com)
6 //            Marek Safar  (marek.safar@gmail.com)
7 //
8 //
9 // Licensed under the terms of the GNU GPL
10 //
11 // (C) 2001 Ximian, Inc (http://www.ximian.com)
12 // (C) 2004 Novell, Inc
13
14 using System;
15 using System.Collections;
16 using System.Reflection;
17 using System.Reflection.Emit;
18 using System.Diagnostics;
19
20 namespace Mono.CSharp {
21
22         public enum LanguageVersion
23         {
24                 Default = 0,
25                 ISO_1   = 1,
26                 LINQ
27         }
28
29         public class RootContext {
30
31                 //
32                 // Contains the parsed tree
33                 //
34                 static RootTypes root;
35
36                 //
37                 // This hashtable contains all of the #definitions across the source code
38                 // it is used by the ConditionalAttribute handler.
39                 //
40                 public static Hashtable AllDefines = new Hashtable ();
41                 
42                 //
43                 // Whether we are being linked against the standard libraries.
44                 // This is only used to tell whether `System.Object' should
45                 // have a base class or not.
46                 //
47                 public static bool StdLib;
48
49                 //
50                 // This keeps track of the order in which classes were defined
51                 // so that we can poulate them in that order.
52                 //
53                 // Order is important, because we need to be able to tell, by
54                 // examining the list of methods of the base class, which ones are virtual
55                 // or abstract as well as the parent names (to implement new, 
56                 // override).
57                 //
58                 static ArrayList type_container_resolve_order;
59
60                 //
61                 // Holds a reference to the Private Implementation Details
62                 // class.
63                 //
64                 static ArrayList helper_classes;
65                 
66                 static TypeBuilder impl_details_class;
67
68                 public static int WarningLevel;
69
70                 public static Target Target;
71                 public static string TargetExt;
72
73                 public static bool VerifyClsCompliance = true;
74
75                 /// <summary>
76                 /// Holds /optimize option
77                 /// </summary>
78                 public static bool Optimize = true;
79
80                 public static LanguageVersion Version;
81
82                 //
83                 // We keep strongname related info here because
84                 // it's also used as complier options from CSC 8.x
85                 //
86                 public static string StrongNameKeyFile;
87                 public static string StrongNameKeyContainer;
88                 public static bool StrongNameDelaySign;
89
90                 //
91                 // If set, enable XML documentation generation
92                 //
93                 public static Documentation Documentation;
94
95                 static public string MainClass;
96
97                 //
98                 // Constructor
99                 //
100                 static RootContext ()
101                 {
102                         Reset ();
103                 }
104
105                 public static void Reset ()
106                 {
107                         root = new RootTypes ();
108                         type_container_resolve_order = new ArrayList ();
109                         EntryPoint = null;
110                         WarningLevel = 3;
111                         Checked = false;
112                         Unsafe = false;
113                         StdLib = true;
114                         StrongNameKeyFile = null;
115                         StrongNameKeyContainer = null;
116                         StrongNameDelaySign = false;
117                         MainClass = null;
118                         Target = Target.Exe;
119                         TargetExt = ".exe";
120                         Version = LanguageVersion.Default;
121                         Documentation = null;
122                         impl_details_class = null;
123                         helper_classes = null;
124                 }
125
126                 public static bool NeedsEntryPoint {
127                         get { return RootContext.Target == Target.Exe || RootContext.Target == Target.WinExe; }
128                 }
129
130                 static public RootTypes ToplevelTypes {
131                         get { return root; }
132                 }
133
134                 public static void RegisterOrder (TypeContainer tc)
135                 {
136                         type_container_resolve_order.Add (tc);
137                 }
138                 
139                 // 
140                 // The default compiler checked state
141                 //
142                 static public bool Checked;
143
144                 //
145                 // Whether to allow Unsafe code
146                 //
147                 static public bool Unsafe;
148                 
149                 // <remarks>
150                 //   This function is used to resolve the hierarchy tree.
151                 //   It processes interfaces, structs and classes in that order.
152                 //
153                 //   It creates the TypeBuilder's as it processes the user defined
154                 //   types.  
155                 // </remarks>
156                 static public void ResolveTree ()
157                 {
158                         //
159                         // Interfaces are processed next, as classes and
160                         // structs might inherit from an object or implement
161                         // a set of interfaces, we need to be able to tell
162                         // them appart by just using the TypeManager.
163                         //
164                         foreach (TypeContainer tc in root.Types)
165                                 tc.CreateType ();
166
167                         foreach (TypeContainer tc in root.Types)
168                                 tc.DefineType ();
169
170                         if (root.Delegates != null)
171                                 foreach (Delegate d in root.Delegates) 
172                                         d.DefineType ();
173                 }
174
175                 delegate bool VerifyBootstrapType (Type t);
176
177                 static Type BootstrapCorlib_ResolveType (TypeContainer root, string name, VerifyBootstrapType typeVerifier)
178                 {
179                         TypeLookupExpression tle = new TypeLookupExpression (name);
180                         Report.DisableErrors ();
181                         TypeExpr te = tle.ResolveAsTypeTerminal (root, false);
182                         Report.EnableErrors ();
183                         if (te == null) {
184                                 Report.Error (518, "The predefined type `{0}' is not defined or imported", name);
185                                 return null;
186                         }
187
188                         Type t = te.Type;
189                         if (!typeVerifier (t)) {
190                                 MemberCore mc = root.GetDefinition (name);
191                                 Location loc = Location.Null;
192                                 if (mc != null) {
193                                         name = mc.GetSignatureForError ();
194                                         loc = mc.Location;
195                                 }
196
197                                 Report.Error (520, loc, "The predefined type `{0}' is not declared correctly", name);
198                                 return null;
199                         }
200
201                         AttributeTester.RegisterNonObsoleteType (t);
202                         return t;
203                 }
204                 //
205                 // Resolves a single class during the corlib bootstrap process
206                 //
207                 static Type BootstrapCorlib_ResolveClass (TypeContainer root, string name)
208                 {
209                         return BootstrapCorlib_ResolveType (root, name, IsClass);
210                 }
211
212                 static bool IsClass (Type t)
213                 {
214                         DeclSpace ds = TypeManager.LookupDeclSpace (t);
215                         if (ds != null)
216                                 return ds is Class;
217                         return t.IsClass;
218                 }
219
220                 //
221                 // Resolves a struct during the corlib bootstrap process
222                 //
223                 static void BootstrapCorlib_ResolveStruct (TypeContainer root, string name)
224                 {
225                         BootstrapCorlib_ResolveType (root, name, IsStruct);
226                 }
227
228                 static bool IsStruct (Type t)
229                 {
230                         DeclSpace ds = TypeManager.LookupDeclSpace (t);
231                         if (ds != null)
232                                 return ds is Struct;
233                         
234                         return TypeManager.IsSubclassOf (t, TypeManager.value_type);                    
235                 }
236
237                 //
238                 // Resolves an interface during the corlib bootstrap process
239                 //
240                 static void BootstrapCorlib_ResolveInterface (TypeContainer root, string name)
241                 {
242                         BootstrapCorlib_ResolveType (root, name, IsInterface);
243                 }
244
245                 static bool IsInterface (Type t)
246                 {
247                         return t.IsInterface;
248                 }
249
250                 //
251                 // Resolves a delegate during the corlib bootstrap process
252                 //
253                 static void BootstrapCorlib_ResolveDelegate (TypeContainer root, string name)
254                 {
255                         BootstrapCorlib_ResolveType (root, name, IsDelegate);
256                 }
257
258                 static bool IsDelegate (Type t)
259                 {
260                         return TypeManager.IsDelegateType (t);
261                 }
262
263                 /// <summary>
264                 ///    Resolves the core types in the compiler when compiling with --nostdlib
265                 /// </summary>
266                 static public void ResolveCore ()
267                 {
268                         TypeManager.object_type = BootstrapCorlib_ResolveClass (root, "System.Object");
269                         TypeManager.system_object_expr.Type = TypeManager.object_type;
270                         TypeManager.value_type = BootstrapCorlib_ResolveClass (root, "System.ValueType");
271                         TypeManager.system_valuetype_expr.Type = TypeManager.value_type;
272
273                         //
274                         // The core attributes
275                         //
276                         BootstrapCorlib_ResolveInterface (root, "System.Runtime.InteropServices._Attribute");
277                         TypeManager.attribute_type = BootstrapCorlib_ResolveClass (root, "System.Attribute");
278                         TypeManager.obsolete_attribute_type = BootstrapCorlib_ResolveClass (root, "System.ObsoleteAttribute");
279                         TypeManager.indexer_name_type = BootstrapCorlib_ResolveClass (root, "System.Runtime.CompilerServices.IndexerNameAttribute");
280                         
281                         string [] interfaces_first_stage = {
282                                 "System.IComparable", "System.ICloneable",
283                                 "System.IConvertible",
284                                 
285                                 "System.Collections.IEnumerable",
286                                 "System.Collections.ICollection",
287                                 "System.Collections.IEnumerator",
288                                 "System.Collections.IList", 
289                                 "System.IAsyncResult",
290                                 "System.IDisposable",
291                                 
292                                 "System.Runtime.Serialization.ISerializable",
293
294                                 "System.Reflection.IReflect",
295                                 "System.Reflection.ICustomAttributeProvider",
296 #if GMCS_SOURCE
297                                 "System.Runtime.InteropServices._Exception",
298
299                                 //
300                                 // Generic types
301                                 //
302                                 "System.Collections.Generic.IEnumerator`1",
303                                 "System.Collections.Generic.IEnumerable`1"
304 #endif
305                         };
306
307                         foreach (string iname in interfaces_first_stage)
308                                 BootstrapCorlib_ResolveInterface (root, iname);
309
310                         //
311                         // These are the base value types
312                         //
313                         string [] structs_first_stage = {
314                                 "System.Byte",    "System.SByte",
315                                 "System.Int16",   "System.UInt16",
316                                 "System.Int32",   "System.UInt32",
317                                 "System.Int64",   "System.UInt64",
318                         };
319
320                         foreach (string cname in structs_first_stage)
321                                 BootstrapCorlib_ResolveStruct (root, cname);
322
323                         //
324                         // Now, we can load the enumerations, after this point,
325                         // we can use enums.
326                         //
327                         TypeManager.InitEnumUnderlyingTypes ();
328
329                         string [] structs_second_stage = {
330                                 "System.Single",  "System.Double",
331                                 "System.Char",    "System.Boolean",
332                                 "System.Decimal", "System.Void",
333                                 "System.RuntimeFieldHandle",
334                                 "System.RuntimeArgumentHandle",
335                                 "System.RuntimeTypeHandle",
336                                 "System.IntPtr",
337                                 "System.TypedReference",
338                                 "System.ArgIterator"
339                         };
340                         
341                         foreach (string cname in structs_second_stage)
342                                 BootstrapCorlib_ResolveStruct (root, cname);
343                         
344                         //
345                         // These are classes that depends on the core interfaces
346                         //
347                         string [] classes_second_stage = {
348                                 "System.Enum",
349                                 "System.String",
350                                 "System.Array",
351                                 "System.Reflection.MemberInfo",
352                                 "System.Type",
353                                 "System.Exception",
354 #if GMCS_SOURCE
355                                 "System.Activator",
356 #endif
357
358                                 //
359                                 // These are not really important in the order, but they
360                                 // are used by the compiler later on (typemanager/CoreLookupType-d)
361                                 //
362                                 "System.Runtime.CompilerServices.RuntimeHelpers",
363                                 "System.Reflection.DefaultMemberAttribute",
364                                 "System.Threading.Monitor",
365                                 "System.Threading.Interlocked",
366                                 
367                                 "System.AttributeUsageAttribute",
368                                 "System.Runtime.InteropServices.DllImportAttribute",
369                                 "System.Runtime.CompilerServices.MethodImplAttribute",
370                                 "System.Runtime.InteropServices.MarshalAsAttribute",
371 #if GMCS_SOURCE
372                                 "System.Runtime.CompilerServices.CompilerGeneratedAttribute",
373                                 "System.Runtime.CompilerServices.FixedBufferAttribute",
374 #endif
375                                 "System.Diagnostics.ConditionalAttribute",
376                                 "System.ParamArrayAttribute",
377                                 "System.CLSCompliantAttribute",
378                                 "System.Security.UnverifiableCodeAttribute",
379                                 "System.Security.Permissions.SecurityAttribute",
380                                 "System.Runtime.CompilerServices.DecimalConstantAttribute",
381                                 "System.Runtime.InteropServices.InAttribute",
382                                 "System.Runtime.InteropServices.OutAttribute",
383                                 "System.Runtime.InteropServices.StructLayoutAttribute",
384                                 "System.Runtime.InteropServices.FieldOffsetAttribute",
385 #if GMCS_SOURCE
386                                 "System.Runtime.InteropServices.DefaultCharSetAttribute",
387 #endif
388                                 "System.InvalidOperationException",
389                                 "System.NotSupportedException",
390                                 "System.MarshalByRefObject",
391                                 "System.Security.CodeAccessPermission",
392                                 "System.Runtime.CompilerServices.RequiredAttributeAttribute",
393                                 "System.Runtime.InteropServices.GuidAttribute",
394                                 "System.Reflection.AssemblyCultureAttribute"
395                         };
396
397                         foreach (string cname in classes_second_stage)
398                                 BootstrapCorlib_ResolveClass (root, cname);
399 #if GMCS_SOURCE
400                         BootstrapCorlib_ResolveStruct (root, "System.Nullable`1");
401 #endif
402                         TypeManager.delegate_type = BootstrapCorlib_ResolveClass (root, "System.Delegate");
403                         BootstrapCorlib_ResolveClass (root, "System.MulticastDelegate");
404
405                         BootstrapCorlib_ResolveDelegate (root, "System.AsyncCallback");
406                 }
407                         
408                 // <summary>
409                 //   Closes all open types
410                 // </summary>
411                 //
412                 // <remarks>
413                 //   We usually use TypeBuilder types.  When we are done
414                 //   creating the type (which will happen after we have added
415                 //   methods, fields, etc) we need to "Define" them before we
416                 //   can save the Assembly
417                 // </remarks>
418                 static public void CloseTypes ()
419                 {
420                         //
421                         // We do this in two passes, first we close the structs,
422                         // then the classes, because it seems the code needs it this
423                         // way.  If this is really what is going on, we should probably
424                         // make sure that we define the structs in order as well.
425                         //
426                         foreach (TypeContainer tc in type_container_resolve_order){
427                                 if (tc.Kind == Kind.Struct && tc.Parent == root){
428                                         tc.CloseType ();
429                                 }
430                         }
431
432                         foreach (TypeContainer tc in type_container_resolve_order){
433                                 if (!(tc.Kind == Kind.Struct && tc.Parent == root))
434                                         tc.CloseType ();                                        
435                         }
436                         
437                         if (root.Delegates != null)
438                                 foreach (Delegate d in root.Delegates)
439                                         d.CloseType ();
440
441
442                         //
443                         // If we have a <PrivateImplementationDetails> class, close it
444                         //
445                         if (helper_classes != null){
446                                 foreach (TypeBuilder type_builder in helper_classes) {
447 #if GMCS_SOURCE
448                                         type_builder.SetCustomAttribute (TypeManager.compiler_generated_attr);
449 #endif
450                                         type_builder.CreateType ();
451                                 }
452                         }
453                         
454                         type_container_resolve_order = null;
455                         helper_classes = null;
456                         //root = null;
457                         TypeManager.CleanUp ();
458                 }
459
460                 /// <summary>
461                 ///   Used to register classes that need to be closed after all the
462                 ///   user defined classes
463                 /// </summary>
464                 public static void RegisterCompilerGeneratedType (TypeBuilder helper_class)
465                 {
466                         if (helper_classes == null)
467                                 helper_classes = new ArrayList ();
468
469                         helper_classes.Add (helper_class);
470                 }
471                 
472                 static public void PopulateCoreType (TypeContainer root, string name)
473                 {
474                         DeclSpace ds = (DeclSpace) root.GetDefinition (name);
475                         // Core type was imported
476                         if (ds == null)
477                                 return;
478
479                         ds.DefineMembers ();
480                         ds.Define ();
481                 }
482                 
483                 static public void BootCorlib_PopulateCoreTypes ()
484                 {
485                         PopulateCoreType (root, "System.Object");
486                         PopulateCoreType (root, "System.ValueType");
487                         PopulateCoreType (root, "System.Attribute");
488                         PopulateCoreType (root, "System.Runtime.CompilerServices.IndexerNameAttribute");
489                 }
490                 
491                 // <summary>
492                 //   Populates the structs and classes with fields and methods
493                 // </summary>
494                 //
495                 // This is invoked after all interfaces, structs and classes
496                 // have been defined through `ResolveTree' 
497                 static public void PopulateTypes ()
498                 {
499
500                         if (type_container_resolve_order != null){
501                                 foreach (TypeContainer tc in type_container_resolve_order)
502                                         tc.ResolveType ();
503                                 foreach (TypeContainer tc in type_container_resolve_order)
504                                         tc.DefineMembers ();
505                         }
506
507                         ArrayList delegates = root.Delegates;
508                         if (delegates != null){
509                                 foreach (Delegate d in delegates)
510                                         d.DefineMembers ();
511                         }
512
513                         //
514                         // Check for cycles in the struct layout
515                         //
516                         if (type_container_resolve_order != null){
517                                 Hashtable seen = new Hashtable ();
518                                 foreach (TypeContainer tc in type_container_resolve_order)
519                                         TypeManager.CheckStructCycles (tc, seen);
520                         }
521                 }
522
523                 //
524                 // A generic hook delegate
525                 //
526                 public delegate void Hook ();
527
528                 //
529                 // A hook invoked when the code has been generated.
530                 //
531                 public static event Hook EmitCodeHook;
532
533                 //
534                 // DefineTypes is used to fill in the members of each type.
535                 //
536                 static public void DefineTypes ()
537                 {
538                         ArrayList delegates = root.Delegates;
539                         if (delegates != null){
540                                 foreach (Delegate d in delegates)
541                                         d.Define ();
542                         }
543
544                         if (type_container_resolve_order != null){
545                                 foreach (TypeContainer tc in type_container_resolve_order) {
546                                         // When compiling corlib, these types have already been
547                                         // populated from BootCorlib_PopulateCoreTypes ().
548                                         if (!RootContext.StdLib &&
549                                             ((tc.Name == "System.Object") ||
550                                              (tc.Name == "System.Attribute") ||
551                                              (tc.Name == "System.ValueType") ||
552                                              (tc.Name == "System.Runtime.CompilerServices.IndexerNameAttribute")))
553                                                 continue;
554
555                                         tc.Define ();
556                                 }
557                         }
558                 }
559
560                 static public void EmitCode ()
561                 {
562                         if (type_container_resolve_order != null) {
563                                 foreach (TypeContainer tc in type_container_resolve_order)
564                                         tc.EmitType ();
565
566                                 if (Report.Errors > 0)
567                                         return;
568
569                                 foreach (TypeContainer tc in type_container_resolve_order)
570                                         tc.VerifyMembers ();
571                         }
572                         
573                         if (root.Delegates != null) {
574                                 foreach (Delegate d in root.Delegates)
575                                         d.Emit ();
576                         }                       
577                         //
578                         // Run any hooks after all the types have been defined.
579                         // This is used to create nested auxiliary classes for example
580                         //
581
582                         if (EmitCodeHook != null)
583                                 EmitCodeHook ();
584
585                         CodeGen.Assembly.Emit (root);
586                         CodeGen.Module.Emit (root);
587                 }
588                 
589                 //
590                 // Public Field, used to track which method is the public entry
591                 // point.
592                 //
593                 static public MethodInfo EntryPoint;
594
595                 //
596                 // Track the location of the entry point.
597                 //
598                 static public Location EntryPointLocation;
599
600                 //
601                 // These are used to generate unique names on the structs and fields.
602                 //
603                 static int field_count;
604                 
605                 //
606                 // Makes an initialized struct, returns the field builder that
607                 // references the data.  Thanks go to Sergey Chaban for researching
608                 // how to do this.  And coming up with a shorter mechanism than I
609                 // was able to figure out.
610                 //
611                 // This works but makes an implicit public struct $ArrayType$SIZE and
612                 // makes the fields point to it.  We could get more control if we did
613                 // use instead:
614                 //
615                 // 1. DefineNestedType on the impl_details_class with our struct.
616                 //
617                 // 2. Define the field on the impl_details_class
618                 //
619                 static public FieldBuilder MakeStaticData (byte [] data)
620                 {
621                         FieldBuilder fb;
622                         
623                         if (impl_details_class == null){
624                                 impl_details_class = CodeGen.Module.Builder.DefineType (
625                                         "<PrivateImplementationDetails>",
626                                         TypeAttributes.NotPublic,
627                                         TypeManager.object_type);
628                                 
629                                 RegisterCompilerGeneratedType (impl_details_class);
630                         }
631
632                         fb = impl_details_class.DefineInitializedData (
633                                 "$$field-" + (field_count++), data,
634                                 FieldAttributes.Static | FieldAttributes.Assembly);
635                         
636                         return fb;
637                 }
638
639                 public static void CheckUnsafeOption (Location loc)
640                 {
641                         if (!Unsafe) {
642                                 Report.Error (227, loc, 
643                                         "Unsafe code requires the `unsafe' command line option to be specified");
644                         }
645                 }
646         }
647 }
648               
649