* IClassRef.cs: Add method for making types into value types
[mono.git] / mcs / ilasm / codegen / TypeRef.cs
1 //
2 // Mono.ILASM.TypeRef
3 //
4 // Author(s):
5 //  Jackson Harper (Jackson@LatitudeGeo.com)
6 //
7 // (C) 2003 Jackson Harper, All rights reserved
8 //
9
10 using System;
11 using System.Collections;
12
13 namespace Mono.ILASM {
14
15         /// <summary>
16         /// Reference to a type in the module being compiled.
17         /// </summary>
18         public class TypeRef : ModifiableType, IClassRef {
19
20                 private enum ConversionMethod {
21                         MakeArray,
22                         MakeBoundArray,
23                         MakeManagedPointer,
24                         MakeUnmanagedPointer,
25                         MakeCustomModified
26                 }
27
28                 private Location location;
29                 private string full_name;
30                 private PEAPI.Type type;
31                 private bool is_valuetype;
32
33                 private bool is_resolved;
34
35                 public static readonly TypeRef Ellipsis = new TypeRef ("ELLIPSIS", false, null);
36                 public static readonly TypeRef Any = new TypeRef ("any", false, null);
37
38                 public TypeRef (string full_name, bool is_valuetype, Location location)
39                 {
40                         this.full_name = full_name;
41                         this.location = location;
42                         this.is_valuetype = is_valuetype;
43                         is_resolved = false;
44                 }
45
46                 public string FullName {
47                         get { return full_name; }
48                 }
49
50                 public PEAPI.Type PeapiType {
51                         get { return type; }
52                 }
53
54                 public PEAPI.Class PeapiClass {
55                         get { return type as PEAPI.Class; }
56                 }
57
58                 public bool IsResolved {
59                         get { return is_resolved; }
60                 }
61
62                 public void MakeValueClass ()
63                 {
64                         is_valuetype = true;
65                 }
66
67                 public  IMethodRef GetMethodRef (ITypeRef ret_type,
68                         PEAPI.CallConv call_conv, string name, ITypeRef[] param)
69                 {
70                         return new MethodRef (this, call_conv, ret_type, name, param);
71                 }
72
73                 public IFieldRef GetFieldRef (ITypeRef ret_type, string name)
74                 {
75                         return new FieldRef (this, ret_type, name);
76                 }
77
78                 public void Resolve (CodeGen code_gen)
79                 {
80                         if (is_resolved)
81                                 return;
82
83                         PEAPI.Type base_type;
84
85                         base_type = code_gen.TypeManager.GetPeapiType (full_name);
86                         type = Modify (code_gen, base_type, ref full_name);
87
88                         is_resolved = true;
89                 }
90
91                 public IClassRef AsClassRef (CodeGen code_gen)
92                 {
93                         return this;
94                 }
95
96                 public override string ToString ()
97                 {
98                         return FullName;
99                 }
100
101         }
102
103 }
104