annotate trunk/src/dil/semantic/Types.d @ 692:d33895f679eb

Tidied up the class Scope a bit.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Tue, 22 Jan 2008 18:32:39 +0100
parents 839c0c61af2b
children 8e252b7c1459
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
512
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
1 /++
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
2 Author: Aziz Köksal
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
3 License: GPL3
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
4 +/
617
0749f30ef2d0 Added member 'EnumType type' to class Enum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 615
diff changeset
5 module dil.semantic.Types;
512
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
6
617
0749f30ef2d0 Added member 'EnumType type' to class Enum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 615
diff changeset
7 import dil.semantic.Symbols;
595
f6e5bff58b10 Moved dil.TypesEnum to dil.semantic.TypesEnum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 589
diff changeset
8 import dil.semantic.TypesEnum;
600
041eae272362 Moved dil.Identifier to dil.lexer.Identifier.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 595
diff changeset
9 import dil.lexer.Identifier;
525
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
10 import dil.CompilerInfo;
512
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
11
615
a05457530ac2 Added member ident to class Symbol.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 600
diff changeset
12 abstract class Type/* : Symbol*/
512
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
13 {
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
14 Type next;
536
0781ac288537 Added some semantic() methods.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 527
diff changeset
15 TYP tid; /// The ID of the type.
522
812f497b20dc Added module dil.TypesEnum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 512
diff changeset
16
812f497b20dc Added module dil.TypesEnum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 512
diff changeset
17 this(){}
812f497b20dc Added module dil.TypesEnum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 512
diff changeset
18
536
0781ac288537 Added some semantic() methods.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 527
diff changeset
19 this(Type next, TYP tid)
522
812f497b20dc Added module dil.TypesEnum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 512
diff changeset
20 {
615
a05457530ac2 Added member ident to class Symbol.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 600
diff changeset
21 // this.sid = SYM.Type;
560
709e223a8eb9 Added code related to symbols.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 548
diff changeset
22
522
812f497b20dc Added module dil.TypesEnum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 512
diff changeset
23 this.next = next;
536
0781ac288537 Added some semantic() methods.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 527
diff changeset
24 this.tid = tid;
522
812f497b20dc Added module dil.TypesEnum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 512
diff changeset
25 }
525
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
26
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
27 TypePointer ptrTo()
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
28 {
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
29 return new TypePointer(this);
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
30 }
527
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
31
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
32 /// Get byte size of this type.
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
33 final size_t sizeOf()
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
34 {
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
35 return MITable.getSize(this);
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
36 }
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
37
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
38 /// Size is not in MITable. Find out via virtual method.
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
39 size_t sizeOf_()
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
40 {
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
41 return sizeOf();
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
42 }
512
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
43 }
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
44
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
45 class TypeBasic : Type
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
46 {
525
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
47 this(TYP typ)
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
48 {
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
49 super(null, typ);
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
50 }
512
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
51 }
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
52
692
d33895f679eb Tidied up the class Scope a bit.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 688
diff changeset
53 /// Dynamic array.
512
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
54 class TypeDArray : Type
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
55 {
526
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
56 this(Type next)
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
57 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
58 super(next, TYP.DArray);
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
59 }
512
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
60 }
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
61
692
d33895f679eb Tidied up the class Scope a bit.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 688
diff changeset
62 /// Associative array.
512
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
63 class TypeAArray : Type
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
64 {
526
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
65 Type keyType;
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
66 this(Type next, Type keyType)
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
67 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
68 super(next, TYP.AArray);
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
69 this.keyType = keyType;
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
70 }
512
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
71 }
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
72
692
d33895f679eb Tidied up the class Scope a bit.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 688
diff changeset
73 /// Static array.
522
812f497b20dc Added module dil.TypesEnum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 512
diff changeset
74 class TypeSArray : Type
812f497b20dc Added module dil.TypesEnum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 512
diff changeset
75 {
526
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
76 size_t dimension;
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
77 this(Type next, size_t dimension)
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
78 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
79 super(next, TYP.SArray);
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
80 this.dimension = dimension;
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
81 }
522
812f497b20dc Added module dil.TypesEnum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 512
diff changeset
82 }
812f497b20dc Added module dil.TypesEnum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 512
diff changeset
83
512
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
84 class TypePointer : Type
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
85 {
525
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
86 this(Type next)
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
87 {
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
88 super(next, TYP.Pointer);
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
89 }
512
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
90 }
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
91
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
92 class TypeReference : Type
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
93 {
526
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
94 this(Type next)
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
95 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
96 super(next, TYP.Reference);
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
97 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
98 }
512
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
99
688
839c0c61af2b Renamed some semantic types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 617
diff changeset
100 class TypeEnum : Type
526
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
101 {
617
0749f30ef2d0 Added member 'EnumType type' to class Enum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 615
diff changeset
102 Enum enumSymbol;
0749f30ef2d0 Added member 'EnumType type' to class Enum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 615
diff changeset
103 this(Enum enumSymbol, Type baseType)
526
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
104 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
105 super(baseType, TYP.Enum);
617
0749f30ef2d0 Added member 'EnumType type' to class Enum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 615
diff changeset
106 this.enumSymbol = enumSymbol;
526
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
107 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
108
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
109 Type baseType()
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
110 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
111 return next;
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
112 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
113 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
114
688
839c0c61af2b Renamed some semantic types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 617
diff changeset
115 class TypeStruct : Type
526
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
116 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
117 this()
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
118 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
119 super(null, TYP.Struct);
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
120 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
121 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
122
688
839c0c61af2b Renamed some semantic types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 617
diff changeset
123 class TypeClass : Type
526
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
124 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
125 this()
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
126 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
127 super(null, TYP.Class);
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
128 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
129 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
130
688
839c0c61af2b Renamed some semantic types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 617
diff changeset
131 class TypeTypedef : Type
526
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
132 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
133 this(Type next)
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
134 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
135 super(next, TYP.Typedef);
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
136 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
137 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
138
688
839c0c61af2b Renamed some semantic types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 617
diff changeset
139 class TypeFunction : Type
526
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
140 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
141 this(Type next)
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
142 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
143 super(next, TYP.Function);
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
144 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
145 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
146
688
839c0c61af2b Renamed some semantic types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 617
diff changeset
147 class TypeDelegate : Type
526
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
148 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
149 this(Type next)
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
150 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
151 super(next, TYP.Delegate);
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
152 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
153 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
154
688
839c0c61af2b Renamed some semantic types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 617
diff changeset
155 class TypeIdentifier : Type
526
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
156 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
157 Identifier* ident;
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
158 this(Identifier* ident)
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
159 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
160 super(null, TYP.Identifier);
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
161 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
162 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
163
688
839c0c61af2b Renamed some semantic types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 617
diff changeset
164 class TypeTemplInstance : Type
526
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
165 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
166 this()
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
167 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
168 super(null, TYP.TInstance);
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
169 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
170 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
171
688
839c0c61af2b Renamed some semantic types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 617
diff changeset
172 class TypeTuple : Type
526
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
173 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
174 this(Type next)
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
175 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
176 super(next, TYP.Tuple);
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
177 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
178 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
179
688
839c0c61af2b Renamed some semantic types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 617
diff changeset
180 class TypeConst : Type
526
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
181 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
182 this(Type next)
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
183 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
184 super(next, TYP.Const);
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
185 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
186 }
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
187
688
839c0c61af2b Renamed some semantic types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 617
diff changeset
188 class TypeInvariant : Type
526
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
189 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
190 this(Type next)
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
191 {
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
192 super(next, TYP.Const);
ee22dc0ba82c Added more Type classes to dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 525
diff changeset
193 }
512
112c17300069 Added module dil.TypeSystem.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
194 }
522
812f497b20dc Added module dil.TypesEnum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 512
diff changeset
195
548
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
196 /// Represents a value related to a type.
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
197 union Value
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
198 {
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
199 void* pvoid;
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
200 bool bool_;
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
201 dchar dchar_;
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
202 long long_;
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
203 ulong ulong_;
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
204 int int_;
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
205 uint uint_;
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
206 float float_;
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
207 double double_;
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
208 real real_;
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
209 creal creal_;
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
210 }
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
211
522
812f497b20dc Added module dil.TypesEnum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 512
diff changeset
212 struct TypeMetaInfo
812f497b20dc Added module dil.TypesEnum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 512
diff changeset
213 {
812f497b20dc Added module dil.TypesEnum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 512
diff changeset
214 char mangle; /// Mangle character of the type.
548
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
215 ushort size; /// Byte size of the type.
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
216 Value* defaultInit; /// Default initialization value.
522
812f497b20dc Added module dil.TypesEnum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 512
diff changeset
217 }
812f497b20dc Added module dil.TypesEnum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 512
diff changeset
218
527
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
219 struct MITable
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
220 {
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
221 static:
548
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
222 const ushort SIZE_NOT_AVAILABLE = 0; /// Size not available.
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
223 const Value VZERO = {int_:0}; /// Value 0.
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
224 const Value VNULL = {pvoid:null}; /// Value null.
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
225 const Value V0xFF = {dchar_:0xFF}; /// Value 0xFF.
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
226 const Value V0xFFFF = {dchar_:0xFFFF}; /// Value 0xFFFF.
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
227 const Value VFALSE = {bool_:false}; /// Value false.
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
228 const Value VNAN = {float_:float.nan}; /// Value NAN.
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
229 const Value VCNAN = {creal_:creal.nan}; /// Value complex NAN.
527
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
230 private alias SIZE_NOT_AVAILABLE SNA;
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
231 private alias PTR_SIZE PS;
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
232 private const TypeMetaInfo metaInfoTable[] = [
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
233 {'?', SNA}, // Error
522
812f497b20dc Added module dil.TypesEnum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 512
diff changeset
234
548
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
235 {'a', 1, &V0xFF}, // Char
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
236 {'u', 2, &V0xFFFF}, // Wchar
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
237 {'w', 4, &V0xFFFF}, // Dchar
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
238 {'b', 1, &VFALSE}, // Bool
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
239 {'g', 1, &VZERO}, // Byte
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
240 {'h', 1, &VZERO}, // Ubyte
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
241 {'s', 2, &VZERO}, // Short
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
242 {'t', 2, &VZERO}, // Ushort
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
243 {'i', 4, &VZERO}, // Int
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
244 {'k', 4, &VZERO}, // Uint
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
245 {'l', 8, &VZERO}, // Long
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
246 {'m', 8, &VZERO}, // Ulong
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
247 {'?', 16, &VZERO}, // Cent
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
248 {'?', 16, &VZERO}, // Ucent
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
249 {'f', 4, &VNAN}, // Float
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
250 {'d', 8, &VNAN}, // Double
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
251 {'e', 12, &VNAN}, // Real
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
252 {'o', 4, &VNAN}, // Ifloat
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
253 {'p', 8, &VNAN}, // Idouble
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
254 {'j', 12, &VNAN}, // Ireal
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
255 {'q', 8, &VCNAN}, // Cfloat
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
256 {'r', 16, &VCNAN}, // Cdouble
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
257 {'c', 24, &VCNAN}, // Creal
527
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
258 {'v', 1}, // void
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
259
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
260 {'n', SNA}, // None
522
812f497b20dc Added module dil.TypesEnum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 512
diff changeset
261
548
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
262 {'A', PS*2, &VNULL}, // Dynamic array
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
263 {'G', PS*2, &VNULL}, // Static array
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
264 {'H', PS*2, &VNULL}, // Associative array
522
812f497b20dc Added module dil.TypesEnum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 512
diff changeset
265
527
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
266 {'E', SNA}, // Enum
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
267 {'S', SNA}, // Struct
548
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
268 {'C', PS, &VNULL}, // Class
527
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
269 {'T', SNA}, // Typedef
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
270 {'F', PS}, // Function
548
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
271 {'D', PS*2, &VNULL}, // Delegate
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
272 {'P', PS, &VNULL}, // Pointer
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
273 {'R', PS, &VNULL}, // Reference
527
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
274 {'I', SNA}, // Identifier
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
275 {'?', SNA}, // Template instance
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
276 {'B', SNA}, // Tuple
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
277 {'x', SNA}, // Const, D2
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
278 {'y', SNA}, // Invariant, D2
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
279 ];
548
faf16f4e7fc8 Added union Value and updated metaInfoTable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 536
diff changeset
280 static assert(metaInfoTable.length == TYP.max+1);
527
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
281
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
282 size_t getSize(Type type)
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
283 {
536
0781ac288537 Added some semantic() methods.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 527
diff changeset
284 auto size = metaInfoTable[type.tid].size;
527
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
285 if (size == SIZE_NOT_AVAILABLE)
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
286 return type.sizeOf_();
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
287 return size;
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
288 }
c8c3aec130f7 Added struct MITable.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 526
diff changeset
289 }
525
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
290
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
291 /// A set of pre-defined types.
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
292 struct Types
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
293 {
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
294 static:
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
295 TypeBasic Char, Wchar, Dchar, Bool,
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
296 Byte, Ubyte, Short, Ushort,
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
297 Int, Uint, Long, Ulong,
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
298 Cent, Ucent,
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
299 Float, Double, Real,
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
300 Ifloat, Idouble, Ireal,
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
301 Cfloat, Cdouble, Creal, Void;
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
302
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
303 TypeBasic Size_t, Ptrdiff_t;
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
304 TypePointer Void_ptr;
560
709e223a8eb9 Added code related to symbols.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 548
diff changeset
305 TypeBasic Error, Undefined;
525
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
306
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
307 /// Allocates an instance of TypeBasic and assigns it to typeName.
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
308 template newTB(char[] typeName)
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
309 {
617
0749f30ef2d0 Added member 'EnumType type' to class Enum.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 615
diff changeset
310 const newTB = mixin(typeName~" = new TypeBasic(TYP."~typeName~")");
525
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
311 }
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
312
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
313 static this()
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
314 {
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
315 newTB!("Char");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
316 newTB!("Wchar");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
317 newTB!("Dchar");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
318 newTB!("Bool");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
319 newTB!("Byte");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
320 newTB!("Ubyte");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
321 newTB!("Short");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
322 newTB!("Ushort");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
323 newTB!("Int");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
324 newTB!("Uint");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
325 newTB!("Long");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
326 newTB!("Ulong");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
327 newTB!("Cent");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
328 newTB!("Ucent");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
329 newTB!("Float");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
330 newTB!("Double");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
331 newTB!("Real");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
332 newTB!("Ifloat");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
333 newTB!("Idouble");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
334 newTB!("Ireal");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
335 newTB!("Cfloat");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
336 newTB!("Cdouble");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
337 newTB!("Creal");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
338 newTB!("Void");
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
339 version(X86_64)
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
340 {
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
341 Size_t = Ulong;
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
342 Ptrdiff_t = Long;
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
343 }
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
344 else
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
345 {
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
346 Size_t = Uint;
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
347 Ptrdiff_t = Int;
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
348 }
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
349 Void_ptr = Void.ptrTo;
560
709e223a8eb9 Added code related to symbols.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 548
diff changeset
350 Error = new TypeBasic(TYP.Error);
536
0781ac288537 Added some semantic() methods.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 527
diff changeset
351 Undefined = new TypeBasic(TYP.Error);
525
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
352 }
a3f66502ea64 Added struct Types with pre-defined types.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents: 522
diff changeset
353 }