annotate dmd/expression.h @ 1651:cb960b882ca3 default tip

bindings were moved to dsource.org/projects/bindings/
author Moritz Warning <moritzwarning@web.de>
date Thu, 20 May 2010 20:05:03 +0200
parents 40bd4a0d4870
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
2 // Compiler implementation of the D programming language
1630
44b145be2ef5 Merge dmd 1.056.
Robert Clipsham <robert@octarineparrot.com>
parents: 1626
diff changeset
3 // Copyright (c) 1999-2010 by Digital Mars
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
4 // All Rights Reserved
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
5 // written by Walter Bright
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
6 // http://www.digitalmars.com
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
7 // License for redistribution is by either the Artistic License
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
8 // in artistic.txt, or the GNU General Public License in gnu.txt.
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
9 // See the included readme.txt for details.
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
10
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
11 #ifndef DMD_EXPRESSION_H
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
12 #define DMD_EXPRESSION_H
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
13
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
14 #include "mars.h"
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
15 #include "identifier.h"
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
16 #include "lexer.h"
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
17 #include "arraytypes.h"
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
18
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
19 struct Type;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
20 struct Scope;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
21 struct TupleDeclaration;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
22 struct VarDeclaration;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
23 struct FuncDeclaration;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
24 struct FuncLiteralDeclaration;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
25 struct Declaration;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
26 struct CtorDeclaration;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
27 struct NewDeclaration;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
28 struct Dsymbol;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
29 struct Import;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
30 struct Module;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
31 struct ScopeDsymbol;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
32 struct InlineCostState;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
33 struct InlineDoState;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
34 struct InlineScanState;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
35 struct Expression;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
36 struct Declaration;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
37 struct AggregateDeclaration;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
38 struct StructDeclaration;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
39 struct TemplateInstance;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
40 struct TemplateDeclaration;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
41 struct ClassDeclaration;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
42 struct HdrGenState;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
43 struct BinExp;
1650
40bd4a0d4870 Update to work with LLVM 2.7.
Tomas Lindquist Olsen
parents: 1630
diff changeset
44 struct AssignExp;
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
45 struct InterState;
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
46 struct OverloadSet;
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
47
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
48 enum TOK;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
49
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
50 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
51 // Back end
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
52 struct IRState;
1146
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
53
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
54 struct dt_t;
1146
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
55 struct elem;
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
56 struct Symbol; // back end symbol
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
57 #endif
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
58
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
59 #ifdef IN_GCC
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
60 union tree_node; typedef union tree_node elem;
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
61 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
62
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
63 #if IN_LLVM
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
64 struct IRState;
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
65 struct DValue;
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
66 namespace llvm {
1146
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
67 class Constant;
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
68 class ConstantInt;
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
69 }
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
70 #endif
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
71
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
72 void initPrecedence();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
73
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
74 Expression *resolveProperties(Scope *sc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
75 void accessCheck(Loc loc, Scope *sc, Expression *e, Declaration *d);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
76 Dsymbol *search_function(AggregateDeclaration *ad, Identifier *funcid);
1607
207a8a438dea Merge DMD r253: refactor: Argument => Parameter
Leandro Lucarella <llucax@gmail.com>
parents: 1587
diff changeset
77 void inferApplyArgTypes(enum TOK op, Parameters *arguments, Expression *aggr, Module* from);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
78 void argExpTypesToCBuffer(OutBuffer *buf, Expressions *arguments, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
79 void argsToCBuffer(OutBuffer *buf, Expressions *arguments, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
80 void expandTuples(Expressions *exps);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
81 FuncDeclaration *hasThis(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
82 Expression *fromConstInitializer(int result, Expression *e);
1103
b30fe7e1dbb9 - Updated to DMD frontend 1.041.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 876
diff changeset
83 int arrayExpressionCanThrow(Expressions *exps);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
84
1587
def7a1d494fd Merge DMD 1.051
Christian Kamm <kamm incasoftware de>
parents: 1499
diff changeset
85 struct IntRange
def7a1d494fd Merge DMD 1.051
Christian Kamm <kamm incasoftware de>
parents: 1499
diff changeset
86 { uinteger_t imin;
def7a1d494fd Merge DMD 1.051
Christian Kamm <kamm incasoftware de>
parents: 1499
diff changeset
87 uinteger_t imax;
def7a1d494fd Merge DMD 1.051
Christian Kamm <kamm incasoftware de>
parents: 1499
diff changeset
88 };
def7a1d494fd Merge DMD 1.051
Christian Kamm <kamm incasoftware de>
parents: 1499
diff changeset
89
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
90 struct Expression : Object
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
91 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
92 Loc loc; // file location
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
93 enum TOK op; // handy to minimize use of dynamic_cast
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
94 Type *type; // !=NULL means that semantic() has been run
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
95 int size; // # of bytes in Expression so we can copy() it
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
96
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
97 Expression(Loc loc, enum TOK op, int size);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
98 Expression *copy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
99 virtual Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
100 virtual Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
101
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
102 int dyncast() { return DYNCAST_EXPRESSION; } // kludge for template.isExpression()
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
103
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
104 void print();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
105 char *toChars();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
106 virtual void dump(int indent);
1372
229e02867307 Fix format-string bugs by adding __attribute__((__format__)) in all applicable
Frits van Bommel <fvbommel wxs.nl>
parents: 1367
diff changeset
107 void error(const char *format, ...) IS_PRINTF(2);
229e02867307 Fix format-string bugs by adding __attribute__((__format__)) in all applicable
Frits van Bommel <fvbommel wxs.nl>
parents: 1367
diff changeset
108 void warning(const char *format, ...) IS_PRINTF(2);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
109 virtual void rvalue();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
110
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
111 static Expression *combine(Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
112 static Expressions *arraySyntaxCopy(Expressions *exps);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
113
1195
e961851fb8be Merged DMD 1.042.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1168
diff changeset
114 virtual dinteger_t toInteger();
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
115 virtual uinteger_t toUInteger();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
116 virtual real_t toReal();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
117 virtual real_t toImaginary();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
118 virtual complex_t toComplex();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
119 virtual void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
120 virtual void toMangleBuffer(OutBuffer *buf);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
121 virtual Expression *toLvalue(Scope *sc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
122 virtual Expression *modifiableLvalue(Scope *sc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
123 Expression *implicitCastTo(Scope *sc, Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
124 virtual MATCH implicitConvTo(Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
125 virtual Expression *castTo(Scope *sc, Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
126 virtual void checkEscape();
1618
a87f1d6ff48e Merge DMD r303: harmonize
Leandro Lucarella <llucax@gmail.com>
parents: 1615
diff changeset
127 virtual void checkEscapeRef();
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
128 void checkScalar();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
129 void checkNoBool();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
130 Expression *checkIntegral();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
131 Expression *checkArithmetic();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
132 void checkDeprecated(Scope *sc, Dsymbol *s);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
133 virtual Expression *checkToBoolean();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
134 Expression *checkToPointer();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
135 Expression *addressOf(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
136 Expression *deref();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
137 Expression *integralPromotions(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
138
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
139 Expression *toDelegate(Scope *sc, Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
140 virtual void scanForNestedRef(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
141
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
142 virtual Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
143 #define WANTflags 1
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
144 #define WANTvalue 2
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
145 #define WANTinterpret 4
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
146
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
147 virtual Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
148
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
149 virtual int isConst();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
150 virtual int isBool(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
151 virtual int isBit();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
152 virtual int checkSideEffect(int flag);
336
aaade6ded589 [svn r357] Merged DMD 1.033
lindquist
parents: 159
diff changeset
153 virtual int canThrow();
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
154
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
155 virtual int inlineCost(InlineCostState *ics);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
156 virtual Expression *doInline(InlineDoState *ids);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
157 virtual Expression *inlineScan(InlineScanState *iss);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
158
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
159 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
160 virtual int isCommutative();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
161 virtual Identifier *opId();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
162 virtual Identifier *opId_r();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
163
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
164 // For array ops
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
165 virtual void buildArrayIdent(OutBuffer *buf, Expressions *arguments);
1607
207a8a438dea Merge DMD r253: refactor: Argument => Parameter
Leandro Lucarella <llucax@gmail.com>
parents: 1587
diff changeset
166 virtual Expression *buildArrayLoop(Parameters *fparams);
1587
def7a1d494fd Merge DMD 1.051
Christian Kamm <kamm incasoftware de>
parents: 1499
diff changeset
167 int isArrayOperand();
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
168
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
169 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
170 // Back end
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
171 virtual elem *toElem(IRState *irs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
172 virtual dt_t **toDt(dt_t **pdt);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
173 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
174
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
175 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
176 virtual DValue* toElem(IRState* irs);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
177 virtual llvm::Constant *toConstElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
178 virtual void cacheLvalue(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
179
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
180 llvm::Value* cachedLvalue;
1650
40bd4a0d4870 Update to work with LLVM 2.7.
Tomas Lindquist Olsen
parents: 1630
diff changeset
181
40bd4a0d4870 Update to work with LLVM 2.7.
Tomas Lindquist Olsen
parents: 1630
diff changeset
182 virtual AssignExp* isAssignExp() { return NULL; }
1146
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
183 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
184 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
185
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
186 struct IntegerExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
187 {
1195
e961851fb8be Merged DMD 1.042.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1168
diff changeset
188 dinteger_t value;
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
189
1195
e961851fb8be Merged DMD 1.042.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1168
diff changeset
190 IntegerExp(Loc loc, dinteger_t value, Type *type);
e961851fb8be Merged DMD 1.042.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1168
diff changeset
191 IntegerExp(dinteger_t value);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
192 int equals(Object *o);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
193 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
194 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
195 char *toChars();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
196 void dump(int indent);
1195
e961851fb8be Merged DMD 1.042.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1168
diff changeset
197 dinteger_t toInteger();
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
198 real_t toReal();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
199 real_t toImaginary();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
200 complex_t toComplex();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
201 int isConst();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
202 int isBool(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
203 MATCH implicitConvTo(Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
204 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
205 void toMangleBuffer(OutBuffer *buf);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
206 Expression *toLvalue(Scope *sc, Expression *e);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
207 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
208 elem *toElem(IRState *irs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
209 dt_t **toDt(dt_t **pdt);
1146
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
210 #elif IN_LLVM
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
211 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
212 llvm::Constant *toConstElem(IRState *irs);
1146
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
213 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
214 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
215
1367
8026319762be Merged DMD 1.045 !!!
Tomas Lindquist Olsen <tomas.l.olsen gmail com>
parents: 1358
diff changeset
216 struct ErrorExp : IntegerExp
8026319762be Merged DMD 1.045 !!!
Tomas Lindquist Olsen <tomas.l.olsen gmail com>
parents: 1358
diff changeset
217 {
8026319762be Merged DMD 1.045 !!!
Tomas Lindquist Olsen <tomas.l.olsen gmail com>
parents: 1358
diff changeset
218 ErrorExp();
8026319762be Merged DMD 1.045 !!!
Tomas Lindquist Olsen <tomas.l.olsen gmail com>
parents: 1358
diff changeset
219
8026319762be Merged DMD 1.045 !!!
Tomas Lindquist Olsen <tomas.l.olsen gmail com>
parents: 1358
diff changeset
220 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
8026319762be Merged DMD 1.045 !!!
Tomas Lindquist Olsen <tomas.l.olsen gmail com>
parents: 1358
diff changeset
221 };
8026319762be Merged DMD 1.045 !!!
Tomas Lindquist Olsen <tomas.l.olsen gmail com>
parents: 1358
diff changeset
222
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
223 struct RealExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
224 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
225 real_t value;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
226
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
227 RealExp(Loc loc, real_t value, Type *type);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
228 int equals(Object *o);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
229 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
230 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
231 char *toChars();
1195
e961851fb8be Merged DMD 1.042.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1168
diff changeset
232 dinteger_t toInteger();
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
233 uinteger_t toUInteger();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
234 real_t toReal();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
235 real_t toImaginary();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
236 complex_t toComplex();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
237 Expression *castTo(Scope *sc, Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
238 int isConst();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
239 int isBool(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
240 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
241 void toMangleBuffer(OutBuffer *buf);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
242 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
243 elem *toElem(IRState *irs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
244 dt_t **toDt(dt_t **pdt);
1146
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
245 #elif IN_LLVM
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
246 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
247 llvm::Constant *toConstElem(IRState *irs);
1146
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
248 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
249 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
250
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
251 struct ComplexExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
252 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
253 complex_t value;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
254
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
255 ComplexExp(Loc loc, complex_t value, Type *type);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
256 int equals(Object *o);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
257 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
258 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
259 char *toChars();
1195
e961851fb8be Merged DMD 1.042.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1168
diff changeset
260 dinteger_t toInteger();
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
261 uinteger_t toUInteger();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
262 real_t toReal();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
263 real_t toImaginary();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
264 complex_t toComplex();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
265 Expression *castTo(Scope *sc, Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
266 int isConst();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
267 int isBool(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
268 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
269 void toMangleBuffer(OutBuffer *buf);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
270 #ifdef _DH
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
271 OutBuffer hexp;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
272 #endif
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
273 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
274 elem *toElem(IRState *irs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
275 dt_t **toDt(dt_t **pdt);
1146
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
276 #elif IN_LLVM
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
277 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
278 llvm::Constant *toConstElem(IRState *irs);
1146
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
279 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
280 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
281
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
282 struct IdentifierExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
283 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
284 Identifier *ident;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
285 Declaration *var;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
286
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
287 IdentifierExp(Loc loc, Identifier *ident);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
288 IdentifierExp(Loc loc, Declaration *var);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
289 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
290 char *toChars();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
291 void dump(int indent);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
292 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
293 Expression *toLvalue(Scope *sc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
294 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
295
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
296 struct DollarExp : IdentifierExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
297 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
298 DollarExp(Loc loc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
299 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
300
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
301 struct DsymbolExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
302 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
303 Dsymbol *s;
1587
def7a1d494fd Merge DMD 1.051
Christian Kamm <kamm incasoftware de>
parents: 1499
diff changeset
304 int hasOverloads;
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
305
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
306 DsymbolExp(Loc loc, Dsymbol *s);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
307 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
308 char *toChars();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
309 void dump(int indent);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
310 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
311 Expression *toLvalue(Scope *sc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
312 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
313
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
314 struct ThisExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
315 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
316 Declaration *var;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
317
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
318 ThisExp(Loc loc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
319 Expression *semantic(Scope *sc);
1587
def7a1d494fd Merge DMD 1.051
Christian Kamm <kamm incasoftware de>
parents: 1499
diff changeset
320 Expression *interpret(InterState *istate);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
321 int isBool(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
322 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
323 Expression *toLvalue(Scope *sc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
324 void scanForNestedRef(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
325
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
326 int inlineCost(InlineCostState *ics);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
327 Expression *doInline(InlineDoState *ids);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
328 //Expression *inlineScan(InlineScanState *iss);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
329
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
330 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
331 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
332 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
333
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
334 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
335 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
336 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
337 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
338
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
339 struct SuperExp : ThisExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
340 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
341 SuperExp(Loc loc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
342 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
343 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
344 void scanForNestedRef(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
345
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
346 int inlineCost(InlineCostState *ics);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
347 Expression *doInline(InlineDoState *ids);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
348 //Expression *inlineScan(InlineScanState *iss);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
349 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
350
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
351 struct NullExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
352 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
353 unsigned char committed; // !=0 if type is committed
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
354
1626
8fa4ab3dcc88 Merge DMD r320: refactor
Leandro Lucarella <llucax@gmail.com>
parents: 1618
diff changeset
355 NullExp(Loc loc, Type *t = NULL);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
356 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
357 int isBool(int result);
1587
def7a1d494fd Merge DMD 1.051
Christian Kamm <kamm incasoftware de>
parents: 1499
diff changeset
358 int isConst();
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
359 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
360 void toMangleBuffer(OutBuffer *buf);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
361 MATCH implicitConvTo(Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
362 Expression *castTo(Scope *sc, Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
363 Expression *interpret(InterState *istate);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
364 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
365 elem *toElem(IRState *irs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
366 dt_t **toDt(dt_t **pdt);
1146
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
367 #elif IN_LLVM
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
368 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
369 llvm::Constant *toConstElem(IRState *irs);
1146
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
370 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
371 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
372
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
373 struct StringExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
374 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
375 void *string; // char, wchar, or dchar data
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
376 size_t len; // number of chars, wchars, or dchars
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
377 unsigned char sz; // 1: char, 2: wchar, 4: dchar
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
378 unsigned char committed; // !=0 if type is committed
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
379 unsigned char postfix; // 'c', 'w', 'd'
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
380
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
381 StringExp(Loc loc, char *s);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
382 StringExp(Loc loc, void *s, size_t len);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
383 StringExp(Loc loc, void *s, size_t len, unsigned char postfix);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
384 //Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
385 int equals(Object *o);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
386 char *toChars();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
387 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
388 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
389 StringExp *toUTF8(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
390 MATCH implicitConvTo(Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
391 Expression *castTo(Scope *sc, Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
392 int compare(Object *obj);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
393 int isBool(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
394 unsigned charAt(size_t i);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
395 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
396 void toMangleBuffer(OutBuffer *buf);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
397 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
398 elem *toElem(IRState *irs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
399 dt_t **toDt(dt_t **pdt);
1146
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
400 #elif IN_LLVM
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
401 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
402 llvm::Constant *toConstElem(IRState *irs);
1146
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
403 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
404 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
405
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
406 // Tuple
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
407
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
408 struct TupleExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
409 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
410 Expressions *exps;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
411
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
412 TupleExp(Loc loc, Expressions *exps);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
413 TupleExp(Loc loc, TupleDeclaration *tup);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
414 Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
415 int equals(Object *o);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
416 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
417 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
418 void scanForNestedRef(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
419 void checkEscape();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
420 int checkSideEffect(int flag);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
421 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
422 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
423 Expression *castTo(Scope *sc, Type *t);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
424 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
425 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
426 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
427
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
428 int inlineCost(InlineCostState *ics);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
429 Expression *doInline(InlineDoState *ids);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
430 Expression *inlineScan(InlineScanState *iss);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
431
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
432 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
433 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
434 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
435 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
436
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
437 struct ArrayLiteralExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
438 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
439 Expressions *elements;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
440
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
441 ArrayLiteralExp(Loc loc, Expressions *elements);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
442 ArrayLiteralExp(Loc loc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
443
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
444 Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
445 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
446 int isBool(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
447 int checkSideEffect(int flag);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
448 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
449 void toMangleBuffer(OutBuffer *buf);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
450 void scanForNestedRef(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
451 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
452 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
453 MATCH implicitConvTo(Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
454 Expression *castTo(Scope *sc, Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
455
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
456 int inlineCost(InlineCostState *ics);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
457 Expression *doInline(InlineDoState *ids);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
458 Expression *inlineScan(InlineScanState *iss);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
459
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
460 #if IN_DMD
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
461 elem *toElem(IRState *irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
462 dt_t **toDt(dt_t **pdt);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
463 #elif IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
464 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
465 llvm::Constant *toConstElem(IRState *irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
466 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
467 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
468
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
469 struct AssocArrayLiteralExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
470 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
471 Expressions *keys;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
472 Expressions *values;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
473
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
474 AssocArrayLiteralExp(Loc loc, Expressions *keys, Expressions *values);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
475
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
476 Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
477 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
478 int isBool(int result);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
479 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
480 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
481 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
482 int checkSideEffect(int flag);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
483 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
484 void toMangleBuffer(OutBuffer *buf);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
485 void scanForNestedRef(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
486 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
487 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
488 MATCH implicitConvTo(Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
489 Expression *castTo(Scope *sc, Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
490
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
491 int inlineCost(InlineCostState *ics);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
492 Expression *doInline(InlineDoState *ids);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
493 Expression *inlineScan(InlineScanState *iss);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
494
1146
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
495 #if IN_LLVM
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
496 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
497 llvm::Constant *toConstElem(IRState *irs);
1146
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
498 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
499 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
500
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
501 struct StructLiteralExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
502 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
503 StructDeclaration *sd; // which aggregate this is for
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
504 Expressions *elements; // parallels sd->fields[] with
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
505 // NULL entries for fields to skip
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
506
1146
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
507 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
508 Symbol *sym; // back end symbol to initialize with literal
1146
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
509 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
510 size_t soffset; // offset from start of s
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
511 int fillHoles; // fill alignment 'holes' with zero
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
512
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
513 StructLiteralExp(Loc loc, StructDeclaration *sd, Expressions *elements);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
514
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
515 Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
516 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
517 Expression *getField(Type *type, unsigned offset);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
518 int getFieldIndex(Type *type, unsigned offset);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
519 int checkSideEffect(int flag);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
520 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
521 void toMangleBuffer(OutBuffer *buf);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
522 void scanForNestedRef(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
523 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
524 Expression *interpret(InterState *istate);
1499
df11cdec45a2 Another shot at fixing the issues with (constant) struct literals and their addresses. See DMD2682, #218, #324.
Christian Kamm <kamm incasoftware de>
parents: 1372
diff changeset
525 Expression *toLvalue(Scope *sc, Expression *e);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
526
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
527 int inlineCost(InlineCostState *ics);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
528 Expression *doInline(InlineDoState *ids);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
529 Expression *inlineScan(InlineScanState *iss);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
530
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
531 #if IN_DMD
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
532 elem *toElem(IRState *irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
533 dt_t **toDt(dt_t **pdt);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
534 #elif IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
535 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
536 llvm::Constant *toConstElem(IRState *irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
537 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
538 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
539
1367
8026319762be Merged DMD 1.045 !!!
Tomas Lindquist Olsen <tomas.l.olsen gmail com>
parents: 1358
diff changeset
540 Expression *typeDotIdExp(Loc loc, Type *type, Identifier *ident);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
541 #if IN_DMD
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
542 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
543
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
544 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
545 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
546 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
547
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
548 struct TypeExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
549 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
550 TypeExp(Loc loc, Type *type);
876
27a379f288bf Merged DMD 1.039
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 875
diff changeset
551 Expression *syntaxCopy();
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
552 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
553 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
554 Expression *optimize(int result);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
555 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
556 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
557 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
558
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
559 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
560 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
561 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
562 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
563
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
564 struct ScopeExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
565 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
566 ScopeDsymbol *sds;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
567
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
568 ScopeExp(Loc loc, ScopeDsymbol *sds);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
569 Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
570 Expression *semantic(Scope *sc);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
571 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
572 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
573 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
574 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
575
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
576 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
577 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
578 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
579 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
580
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
581 struct TemplateExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
582 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
583 TemplateDeclaration *td;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
584
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
585 TemplateExp(Loc loc, TemplateDeclaration *td);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
586 void rvalue();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
587 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
588 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
589
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
590 struct NewExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
591 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
592 /* thisexp.new(newargs) newtype(arguments)
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
593 */
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
594 Expression *thisexp; // if !NULL, 'this' for class being allocated
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
595 Expressions *newargs; // Array of Expression's to call new operator
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
596 Type *newtype;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
597 Expressions *arguments; // Array of Expression's
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
598
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
599 CtorDeclaration *member; // constructor function
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
600 NewDeclaration *allocator; // allocator function
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
601 int onstack; // allocate on stack
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
602
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
603 NewExp(Loc loc, Expression *thisexp, Expressions *newargs,
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
604 Type *newtype, Expressions *arguments);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
605 Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
606 Expression *semantic(Scope *sc);
1587
def7a1d494fd Merge DMD 1.051
Christian Kamm <kamm incasoftware de>
parents: 1499
diff changeset
607 Expression *optimize(int result);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
608 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
609 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
610 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
611 int checkSideEffect(int flag);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
612 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
613 void scanForNestedRef(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
614
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
615 //int inlineCost(InlineCostState *ics);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
616 Expression *doInline(InlineDoState *ids);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
617 //Expression *inlineScan(InlineScanState *iss);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
618
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
619 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
620 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
621 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
622 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
623
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
624 struct NewAnonClassExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
625 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
626 /* thisexp.new(newargs) class baseclasses { } (arguments)
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
627 */
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
628 Expression *thisexp; // if !NULL, 'this' for class being allocated
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
629 Expressions *newargs; // Array of Expression's to call new operator
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
630 ClassDeclaration *cd; // class being instantiated
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
631 Expressions *arguments; // Array of Expression's to call class constructor
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
632
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
633 NewAnonClassExp(Loc loc, Expression *thisexp, Expressions *newargs,
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
634 ClassDeclaration *cd, Expressions *arguments);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
635 Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
636 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
637 int checkSideEffect(int flag);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
638 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
639 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
640
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
641 // Offset from symbol
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
642
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
643 struct SymOffExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
644 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
645 Declaration *var;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
646 unsigned offset;
1358
78038e540342 Fix overload resolution issue in dmd bug 313/314 fix.
Christian Kamm <kamm incasoftware de>
parents: 1195
diff changeset
647 Module* m; // starting point for overload resolution
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
648
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
649 SymOffExp(Loc loc, Declaration *var, unsigned offset);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
650 Expression *semantic(Scope *sc);
1630
44b145be2ef5 Merge dmd 1.056.
Robert Clipsham <robert@octarineparrot.com>
parents: 1626
diff changeset
651 Expression *interpret(InterState *istate);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
652 void checkEscape();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
653 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
654 int isConst();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
655 int isBool(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
656 Expression *doInline(InlineDoState *ids);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
657 MATCH implicitConvTo(Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
658 Expression *castTo(Scope *sc, Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
659 void scanForNestedRef(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
660
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
661 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
662 elem *toElem(IRState *irs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
663 dt_t **toDt(dt_t **pdt);
1146
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
664 #endif
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
665
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
666 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
667 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
668 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
669 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
670
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
671 // Variable
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
672
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
673 struct VarExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
674 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
675 Declaration *var;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
676
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
677 VarExp(Loc loc, Declaration *var);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
678 int equals(Object *o);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
679 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
680 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
681 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
682 void dump(int indent);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
683 char *toChars();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
684 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
685 void checkEscape();
1618
a87f1d6ff48e Merge DMD r303: harmonize
Leandro Lucarella <llucax@gmail.com>
parents: 1615
diff changeset
686 void checkEscapeRef();
a87f1d6ff48e Merge DMD r303: harmonize
Leandro Lucarella <llucax@gmail.com>
parents: 1615
diff changeset
687 int isLvalue();
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
688 Expression *toLvalue(Scope *sc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
689 Expression *modifiableLvalue(Scope *sc, Expression *e);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
690 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
691 elem *toElem(IRState *irs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
692 dt_t **toDt(dt_t **pdt);
1146
1860414bf3b7 * Moved ir/irsymbol.cpp/h into ir/irdsymbol.cpp/h.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1103
diff changeset
693 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
694 void scanForNestedRef(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
695
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
696 int inlineCost(InlineCostState *ics);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
697 Expression *doInline(InlineDoState *ids);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
698 //Expression *inlineScan(InlineScanState *iss);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
699
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
700 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
701 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
702 llvm::Constant *toConstElem(IRState *irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
703 void cacheLvalue(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
704 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
705 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
706
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
707 #if DMDV2
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
708 // Overload Set
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
709
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
710 struct OverExp : Expression
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
711 {
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
712 OverloadSet *vars;
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
713
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
714 OverExp(OverloadSet *s);
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
715 int isLvalue();
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
716 Expression *toLvalue(Scope *sc, Expression *e);
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
717 };
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
718 #endif
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
719
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
720 // Function/Delegate literal
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
721
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
722 struct FuncExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
723 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
724 FuncLiteralDeclaration *fd;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
725
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
726 FuncExp(Loc loc, FuncLiteralDeclaration *fd);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
727 Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
728 Expression *semantic(Scope *sc);
1630
44b145be2ef5 Merge dmd 1.056.
Robert Clipsham <robert@octarineparrot.com>
parents: 1626
diff changeset
729 Expression *interpret(InterState *istate);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
730 void scanForNestedRef(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
731 char *toChars();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
732 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
733 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
734 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
735 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
736
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
737 int inlineCost(InlineCostState *ics);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
738 //Expression *doInline(InlineDoState *ids);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
739 //Expression *inlineScan(InlineScanState *iss);
797
340acf1535d0 Removed KDevelop3 project files, CMake can generate them just fine!
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 664
diff changeset
740
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
741 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
742 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
743 llvm::Constant *toConstElem(IRState *irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
744 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
745 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
746
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
747 // Declaration of a symbol
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
748
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
749 struct DeclarationExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
750 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
751 Dsymbol *declaration;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
752
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
753 DeclarationExp(Loc loc, Dsymbol *declaration);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
754 Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
755 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
756 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
757 int checkSideEffect(int flag);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
758 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
759 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
760 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
761 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
762 void scanForNestedRef(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
763
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
764 int inlineCost(InlineCostState *ics);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
765 Expression *doInline(InlineDoState *ids);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
766 Expression *inlineScan(InlineScanState *iss);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
767
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
768 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
769 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
770 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
771 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
772
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
773 struct TypeidExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
774 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
775 Type *typeidType;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
776
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
777 TypeidExp(Loc loc, Type *typeidType);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
778 Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
779 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
780 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
781 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
782
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
783 #if DMDV2
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
784 struct TraitsExp : Expression
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
785 {
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
786 Identifier *ident;
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
787 Objects *args;
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
788
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
789 TraitsExp(Loc loc, Identifier *ident, Objects *args);
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
790 Expression *syntaxCopy();
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
791 Expression *semantic(Scope *sc);
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
792 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
793 };
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
794 #endif
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
795
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
796 struct HaltExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
797 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
798 HaltExp(Loc loc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
799 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
800 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
801 int checkSideEffect(int flag);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
802
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
803 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
804 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
805 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
806
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
807 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
808 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
809 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
810 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
811
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
812 struct IsExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
813 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
814 /* is(targ id tok tspec)
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
815 * is(targ id == tok2)
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
816 */
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
817 Type *targ;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
818 Identifier *id; // can be NULL
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
819 enum TOK tok; // ':' or '=='
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
820 Type *tspec; // can be NULL
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
821 enum TOK tok2; // 'struct', 'union', 'typedef', etc.
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
822
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
823 IsExp(Loc loc, Type *targ, Identifier *id, enum TOK tok, Type *tspec, enum TOK tok2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
824 Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
825 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
826 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
827 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
828
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
829 /****************************************************************/
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
830
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
831 struct UnaExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
832 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
833 Expression *e1;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
834
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
835 UnaExp(Loc loc, enum TOK op, int size, Expression *e1);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
836 Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
837 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
838 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
839 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
840 void dump(int indent);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
841 void scanForNestedRef(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
842 Expression *interpretCommon(InterState *istate, Expression *(*fp)(Type *, Expression *));
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
843
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
844 int inlineCost(InlineCostState *ics);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
845 Expression *doInline(InlineDoState *ids);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
846 Expression *inlineScan(InlineScanState *iss);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
847
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
848 Expression *op_overload(Scope *sc); // doesn't need to be virtual
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
849 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
850
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
851 struct BinExp : Expression
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
852 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
853 Expression *e1;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
854 Expression *e2;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
855
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
856 BinExp(Loc loc, enum TOK op, int size, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
857 Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
858 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
859 Expression *semanticp(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
860 Expression *commonSemanticAssign(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
861 Expression *commonSemanticAssignIntegral(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
862 int checkSideEffect(int flag);
1587
def7a1d494fd Merge DMD 1.051
Christian Kamm <kamm incasoftware de>
parents: 1499
diff changeset
863 void checkComplexMulAssign();
def7a1d494fd Merge DMD 1.051
Christian Kamm <kamm incasoftware de>
parents: 1499
diff changeset
864 void checkComplexAddAssign();
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
865 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
866 Expression *scaleFactor(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
867 Expression *typeCombine(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
868 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
869 int isunsigned();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
870 void incompatibleTypes();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
871 void dump(int indent);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
872 void scanForNestedRef(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
873 Expression *interpretCommon(InterState *istate, Expression *(*fp)(Type *, Expression *, Expression *));
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
874 Expression *interpretCommon2(InterState *istate, Expression *(*fp)(TOK, Type *, Expression *, Expression *));
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
875 Expression *interpretAssignCommon(InterState *istate, Expression *(*fp)(Type *, Expression *, Expression *), int post = 0);
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
876 Expression *arrayOp(Scope *sc);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
877
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
878 int inlineCost(InlineCostState *ics);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
879 Expression *doInline(InlineDoState *ids);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
880 Expression *inlineScan(InlineScanState *iss);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
881
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
882 Expression *op_overload(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
883
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
884 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
885 elem *toElemBin(IRState *irs, int op);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
886 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
887 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
888
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
889 struct BinAssignExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
890 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
891 BinAssignExp(Loc loc, enum TOK op, int size, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
892 int checkSideEffect(int flag);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
893 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
894
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
895 /****************************************************************/
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
896
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
897 struct CompileExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
898 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
899 CompileExp(Loc loc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
900 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
901 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
902 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
903
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
904 struct FileExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
905 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
906 FileExp(Loc loc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
907 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
908 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
909 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
910
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
911 struct AssertExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
912 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
913 Expression *msg;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
914
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
915 AssertExp(Loc loc, Expression *e, Expression *msg = NULL);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
916 Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
917 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
918 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
919 int checkSideEffect(int flag);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
920 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
921
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
922 int inlineCost(InlineCostState *ics);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
923 Expression *doInline(InlineDoState *ids);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
924 Expression *inlineScan(InlineScanState *iss);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
925
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
926 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
927 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
928 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
929
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
930 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
931 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
932 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
933 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
934
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
935 struct DotIdExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
936 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
937 Identifier *ident;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
938
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
939 DotIdExp(Loc loc, Expression *e, Identifier *ident);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
940 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
941 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
942 void dump(int i);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
943 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
944
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
945 struct DotTemplateExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
946 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
947 TemplateDeclaration *td;
1650
40bd4a0d4870 Update to work with LLVM 2.7.
Tomas Lindquist Olsen
parents: 1630
diff changeset
948
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
949 DotTemplateExp(Loc loc, Expression *e, TemplateDeclaration *td);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
950 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
951 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
952
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
953 struct DotVarExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
954 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
955 Declaration *var;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
956
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
957 DotVarExp(Loc loc, Expression *e, Declaration *var);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
958 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
959 Expression *toLvalue(Scope *sc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
960 Expression *modifiableLvalue(Scope *sc, Expression *e);
875
330f999ade44 Merged DMD 1.038
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 860
diff changeset
961 Expression *optimize(int result);
330f999ade44 Merged DMD 1.038
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 860
diff changeset
962 Expression *interpret(InterState *istate);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
963 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
964 void dump(int indent);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
965 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
966 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
967 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
968
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
969 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
970 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
971 void cacheLvalue(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
972 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
973 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
974
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
975 struct DotTemplateInstanceExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
976 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
977 TemplateInstance *ti;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
978
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
979 DotTemplateInstanceExp(Loc loc, Expression *e, TemplateInstance *ti);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
980 Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
981 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
982 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
983 void dump(int indent);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
984 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
985
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
986 struct DelegateExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
987 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
988 FuncDeclaration *func;
1358
78038e540342 Fix overload resolution issue in dmd bug 313/314 fix.
Christian Kamm <kamm incasoftware de>
parents: 1195
diff changeset
989 Module* m; // starting point for overload resolution
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
990
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
991 DelegateExp(Loc loc, Expression *e, FuncDeclaration *func);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
992 Expression *semantic(Scope *sc);
1630
44b145be2ef5 Merge dmd 1.056.
Robert Clipsham <robert@octarineparrot.com>
parents: 1626
diff changeset
993 Expression *interpret(InterState *istate);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
994 MATCH implicitConvTo(Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
995 Expression *castTo(Scope *sc, Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
996 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
997 void dump(int indent);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
998
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
999 int inlineCost(InlineCostState *ics);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1000 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1001 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1002 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1003
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1004 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1005 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1006 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1007 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1008
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1009 struct DotTypeExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1010 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1011 Dsymbol *sym; // symbol that represents a type
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1012
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1013 DotTypeExp(Loc loc, Expression *e, Dsymbol *sym);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1014 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1015 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1016 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1017 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1018 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1019
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1020 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1021 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1022 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1023 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1024
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1025 struct CallExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1026 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1027 Expressions *arguments; // function arguments
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1028
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1029 CallExp(Loc loc, Expression *e, Expressions *exps);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1030 CallExp(Loc loc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1031 CallExp(Loc loc, Expression *e, Expression *earg1);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1032 CallExp(Loc loc, Expression *e, Expression *earg1, Expression *earg2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1033
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1034 Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1035 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1036 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1037 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1038 int checkSideEffect(int flag);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1039 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1040 void dump(int indent);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1041 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1042 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1043 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1044 void scanForNestedRef(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1045 Expression *toLvalue(Scope *sc, Expression *e);
1587
def7a1d494fd Merge DMD 1.051
Christian Kamm <kamm incasoftware de>
parents: 1499
diff changeset
1046 Expression *modifiableLvalue(Scope *sc, Expression *e);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1047
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1048 int inlineCost(InlineCostState *ics);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1049 Expression *doInline(InlineDoState *ids);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1050 Expression *inlineScan(InlineScanState *iss);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1051
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1052 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1053 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1054 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1055 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1056
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1057 struct AddrExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1058 {
1358
78038e540342 Fix overload resolution issue in dmd bug 313/314 fix.
Christian Kamm <kamm incasoftware de>
parents: 1195
diff changeset
1059 Module* m; // starting point for overload resolution
78038e540342 Fix overload resolution issue in dmd bug 313/314 fix.
Christian Kamm <kamm incasoftware de>
parents: 1195
diff changeset
1060
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1061 AddrExp(Loc loc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1062 Expression *semantic(Scope *sc);
1618
a87f1d6ff48e Merge DMD r303: harmonize
Leandro Lucarella <llucax@gmail.com>
parents: 1615
diff changeset
1063 void checkEscape();
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1064 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1065 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1066 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1067 MATCH implicitConvTo(Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1068 Expression *castTo(Scope *sc, Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1069 Expression *optimize(int result);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1070
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1071 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1072 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1073 llvm::Constant *toConstElem(IRState *irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1074 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1075 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1076
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1077 struct PtrExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1078 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1079 PtrExp(Loc loc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1080 PtrExp(Loc loc, Expression *e, Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1081 Expression *semantic(Scope *sc);
1618
a87f1d6ff48e Merge DMD r303: harmonize
Leandro Lucarella <llucax@gmail.com>
parents: 1615
diff changeset
1082 void checkEscapeRef();
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1083 Expression *toLvalue(Scope *sc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1084 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1085 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1086 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1087 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1088 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1089 Expression *interpret(InterState *istate);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1090
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1091 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1092 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1093 void cacheLvalue(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1094 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1095 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1096
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1097 struct NegExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1098 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1099 NegExp(Loc loc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1100 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1101 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1102 Expression *interpret(InterState *istate);
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1103 void buildArrayIdent(OutBuffer *buf, Expressions *arguments);
1607
207a8a438dea Merge DMD r253: refactor: Argument => Parameter
Leandro Lucarella <llucax@gmail.com>
parents: 1587
diff changeset
1104 Expression *buildArrayLoop(Parameters *fparams);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1105
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1106 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1107 Identifier *opId();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1108
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1109 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1110 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1111 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1112
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1113 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1114 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1115 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1116 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1117
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1118 struct UAddExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1119 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1120 UAddExp(Loc loc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1121 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1122
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1123 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1124 Identifier *opId();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1125 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1126
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1127 struct ComExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1128 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1129 ComExp(Loc loc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1130 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1131 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1132 Expression *interpret(InterState *istate);
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1133 void buildArrayIdent(OutBuffer *buf, Expressions *arguments);
1607
207a8a438dea Merge DMD r253: refactor: Argument => Parameter
Leandro Lucarella <llucax@gmail.com>
parents: 1587
diff changeset
1134 Expression *buildArrayLoop(Parameters *fparams);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1135
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1136 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1137 Identifier *opId();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1138
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1139 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1140 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1141 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1142
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1143 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1144 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1145 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1146 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1147
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1148 struct NotExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1149 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1150 NotExp(Loc loc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1151 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1152 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1153 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1154 int isBit();
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1155 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1156 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1157 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1158
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1159 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1160 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1161 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1162 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1163
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1164 struct BoolExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1165 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1166 BoolExp(Loc loc, Expression *e, Type *type);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1167 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1168 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1169 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1170 int isBit();
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1171 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1172 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1173 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1174
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1175 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1176 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1177 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1178 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1179
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1180 struct DeleteExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1181 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1182 DeleteExp(Loc loc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1183 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1184 Expression *checkToBoolean();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1185 int checkSideEffect(int flag);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1186 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1187 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1188 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1189 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1190
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1191 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1192 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1193 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1194 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1195
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1196 struct CastExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1197 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1198 // Possible to cast to one type while painting to another type
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1199 Type *to; // type to cast to
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1200
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1201 CastExp(Loc loc, Expression *e, Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1202 Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1203 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1204 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1205 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1206 int checkSideEffect(int flag);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1207 void checkEscape();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1208 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
1587
def7a1d494fd Merge DMD 1.051
Christian Kamm <kamm incasoftware de>
parents: 1499
diff changeset
1209 void buildArrayIdent(OutBuffer *buf, Expressions *arguments);
1607
207a8a438dea Merge DMD r253: refactor: Argument => Parameter
Leandro Lucarella <llucax@gmail.com>
parents: 1587
diff changeset
1210 Expression *buildArrayLoop(Parameters *fparams);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1211 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1212 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1213 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1214
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1215 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1216 Identifier *opId();
619
722630261d62 Implemented constant pointer casts (like casting function pointer to void* as a constant global initializer)
tomas@myhost
parents: 599
diff changeset
1217
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1218 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1219 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1220 llvm::Constant *toConstElem(IRState *irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1221 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1222 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1223
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1224
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1225 struct SliceExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1226 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1227 Expression *upr; // NULL if implicit 0
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1228 Expression *lwr; // NULL if implicit [length - 1]
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1229 VarDeclaration *lengthVar;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1230
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1231 SliceExp(Loc loc, Expression *e1, Expression *lwr, Expression *upr);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1232 Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1233 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1234 void checkEscape();
1618
a87f1d6ff48e Merge DMD r303: harmonize
Leandro Lucarella <llucax@gmail.com>
parents: 1615
diff changeset
1235 void checkEscapeRef();
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1236 Expression *toLvalue(Scope *sc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1237 Expression *modifiableLvalue(Scope *sc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1238 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1239 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1240 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1241 void dump(int indent);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1242 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1243 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1244 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1245 void scanForNestedRef(Scope *sc);
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1246 void buildArrayIdent(OutBuffer *buf, Expressions *arguments);
1607
207a8a438dea Merge DMD r253: refactor: Argument => Parameter
Leandro Lucarella <llucax@gmail.com>
parents: 1587
diff changeset
1247 Expression *buildArrayLoop(Parameters *fparams);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1248
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1249 int inlineCost(InlineCostState *ics);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1250 Expression *doInline(InlineDoState *ids);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1251 Expression *inlineScan(InlineScanState *iss);
860
7edce7e58ab1 Add more toConstElem stubs to get better error messages.
Christian Kamm <kamm incasoftware de>
parents: 797
diff changeset
1252
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1253 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1254 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1255 llvm::Constant *toConstElem(IRState *irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1256 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1257 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1258
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1259 struct ArrayLengthExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1260 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1261 ArrayLengthExp(Loc loc, Expression *e1);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1262 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1263 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1264 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1265 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1266 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1267 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1268 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1269
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1270 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1271 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1272 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1273 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1274
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1275 // e1[a0,a1,a2,a3,...]
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1276
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1277 struct ArrayExp : UnaExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1278 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1279 Expressions *arguments; // Array of Expression's
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1280
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1281 ArrayExp(Loc loc, Expression *e1, Expressions *arguments);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1282 Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1283 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1284 Expression *toLvalue(Scope *sc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1285 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1286 void scanForNestedRef(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1287
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1288 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1289 Identifier *opId();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1290
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1291 int inlineCost(InlineCostState *ics);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1292 Expression *doInline(InlineDoState *ids);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1293 Expression *inlineScan(InlineScanState *iss);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1294 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1295
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1296 /****************************************************************/
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1297
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1298 struct DotExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1299 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1300 DotExp(Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1301 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1302 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1303
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1304 struct CommaExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1305 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1306 CommaExp(Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1307 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1308 void checkEscape();
1618
a87f1d6ff48e Merge DMD r303: harmonize
Leandro Lucarella <llucax@gmail.com>
parents: 1615
diff changeset
1309 void checkEscapeRef();
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1310 Expression *toLvalue(Scope *sc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1311 Expression *modifiableLvalue(Scope *sc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1312 int isBool(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1313 int checkSideEffect(int flag);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1314 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1315 Expression *interpret(InterState *istate);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1316 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1317 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1318 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1319
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1320 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1321 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1322 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1323 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1324
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1325 struct IndexExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1326 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1327 VarDeclaration *lengthVar;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1328 int modifiable;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1329
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1330 IndexExp(Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1331 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1332 Expression *toLvalue(Scope *sc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1333 Expression *modifiableLvalue(Scope *sc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1334 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1335 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1336 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1337 Expression *doInline(InlineDoState *ids);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1338 void scanForNestedRef(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1339
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1340 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1341 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1342 #elif IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1343 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1344 llvm::Constant *toConstElem(IRState *irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1345 void cacheLvalue(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1346 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1347 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1348
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1349 /* For both i++ and i--
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1350 */
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1351 struct PostExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1352 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1353 PostExp(enum TOK op, Loc loc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1354 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1355 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1356 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1357 Identifier *opId(); // For operator overloading
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1358 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1359 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1360 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1361
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1362 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1363 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1364 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1365 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1366
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1367 struct AssignExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1368 { int ismemset; // !=0 if setting the contents of an array
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1369
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1370 AssignExp(Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1371 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1372 Expression *checkToBoolean();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1373 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1374 Identifier *opId(); // For operator overloading
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1375 void buildArrayIdent(OutBuffer *buf, Expressions *arguments);
1607
207a8a438dea Merge DMD r253: refactor: Argument => Parameter
Leandro Lucarella <llucax@gmail.com>
parents: 1587
diff changeset
1376 Expression *buildArrayLoop(Parameters *fparams);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1377 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1378 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1379 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1380
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1381 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1382 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1383 #endif
1650
40bd4a0d4870 Update to work with LLVM 2.7.
Tomas Lindquist Olsen
parents: 1630
diff changeset
1384
40bd4a0d4870 Update to work with LLVM 2.7.
Tomas Lindquist Olsen
parents: 1630
diff changeset
1385 AssignExp* isAssignExp() { return this; }
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1386 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1387
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1388 #if IN_DMD
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1389 #define ASSIGNEXP_TOELEM elem *toElem(IRState *irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1390 #elif IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1391 #define ASSIGNEXP_TOELEM DValue* toElem(IRState *irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1392 #else
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1393 #define ASSIGNEXP_TOELEM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1394 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1395
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1396 #define ASSIGNEXP(op) \
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1397 struct op##AssignExp : BinExp \
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1398 { \
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1399 op##AssignExp(Loc loc, Expression *e1, Expression *e2); \
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1400 Expression *semantic(Scope *sc); \
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1401 Expression *interpret(InterState *istate); \
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1402 X(void buildArrayIdent(OutBuffer *buf, Expressions *arguments);) \
1607
207a8a438dea Merge DMD r253: refactor: Argument => Parameter
Leandro Lucarella <llucax@gmail.com>
parents: 1587
diff changeset
1403 X(Expression *buildArrayLoop(Parameters *fparams);) \
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1404 \
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1405 Identifier *opId(); /* For operator overloading */ \
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1406 \
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1407 ASSIGNEXP_TOELEM \
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1408 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1409
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1410 #define X(a) a
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1411 ASSIGNEXP(Add)
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1412 ASSIGNEXP(Min)
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1413 ASSIGNEXP(Mul)
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1414 ASSIGNEXP(Div)
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1415 ASSIGNEXP(Mod)
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1416 ASSIGNEXP(And)
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1417 ASSIGNEXP(Or)
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1418 ASSIGNEXP(Xor)
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1419 #undef X
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1420
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1421 #define X(a)
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1422
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1423 ASSIGNEXP(Shl)
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1424 ASSIGNEXP(Shr)
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1425 ASSIGNEXP(Ushr)
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1426 ASSIGNEXP(Cat)
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1427
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1428 #undef X
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1429 #undef ASSIGNEXP
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1430 #undef ASSIGNEXP_TOELEM
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1431
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1432 struct AddExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1433 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1434 AddExp(Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1435 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1436 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1437 Expression *interpret(InterState *istate);
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1438 void buildArrayIdent(OutBuffer *buf, Expressions *arguments);
1607
207a8a438dea Merge DMD r253: refactor: Argument => Parameter
Leandro Lucarella <llucax@gmail.com>
parents: 1587
diff changeset
1439 Expression *buildArrayLoop(Parameters *fparams);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1440
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1441 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1442 int isCommutative();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1443 Identifier *opId();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1444 Identifier *opId_r();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1445
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1446 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1447 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1448 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1449
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1450 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1451 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1452 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1453 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1454
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1455 struct MinExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1456 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1457 MinExp(Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1458 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1459 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1460 Expression *interpret(InterState *istate);
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1461 void buildArrayIdent(OutBuffer *buf, Expressions *arguments);
1607
207a8a438dea Merge DMD r253: refactor: Argument => Parameter
Leandro Lucarella <llucax@gmail.com>
parents: 1587
diff changeset
1462 Expression *buildArrayLoop(Parameters *fparams);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1463
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1464 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1465 Identifier *opId();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1466 Identifier *opId_r();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1467
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1468 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1469 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1470 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1471
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1472 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1473 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1474 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1475 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1476
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1477 struct CatExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1478 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1479 CatExp(Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1480 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1481 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1482 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1483
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1484 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1485 Identifier *opId();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1486 Identifier *opId_r();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1487
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1488 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1489 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1490 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1491
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1492 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1493 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1494 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1495 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1496
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1497 struct MulExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1498 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1499 MulExp(Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1500 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1501 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1502 Expression *interpret(InterState *istate);
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1503 void buildArrayIdent(OutBuffer *buf, Expressions *arguments);
1607
207a8a438dea Merge DMD r253: refactor: Argument => Parameter
Leandro Lucarella <llucax@gmail.com>
parents: 1587
diff changeset
1504 Expression *buildArrayLoop(Parameters *fparams);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1505
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1506 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1507 int isCommutative();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1508 Identifier *opId();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1509 Identifier *opId_r();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1510
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1511 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1512 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1513 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1514
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1515 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1516 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1517 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1518 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1519
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1520 struct DivExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1521 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1522 DivExp(Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1523 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1524 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1525 Expression *interpret(InterState *istate);
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1526 void buildArrayIdent(OutBuffer *buf, Expressions *arguments);
1607
207a8a438dea Merge DMD r253: refactor: Argument => Parameter
Leandro Lucarella <llucax@gmail.com>
parents: 1587
diff changeset
1527 Expression *buildArrayLoop(Parameters *fparams);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1528
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1529 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1530 Identifier *opId();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1531 Identifier *opId_r();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1532
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1533 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1534 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1535 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1536
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1537 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1538 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1539 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1540 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1541
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1542 struct ModExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1543 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1544 ModExp(Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1545 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1546 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1547 Expression *interpret(InterState *istate);
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1548 void buildArrayIdent(OutBuffer *buf, Expressions *arguments);
1607
207a8a438dea Merge DMD r253: refactor: Argument => Parameter
Leandro Lucarella <llucax@gmail.com>
parents: 1587
diff changeset
1549 Expression *buildArrayLoop(Parameters *fparams);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1550
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1551 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1552 Identifier *opId();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1553 Identifier *opId_r();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1554
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1555 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1556 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1557 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1558
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1559 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1560 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1561 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1562 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1563
1615
3da302cc4966 Merge DMD r294: bugzilla 2816 Sudden-death static assert is not...
Leandro Lucarella <llucax@gmail.com>
parents: 1607
diff changeset
1564 #if DMDV2
3da302cc4966 Merge DMD r294: bugzilla 2816 Sudden-death static assert is not...
Leandro Lucarella <llucax@gmail.com>
parents: 1607
diff changeset
1565 struct PowExp : BinExp
3da302cc4966 Merge DMD r294: bugzilla 2816 Sudden-death static assert is not...
Leandro Lucarella <llucax@gmail.com>
parents: 1607
diff changeset
1566 {
3da302cc4966 Merge DMD r294: bugzilla 2816 Sudden-death static assert is not...
Leandro Lucarella <llucax@gmail.com>
parents: 1607
diff changeset
1567 PowExp(Loc loc, Expression *e1, Expression *e2);
3da302cc4966 Merge DMD r294: bugzilla 2816 Sudden-death static assert is not...
Leandro Lucarella <llucax@gmail.com>
parents: 1607
diff changeset
1568 Expression *semantic(Scope *sc);
3da302cc4966 Merge DMD r294: bugzilla 2816 Sudden-death static assert is not...
Leandro Lucarella <llucax@gmail.com>
parents: 1607
diff changeset
1569
3da302cc4966 Merge DMD r294: bugzilla 2816 Sudden-death static assert is not...
Leandro Lucarella <llucax@gmail.com>
parents: 1607
diff changeset
1570 // For operator overloading
3da302cc4966 Merge DMD r294: bugzilla 2816 Sudden-death static assert is not...
Leandro Lucarella <llucax@gmail.com>
parents: 1607
diff changeset
1571 Identifier *opId();
3da302cc4966 Merge DMD r294: bugzilla 2816 Sudden-death static assert is not...
Leandro Lucarella <llucax@gmail.com>
parents: 1607
diff changeset
1572 Identifier *opId_r();
3da302cc4966 Merge DMD r294: bugzilla 2816 Sudden-death static assert is not...
Leandro Lucarella <llucax@gmail.com>
parents: 1607
diff changeset
1573 };
3da302cc4966 Merge DMD r294: bugzilla 2816 Sudden-death static assert is not...
Leandro Lucarella <llucax@gmail.com>
parents: 1607
diff changeset
1574 #endif
3da302cc4966 Merge DMD r294: bugzilla 2816 Sudden-death static assert is not...
Leandro Lucarella <llucax@gmail.com>
parents: 1607
diff changeset
1575
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1576 struct ShlExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1577 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1578 ShlExp(Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1579 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1580 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1581 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1582
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1583 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1584 Identifier *opId();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1585 Identifier *opId_r();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1586
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1587 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1588 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1589 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1590
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1591 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1592 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1593 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1594 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1595
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1596 struct ShrExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1597 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1598 ShrExp(Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1599 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1600 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1601 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1602
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1603 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1604 Identifier *opId();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1605 Identifier *opId_r();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1606
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1607 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1608 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1609 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1610
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1611 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1612 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1613 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1614 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1615
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1616 struct UshrExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1617 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1618 UshrExp(Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1619 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1620 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1621 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1622
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1623 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1624 Identifier *opId();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1625 Identifier *opId_r();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1626
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1627 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1628 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1629 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1630
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1631 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1632 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1633 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1634 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1635
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1636 struct AndExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1637 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1638 AndExp(Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1639 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1640 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1641 Expression *interpret(InterState *istate);
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1642 void buildArrayIdent(OutBuffer *buf, Expressions *arguments);
1607
207a8a438dea Merge DMD r253: refactor: Argument => Parameter
Leandro Lucarella <llucax@gmail.com>
parents: 1587
diff changeset
1643 Expression *buildArrayLoop(Parameters *fparams);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1644
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1645 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1646 int isCommutative();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1647 Identifier *opId();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1648 Identifier *opId_r();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1649
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1650 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1651 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1652 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1653
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1654 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1655 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1656 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1657 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1658
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1659 struct OrExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1660 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1661 OrExp(Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1662 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1663 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1664 Expression *interpret(InterState *istate);
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1665 void buildArrayIdent(OutBuffer *buf, Expressions *arguments);
1607
207a8a438dea Merge DMD r253: refactor: Argument => Parameter
Leandro Lucarella <llucax@gmail.com>
parents: 1587
diff changeset
1666 Expression *buildArrayLoop(Parameters *fparams);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1667
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1668 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1669 int isCommutative();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1670 Identifier *opId();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1671 Identifier *opId_r();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1672
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1673 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1674 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1675 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1676
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1677 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1678 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1679 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1680 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1681
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1682 struct XorExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1683 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1684 XorExp(Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1685 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1686 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1687 Expression *interpret(InterState *istate);
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1688 void buildArrayIdent(OutBuffer *buf, Expressions *arguments);
1607
207a8a438dea Merge DMD r253: refactor: Argument => Parameter
Leandro Lucarella <llucax@gmail.com>
parents: 1587
diff changeset
1689 Expression *buildArrayLoop(Parameters *fparams);
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1690
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1691 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1692 int isCommutative();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1693 Identifier *opId();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1694 Identifier *opId_r();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1695
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1696 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1697 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1698 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1699
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1700 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1701 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1702 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1703 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1704
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1705 struct OrOrExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1706 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1707 OrOrExp(Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1708 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1709 Expression *checkToBoolean();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1710 int isBit();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1711 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1712 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1713 int checkSideEffect(int flag);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1714 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1715 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1716 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1717
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1718 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1719 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1720 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1721 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1722
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1723 struct AndAndExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1724 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1725 AndAndExp(Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1726 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1727 Expression *checkToBoolean();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1728 int isBit();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1729 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1730 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1731 int checkSideEffect(int flag);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1732 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1733 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1734 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1735
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1736 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1737 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1738 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1739 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1740
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1741 struct CmpExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1742 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1743 CmpExp(enum TOK op, Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1744 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1745 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1746 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1747 int isBit();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1748
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1749 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1750 int isCommutative();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1751 Identifier *opId();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1752
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1753 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1754 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1755 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1756
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1757 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1758 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1759 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1760 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1761
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1762 struct InExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1763 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1764 InExp(Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1765 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1766 int isBit();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1767
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1768 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1769 Identifier *opId();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1770 Identifier *opId_r();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1771
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1772 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1773 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1774 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1775
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1776 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1777 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1778 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1779 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1780
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1781 struct RemoveExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1782 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1783 RemoveExp(Loc loc, Expression *e1, Expression *e2);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1784 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1785 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1786 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1787
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1788 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1789 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1790 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1791 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1792
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1793 // == and !=
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1794
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1795 struct EqualExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1796 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1797 EqualExp(enum TOK op, Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1798 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1799 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1800 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1801 int isBit();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1802
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1803 // For operator overloading
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1804 int isCommutative();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1805 Identifier *opId();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1806
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1807 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1808 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1809 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1810
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1811 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1812 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1813 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1814 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1815
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1816 // === and !===
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1817
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1818 struct IdentityExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1819 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1820 IdentityExp(enum TOK op, Loc loc, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1821 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1822 int isBit();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1823 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1824 Expression *interpret(InterState *istate);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1825 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1826 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1827 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1828
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1829 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1830 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1831 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1832 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1833
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1834 /****************************************************************/
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1835
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1836 struct CondExp : BinExp
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1837 {
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1838 Expression *econd;
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1839
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1840 CondExp(Loc loc, Expression *econd, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1841 Expression *syntaxCopy();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1842 Expression *semantic(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1843 Expression *optimize(int result);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1844 Expression *interpret(InterState *istate);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1845 void checkEscape();
1618
a87f1d6ff48e Merge DMD r303: harmonize
Leandro Lucarella <llucax@gmail.com>
parents: 1615
diff changeset
1846 void checkEscapeRef();
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1847 Expression *toLvalue(Scope *sc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1848 Expression *modifiableLvalue(Scope *sc, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1849 Expression *checkToBoolean();
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1850 int checkSideEffect(int flag);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1851 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1852 MATCH implicitConvTo(Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1853 Expression *castTo(Scope *sc, Type *t);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1854 void scanForNestedRef(Scope *sc);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1855
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1856 int inlineCost(InlineCostState *ics);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1857 Expression *doInline(InlineDoState *ids);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1858 Expression *inlineScan(InlineScanState *iss);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1859
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1860 #if IN_DMD
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1861 elem *toElem(IRState *irs);
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1862 #endif
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1863
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1864 #if IN_LLVM
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1865 DValue* toElem(IRState* irs);
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1866 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1867 };
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1868
510
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1869 #if DMDV2
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1870 /****************************************************************/
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1871
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1872 struct DefaultInitExp : Expression
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1873 {
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1874 enum TOK subop; // which of the derived classes this is
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1875
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1876 DefaultInitExp(Loc loc, enum TOK subop, int size);
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1877 virtual Expression *resolve(Loc loc, Scope *sc) = 0;
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1878 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1879 };
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1880
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1881 struct FileInitExp : DefaultInitExp
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1882 {
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1883 FileInitExp(Loc loc);
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1884 Expression *semantic(Scope *sc);
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1885 Expression *resolve(Loc loc, Scope *sc);
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1886 };
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1887
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1888 struct LineInitExp : DefaultInitExp
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1889 {
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1890 LineInitExp(Loc loc);
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1891 Expression *semantic(Scope *sc);
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1892 Expression *resolve(Loc loc, Scope *sc);
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1893 };
6aee82889553 Merged DMD 1.034, array operations are not yet implemented ;)
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 459
diff changeset
1894 #endif
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1895
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1896 /****************************************************************/
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1897
599
4435f57956e7 Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 588
diff changeset
1898 #if IN_LLVM
4435f57956e7 Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 588
diff changeset
1899
664
eef8ac26c66c Some missed LLVMDC -> LDC.
Christian Kamm <kamm incasoftware de>
parents: 619
diff changeset
1900 // this stuff is strictly LDC
599
4435f57956e7 Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 588
diff changeset
1901
4435f57956e7 Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 588
diff changeset
1902 struct GEPExp : UnaExp
4435f57956e7 Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 588
diff changeset
1903 {
4435f57956e7 Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 588
diff changeset
1904 unsigned index;
4435f57956e7 Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 588
diff changeset
1905 Identifier* ident;
4435f57956e7 Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 588
diff changeset
1906
4435f57956e7 Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 588
diff changeset
1907 GEPExp(Loc loc, Expression* e, Identifier* id, unsigned idx);
4435f57956e7 Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 588
diff changeset
1908 void toCBuffer(OutBuffer *buf, HdrGenState *hgs);
4435f57956e7 Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 588
diff changeset
1909 Expression *toLvalue(Scope *sc, Expression *e);
4435f57956e7 Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 588
diff changeset
1910
1151
3cf0066e6faf - Versioned Expresssion::toElem with #if IN_DMD/IN_LLVM.
Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
parents: 1146
diff changeset
1911 DValue* toElem(IRState* irs);
860
7edce7e58ab1 Add more toConstElem stubs to get better error messages.
Christian Kamm <kamm incasoftware de>
parents: 797
diff changeset
1912 llvm::Constant *toConstElem(IRState *irs);
599
4435f57956e7 Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 588
diff changeset
1913 };
4435f57956e7 Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 588
diff changeset
1914
4435f57956e7 Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 588
diff changeset
1915 #endif
4435f57956e7 Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 588
diff changeset
1916
4435f57956e7 Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 588
diff changeset
1917 /****************************************************************/
4435f57956e7 Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 588
diff changeset
1918
159
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1919 /* Special values used by the interpreter
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1920 */
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1921 #define EXP_CANT_INTERPRET ((Expression *)1)
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1922 #define EXP_CONTINUE_INTERPRET ((Expression *)2)
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1923 #define EXP_BREAK_INTERPRET ((Expression *)3)
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1924 #define EXP_GOTO_INTERPRET ((Expression *)4)
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1925 #define EXP_VOID_INTERPRET ((Expression *)5)
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1926
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1927 Expression *expType(Type *type, Expression *e);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1928
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1929 Expression *Neg(Type *type, Expression *e1);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1930 Expression *Com(Type *type, Expression *e1);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1931 Expression *Not(Type *type, Expression *e1);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1932 Expression *Bool(Type *type, Expression *e1);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1933 Expression *Cast(Type *type, Type *to, Expression *e1);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1934 Expression *ArrayLength(Type *type, Expression *e1);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1935 Expression *Ptr(Type *type, Expression *e1);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1936
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1937 Expression *Add(Type *type, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1938 Expression *Min(Type *type, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1939 Expression *Mul(Type *type, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1940 Expression *Div(Type *type, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1941 Expression *Mod(Type *type, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1942 Expression *Shl(Type *type, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1943 Expression *Shr(Type *type, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1944 Expression *Ushr(Type *type, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1945 Expression *And(Type *type, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1946 Expression *Or(Type *type, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1947 Expression *Xor(Type *type, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1948 Expression *Index(Type *type, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1949 Expression *Cat(Type *type, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1950
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1951 Expression *Equal(enum TOK op, Type *type, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1952 Expression *Cmp(enum TOK op, Type *type, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1953 Expression *Identity(enum TOK op, Type *type, Expression *e1, Expression *e2);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1954
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1955 Expression *Slice(Type *type, Expression *e1, Expression *lwr, Expression *upr);
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1956
5acec6b2eef8 [svn r175] merged dmd 1.029
ChristianK
parents: 108
diff changeset
1957 #endif /* DMD_EXPRESSION_H */