2003-07-17 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mcs / mcs / literal.cs
1 //
2 // literal.cs: Literal representation for the IL tree.
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) 2001 Ximian, Inc.
8 //
9 //
10 // Notice that during parsing we create objects of type Literal, but the
11 // types are not loaded (thats why the Resolve method has to assign the
12 // type at that point).
13 //
14 // Literals differ from the constants in that we know we encountered them
15 // as a literal in the source code (and some extra rules apply there) and
16 // they have to be resolved (since during parsing we have not loaded the
17 // types yet) while constants are created only after types have been loaded
18 // and are fully resolved when born.
19 //
20
21 using System;
22 using System.Reflection;
23 using System.Reflection.Emit;
24
25 namespace Mono.CSharp {
26
27         public class NullLiteral : Constant {
28                 public static readonly NullLiteral Null;
29
30                 static NullLiteral ()
31                 {
32                         Null = new NullLiteral ();
33                 }
34                         
35                 public NullLiteral ()
36                 {
37                         eclass = ExprClass.Value;
38                 }
39                 
40                 override public string AsString ()
41                 {
42                         return "null";
43                 }
44
45                 public override object GetValue ()
46                 {
47                         return null;
48                 }
49
50                 public override Expression DoResolve (EmitContext ec)
51                 {
52                         type = TypeManager.object_type;
53                         return this;
54                 }
55
56                 public override void Emit (EmitContext ec)
57                 {
58                         ec.ig.Emit (OpCodes.Ldnull);
59                 }
60         }
61
62         //
63         // A null literal in a pointer context
64         //
65         public class NullPointer : NullLiteral {
66                 public new static readonly NullLiteral Null;
67
68                 static NullPointer ()
69                 {
70                         Null = new NullPointer ();
71                 }
72                 
73                 public override void Emit (EmitContext ec)
74                 {
75                         ILGenerator ig = ec.ig;
76                                 
77                         ig.Emit (OpCodes.Ldc_I4_0);
78                         ig.Emit (OpCodes.Conv_U);
79                 }
80         }
81
82         public class BoolLiteral : BoolConstant {
83                 public BoolLiteral (bool val) : base (val)
84                 {
85                 }
86
87                 public override Expression DoResolve (EmitContext ec)
88                 {
89                         type = TypeManager.bool_type;
90                         return this;
91                 }
92         }
93
94         public class CharLiteral : CharConstant {
95                 public CharLiteral (char c) : base (c)
96                 {
97                 }
98
99                 public override Expression DoResolve (EmitContext ec)
100                 {
101                         type = TypeManager.char_type;
102                         return this;
103                 }
104         }
105
106         public class IntLiteral : IntConstant {
107                 public IntLiteral (int l) : base (l)
108                 {
109                 }
110
111                 public override Expression DoResolve (EmitContext ec)
112                 {
113                         type = TypeManager.int32_type;
114                         return this;
115                 }
116         }
117
118         public class UIntLiteral : UIntConstant {
119                 public UIntLiteral (uint l) : base (l)
120                 {
121                 }
122
123                 public override Expression DoResolve (EmitContext ec)
124                 {
125                         type = TypeManager.uint32_type;
126                         return this;
127                 }
128         }
129         
130         public class LongLiteral : LongConstant {
131                 public LongLiteral (long l) : base (l)
132                 {
133                 }
134
135                 public override Expression DoResolve (EmitContext ec)
136                 {
137                         type = TypeManager.int64_type;
138
139                         return this;
140                 }
141         }
142
143         public class ULongLiteral : ULongConstant {
144                 public ULongLiteral (ulong l) : base (l)
145                 {
146                 }
147
148                 public override Expression DoResolve (EmitContext ec)
149                 {
150                         type = TypeManager.uint64_type;
151                         return this;
152                 }
153         }
154         
155         public class FloatLiteral : FloatConstant {
156                 
157                 public FloatLiteral (float f) : base (f)
158                 {
159                 }
160
161                 public override Expression DoResolve (EmitContext ec)
162                 {
163                         type = TypeManager.float_type;
164                         return this;
165                 }
166         }
167
168         public class DoubleLiteral : DoubleConstant {
169                 public DoubleLiteral (double d) : base (d)
170                 {
171                 }
172
173                 public override Expression DoResolve (EmitContext ec)
174                 {
175                         type = TypeManager.double_type;
176
177                         return this;
178                 }
179         }
180
181         public class DecimalLiteral : DecimalConstant {
182                 public DecimalLiteral (decimal d) : base (d)
183                 {
184                 }
185
186                 public override Expression DoResolve (EmitContext ec)
187                 {
188                         type = TypeManager.decimal_type;
189                         return this;
190                 }
191         }
192
193         public class StringLiteral : StringConstant {
194                 public StringLiteral (string s) : base (s)
195                 {
196                 }
197
198                 public override Expression DoResolve (EmitContext ec)
199                 {
200                         type = TypeManager.string_type;
201
202                         return this;
203                 }
204         }
205 }