Updated with Xamarin copyrights
[mono.git] / mcs / mcs / field.cs
index d0bef03c9ed2f482a8563690fbc00e17187eccc1..ec3e050205aebb17a6ada15d3b5adcf288e419f0 100644 (file)
@@ -9,13 +9,22 @@
 //
 // Copyright 2001, 2002, 2003 Ximian, Inc (http://www.ximian.com)
 // Copyright 2004-2008 Novell, Inc
+// Copyright 2011 Xamarin Inc
 //
 
 using System;
 using System.Collections.Generic;
+using System.Runtime.InteropServices;
+
+#if STATIC
+using MetaType = IKVM.Reflection.Type;
+using IKVM.Reflection;
+using IKVM.Reflection.Emit;
+#else
+using MetaType = System.Type;
 using System.Reflection;
 using System.Reflection.Emit;
-using System.Runtime.InteropServices;
+#endif
 
 namespace Mono.CSharp
 {
@@ -147,13 +156,19 @@ namespace Mono.CSharp
                        FieldBuilder.SetCustomAttribute ((ConstructorInfo) ctor.GetMetaInfo (), cdata);
                }
 
+               public void SetCustomAttribute (MethodSpec ctor, byte[] data)
+               {
+                       FieldBuilder.SetCustomAttribute ((ConstructorInfo) ctor.GetMetaInfo (), data);
+               }
+
                protected override bool CheckBase ()
                {
                        if (!base.CheckBase ())
                                return false;
 
                        MemberSpec candidate;
-                       var conflict_symbol = MemberCache.FindBaseMember (this, out candidate);
+                       bool overrides = false;
+                       var conflict_symbol = MemberCache.FindBaseMember (this, out candidate, ref overrides);
                        if (conflict_symbol == null)
                                conflict_symbol = candidate;
 
@@ -181,7 +196,7 @@ namespace Mono.CSharp
 
                public virtual Constant ConvertInitializer (ResolveContext rc, Constant expr)
                {
-                       return expr.ConvertImplicitly (rc, MemberType);
+                       return expr.ConvertImplicitly (MemberType);
                }
 
                protected override void DoMemberTypeDependentChecks ()
@@ -207,20 +222,14 @@ namespace Mono.CSharp
 
                public override void Emit ()
                {
-                       if (member_type == InternalType.Dynamic) {
-                               Compiler.PredefinedAttributes.Dynamic.EmitAttribute (FieldBuilder);
-                       } else {
-                               var trans_flags = TypeManager.HasDynamicTypeUsed (member_type);
-                               if (trans_flags != null) {
-                                       var pa = Compiler.PredefinedAttributes.DynamicTransform;
-                                       if (pa.Constructor != null || pa.ResolveConstructor (Location, ArrayContainer.MakeType (TypeManager.bool_type, 1))) {
-                                               FieldBuilder.SetCustomAttribute (new CustomAttributeBuilder (pa.Constructor, new object[] { trans_flags }));
-                                       }
-                               }
+                       if (member_type.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
+                               Module.PredefinedAttributes.Dynamic.EmitAttribute (FieldBuilder);
+                       } else if (!(Parent is CompilerGeneratedClass) && member_type.HasDynamicElement) {
+                               Module.PredefinedAttributes.Dynamic.EmitAttribute (FieldBuilder, member_type, Location);
                        }
 
                        if ((ModFlags & Modifiers.COMPILER_GENERATED) != 0 && !Parent.IsCompilerGenerated)
-                               Compiler.PredefinedAttributes.CompilerGenerated.EmitAttribute (FieldBuilder);
+                               Module.PredefinedAttributes.CompilerGenerated.EmitAttribute (FieldBuilder);
 
                        if (OptAttributes != null) {
                                OptAttributes.Emit ();
@@ -230,6 +239,8 @@ namespace Mono.CSharp
                                Report.Error (625, Location, "`{0}': Instance field types marked with StructLayout(LayoutKind.Explicit) must have a FieldOffset attribute", GetSignatureForError ());
                        }
 
+                       ConstraintChecker.Check (this, member_type, type_expr.Location);
+
                        base.Emit ();
                }
 
@@ -268,7 +279,7 @@ namespace Mono.CSharp
                        this.memberType = memberType;
                }
 
-#region Properties
+               #region Properties
 
                public bool IsReadOnly {
                        get {
@@ -330,6 +341,11 @@ namespace Mono.CSharp
                        fs.metaInfo = MemberCache.GetMember (TypeParameterMutator.GetMemberDeclaringType (DeclaringType), this).metaInfo;
                        return fs;
                }
+
+               public override List<TypeSpec> ResolveMissingDependencies ()
+               {
+                       return memberType.ResolveMissingDependencies ();
+               }
        }
 
        /// <summary>
@@ -339,8 +355,6 @@ namespace Mono.CSharp
        {
                public const string FixedElementName = "FixedElementField";
                static int GlobalCounter = 0;
-               static object[] ctor_args = new object[] { (short)LayoutKind.Sequential };
-               static FieldInfo[] fi;
 
                TypeBuilder fixed_buffer_type;
 
@@ -357,9 +371,20 @@ namespace Mono.CSharp
                {
                }
 
+               #region Properties
+
+               //
+               // Explicit struct layout set by parent
+               //
+               public CharSet? CharSet {
+                       get; set;
+               }               
+
+               #endregion
+
                public override Constant ConvertInitializer (ResolveContext rc, Constant expr)
                {
-                       return expr.ImplicitConversionRequired (rc, TypeManager.int32_type, Location);
+                       return expr.ImplicitConversionRequired (rc, rc.BuiltinTypes.Int, Location);
                }
 
                public override bool Define ()
@@ -367,7 +392,7 @@ namespace Mono.CSharp
                        if (!base.Define ())
                                return false;
 
-                       if (!TypeManager.IsPrimitiveType (MemberType)) {
+                       if (!BuiltinTypeSpec.IsPrimitiveType (MemberType)) {
                                Report.Error (1663, Location,
                                        "`{0}': Fixed size buffers type must be one of the following: bool, byte, short, int, long, char, sbyte, ushort, uint, ulong, float or double",
                                        GetSignatureForError ());
@@ -384,14 +409,15 @@ namespace Mono.CSharp
                        
                        // Create nested fixed buffer container
                        string name = String.Format ("<{0}>__FixedBuffer{1}", Name, GlobalCounter++);
-                       fixed_buffer_type = Parent.TypeBuilder.DefineNestedType (name, Parent.Module.DefaultCharSetType |
-                               TypeAttributes.NestedPublic | TypeAttributes.Sealed | TypeAttributes.BeforeFieldInit, TypeManager.value_type.GetMetaInfo ());
+                       fixed_buffer_type = Parent.TypeBuilder.DefineNestedType (name,
+                               TypeAttributes.NestedPublic | TypeAttributes.Sealed | TypeAttributes.BeforeFieldInit,
+                               Compiler.BuiltinTypes.ValueType.GetMetaInfo ());
 
-                       fixed_buffer_type.DefineField (FixedElementName, MemberType.GetMetaInfo (), FieldAttributes.Public);
-                       RootContext.RegisterCompilerGeneratedType (fixed_buffer_type);
+                       var ffield = fixed_buffer_type.DefineField (FixedElementName, MemberType.GetMetaInfo (), FieldAttributes.Public);
                        
                        FieldBuilder = Parent.TypeBuilder.DefineField (Name, fixed_buffer_type, ModifiersExtensions.FieldAttr (ModFlags));
-                       var element_spec = new FieldSpec (null, this, MemberType, FieldBuilder, ModFlags);
+
+                       var element_spec = new FieldSpec (null, this, MemberType, ffield, ModFlags);
                        spec = new FixedFieldSpec (Parent.Definition, this, FieldBuilder, element_spec, ModFlags);
 
                        Parent.MemberCache.AddMember (spec);
@@ -425,7 +451,23 @@ namespace Mono.CSharp
                                return;
                        }
 
-                       int type_size = Expression.GetTypeSize (MemberType);
+                       EmitFieldSize (buffer_size);
+
+#if STATIC
+                       if (Module.HasDefaultCharSet)
+                               fixed_buffer_type.__SetAttributes (fixed_buffer_type.Attributes | Module.DefaultCharSetType);
+#endif
+
+                       Module.PredefinedAttributes.UnsafeValueType.EmitAttribute (fixed_buffer_type);
+                       Module.PredefinedAttributes.CompilerGenerated.EmitAttribute (fixed_buffer_type);
+                       fixed_buffer_type.CreateType ();
+
+                       base.Emit ();
+               }
+
+               void EmitFieldSize (int buffer_size)
+               {
+                       int type_size = BuiltinTypeSpec.GetSize (MemberType);
 
                        if (buffer_size > int.MaxValue / type_size) {
                                Report.Error (1664, Location, "Fixed size buffer `{0}' of length `{1}' and type `{2}' exceeded 2^31 limit",
@@ -433,69 +475,47 @@ namespace Mono.CSharp
                                return;
                        }
 
-                       buffer_size *= type_size;
-                       EmitFieldSize (buffer_size);
+                       AttributeEncoder encoder;
 
-                       Compiler.PredefinedAttributes.UnsafeValueType.EmitAttribute (fixed_buffer_type);
+                       var ctor = Module.PredefinedMembers.StructLayoutAttributeCtor.Resolve (Location);
+                       if (ctor == null)
+                               return;
 
-                       base.Emit ();
-               }
+                       var field_size = Module.PredefinedMembers.StructLayoutSize.Resolve (Location);
+                       var field_charset = Module.PredefinedMembers.StructLayoutCharSet.Resolve (Location);
+                       if (field_size == null || field_charset == null)
+                               return;
 
-               void EmitFieldSize (int buffer_size)
-               {
-                       CustomAttributeBuilder cab;
-                       PredefinedAttribute pa;
+                       var char_set = CharSet ?? Module.DefaultCharSet ?? 0;
 
-                       pa = Compiler.PredefinedAttributes.StructLayout;
-                       if (pa.Constructor == null &&
-                               !pa.ResolveConstructor (Location, TypeManager.short_type))
-                                       return;
+                       encoder = new AttributeEncoder ();
+                       encoder.Encode ((short)LayoutKind.Sequential);
+                       encoder.EncodeNamedArguments (
+                               new [] { field_size, field_charset },
+                               new Constant [] { 
+                                       new IntConstant (Compiler.BuiltinTypes, buffer_size * type_size, Location),
+                                       new IntConstant (Compiler.BuiltinTypes, (int) char_set, Location)
+                               }
+                       );
 
-                       // TODO: It's not cleared
-                       if (fi == null) {
-                               var field = (FieldSpec) MemberCache.FindMember (pa.Type, MemberFilter.Field ("Size", null), BindingRestriction.DeclaredOnly);
-                               fi = new FieldInfo[] { field.GetMetaInfo () };
-                       }
+                       fixed_buffer_type.SetCustomAttribute ((ConstructorInfo) ctor.GetMetaInfo (), encoder.ToArray ());
 
-                       object[] fi_val = new object[] { buffer_size };
-                       cab = new CustomAttributeBuilder (pa.Constructor,
-                               ctor_args, fi, fi_val);
-                       fixed_buffer_type.SetCustomAttribute (cab);
-                       
                        //
                        // Don't emit FixedBufferAttribute attribute for private types
                        //
                        if ((ModFlags & Modifiers.PRIVATE) != 0)
                                return;
 
-                       pa = Compiler.PredefinedAttributes.FixedBuffer;
-                       if (pa.Constructor == null &&
-                               !pa.ResolveConstructor (Location, TypeManager.type_type, TypeManager.int32_type))
+                       ctor = Module.PredefinedMembers.FixedBufferAttributeCtor.Resolve (Location);
+                       if (ctor == null)
                                return;
 
-                       cab = new CustomAttributeBuilder (pa.Constructor, new object[] { MemberType.GetMetaInfo (), buffer_size });
-                       FieldBuilder.SetCustomAttribute (cab);
-               }
+                       encoder = new AttributeEncoder ();
+                       encoder.EncodeTypeName (MemberType);
+                       encoder.Encode (buffer_size);
+                       encoder.EncodeEmptyNamedArguments ();
 
-               public void SetCharSet (TypeAttributes ta)
-               {
-                       TypeAttributes cta = fixed_buffer_type.Attributes;
-                       if ((cta & TypeAttributes.UnicodeClass) != (ta & TypeAttributes.UnicodeClass))
-                               SetTypeBuilderCharSet ((cta & ~TypeAttributes.AutoClass) | TypeAttributes.UnicodeClass);
-                       else if ((cta & TypeAttributes.AutoClass) != (ta & TypeAttributes.AutoClass))
-                               SetTypeBuilderCharSet ((cta & ~TypeAttributes.UnicodeClass) | TypeAttributes.AutoClass);
-                       else if (cta == 0 && ta != 0)
-                               SetTypeBuilderCharSet (cta & ~(TypeAttributes.UnicodeClass | TypeAttributes.AutoClass));
-               }
-
-               void SetTypeBuilderCharSet (TypeAttributes ta)
-               {
-                       MethodInfo mi = typeof (TypeBuilder).GetMethod ("SetCharSet", BindingFlags.Instance | BindingFlags.NonPublic);
-                       if (mi == null) {
-                               Report.RuntimeMissingSupport (Location, "TypeBuilder::SetCharSet");
-                       } else {
-                               mi.Invoke (fixed_buffer_type, new object [] { ta });
-                       }
+                       FieldBuilder.SetCustomAttribute ((ConstructorInfo) ctor.GetMetaInfo (), encoder.ToArray ());
                }
        }
 
@@ -551,15 +571,22 @@ namespace Mono.CSharp
 
                bool CanBeVolatile ()
                {
-                       if (TypeManager.IsReferenceType (MemberType))
+                       switch (MemberType.BuiltinType) {
+                       case BuiltinTypeSpec.Type.Bool:
+                       case BuiltinTypeSpec.Type.Char:
+                       case BuiltinTypeSpec.Type.SByte:
+                       case BuiltinTypeSpec.Type.Byte:
+                       case BuiltinTypeSpec.Type.Short:
+                       case BuiltinTypeSpec.Type.UShort:
+                       case BuiltinTypeSpec.Type.Int:
+                       case BuiltinTypeSpec.Type.UInt:
+                       case BuiltinTypeSpec.Type.Float:
+                       case BuiltinTypeSpec.Type.UIntPtr:
+                       case BuiltinTypeSpec.Type.IntPtr:
                                return true;
+                       }
 
-                       if (MemberType == TypeManager.bool_type || MemberType == TypeManager.char_type ||
-                               MemberType == TypeManager.sbyte_type || MemberType == TypeManager.byte_type ||
-                               MemberType == TypeManager.short_type || MemberType == TypeManager.ushort_type ||
-                               MemberType == TypeManager.int32_type || MemberType == TypeManager.uint32_type ||
-                               MemberType == TypeManager.float_type ||
-                               MemberType == TypeManager.intptr_type || MemberType == TypeManager.uintptr_type)
+                       if (TypeSpec.IsReferenceType (MemberType))
                                return true;
 
                        if (MemberType.IsEnum)
@@ -573,14 +600,11 @@ namespace Mono.CSharp
                        if (!base.Define ())
                                return false;
 
-                       Type[] required_modifier = null;
+                       MetaType[] required_modifier = null;
                        if ((ModFlags & Modifiers.VOLATILE) != 0) {
-                               if (TypeManager.isvolatile_type == null)
-                                       TypeManager.isvolatile_type = TypeManager.CoreLookupType (Compiler,
-                                               "System.Runtime.CompilerServices", "IsVolatile", MemberKind.Class, true);
-
-                               if (TypeManager.isvolatile_type != null)
-                                       required_modifier = new Type[] { TypeManager.isvolatile_type.GetMetaInfo () };
+                               var mod = Module.PredefinedTypes.IsVolatile.Resolve ();
+                               if (mod != null)
+                                       required_modifier = new MetaType[] { mod.GetMetaInfo () };
                        }
 
                        FieldBuilder = Parent.TypeBuilder.DefineField (
@@ -588,8 +612,11 @@ namespace Mono.CSharp
 
                        spec = new FieldSpec (Parent.Definition, this, MemberType, FieldBuilder, ModFlags);
 
-                       // Don't cache inaccessible fields
-                       if ((ModFlags & Modifiers.BACKING_FIELD) == 0) {
+                       //
+                       // Don't cache inaccessible fields except for struct where we
+                       // need them for definitive assignment checks
+                       //
+                       if ((ModFlags & Modifiers.BACKING_FIELD) == 0 || Parent.Kind == MemberKind.Struct) {
                                Parent.MemberCache.AddMember (spec);
                        }