annotate dmd/Declaration.d @ 96:acd69f84627e

further work
author Trass3r
date Tue, 31 Aug 2010 02:12:15 +0200
parents 43073c7c7769
children e28b18c23469
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
1 module dmd.Declaration;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
2
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
3 import dmd.Dsymbol;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
4 import dmd.Type;
79
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
5 import dmd.TypedefDeclaration;
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
6 import dmd.PROT;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
7 import dmd.LINK;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
8 import dmd.Identifier;
79
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
9 import dmd.Json;
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
10 import dmd.Scope;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
11 import dmd.Loc;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
12 import dmd.STC;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
13 import dmd.FuncDeclaration;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
14 import dmd.VarDeclaration;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
15 import dmd.OutBuffer;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
16
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
17 import std.stdio : writef;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
18
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
19 import core.stdc.ctype;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
20 import core.stdc.stdio : sprintf;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
21
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
22 string mangle(Declaration sthis)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
23 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
24 scope OutBuffer buf = new OutBuffer();
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
25
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
26 string id;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
27 Dsymbol s = sthis;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
28
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
29 //printf(".mangle(%s)\n", sthis.toChars());
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
30 do
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
31 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
32 //printf("mangle: s = %p, '%s', parent = %p\n", s, s.toChars(), s.parent);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
33 if (s.ident)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
34 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
35 FuncDeclaration fd = s.isFuncDeclaration();
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
36 if (s !is sthis && fd)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
37 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
38 id = mangle(fd);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
39 buf.prependstring(id);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
40 goto L1;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
41 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
42 else
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
43 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
44 id = s.ident.toChars();
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
45 int len = id.length;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
46 char tmp[len.sizeof * 3 + 1];
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
47 buf.prependstring(id);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
48 len = sprintf(tmp.ptr, "%d".ptr, len);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
49 buf.prependstring(tmp[0..len]);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
50 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
51 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
52 else
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
53 buf.prependstring("0");
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
54 s = s.parent;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
55 } while (s);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
56
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
57 // buf.prependstring("_D");
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
58 L1:
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
59 //printf("deco = '%s'\n", sthis.type.deco ? sthis.type.deco : "null");
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
60 //printf("sthis.type = %s\n", sthis.type.toChars());
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
61 FuncDeclaration fd = sthis.isFuncDeclaration();
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
62 if (fd && (fd.needThis() || fd.isNested()))
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
63 buf.writeByte(Type.needThisPrefix());
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
64 if (sthis.type.deco)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
65 buf.writestring(sthis.type.deco);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
66 else
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
67 {
96
acd69f84627e further work
Trass3r
parents: 79
diff changeset
68 debug
acd69f84627e further work
Trass3r
parents: 79
diff changeset
69 {
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
70 if (!fd.inferRetType)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
71 writef("%s\n", fd.toChars());
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
72 }
96
acd69f84627e further work
Trass3r
parents: 79
diff changeset
73 assert(fd && fd.inferRetType);
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
74 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
75
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
76 id = buf.extractString();
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
77 return id;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
78 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
79
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
80 class Declaration : Dsymbol
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
81 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
82 Type type;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
83 Type originalType; // before semantic analysis
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
84 STC storage_class = STC.STCundefined;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
85 PROT protection = PROT.PROTundefined;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
86 LINK linkage = LINK.LINKdefault;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
87 int inuse; // used to detect cycles
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
88
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
89 this(Identifier id)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
90 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
91 super(id);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
92 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
93
72
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 68
diff changeset
94 override void semantic(Scope sc)
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
95 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
96 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
97
72
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 68
diff changeset
98 override string kind()
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
99 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
100 assert(false);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
101 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
102
72
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 68
diff changeset
103 override uint size(Loc loc)
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
104 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
105 assert(false);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
106 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
107
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
108 /*************************************
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
109 * Check to see if declaration can be modified in this context (sc).
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
110 * Issue error if not.
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
111 */
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
112 void checkModify(Loc loc, Scope sc, Type t)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
113 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
114 if (sc.incontract && isParameter())
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
115 error(loc, "cannot modify parameter '%s' in contract", toChars());
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
116
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
117 if (isCtorinit())
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
118 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
119 // It's only modifiable if inside the right constructor
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
120 Dsymbol s = sc.func;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
121 while (true)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
122 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
123 FuncDeclaration fd = null;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
124 if (s)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
125 fd = s.isFuncDeclaration();
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
126 if (fd && ((fd.isCtorDeclaration() && storage_class & STC.STCfield) ||
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
127 (fd.isStaticCtorDeclaration() && !(storage_class & STC.STCfield))) &&
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
128 fd.toParent() == toParent()
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
129 )
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
130 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
131 VarDeclaration v = isVarDeclaration();
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
132 assert(v);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
133 v.ctorinit = 1;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
134 //printf("setting ctorinit\n");
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
135 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
136 else
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
137 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
138 if (s)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
139 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
140 s = s.toParent2();
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
141 continue;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
142 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
143 else
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
144 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
145 string p = isStatic() ? "static " : "";
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
146 error(loc, "can only initialize %sconst %s inside %sconstructor", p, toChars(), p);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
147 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
148 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
149 break;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
150 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
151 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
152 else
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
153 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
154 VarDeclaration v = isVarDeclaration();
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
155 if (v && v.canassign == 0)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
156 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
157 string p = null;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
158 if (isConst())
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
159 p = "const";
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
160 else if (isInvariant())
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
161 p = "immutable";
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
162 else if (storage_class & STC.STCmanifest)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
163 p = "enum";
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
164 else if (!t.isAssignable())
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
165 p = "struct with immutable members";
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
166 if (p)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
167 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
168 error(loc, "cannot modify %s", p);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
169 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
170 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
171 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
172 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
173
72
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 68
diff changeset
174 override void emitComment(Scope sc)
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
175 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
176 assert(false);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
177 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
178
79
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
179 override void toJsonBuffer(OutBuffer buf)
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
180 {
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
181 //writef("Declaration.toJsonBuffer()\n");
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
182 buf.writestring("{\n");
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
183
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
184 JsonProperty(buf, Pname, toChars());
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
185 JsonProperty(buf, Pkind, kind());
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
186 if (type)
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
187 JsonProperty(buf, Ptype, type.toChars());
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
188
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
189 if (comment)
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
190 JsonProperty(buf, Pcomment, comment);
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
191
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
192 if (loc.linnum)
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
193 JsonProperty(buf, Pline, loc.linnum);
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
194
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
195 TypedefDeclaration td = isTypedefDeclaration();
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
196 if (td)
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
197 {
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
198 JsonProperty(buf, "base", td.basetype.toChars());
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
199 }
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
200
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
201 JsonRemoveComma(buf);
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
202 buf.writestring("}\n");
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
203 }
43073c7c7769 updated to 2.035
Trass3r
parents: 72
diff changeset
204
72
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 68
diff changeset
205 override void toDocBuffer(OutBuffer buf)
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
206 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
207 assert(false);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
208 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
209
72
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 68
diff changeset
210 override string mangle()
14
2cc604139636 Implemented Linux support for ddmd. Some parts are a bit hacky to just "get it working", that said, druntime and phobos compile, and unittests pass.
Robert Clipsham <robert@octarineparrot.com>
parents: 0
diff changeset
211 /+out (result)
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
212 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
213 try
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
214 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
215 int len = result.length;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
216
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
217 assert(len > 0);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
218 //printf("mangle: '%s' => '%s'\n", toChars(), result);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
219 for (int i = 0; i < len; i++)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
220 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
221 assert(result[i] == '_' || result[i] == '@' || isalnum(result[i]) || result[i] & 0x80);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
222 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
223 } catch {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
224 writef("Incorrect mangle: '%s'\n", result);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
225 assert(false);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
226 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
227 }
14
2cc604139636 Implemented Linux support for ddmd. Some parts are a bit hacky to just "get it working", that said, druntime and phobos compile, and unittests pass.
Robert Clipsham <robert@octarineparrot.com>
parents: 0
diff changeset
228 body+/
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
229 {
22
fd4acc376c45 Implemented object file output and linking on linux.
Robert Clipsham <robert@octarineparrot.com>
parents: 16
diff changeset
230 version(Bug3602) { writef( "Bug3602: Uncomment outblock when fixed\n" ); }
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
231 //writef("Declaration.mangle(this = %p, '%s', parent = '%s', linkage = %d)\n", this, toChars(), parent ? parent.toChars() : "null", linkage);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
232 if (!parent || parent.isModule() || linkage == LINK.LINKcpp) // if at global scope
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
233 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
234 // If it's not a D declaration, no mangling
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
235 switch (linkage)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
236 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
237 case LINK.LINKd:
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
238 break;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
239
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
240 case LINK.LINKc:
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
241 case LINK.LINKwindows:
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
242 case LINK.LINKpascal:
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
243 return ident.toChars();
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
244
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
245 case LINK.LINKcpp:
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
246 version (CPP_MANGLE) {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
247 return cpp_mangle(this);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
248 } else {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
249 // Windows C++ mangling is done by C++ back end
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
250 return ident.toChars();
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
251 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
252
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
253 case LINK.LINKdefault:
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
254 assert(false);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
255 error("forward declaration");
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
256 return ident.toChars();
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
257
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
258 default:
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
259 writef("'%s', linkage = %d\n", toChars(), linkage);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
260 assert(0);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
261 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
262 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
263
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
264 string p = .mangle(this);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
265 scope OutBuffer buf = new OutBuffer();
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
266 buf.writestring("_D");
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
267 buf.writestring(p);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
268 p = buf.toChars();
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
269 buf.data = null;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
270 //writef("Declaration.mangle(this = %p, '%s', parent = '%s', linkage = %d) = %s\n", this, toChars(), parent ? parent.toChars() : "null", linkage, p);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
271 return p;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
272 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
273
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
274 int isStatic() { return storage_class & STC.STCstatic; }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
275
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
276 bool isStaticConstructor()
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
277 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
278 return false;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
279 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
280
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
281 bool isStaticDestructor()
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
282 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
283 return false;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
284 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
285
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
286 bool isDelete()
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
287 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
288 return false;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
289 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
290
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
291 bool isDataseg()
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
292 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
293 return false;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
294 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
295
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
296 bool isThreadlocal()
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
297 {
68
ee3a9f34dc48 final bits of codegen implementation to compile Phobos
korDen
parents: 22
diff changeset
298 return false;
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
299 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
300
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
301 bool isCodeseg()
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
302 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
303 return false;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
304 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
305
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
306 int isCtorinit() { return storage_class & STC.STCctorinit; }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
307
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
308 int isFinal() { return storage_class & STC.STCfinal; }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
309
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
310 bool isAbstract() { return (storage_class & STC.STCabstract) != 0; }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
311
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
312 bool isConst() { return (storage_class & STC.STCconst) != 0; }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
313
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
314 int isInvariant() { return storage_class & STC.STCinvariant; }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
315
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
316 int isAuto() { return storage_class & STC.STCauto; }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
317
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
318 int isScope() { return storage_class & (STC.STCscope | STC.STCauto); }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
319
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
320 int isSynchronized() { return storage_class & STC.STCsynchronized; }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
321
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
322 int isParameter() { return storage_class & STC.STCparameter; }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
323
72
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 68
diff changeset
324 override bool isDeprecated() { return (storage_class & STC.STCdeprecated) != 0; }
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
325
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
326 int isOverride() { return storage_class & STC.STCoverride; }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
327
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
328 int isIn() { return storage_class & STC.STCin; }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
329
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
330 int isOut() { return storage_class & STC.STCout; }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
331
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
332 int isRef() { return storage_class & STC.STCref; }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
333
72
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 68
diff changeset
334 override PROT prot()
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
335 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
336 return protection;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
337 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
338
72
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 68
diff changeset
339 override Declaration isDeclaration() { return this; }
14
2cc604139636 Implemented Linux support for ddmd. Some parts are a bit hacky to just "get it working", that said, druntime and phobos compile, and unittests pass.
Robert Clipsham <robert@octarineparrot.com>
parents: 0
diff changeset
340 }