Simplify slightly.
[mono.git] / mcs / mcs / attribute.cs
1 //
2 // attribute.cs: Attribute Handler
3 //
4 // Author: Ravi Pratap (ravi@ximian.com)
5 //         Marek Safar (marek.safar@seznam.cz)
6 //
7 // Licensed under the terms of the GNU GPL
8 //
9 // (C) 2001 Ximian, Inc (http://www.ximian.com)
10 //
11 //
12
13 using System;
14 using System.Diagnostics;
15 using System.Collections;
16 using System.Collections.Specialized;
17 using System.Reflection;
18 using System.Reflection.Emit;
19 using System.Runtime.InteropServices;
20 using System.Runtime.CompilerServices;
21 using System.Text;
22
23 namespace Mono.CSharp {
24
25         /// <summary>
26         ///   Base class for objects that can have Attributes applied to them.
27         /// </summary>
28         public abstract class Attributable {
29                 /// <summary>
30                 ///   Attributes for this type
31                 /// </summary>
32                 Attributes attributes;
33
34                 public Attributable(Attributes attrs)
35                 {
36                         attributes = attrs;
37                         if (attributes != null)
38                                 attributes.CheckTargets (ValidAttributeTargets);
39                 }
40
41                 public Attributes OptAttributes 
42                 {
43                         get {
44                                 return attributes;
45                         }
46                         set {
47                                 attributes = value;
48                                 if (attributes != null)
49                                         attributes.CheckTargets (ValidAttributeTargets);
50                         }
51                 }
52
53                 /// <summary>
54                 /// Use member-specific procedure to apply attribute @a in @cb to the entity being built in @builder
55                 /// </summary>
56                 public abstract void ApplyAttributeBuilder (Attribute a, CustomAttributeBuilder cb);
57
58                 /// <summary>
59                 /// Returns combination of enabled AttributeTargets
60                 /// </summary>
61                 public abstract AttributeTargets AttributeTargets { get; }
62
63                 public abstract bool IsClsCompliaceRequired (DeclSpace ds);
64
65                 /// <summary>
66                 /// Gets list of valid attribute targets for explicit target declaration.
67                 /// The first array item is default target. Don't break this rule.
68                 /// </summary>
69                 protected abstract string[] ValidAttributeTargets { get; }
70         };
71
72         public class Attribute {
73                 public string Target;
74                 public readonly string    Name;
75                 public readonly ArrayList Arguments;
76
77                 public readonly Location Location;
78
79                 public Type Type;
80                 
81                 // Is non-null if type is AttributeUsageAttribute
82                 AttributeUsageAttribute usage_attribute;
83
84                 public AttributeUsageAttribute UsageAttribute {
85                         get {
86                                 return usage_attribute;
87                         }
88                 }
89                 
90                 MethodImplOptions ImplOptions;
91                 UnmanagedType     UnmanagedType;
92                 CustomAttributeBuilder cb;
93         
94                 // non-null if named args present after Resolve () is called
95                 PropertyInfo [] prop_info_arr;
96                 FieldInfo [] field_info_arr;
97                 object [] field_values_arr;
98                 object [] prop_values_arr;
99                 object [] pos_values;
100
101                 static PtrHashtable usage_attr_cache = new PtrHashtable ();
102                 
103                 public Attribute (string target, string name, ArrayList args, Location loc)
104                 {
105                         Name = name;
106                         Arguments = args;
107                         Location = loc;
108                         Target = target;
109                 }
110
111                 void Error_InvalidNamedArgument (string name)
112                 {
113                         Report.Error (617, Location, "'" + name + "' is not a valid named attribute " +
114                                       "argument. Named attribute arguments must be fields which are not " +
115                                       "readonly, static or const, or properties with a set accessor which "+
116                                       "are not static.");
117                 }
118
119                 static void Error_AttributeArgumentNotValid (Location loc)
120                 {
121                         Report.Error (182, loc,
122                                       "An attribute argument must be a constant expression, typeof " +
123                                       "expression or array creation expression");
124                 }
125
126                 void Error_AttributeConstructorMismatch ()
127                 {
128                         Report.Error (-6, Location,
129                                       "Could not find a constructor for this argument list.");
130                 }
131
132                 /// <summary>
133                 ///   Tries to resolve the type of the attribute. Flags an error if it can't, and complain is true.
134                 /// </summary>
135                 protected virtual Type CheckAttributeType (EmitContext ec, bool complain)
136                 {
137                         Type t1 = RootContext.LookupType (ec.DeclSpace, Name, true, Location);
138
139                         // FIXME: Shouldn't do this for quoted attributes: [@A]
140                         Type t2 = RootContext.LookupType (ec.DeclSpace, Name + "Attribute", true, Location);
141
142                         String err0616 = null;
143
144                         if (t1 != null && ! t1.IsSubclassOf (TypeManager.attribute_type)) {
145                                 t1 = null;
146                                 err0616 = "'" + Name + "': is not an attribute class";
147                         }
148                         if (t2 != null && ! t2.IsSubclassOf (TypeManager.attribute_type)) {
149                                 t2 = null;
150                                 err0616 = (err0616 != null) 
151                                         ? "Neither '" + Name + "' nor '" + Name + "Attribute' is an attribute class"
152                                         : "'" + Name + "Attribute': is not an attribute class";
153                         }
154
155                         if (t1 != null && t2 != null) {
156                                 Report.Error(1614, Location, "'" + Name + "': is ambiguous; " 
157                                              + " use either '@" + Name + "' or '" + Name + "Attribute'");
158                                 return null;
159                         }
160                         if (t1 != null)
161                                 return t1;
162                         if (t2 != null)
163                                 return t2;
164
165                         if (err0616 != null) {
166                                 Report.Error (616, Location, err0616);
167                                 return null;
168                         }
169
170                         if (complain)
171                                 Report.Error (246, Location, 
172                                               "Could not find attribute '" + Name 
173                                               + "' (are you missing a using directive or an assembly reference ?)");
174                         return null;
175                 }
176
177                 public Type ResolveType (EmitContext ec, bool complain)
178                 {
179                         if (Type == null)
180                                 Type = CheckAttributeType (ec, complain);
181                         return Type;
182                 }
183
184                 /// <summary>
185                 ///   Validates the guid string
186                 /// </summary>
187                 bool ValidateGuid (string guid)
188                 {
189                         try {
190                                 new Guid (guid);
191                                 return true;
192                         } catch {
193                                 Report.Error (647, Location, "Format of GUID is invalid: " + guid);
194                                 return false;
195                         }
196                 }
197
198                 string GetFullMemberName (string member)
199                 {
200                         return Type.FullName + '.' + member;
201                 }
202
203                 //
204                 // Given an expression, if the expression is a valid attribute-argument-expression
205                 // returns an object that can be used to encode it, or null on failure.
206                 //
207                 public static bool GetAttributeArgumentExpression (Expression e, Location loc, out object result)
208                 {
209                         if (e is Constant) {
210                                 result = ((Constant) e).GetValue ();
211                                 return true;
212                         } else if (e is TypeOf) {
213                                 result = ((TypeOf) e).TypeArg;
214                                 return true;
215                         } else if (e is ArrayCreation){
216                                 result =  ((ArrayCreation) e).EncodeAsAttribute ();
217                                 if (result != null)
218                                         return true;
219                         } else if (e is EmptyCast) {
220                                 result = e;
221                                 if (((EmptyCast) e).Child is Constant) {
222                                         result = ((Constant) ((EmptyCast)e).Child).GetValue();
223                                 }
224                                 return true;
225                         }
226
227                         result = null;
228                         Error_AttributeArgumentNotValid (loc);
229                         return false;
230                 }
231                 
232                 public CustomAttributeBuilder Resolve (EmitContext ec)
233                 {
234                         Type oldType = Type;
235                         
236                         // Sanity check.
237                         Type = CheckAttributeType (ec, true);
238                         if (oldType == null && Type == null)
239                                 return null;
240                         if (oldType != null && oldType != Type) {
241                                 Report.Error (-6, Location,
242                                               "Attribute {0} resolved to different types at different times: {1} vs. {2}",
243                                               Name, oldType, Type);
244                                 return null;
245                         }
246
247                         bool MethodImplAttr = false;
248                         bool MarshalAsAttr = false;
249                         bool GuidAttr = false;
250                         bool usage_attr = false;
251
252                         bool DoCompares = true;
253
254                         //
255                         // If we are a certain special attribute, we
256                         // set the information accordingly
257                         //
258                         
259                         if (Type == TypeManager.attribute_usage_type)
260                                 usage_attr = true;
261                         else if (Type == TypeManager.methodimpl_attr_type)
262                                 MethodImplAttr = true;
263                         else if (Type == TypeManager.marshal_as_attr_type)
264                                 MarshalAsAttr = true;
265                         else if (Type == TypeManager.guid_attr_type)
266                                 GuidAttr = true;
267                         else
268                                 DoCompares = false;
269
270                         // Now we extract the positional and named arguments
271                         
272                         ArrayList pos_args = new ArrayList ();
273                         ArrayList named_args = new ArrayList ();
274                         int pos_arg_count = 0;
275                         
276                         if (Arguments != null) {
277                                 pos_args = (ArrayList) Arguments [0];
278                                 if (pos_args != null)
279                                         pos_arg_count = pos_args.Count;
280                                 if (Arguments.Count > 1)
281                                         named_args = (ArrayList) Arguments [1];
282                         }
283
284                         pos_values = new object [pos_arg_count];
285
286                         //
287                         // First process positional arguments 
288                         //
289
290                         int i;
291                         for (i = 0; i < pos_arg_count; i++) {
292                                 Argument a = (Argument) pos_args [i];
293                                 Expression e;
294
295                                 if (!a.Resolve (ec, Location))
296                                         return null;
297
298                                 e = a.Expr;
299
300                                 object val;
301                                 if (!GetAttributeArgumentExpression (e, Location, out val))
302                                         return null;
303                                 
304                                 pos_values [i] = val;
305                                 if (DoCompares){
306                                         if (usage_attr)
307                                                 usage_attribute = new AttributeUsageAttribute ((AttributeTargets) pos_values [0]);
308                                         else if (MethodImplAttr)
309                                                 this.ImplOptions = (MethodImplOptions) pos_values [0];
310                                         else if (GuidAttr){
311                                                 //
312                                                 // we will later check the validity of the type
313                                                 //
314                                                 if (pos_values [0] is string){
315                                                         if (!ValidateGuid ((string) pos_values [0]))
316                                                                 return null;
317                                                 }
318                                                 
319                                         } else if (MarshalAsAttr)
320                                                 this.UnmanagedType =
321                                                 (System.Runtime.InteropServices.UnmanagedType) pos_values [0];
322                                 }
323                         }
324
325                         //
326                         // Now process named arguments
327                         //
328
329                         ArrayList field_infos = null;
330                         ArrayList prop_infos  = null;
331                         ArrayList field_values = null;
332                         ArrayList prop_values = null;
333
334                         if (named_args.Count > 0) {
335                                 field_infos = new ArrayList ();
336                                 prop_infos  = new ArrayList ();
337                                 field_values = new ArrayList ();
338                                 prop_values = new ArrayList ();
339                         }
340
341                         Hashtable seen_names = new Hashtable();
342                         
343                         for (i = 0; i < named_args.Count; i++) {
344                                 DictionaryEntry de = (DictionaryEntry) named_args [i];
345                                 string member_name = (string) de.Key;
346                                 Argument a  = (Argument) de.Value;
347                                 Expression e;
348
349                                 if (seen_names.Contains(member_name)) {
350                                         Report.Error(643, Location, "'" + member_name + "' duplicate named attribute argument");
351                                         return null;
352                                 }                               
353                                 seen_names.Add(member_name, 1);
354                                 
355                                 if (!a.Resolve (ec, Location))
356                                         return null;
357
358                                 Expression member = Expression.MemberLookup (
359                                         ec, Type, member_name,
360                                         MemberTypes.Field | MemberTypes.Property,
361                                         BindingFlags.Public | BindingFlags.Instance,
362                                         Location);
363
364                                 if (member == null) {
365                                         member = Expression.MemberLookup (ec, Type, member_name,
366                                                 MemberTypes.Field | MemberTypes.Property, BindingFlags.NonPublic | BindingFlags.Instance,
367                                                 Location);
368
369                                         if (member != null) {
370                                                 Report.Error_T (122, Location, GetFullMemberName (member_name));
371                                                 return null;
372                                         }
373                                 }
374
375                                 if (member == null || !(member is PropertyExpr || member is FieldExpr)) {
376                                         Error_InvalidNamedArgument (member_name);
377                                         return null;
378                                 }
379
380                                 e = a.Expr;
381                                 if (member is PropertyExpr) {
382                                         PropertyExpr pe = (PropertyExpr) member;
383                                         PropertyInfo pi = pe.PropertyInfo;
384
385                                         if (!pi.CanWrite) {
386                                                 Error_InvalidNamedArgument (member_name);
387                                                 return null;
388                                         }
389
390                                         Constant c = e as Constant;
391                                         if (c != null) {
392                                                 if (c.Type != pi.PropertyType) {
393                                                         c = Const.ChangeType (Location, c, pi.PropertyType);
394                                                         if (c == null)
395                                                                 return null;
396                                                 }
397                                                 
398                                                 object o = c.GetValue ();
399                                                 prop_values.Add (o);
400                                                 
401                                                 if (usage_attribute != null) {
402                                                         if (member_name == "AllowMultiple")
403                                                                 usage_attribute.AllowMultiple = (bool) o;
404                                                         if (member_name == "Inherited")
405                                                                 usage_attribute.Inherited = (bool) o;
406                                                 }
407                                                 
408                                         } else if (e is TypeOf) {
409                                                 prop_values.Add (((TypeOf) e).TypeArg);
410                                         } else if (e is ArrayCreation) {
411                                                 prop_values.Add (((ArrayCreation) e).EncodeAsAttribute());
412                                         } else {
413                                                 Error_AttributeArgumentNotValid (Location);
414                                                 return null;
415                                         }
416                                         
417                                         prop_infos.Add (pi);
418                                         
419                                 } else if (member is FieldExpr) {
420                                         FieldExpr fe = (FieldExpr) member;
421                                         FieldInfo fi = fe.FieldInfo;
422
423                                         if (fi.IsInitOnly) {
424                                                 Error_InvalidNamedArgument (member_name);
425                                                 return null;
426                                         }
427
428                                         //
429                                         // Handle charset here, and set the TypeAttributes
430
431                                         Constant c = e as Constant;
432                                         if (c != null) {
433                                                 if (c.Type != fi.FieldType) {
434                                                         c = Const.ChangeType (Location, c, fi.FieldType);
435                                                         if (c == null)
436                                                                 return null;
437                                                 }                                       
438                                                 
439                                                 object value = c.GetValue ();
440                                                 field_values.Add (value);
441                                         } else if (e is TypeOf) {
442                                                 field_values.Add (((TypeOf) e).TypeArg);
443                                         } else {
444                                                 Error_AttributeArgumentNotValid (Location);
445                                                 return null;
446                                         }
447                                         
448                                         field_infos.Add (fi);
449                                 }
450                         }
451
452                         Expression mg = Expression.MemberLookup (
453                                 ec, Type, ".ctor", MemberTypes.Constructor,
454                                 BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly,
455                                 Location);
456
457                         if (mg == null) {
458                                 Error_AttributeConstructorMismatch ();
459                                 return null;
460                         }
461
462                         MethodBase constructor = Invocation.OverloadResolve (
463                                 ec, (MethodGroupExpr) mg, pos_args, Location);
464
465                         if (constructor == null) {
466                                 Error_AttributeConstructorMismatch ();
467                                 return null;
468                         }
469
470                         //
471                         // Now we perform some checks on the positional args as they
472                         // cannot be null for a constructor which expects a parameter
473                         // of type object
474                         //
475
476                         ParameterData pd = Invocation.GetParameterData (constructor);
477
478                         int group_in_params_array = Int32.MaxValue;
479                         int pc = pd.Count;
480                         if (pc > 0 && pd.ParameterModifier (pc-1) == Parameter.Modifier.PARAMS)
481                                 group_in_params_array = pc-1;
482
483                         for (int j = 0; j < pos_arg_count; ++j) {
484                                 Argument a = (Argument) pos_args [j];
485                                 
486                                 if (a.Expr is NullLiteral && pd.ParameterType (j) == TypeManager.object_type) {
487                                         Error_AttributeArgumentNotValid (Location);
488                                         return null;
489                                 }
490
491                                 if (j < group_in_params_array)
492                                         continue;
493                                 
494                                 if (j == group_in_params_array){
495                                         object v = pos_values [j];
496                                         int count = pos_arg_count - j;
497
498                                         object [] array = new object [count];
499                                         pos_values [j] = array;
500                                         array [0] = v;
501                                 } else {
502                                         object [] array = (object []) pos_values [group_in_params_array];
503
504                                         array [j - group_in_params_array] = pos_values [j];
505                                 }
506                         }
507
508                         //
509                         // Adjust the size of the pos_values if it had params
510                         //
511                         if (group_in_params_array != Int32.MaxValue){
512                                 int argc = group_in_params_array+1;
513                                 object [] new_pos_values = new object [argc];
514
515                                 for (int p = 0; p < argc; p++)
516                                         new_pos_values [p] = pos_values [p];
517                                 pos_values = new_pos_values;
518                         }
519
520                         try {
521                                 if (named_args.Count > 0) {
522                                         prop_info_arr = new PropertyInfo [prop_infos.Count];
523                                         field_info_arr = new FieldInfo [field_infos.Count];
524                                         field_values_arr = new object [field_values.Count];
525                                         prop_values_arr = new object [prop_values.Count];
526
527                                         field_infos.CopyTo  (field_info_arr, 0);
528                                         field_values.CopyTo (field_values_arr, 0);
529
530                                         prop_values.CopyTo  (prop_values_arr, 0);
531                                         prop_infos.CopyTo   (prop_info_arr, 0);
532
533                                         cb = new CustomAttributeBuilder (
534                                                 (ConstructorInfo) constructor, pos_values,
535                                                 prop_info_arr, prop_values_arr,
536                                                 field_info_arr, field_values_arr);
537                                 }
538                                 else
539                                         cb = new CustomAttributeBuilder (
540                                                 (ConstructorInfo) constructor, pos_values);
541                         } catch (NullReferenceException) {
542                                 // 
543                                 // Don't know what to do here
544                                 //
545                                 Report.Warning (
546                                         -101, Location, "NullReferenceException while trying to create attribute." +
547                                         "Something's wrong!");
548                         } catch (Exception e) {
549                                 //
550                                 // Sample:
551                                 // using System.ComponentModel;
552                                 // [DefaultValue (CollectionChangeAction.Add)]
553                                 // class X { static void Main () {} }
554                                 //
555                                 Report.Warning (
556                                         -23, Location, "The compiler can not encode this attribute in .NET due to a bug in the .NET runtime. Try the Mono runtime. The exception was: " + e.Message);
557                         }
558                         
559                         return cb;
560                 }
561
562                 /// <summary>
563                 ///   Get a string containing a list of valid targets for the attribute 'attr'
564                 /// </summary>
565                 string GetValidTargets ()
566                 {
567                         StringBuilder sb = new StringBuilder ();
568                         AttributeTargets targets = GetAttributeUsage ().ValidOn;
569
570                         if ((targets & AttributeTargets.Assembly) != 0)
571                                 sb.Append ("'assembly' ");
572
573                         if ((targets & AttributeTargets.Class) != 0)
574                                 sb.Append ("'class' ");
575
576                         if ((targets & AttributeTargets.Constructor) != 0)
577                                 sb.Append ("'constructor' ");
578
579                         if ((targets & AttributeTargets.Delegate) != 0)
580                                 sb.Append ("'delegate' ");
581
582                         if ((targets & AttributeTargets.Enum) != 0)
583                                 sb.Append ("'enum' ");
584
585                         if ((targets & AttributeTargets.Event) != 0)
586                                 sb.Append ("'event' ");
587
588                         if ((targets & AttributeTargets.Field) != 0)
589                                 sb.Append ("'field' ");
590
591                         if ((targets & AttributeTargets.Interface) != 0)
592                                 sb.Append ("'interface' ");
593
594                         if ((targets & AttributeTargets.Method) != 0)
595                                 sb.Append ("'method' ");
596
597                         if ((targets & AttributeTargets.Module) != 0)
598                                 sb.Append ("'module' ");
599
600                         if ((targets & AttributeTargets.Parameter) != 0)
601                                 sb.Append ("'parameter' ");
602
603                         if ((targets & AttributeTargets.Property) != 0)
604                                 sb.Append ("'property' ");
605
606                         if ((targets & AttributeTargets.ReturnValue) != 0)
607                                 sb.Append ("'return' ");
608
609                         if ((targets & AttributeTargets.Struct) != 0)
610                                 sb.Append ("'struct' ");
611
612                         return sb.ToString ();
613
614                 }
615
616                 /// <summary>
617                 /// Returns AttributeUsage attribute for this type
618                 /// </summary>
619                 public AttributeUsageAttribute GetAttributeUsage ()
620                 {
621                         AttributeUsageAttribute ua = usage_attr_cache [Type] as AttributeUsageAttribute;
622                         if (ua != null)
623                                 return ua;
624
625                         Class attr_class = TypeManager.LookupClass (Type);
626
627                         if (attr_class == null) {
628                                 object[] usage_attr = Type.GetCustomAttributes (TypeManager.attribute_usage_type, true);
629                                 ua = (AttributeUsageAttribute)usage_attr [0];
630                                 usage_attr_cache.Add (Type, ua);
631                                 return ua;
632                         }
633                 
634                         return attr_class.AttributeUsage;
635                 }
636
637                 public string IndexerName_GetIndexerName (EmitContext ec)
638                 {
639                         if (Arguments == null || Arguments [0] == null){
640                                 Error_AttributeConstructorMismatch ();
641                                 return null;
642                         }
643                         ArrayList pos_args = (ArrayList) Arguments [0];
644                         if (pos_args.Count != 1) {
645                                 Error_AttributeConstructorMismatch ();
646                                 return null;
647                         }
648                         
649                         Argument arg = (Argument) pos_args [0];
650                         if (!arg.Resolve (ec, Location))
651                                 return null;
652                         
653                         StringConstant sc = arg.Expr as StringConstant;
654                         if (sc == null){
655                                 Error_AttributeConstructorMismatch ();
656                                 return null;
657                         }
658                         
659                         return sc.Value;
660                 }
661
662                 /// <summary>
663                 /// Returns condition of ConditionalAttribute
664                 /// </summary>
665                 public string GetConditionalAttributeValue (DeclSpace ds)
666                 {
667                         if (pos_values == null) {
668                                 EmitContext ec = new EmitContext (ds, ds, Location, null, null, 0, false);
669
670                                 // TODO: It is not neccessary to call whole Resolve (ApplyAttribute does it now) we need only ctor args.
671                                 // But because a lot of attribute class code must be rewritten will be better to wait...
672                                 Resolve (ec);
673                         }
674
675                         // Some error occurred
676                         if (pos_values [0] == null)
677                                 return null;
678
679                         return (string)pos_values [0];
680                 }
681
682                 /// <summary>
683                 /// Creates the instance of ObsoleteAttribute from this attribute instance
684                 /// </summary>
685                 public ObsoleteAttribute GetObsoleteAttribute (DeclSpace ds)
686                 {
687                         if (pos_values == null) {
688                                 EmitContext ec = new EmitContext (ds, ds, Location, null, null, 0, false);
689
690                                 // TODO: It is not neccessary to call whole Resolve (ApplyAttribute does it now) we need only ctor args.
691                                 // But because a lot of attribute class code must be rewritten will be better to wait...
692                                 Resolve (ec);
693                         }
694
695                         // Some error occurred
696                         if (pos_values == null)
697                                 return null;
698
699                         if (pos_values.Length == 0)
700                                 return new ObsoleteAttribute ();
701
702                         if (pos_values.Length == 1)
703                                 return new ObsoleteAttribute ((string)pos_values [0]);
704
705                         return new ObsoleteAttribute ((string)pos_values [0], (bool)pos_values [1]);
706                 }
707
708                 /// <summary>
709                 /// Returns value of CLSCompliantAttribute contructor parameter but because the method can be called
710                 /// before ApplyAttribute. We need to resolve the arguments.
711                 /// This situation occurs when class deps is differs from Emit order.  
712                 /// </summary>
713                 public bool GetClsCompliantAttributeValue (DeclSpace ds)
714                 {
715                         if (pos_values == null) {
716                                 EmitContext ec = new EmitContext (ds, ds, Location, null, null, 0, false);
717
718                                 // TODO: It is not neccessary to call whole Resolve (ApplyAttribute does it now) we need only ctor args.
719                                 // But because a lot of attribute class code must be rewritten will be better to wait...
720                                 Resolve (ec);
721                         }
722
723                         // Some error occurred
724                         if (pos_values [0] == null)
725                                 return false;
726
727                         return (bool)pos_values [0];
728                 }
729
730                 public object GetPositionalValue (int i)
731                 {
732                         return (pos_values == null) ? null : pos_values[i];
733                 }
734
735                 object GetFieldValue (string name)
736                 {
737                         int i;
738                         if (field_info_arr == null)
739                                 return null;
740                         i = 0;
741                         foreach (FieldInfo fi in field_info_arr) {
742                                 if (fi.Name == name)
743                                         return field_values_arr [i];
744                                 i++;
745                         }
746                         return null;
747                 }
748
749                 public UnmanagedMarshal GetMarshal ()
750                 {
751                         object o = GetFieldValue ("ArraySubType");
752                         UnmanagedType array_sub_type = o == null ? UnmanagedType.I4 : (UnmanagedType) o;
753                         
754                         switch (UnmanagedType) {
755                         case UnmanagedType.CustomMarshaler:
756                                 MethodInfo define_custom = typeof (UnmanagedMarshal).GetMethod ("DefineCustom",
757                                                                        BindingFlags.Static | BindingFlags.Public);
758                                 if (define_custom == null)
759                                         return null;
760                                 
761                                 object [] args = new object [4];
762                                 args [0] = GetFieldValue ("MarshalTypeRef");
763                                 args [1] = GetFieldValue ("MarshalCookie");
764                                 args [2] = GetFieldValue ("MarshalType");
765                                 args [3] = Guid.Empty;
766                                 return (UnmanagedMarshal) define_custom.Invoke (null, args);
767                                 
768                         case UnmanagedType.LPArray:                             
769                                 return UnmanagedMarshal.DefineLPArray (array_sub_type);
770                         
771                         case UnmanagedType.SafeArray:
772                                 return UnmanagedMarshal.DefineSafeArray (array_sub_type);
773                         
774                         case UnmanagedType.ByValArray:
775                                 return UnmanagedMarshal.DefineByValArray ((int) GetFieldValue ("SizeConst"));
776                         
777                         case UnmanagedType.ByValTStr:
778                                 return UnmanagedMarshal.DefineByValTStr ((int) GetFieldValue ("SizeConst"));
779                         
780                         default:
781                                 return UnmanagedMarshal.DefineUnmanagedMarshal (UnmanagedType);
782                         }
783                 }
784
785                 public bool IsInternalCall
786                 {
787                         get { return ImplOptions == MethodImplOptions.InternalCall; }
788                 }
789
790                 /// <summary>
791                 /// Emit attribute for Attributable symbol
792                 /// </summary>
793                 public void Emit (EmitContext ec, Attributable ias, ListDictionary emitted_attr)
794                 {
795                         CustomAttributeBuilder cb = Resolve (ec);
796                         if (cb == null)
797                                 return;
798
799                         AttributeUsageAttribute usage_attr = GetAttributeUsage ();
800                         if ((usage_attr.ValidOn & ias.AttributeTargets) == 0) {
801                                 // "Attribute '{0}' is not valid on this declaration type. It is valid on {1} declarations only.";
802                                 Report.Error_T (592, Location, Name, GetValidTargets ());
803                                 return;
804                         }
805
806                         ias.ApplyAttributeBuilder (this, cb);
807
808                         if (!usage_attr.AllowMultiple && emitted_attr.Contains (Target)) {
809                                 Report.Error (579, Location, "Duplicate '" + Name + "' attribute");
810                         }
811
812                         emitted_attr [Type] = Target;
813
814                         // Here we are testing attribute arguments for array usage (error 3016)
815                         if (ias.IsClsCompliaceRequired (ec.DeclSpace)) {
816                                 if (Arguments == null)
817                                         return;
818
819                                 ArrayList pos_args = (ArrayList) Arguments [0];
820                                 if (pos_args != null) {
821                                         foreach (Argument arg in pos_args) { 
822                                                 // Type is undefined (was error 246)
823                                                 if (arg.Type == null)
824                                                         return;
825
826                                                 if (arg.Type.IsArray) {
827                                                         Report.Error_T (3016, Location);
828                                                         return;
829                                                 }
830                                         }
831                                 }
832                         
833                                 if (Arguments.Count < 2)
834                                         return;
835                         
836                                 ArrayList named_args = (ArrayList) Arguments [1];
837                                 foreach (DictionaryEntry de in named_args) {
838                                         Argument arg  = (Argument) de.Value;
839
840                                         // Type is undefined (was error 246)
841                                         if (arg.Type == null)
842                                                 return;
843
844                                         if (arg.Type.IsArray) {
845                                                 Report.Error_T (3016, Location);
846                                                 return;
847                                         }
848                                 }
849                         }
850                 }
851
852                 public object GetValue (EmitContext ec, Constant c, Type target)
853                 {
854                         if (Convert.ImplicitConversionExists (ec, c, target))
855                                 return c.GetValue ();
856
857                         Convert.Error_CannotImplicitConversion (Location, c.Type, target);
858                         return null;
859                 }
860                 
861                 public MethodBuilder DefinePInvokeMethod (EmitContext ec, TypeBuilder builder, string name,
862                                                           MethodAttributes flags, Type ret_type, Type [] param_types)
863                 {
864                         //
865                         // We extract from the attribute the information we need 
866                         //
867
868                         if (Arguments == null) {
869                                 Console.WriteLine ("Internal error : this is not supposed to happen !");
870                                 return null;
871                         }
872
873                         ResolveType (ec, true);
874                         if (Type == null)
875                                 return null;
876                         
877                         ArrayList named_args = new ArrayList ();
878                         
879                         ArrayList pos_args = (ArrayList) Arguments [0];
880                         if (Arguments.Count > 1)
881                                 named_args = (ArrayList) Arguments [1];
882                         
883
884                         string dll_name = null;
885                         
886                         Argument tmp = (Argument) pos_args [0];
887
888                         if (!tmp.Resolve (ec, Location))
889                                 return null;
890                         
891                         if (tmp.Expr is Constant)
892                                 dll_name = (string) ((Constant) tmp.Expr).GetValue ();
893                         else { 
894                                 Error_AttributeArgumentNotValid (Location);
895                                 return null;
896                         }
897
898                         // Now we process the named arguments
899                         CallingConvention cc = CallingConvention.Winapi;
900                         CharSet charset = CharSet.Ansi;
901                         bool preserve_sig = true;
902 #if FIXME
903                         bool exact_spelling = false;
904 #endif
905                         bool set_last_err = false;
906                         string entry_point = null;
907
908                         for (int i = 0; i < named_args.Count; i++) {
909
910                                 DictionaryEntry de = (DictionaryEntry) named_args [i];
911
912                                 string member_name = (string) de.Key;
913                                 Argument a  = (Argument) de.Value;
914
915                                 if (!a.Resolve (ec, Location))
916                                         return null;
917
918                                 Expression member = Expression.MemberLookup (
919                                         ec, Type, member_name, 
920                                         MemberTypes.Field | MemberTypes.Property,
921                                         BindingFlags.Public | BindingFlags.Instance,
922                                         Location);
923
924                                 if (member == null || !(member is FieldExpr)) {
925                                         Error_InvalidNamedArgument (member_name);
926                                         return null;
927                                 }
928
929                                 if (member is FieldExpr) {
930                                         FieldExpr fe = (FieldExpr) member;
931                                         FieldInfo fi = fe.FieldInfo;
932
933                                         if (fi.IsInitOnly) {
934                                                 Error_InvalidNamedArgument (member_name);
935                                                 return null;
936                                         }
937
938                                         if (a.Expr is Constant) {
939                                                 Constant c = (Constant) a.Expr;
940
941                                                 try {
942                                                         if (member_name == "CallingConvention"){
943                                                                 object val = GetValue (ec, c, typeof (CallingConvention));
944                                                                 if (val == null)
945                                                                         return null;
946                                                                 cc = (CallingConvention) val;
947                                                         } else if (member_name == "CharSet"){
948                                                                 charset = (CharSet) c.GetValue ();
949                                                         } else if (member_name == "EntryPoint")
950                                                                 entry_point = (string) c.GetValue ();
951                                                         else if (member_name == "SetLastError")
952                                                                 set_last_err = (bool) c.GetValue ();
953 #if FIXME
954                                                         else if (member_name == "ExactSpelling")
955                                                                 exact_spelling = (bool) c.GetValue ();
956 #endif
957                                                         else if (member_name == "PreserveSig")
958                                                                 preserve_sig = (bool) c.GetValue ();
959                                                 } catch (InvalidCastException){
960                                                         Error_InvalidNamedArgument (member_name);
961                                                         Error_AttributeArgumentNotValid (Location);
962                                                 }
963                                         } else { 
964                                                 Error_AttributeArgumentNotValid (Location);
965                                                 return null;
966                                         }
967                                         
968                                 }
969                         }
970
971                         if (entry_point == null)
972                                 entry_point = name;
973                         if (set_last_err)
974                                 charset = (CharSet)((int)charset | 0x40);
975                         
976                         MethodBuilder mb = builder.DefinePInvokeMethod (
977                                 name, dll_name, entry_point, flags | MethodAttributes.HideBySig,
978                                 CallingConventions.Standard,
979                                 ret_type,
980                                 param_types,
981                                 cc,
982                                 charset);
983
984                         if (preserve_sig)
985                                 mb.SetImplementationFlags (MethodImplAttributes.PreserveSig);
986                         
987                         return mb;
988                 }
989
990                 private Expression GetValue () 
991                 {
992                         if ((Arguments == null) || (Arguments.Count < 1))
993                                 return null;
994                         ArrayList al = (ArrayList) Arguments [0];
995                         if ((al == null) || (al.Count < 1))
996                                 return null;
997                         Argument arg = (Argument) al [0];
998                         if ((arg == null) || (arg.Expr == null))
999                                 return null;
1000                         return arg.Expr;
1001                 }
1002
1003                 public string GetString () 
1004                 {
1005                         Expression e = GetValue ();
1006                         if (e is StringLiteral)
1007                                 return (e as StringLiteral).Value;
1008                         return null;
1009                 }
1010
1011                 public bool GetBoolean () 
1012                 {
1013                         Expression e = GetValue ();
1014                         if (e is BoolLiteral)
1015                                 return (e as BoolLiteral).Value;
1016                         return false;
1017                 }
1018         }
1019         
1020
1021         /// <summary>
1022         /// For global attributes (assembly, module) we need special handling.
1023         /// Attributes can be located in the several files
1024         /// </summary>
1025         public class GlobalAttribute: Attribute
1026         {
1027                 public readonly NamespaceEntry ns;
1028
1029                 public GlobalAttribute (TypeContainer container, string target, string name, ArrayList args, Location loc):
1030                         base (target, name, args, loc)
1031                 {
1032                         ns = container.NamespaceEntry;
1033                 }
1034
1035                 protected override Type CheckAttributeType (EmitContext ec, bool complain)
1036                 {
1037                         NamespaceEntry old = ec.DeclSpace.NamespaceEntry;
1038                         if (old == null || old.NS == null || old.NS == Namespace.Root) 
1039                                 ec.DeclSpace.NamespaceEntry = ns;
1040                         return base.CheckAttributeType (ec, complain);
1041                 }
1042         }
1043
1044         public class Attributes {
1045                 public ArrayList Attrs;
1046
1047                 public Attributes (Attribute a)
1048                 {
1049                         Attrs = new ArrayList ();
1050                         Attrs.Add (a);
1051                 }
1052
1053                 public Attributes (ArrayList attrs)
1054                 {
1055                         Attrs = attrs;
1056                 }
1057
1058                 public void AddAttributes (ArrayList attrs)
1059                 {
1060                         Attrs.AddRange (attrs);
1061                 }
1062
1063                 /// <summary>
1064                 /// Checks whether attribute target is valid for the current element
1065                 /// </summary>
1066                 public void CheckTargets (string[] possible_targets)
1067                 {
1068                         foreach (Attribute a in Attrs) {
1069                                 if (a.Target == null) {
1070                                         a.Target = possible_targets [0];
1071                                         continue;
1072                                 }
1073
1074                                 if (((IList) possible_targets).Contains (a.Target))
1075                                         continue;
1076
1077                                 StringBuilder sb = new StringBuilder ();
1078                                 foreach (string s in possible_targets) {
1079                                         sb.Append (s);
1080                                         sb.Append (", ");
1081                                 }
1082                                 sb.Remove (sb.Length - 2, 2);
1083                                 Report.Error_T (657, a.Location, a.Target, sb.ToString ());
1084                         }
1085                 }
1086
1087                 private Attribute Search (Type t, EmitContext ec, bool complain)
1088                 {
1089                         foreach (Attribute a in Attrs) {
1090                                 if (a.ResolveType (ec, false) == t)
1091                                         return a;
1092                         }
1093                         return null;
1094                 }
1095
1096                 public Attribute Search (Type t, EmitContext ec)
1097                 {
1098                         return Search (t, ec, true);
1099                 }
1100
1101                 /// <summary>
1102                 /// Returns all attributes of type 't'. Use it when attribute is AllowMultiple = true
1103                 /// </summary>
1104                 public Attribute[] SearchMulti (Type t, EmitContext ec)
1105                 {
1106                         ArrayList ar = null;
1107
1108                         foreach (Attribute a in Attrs) {
1109                                 if (a.ResolveType (ec, false) == t) {
1110                                         if (ar == null)
1111                                                 ar = new ArrayList ();
1112                                         ar.Add (a);
1113                                 }
1114                         }
1115
1116                         return ar == null ? null : ar.ToArray (typeof (Attribute)) as Attribute[];
1117                 }
1118
1119                 public void Emit (EmitContext ec, Attributable ias)
1120                 {
1121                         ListDictionary ld = new ListDictionary ();
1122
1123                         foreach (Attribute a in Attrs)
1124                                 a.Emit (ec, ias, ld);
1125                 }
1126
1127                 public bool Contains (Type t, EmitContext ec)
1128                 {
1129                         return Search (t, ec) != null;
1130                 }
1131
1132                 public Attribute GetClsCompliantAttribute (EmitContext ec)
1133                 {
1134                         return Search (TypeManager.cls_compliant_attribute_type, ec, false);
1135                 }
1136
1137                 /// <summary>
1138                 /// Pulls the IndexerName attribute from an Indexer if it exists.
1139                 /// </summary>
1140                 public string ScanForIndexerName (EmitContext ec)
1141                 {
1142                         Attribute a = Search (TypeManager.indexer_name_type, ec);
1143                         if (a == null)
1144                                 return null;
1145
1146                         // Remove the attribute from the list
1147                         //TODO: It is very close to hack and it can crash here
1148                         Attrs.Remove (a);
1149
1150                         return a.IndexerName_GetIndexerName (ec);
1151                 }
1152
1153         }
1154
1155         /// <summary>
1156         /// Helper class for attribute verification routine.
1157         /// </summary>
1158         sealed class AttributeTester
1159         {
1160                 static PtrHashtable analyzed_types = new PtrHashtable ();
1161                 static PtrHashtable analyzed_types_obsolete = new PtrHashtable ();
1162                 static PtrHashtable analyzed_member_obsolete = new PtrHashtable ();
1163                 static PtrHashtable analyzed_method_excluded = new PtrHashtable ();
1164
1165                 private AttributeTester ()
1166                 {
1167                 }
1168
1169                 /// <summary>
1170                 /// Returns true if parameters of two compared methods are CLS-Compliant.
1171                 /// It tests differing only in ref or out, or in array rank.
1172                 /// </summary>
1173                 public static bool AreOverloadedMethodParamsClsCompliant (Type[] types_a, Type[] types_b) 
1174                 {
1175                         if (types_a == null || types_b == null)
1176                                 return true;
1177
1178                         if (types_a.Length != types_b.Length)
1179                                 return true;
1180
1181                         for (int i = 0; i < types_b.Length; ++i) {
1182                                 Type aType = types_a [i];
1183                                 Type bType = types_b [i];
1184
1185                                 if (aType.IsArray && bType.IsArray && aType.GetArrayRank () != bType.GetArrayRank () && aType.GetElementType () == bType.GetElementType ()) {
1186                                         return false;
1187                                 }
1188
1189                                 Type aBaseType = aType;
1190                                 bool is_either_ref_or_out = false;
1191
1192                                 if (aType.IsByRef || aType.IsPointer) {
1193                                         aBaseType = aType.GetElementType ();
1194                                         is_either_ref_or_out = true;
1195                                 }
1196
1197                                 Type bBaseType = bType;
1198                                 if (bType.IsByRef || bType.IsPointer) 
1199                                 {
1200                                         bBaseType = bType.GetElementType ();
1201                                         is_either_ref_or_out = !is_either_ref_or_out;
1202                                 }
1203
1204                                 if (aBaseType != bBaseType)
1205                                         continue;
1206
1207                                 if (is_either_ref_or_out)
1208                                         return false;
1209                         }
1210                         return true;
1211                 }
1212
1213                 /// <summary>
1214                 /// Goes through all parameters and test if they are CLS-Compliant.
1215                 /// </summary>
1216                 public static bool AreParametersCompliant (Parameter[] fixedParameters, Location loc)
1217                 {
1218                         if (fixedParameters == null)
1219                                 return true;
1220
1221                         foreach (Parameter arg in fixedParameters) {
1222                                 if (!AttributeTester.IsClsCompliant (arg.ParameterType)) {
1223                                         Report.Error_T (3001, loc, arg.GetSignatureForError ());
1224                                         return false;
1225                                 }
1226                         }
1227                         return true;
1228                 }
1229
1230
1231                 /// <summary>
1232                 /// This method tests the CLS compliance of external types. It doesn't test type visibility.
1233                 /// </summary>
1234                 public static bool IsClsCompliant (Type type) 
1235                 {
1236                         if (type == null)
1237                                 return true;
1238
1239                         object type_compliance = analyzed_types[type];
1240                         if (type_compliance != null)
1241                                 return type_compliance == TRUE;
1242
1243                         if (type.IsPointer) {
1244                                 analyzed_types.Add (type, null);
1245                                 return false;
1246                         }
1247
1248                         bool result;
1249                         if (type.IsArray || type.IsByRef)       {
1250                                 result = IsClsCompliant (TypeManager.GetElementType (type));
1251                         } else {
1252                                 result = AnalyzeTypeCompliance (type);
1253                         }
1254                         analyzed_types.Add (type, result ? TRUE : FALSE);
1255                         return result;
1256                 }                
1257
1258                 static object TRUE = new object ();
1259                 static object FALSE = new object ();
1260
1261                 /// <summary>
1262                 /// Non-hierarchical CLS Compliance analyzer
1263                 /// </summary>
1264                 public static bool IsComplianceRequired (MemberInfo mi, DeclSpace ds)
1265                 {
1266                         DeclSpace temp_ds = TypeManager.LookupDeclSpace (mi.DeclaringType);
1267
1268                         // Type is external, we can get attribute directly
1269                         if (temp_ds == null) {
1270                                 object[] cls_attribute = mi.GetCustomAttributes (TypeManager.cls_compliant_attribute_type, false);
1271                                 return (cls_attribute.Length == 1 && ((CLSCompliantAttribute)cls_attribute[0]).IsCompliant);
1272                         }
1273
1274                         string tmp_name;
1275                         // Interface doesn't store full name
1276                         if (temp_ds is Interface)
1277                                 tmp_name = mi.Name;
1278                         else
1279                                 tmp_name = String.Concat (temp_ds.Name, ".", mi.Name);
1280
1281                         MemberCore mc = temp_ds.GetDefinition (tmp_name) as MemberCore;
1282                         return mc.IsClsCompliaceRequired (ds);
1283                 }
1284
1285                 public static void VerifyModulesClsCompliance ()
1286                 {
1287                         Module[] modules = TypeManager.Modules;
1288                         if (modules == null)
1289                                 return;
1290
1291                         // The first module is generated assembly
1292                         for (int i = 1; i < modules.Length; ++i) {
1293                                 Module module = modules [i];
1294                                 if (!IsClsCompliant (module)) {
1295                                         Report.Error_T (3013, module.Name);
1296                                         return;
1297                                 }
1298                         }
1299                 }
1300
1301                 static bool IsClsCompliant (ICustomAttributeProvider attribute_provider) 
1302                 {
1303                         object[] CompliantAttribute = attribute_provider.GetCustomAttributes (TypeManager.cls_compliant_attribute_type, false);
1304                         if (CompliantAttribute.Length == 0)
1305                                 return false;
1306
1307                         return ((CLSCompliantAttribute)CompliantAttribute[0]).IsCompliant;
1308                 }
1309
1310                 static bool AnalyzeTypeCompliance (Type type)
1311                 {
1312                         DeclSpace ds = TypeManager.LookupDeclSpace (type);
1313                         if (ds != null) {
1314                                 return ds.IsClsCompliaceRequired (ds.Parent);
1315                         }
1316
1317                         object[] CompliantAttribute = type.GetCustomAttributes (TypeManager.cls_compliant_attribute_type, false);
1318                         if (CompliantAttribute.Length == 0) 
1319                                 return IsClsCompliant (type.Assembly);
1320
1321                         return ((CLSCompliantAttribute)CompliantAttribute[0]).IsCompliant;
1322                 }
1323
1324                 /// <summary>
1325                 /// Returns instance of ObsoleteAttribute when type is obsolete
1326                 /// </summary>
1327                 public static ObsoleteAttribute GetObsoleteAttribute (Type type)
1328                 {
1329                         object type_obsolete = analyzed_types_obsolete [type];
1330                         if (type_obsolete == FALSE)
1331                                 return null;
1332
1333                         if (type_obsolete != null)
1334                                 return (ObsoleteAttribute)type_obsolete;
1335
1336                         ObsoleteAttribute result = null;
1337                         if (type.IsByRef || type.IsArray || type.IsPointer) {
1338                                 result = GetObsoleteAttribute (TypeManager.GetElementType (type));
1339                         } else {
1340                                 DeclSpace type_ds = TypeManager.LookupDeclSpace (type);
1341
1342                                 // Type is external, we can get attribute directly
1343                                 if (type_ds == null) {
1344                                         object[] attribute = type.GetCustomAttributes (TypeManager.obsolete_attribute_type, false);
1345                                         if (attribute.Length == 1)
1346                                                 result = (ObsoleteAttribute)attribute [0];
1347                                 } else {
1348                                         result = type_ds.GetObsoleteAttribute (type_ds);
1349                                 }
1350                         }
1351
1352                         analyzed_types_obsolete.Add (type, result == null ? FALSE : result);
1353                         return result;
1354                 }
1355
1356                 /// <summary>
1357                 /// Returns instance of ObsoleteAttribute when method is obsolete
1358                 /// </summary>
1359                 public static ObsoleteAttribute GetMethodObsoleteAttribute (MethodBase mb)
1360                 {
1361                         IMethodData mc = TypeManager.GetMethod (mb);
1362                         if (mc != null) 
1363                                 return mc.GetObsoleteAttribute ();
1364
1365                         // TODO: remove after Constructor will be ready for IMethodData
1366                         if (mb.DeclaringType is TypeBuilder)
1367                                 return null;
1368
1369                         return GetMemberObsoleteAttribute (mb);
1370                 }
1371
1372                 /// <summary>
1373                 /// Returns instance of ObsoleteAttribute when member is obsolete
1374                 /// </summary>
1375                 public static ObsoleteAttribute GetMemberObsoleteAttribute (MemberInfo mi)
1376                 {
1377                         object type_obsolete = analyzed_member_obsolete [mi];
1378                         if (type_obsolete == FALSE)
1379                                 return null;
1380
1381                         if (type_obsolete != null)
1382                                 return (ObsoleteAttribute)type_obsolete;
1383
1384                         ObsoleteAttribute oa = System.Attribute.GetCustomAttribute (mi, TypeManager.obsolete_attribute_type, false) as ObsoleteAttribute;
1385                         analyzed_member_obsolete.Add (mi, oa == null ? FALSE : oa);
1386                         return oa;
1387                 }
1388
1389                 /// <summary>
1390                 /// Common method for Obsolete error/warning reporting.
1391                 /// </summary>
1392                 public static void Report_ObsoleteMessage (ObsoleteAttribute oa, string member, Location loc)
1393                 {
1394                         if (oa.IsError) {
1395                                 Report.Error_T (619, loc, member, oa.Message);
1396                                 return;
1397                         }
1398
1399                         if (oa.Message == null) {
1400                                 Report.Warning_T (612, loc, member);
1401                                 return;
1402                         }
1403                         Report.Warning_T (618, loc, member, oa.Message);
1404                 }
1405
1406                 public static bool IsConditionalMethodExcluded (MethodBase mb)
1407                 {
1408                         object excluded = analyzed_method_excluded [mb];
1409                         if (excluded != null)
1410                                 return excluded == TRUE ? true : false;
1411                         
1412                         ConditionalAttribute[] attrs = mb.GetCustomAttributes (TypeManager.conditional_attribute_type, true) as ConditionalAttribute[];
1413                         if (attrs.Length == 0) {
1414                                 analyzed_method_excluded.Add (mb, FALSE);
1415                                 return false;
1416                         }
1417
1418                         foreach (ConditionalAttribute a in attrs) {
1419                                 if (RootContext.AllDefines.Contains (a.ConditionString)) {
1420                                         analyzed_method_excluded.Add (mb, FALSE);
1421                                         return false;
1422                                 }
1423                         }
1424                         analyzed_method_excluded.Add (mb, TRUE);
1425                         return true;
1426                 }
1427         }
1428 }