2006-12-30 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / mcs / codegen.cs
index 0e49caa150b8c472feed983ec71c111ee8585f51..94d7a949eab33cf4889ac7e123de7a79bd7f07c4 100644 (file)
@@ -144,6 +144,12 @@ namespace Mono.CSharp {
                                return false;
                        }
 
+#if GMCS_SOURCE
+                       // Get the complete AssemblyName from the builder
+                       // (We need to get the public key and token)
+                       Assembly.Name = Assembly.Builder.GetName ();
+#endif
+
                        //
                        // Pass a path-less name to DefineDynamicModule.  Wonder how
                        // this copes with output in different directories then.
@@ -282,7 +288,7 @@ namespace Mono.CSharp {
                ///   The value that is allowed to be returned or NULL if there is no
                ///   return type.
                /// </summary>
-               public Type ReturnType;
+               public readonly Type ReturnType;
 
                /// <summary>
                ///   Points to the Type (extracted from the TypeContainer) that
@@ -354,19 +360,14 @@ namespace Mono.CSharp {
                /// </summary>
                public bool InEnumContext;
 
-               /// <summary>
-               ///   Anonymous methods can capture local variables and fields,
-               ///   this object tracks it.  It is copied from the TopLevelBlock
-               ///   field.
-               /// </summary>
-               public CaptureContext capture_context;
-
                public readonly IResolveContext ResolveContext;
 
                /// <summary>
                ///    The current iterator
                /// </summary>
-               public Iterator CurrentIterator;
+               public Iterator CurrentIterator {
+                       get { return CurrentAnonymousMethod as Iterator; }
+               }
 
                /// <summary>
                ///    Whether we are in the resolving stage or not
@@ -387,8 +388,8 @@ namespace Mono.CSharp {
 
                public override string ToString ()
                {
-                       return String.Format ("EmitContext ({0}:{1}:{2})", id,
-                                             CurrentIterator, capture_context, loc);
+                       return String.Format ("EmitContext ({0}:{1})", id,
+                                             CurrentAnonymousMethod, loc);
                }
                
                public EmitContext (IResolveContext rc, DeclSpace parent, DeclSpace ds, Location l, ILGenerator ig,
@@ -403,6 +404,11 @@ namespace Mono.CSharp {
                                flags |= Flags.CheckState;
                        flags |= Flags.ConstantCheckState;
 
+#if GMCS_SOURCE
+                       if ((return_type is TypeBuilder) && return_type.IsGenericTypeDefinition)
+                               throw new InternalErrorException ();
+#endif
+
                        IsStatic = (code_flags & Modifiers.STATIC) != 0;
                        MethodIsStatic = IsStatic;
                        InIterator = (code_flags & Modifiers.METHOD_YIELDS) != 0;
@@ -523,16 +529,6 @@ namespace Mono.CSharp {
                        get { return current_flow_branching; }
                }
 
-               public bool HaveCaptureInfo {
-                       get { return capture_context != null; }
-               }
-
-               public void EmitScopeInitFromBlock (Block b)
-               {
-                       if (capture_context != null)
-                               capture_context.EmitScopeInitFromBlock (this, b);
-               }
-
                // <summary>
                //   Starts a new code branching.  This inherits the state of all local
                //   variables and parameters from the current branching.
@@ -616,84 +612,17 @@ namespace Mono.CSharp {
                        current_flow_branching = current_flow_branching.Parent;
                }
 
-               public void CaptureVariable (LocalInfo li)
-               {
-                       capture_context.AddLocal (CurrentAnonymousMethod, li);
-                       li.IsCaptured = true;
-               }
-
-               public void CaptureParameter (string name, Type t, int idx)
-               {
-                       capture_context.AddParameter (this, CurrentAnonymousMethod, name, t, idx);
-               }
-
-               public void CaptureThis ()
+               public bool MustCaptureVariable (LocalInfo local)
                {
-                       capture_context.CaptureThis (CurrentAnonymousMethod);
-               }
-               
-               
-               //
-               // Use to register a field as captured
-               //
-               public void CaptureField (FieldExpr fe)
-               {
-                       capture_context.AddField (this, CurrentAnonymousMethod, fe);
-               }
-
-               //
-               // Whether anonymous methods have captured variables
-               //
-               public bool HaveCapturedVariables ()
-               {
-                       if (capture_context != null)
-                               return capture_context.HaveCapturedVariables;
-                       return false;
-               }
-
-               //
-               // Whether anonymous methods have captured fields or this.
-               //
-               public bool HaveCapturedFields ()
-               {
-                       if (capture_context != null)
-                               return capture_context.HaveCapturedFields;
-                       return false;
-               }
-
-               //
-               // Emits the instance pointer for the host method
-               //
-               public void EmitMethodHostInstance (EmitContext target, AnonymousMethod am)
-               {
-                       if (capture_context != null)
-                               capture_context.EmitMethodHostInstance (target, am);
-                       else if (IsStatic)
-                               target.ig.Emit (OpCodes.Ldnull);
-                       else
-                               target.ig.Emit (OpCodes.Ldarg_0);
-               }
-
-               //
-               // Returns whether the `local' variable has been captured by an anonymous
-               // method
-               //
-               public bool IsCaptured (LocalInfo local)
-               {
-                       return capture_context.IsCaptured (local);
-               }
-
-               public bool IsParameterCaptured (string name)
-               {
-                       if (capture_context != null)
-                               return capture_context.IsParameterCaptured (name);
-                       return false;
+                       if (CurrentAnonymousMethod == null)
+                               return false;
+                       if (CurrentAnonymousMethod.IsIterator)
+                               return true;
+                       return local.Block.Toplevel != CurrentBlock.Toplevel;
                }
                
                public void EmitMeta (ToplevelBlock b)
                {
-                       if (capture_context != null)
-                               capture_context.EmitAnonymousHelperClasses (this);
                        b.EmitMeta (this);
 
                        if (HasReturnLabel)
@@ -732,8 +661,6 @@ namespace Mono.CSharp {
                        if (resolved)
                                return true;
 
-                       capture_context = block.CaptureContext;
-
                        if (!loc.IsNull)
                                CurrentFile = loc.File;
 
@@ -743,6 +670,11 @@ namespace Mono.CSharp {
                                if (!block.ResolveMeta (this, ip))
                                        return false;
 
+                               if ((md != null) && (md.Iterator != null)) {
+                                       if (!md.Iterator.Resolve (this))
+                                               return false;
+                               }
+
                                using (this.With (EmitContext.Flags.DoFlowAnalysis, true)) {
                                        FlowBranchingToplevel top_level;
                                        if (anonymous_method_host != null)
@@ -781,12 +713,14 @@ namespace Mono.CSharp {
                                        return false;
                                } else if (!CurrentAnonymousMethod.IsIterator) {
                                        Report.Error (1643, CurrentAnonymousMethod.Location, "Not all code paths return a value in anonymous method of type `{0}'",
-                                               CurrentAnonymousMethod.GetSignatureForError ());
+                                                     CurrentAnonymousMethod.GetSignatureForError ());
                                        return false;
                                }
                        }
 
-                       block.CompleteContexts ();
+                       if (!block.CompleteContexts (this))
+                               return false;
+
                        resolved = true;
                        return true;
                }
@@ -827,12 +761,6 @@ namespace Mono.CSharp {
                                        ig.Emit (OpCodes.Ret);
                                }
                        }
-
-                       //
-                       // Close pending helper classes if we are the toplevel
-                       //
-                       if (capture_context != null && capture_context.ParentToplevel == null)
-                               capture_context.CloseAnonymousHelperClasses ();
                }
 
                /// <summary>
@@ -979,57 +907,7 @@ namespace Mono.CSharp {
                                HasReturnLabel = true;
                }
 
-               //
-               // Emits the proper object to address fields on a remapped
-               // variable/parameter to field in anonymous-method/iterator proxy classes.
-               //
-               public void EmitThis (bool need_address)
-               {
-                       ig.Emit (OpCodes.Ldarg_0);
-                       if (capture_context != null && CurrentAnonymousMethod != null){
-                               ScopeInfo si = CurrentAnonymousMethod.Scope;
-                               while (si != null){
-                                       if (si.ParentLink != null)
-                                               ig.Emit (OpCodes.Ldfld, si.ParentLink);
-                                       if (si.THIS != null){
-                                               if (need_address && TypeManager.IsValueType (si.THIS.FieldType))
-                                                       ig.Emit (OpCodes.Ldflda, si.THIS);
-                                               else
-                                                       ig.Emit (OpCodes.Ldfld, si.THIS);
-                                               break;
-                                       }
-                                       si = si.ParentScope;
-                               }
-                       } 
-               }
-
-               //
-               // Emits the code necessary to load the instance required
-               // to access the captured LocalInfo
-               //
-               public void EmitCapturedVariableInstance (LocalInfo li)
-               {
-                       if (capture_context == null)
-                               throw new Exception ("Calling EmitCapturedContext when there is no capture_context");
-                       
-                       capture_context.EmitCapturedVariableInstance (this, li, CurrentAnonymousMethod);
-               }
-
-               public void EmitParameter (string name, bool leave_copy, bool prepared, ref LocalTemporary temp)
-               {
-                       capture_context.EmitParameter (this, name, leave_copy, prepared, ref temp);
-               }
-
-               public void EmitAssignParameter (string name, Expression source, bool leave_copy, bool prepare_for_load, ref LocalTemporary  temp)
-               {
-                       capture_context.EmitAssignParameter (this, name, source, leave_copy, prepare_for_load, ref temp);
-               }
 
-               public void EmitAddressOfParameter (string name)
-               {
-                       capture_context.EmitAddressOfParameter (this, name);
-               }
-               
                public Expression GetThis (Location loc)
                {
                        This my_this;
@@ -1072,16 +950,9 @@ namespace Mono.CSharp {
 
                        OptAttributes.Emit ();
                }
-                
+
                protected Attribute ResolveAttribute (Type a_type)
                {
-                       if (OptAttributes == null)
-                               return null;
-
-                       // Ensure that we only have GlobalAttributes, since the Search below isn't safe with other types.
-                       if (!OptAttributes.CheckTargets ())
-                               return null;
-
                        Attribute a = OptAttributes.Search (a_type);
                        if (a != null) {
                                a.Resolve ();
@@ -1123,13 +994,20 @@ namespace Mono.CSharp {
                public Attribute ClsCompliantAttribute;
 
                ListDictionary declarative_security;
+#if GMCS_SOURCE
+               public AssemblyName Name;
+               MethodInfo add_type_forwarder;
+               ListDictionary emitted_forwarders;
+#endif
 
                // Module is here just because of error messages
                static string[] attribute_targets = new string [] { "assembly", "module" };
 
                public AssemblyClass (): base ()
                {
+#if GMCS_SOURCE
                        wrap_non_exception_throws = true;
+#endif
                }
 
                public bool IsClsCompliant {
@@ -1157,6 +1035,13 @@ namespace Mono.CSharp {
 
                public void Resolve ()
                {
+                       if (OptAttributes == null)
+                               return;
+
+                       // Ensure that we only have GlobalAttributes, since the Search isn't safe with other types.
+                       if (!OptAttributes.CheckTargets())
+                               return;
+
                        ClsCompliantAttribute = ResolveAttribute (TypeManager.cls_compliant_attribute_type);
                        if (ClsCompliantAttribute != null) {
                                is_cls_compliant = ClsCompliantAttribute.GetClsCompliantAttributeValue ();
@@ -1322,6 +1207,37 @@ namespace Mono.CSharp {
                        Report.Error (1548, "Error during assembly signing. " + text);
                }
 
+#if GMCS_SOURCE
+               bool CheckInternalsVisibleAttribute (Attribute a)
+               {
+                       string assembly_name = a.GetString ();
+                       if (assembly_name.Length == 0)
+                               return false;
+                               
+                       AssemblyName aname = null;
+                       try {
+                               aname = new AssemblyName (assembly_name);
+                       } catch (FileLoadException) {
+                       } catch (ArgumentException) {
+                       }
+                               
+                       // Bad assembly name format
+                       if (aname == null)
+                               Report.Warning (1700, 3, a.Location, "Assembly reference `" + assembly_name + "' is invalid and cannot be resolved");
+                       // Report error if we have defined Version or Culture
+                       else if (aname.Version != null || aname.CultureInfo != null)
+                               throw new Exception ("Friend assembly `" + a.GetString () + 
+                                               "' is invalid. InternalsVisibleTo cannot have version or culture specified.");
+                       else if (aname.GetPublicKey () == null && Name.GetPublicKey () != null) {
+                               Report.Error (1726, a.Location, "Friend assembly reference `" + aname.FullName + "' is invalid." +
+                                               " Strong named assemblies must specify a public key in their InternalsVisibleTo declarations");
+                               return false;
+                       }
+
+                       return true;
+               }
+#endif
+
                public override void ApplyAttributeBuilder (Attribute a, CustomAttributeBuilder customBuilder)
                {
                        if (a.Type.IsSubclassOf (TypeManager.security_attr_type) && a.CheckSecurityActionValidity (true)) {
@@ -1343,6 +1259,61 @@ namespace Mono.CSharp {
                                }
                        }
 
+#if GMCS_SOURCE
+                       if (a.Type == TypeManager.internals_visible_attr_type && !CheckInternalsVisibleAttribute (a))
+                               return;
+
+                       if (a.Type == TypeManager.type_forwarder_attr_type) {
+                               Type t = a.GetArgumentType ();
+                               if (t == null || TypeManager.HasElementType (t)) {
+                                       Report.Error (735, a.Location, "Invalid type specified as an argument for TypeForwardedTo attribute");
+                                       return;
+                               }
+
+                               if (emitted_forwarders == null) {
+                                       emitted_forwarders = new ListDictionary();
+                               } else if (emitted_forwarders.Contains(t)) {
+                                       Report.SymbolRelatedToPreviousError(((Attribute)emitted_forwarders[t]).Location, null);
+                                       Report.Error(739, a.Location, "A duplicate type forward of type `{0}'",
+                                               TypeManager.CSharpName(t));
+                                       return;
+                               }
+
+                               emitted_forwarders.Add(t, a);
+
+                               if (TypeManager.LookupDeclSpace (t) != null) {
+                                       Report.SymbolRelatedToPreviousError (t);
+                                       Report.Error (729, a.Location, "Cannot forward type `{0}' because it is defined in this assembly",
+                                               TypeManager.CSharpName (t));
+                                       return;
+                               }
+
+                               if (t.IsNested) {
+                                       Report.Error (730, a.Location, "Cannot forward type `{0}' because it is a nested type",
+                                               TypeManager.CSharpName (t));
+                                       return;
+                               }
+
+                               if (t.IsGenericType) {
+                                       Report.Error (733, a.Location, "Cannot forward generic type `{0}'", TypeManager.CSharpName (t));
+                                       return;
+                               }
+
+                               if (add_type_forwarder == null) {
+                                       add_type_forwarder = typeof (AssemblyBuilder).GetMethod ("AddTypeForwarder",
+                                               BindingFlags.NonPublic | BindingFlags.Instance);
+
+                                       if (add_type_forwarder == null) {
+                                               Report.RuntimeMissingSupport (a.Location, "TypeForwardedTo attribute");
+                                               return;
+                                       }
+                               }
+
+                               add_type_forwarder.Invoke (Builder, new object[] { t });
+                               return;
+                       }
+                       
+#endif
                        Builder.SetCustomAttribute (customBuilder);
                }
 
@@ -1350,6 +1321,20 @@ namespace Mono.CSharp {
                {
                        base.Emit (tc);
 
+#if GMCS_SOURCE
+                       // FIXME: Does this belong inside SRE.AssemblyBuilder instead?
+                       if (OptAttributes == null || !OptAttributes.Contains (TypeManager.runtime_compatibility_attr_type)) {
+                               ConstructorInfo ci = TypeManager.GetConstructor (
+                                       TypeManager.runtime_compatibility_attr_type, Type.EmptyTypes);
+                               PropertyInfo [] pis = new PropertyInfo [1];
+                               pis [0] = TypeManager.GetProperty (
+                                       TypeManager.runtime_compatibility_attr_type, "WrapNonExceptionThrows");
+                               object [] pargs = new object [1];
+                               pargs [0] = true;
+                               Builder.SetCustomAttribute (new CustomAttributeBuilder (ci, new object [0], pis, pargs));
+                       }
+#endif
+
                        if (declarative_security != null) {
 
                                MethodInfo add_permission = typeof (AssemblyBuilder).GetMethod ("AddPermissionRequests", BindingFlags.Instance | BindingFlags.NonPublic);
@@ -1381,6 +1366,30 @@ namespace Mono.CSharp {
                                return attribute_targets;
                        }
                }
+
+               // Wrapper for AssemblyBuilder.AddModule
+               static MethodInfo adder_method;
+               static public MethodInfo AddModule_Method {
+                       get {
+                               if (adder_method == null)
+                                       adder_method = typeof (AssemblyBuilder).GetMethod ("AddModule", BindingFlags.Instance|BindingFlags.NonPublic);
+                               return adder_method;
+                       }
+               }
+               public Module AddModule (string module)
+               {
+                       MethodInfo m = AddModule_Method;
+                       if (m == null) {
+                               Report.RuntimeMissingSupport (Location.Null, "/addmodule");
+                               Environment.Exit (1);
+                       }
+
+                       try {
+                               return (Module) m.Invoke (Builder, new object [] { module });
+                       } catch (TargetInvocationException ex) {
+                               throw ex.InnerException;
+                       }
+               }               
        }
 
        public class ModuleClass : CommonAssemblyModulClass {
@@ -1443,9 +1452,15 @@ namespace Mono.CSharp {
                /// <summary>
                /// It is called very early therefore can resolve only predefined attributes
                /// </summary>
-               public void ResolveAttributes ()
+               public void Resolve ()
                {
 #if GMCS_SOURCE
+                       if (OptAttributes == null)
+                               return;
+
+                       if (!OptAttributes.CheckTargets())
+                               return;
+
                        Attribute a = ResolveAttribute (TypeManager.default_charset_type);
                        if (a != null) {
                                DefaultCharSet = a.GetCharSetValue ();