summary refs log tree commit diff stats
path: root/compiler/semfold.nim
Commit message (Expand)AuthorAgeFilesLines
...
* minor tweaks; updated todo.txtAraq2014-04-251-0/+1
* Fix spawn ICE on invalid argument.EXetoC2014-04-201-1/+1
* fixes yet another option typeAraq2014-04-031-6/+12
* vm2: new representation of registersAraq2014-02-211-1/+1
* implements #766;Zahary Karadjov2014-01-241-2/+1
* 'nil' as a statement is deprecated, use an empty 'discard' insteadAraq2014-01-191-2/+2
* Merge branch 'upstream' into develZahary Karadjov2013-12-291-4/+6
|\
| * make more tests greenZahary Karadjov2013-12-291-2/+3
| * static params: expr[T] is now static[T]Zahary Karadjov2013-12-191-1/+1
* | case consistency part 4Araq2013-12-271-29/+29
* | more tests are greenAraq2013-12-081-8/+38
|/
* Merge branch 'master' of github.com:Araq/NimrodAraq2013-08-301-4/+12
|\
| * Experimental support for delayed instantiation of genericsZahary Karadjov2013-08-231-4/+12
* | float64 is now an alias to 'float'; fixes #545Araq2013-08-301-2/+5
|/
* new VM: implemented constructors and jump optimizerAraq2013-08-071-1/+1
* bugfix: gensymAraq2013-07-251-1/+1
* fixes #544Araq2013-07-241-0/+4
* fixes #432, fixes #427Araq2013-05-191-1/+8
* first steps to the expr/stmt unificationAraq2013-04-301-4/+3
* fixes #287; bugfix: subrange checking is performed againAraq2013-04-121-6/+13
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* bugfix: 'indexOf' for tuple fields worksAraq2013-03-111-2/+9
* first steps to implement object construction expressionsAraq2013-03-071-4/+11
* make some tests greenAraq2013-03-031-4/+6
* the `is` operator now works with type classes and type variablesZahary Karadjov2012-10-031-11/+0
* term rewriting macros fully implemented; still buggyAraq2012-09-031-2/+10
* next steps for tyVarargs/tyOpenArray splitAraq2012-08-141-2/+2
* got rid of some mAddU64 etc. magicsAraq2012-07-201-10/+10
* equality and hashing for closuresAraq2012-07-171-3/+9
* improved unsigned supportAraq2012-07-141-3/+5
* more fixes for new integer promotion rules; fixes #152; fixes #157; fixes #15...Araq2012-07-091-1/+4
* 'addSon' for types deprecated for 'int literal type' analysisAraq2012-07-091-2/+2
* changed integer promotion rules; breaks bootstrapping and lots of codeAraq2012-07-081-5/+156
* added devel/logging; weakrefs test; next steps for proper unsigned supportAraq2012-07-051-2/+3
* changed integer promotion rules; added math.fmodAraq2012-06-281-1/+1
* better support for unsigned integers.Zahary Karadjov2012-06-111-6/+6
* Added system.staticExec proc for executing external command at compile-timeZahary Karadjov2012-06-021-1/+1
* the foundations of a type traits module; better error messages for expr, type...Zahary Karadjov2012-04-061-1/+1
* bugfix: semfold supports merging of '&'Araq2012-02-191-0/+10
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* alias analysis as required for the code gen and the HLOAraq2011-12-081-1/+1
* 'assert' is now implemented without compiler magicAraq2011-12-041-0/+4
* Merge branch 'master' of github.com:Araq/NimrodAraq2011-11-261-2/+4
|\
| * New algorithm for locating and loading nimrod config files.Zahary Karadjov2011-11-251-2/+4
* | fixed bug that kept tls emulation from workingAraq2011-11-251-3/+3
|/
* bugfix: 'when' sections in generic objects now work, so TThread[void] compilesAraq2011-11-201-1/+3
* constant folding for cnst[i] and cnst.attrAraq2011-10-291-9/+64
* Cleaned up the circular dependecies and remaining issuesZahary Karadjov2011-10-071-1/+1
* getAst works correctly with existing AST values as template/macro argumentsZahary Karadjov2011-10-071-1/+1
* code generator supports constant sequences; more consistent compile time eval...Araq2011-10-071-9/+11
00 3027' href='/akkartik/mu/commit/001help.cc?h=main&id=385ff13617edb380a0a58397fe4836f4261503b4'>385ff136 ^
d98e1a18 ^
385ff136 ^
b39ceb27 ^





385ff136 ^
b39ceb27 ^
10f415a6 ^
385ff136 ^
b39ceb27 ^
fd72ec75 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246