summary refs log tree commit diff stats
path: root/compiler/lowerings.nim
Commit message (Expand)AuthorAgeFilesLines
...
* | removed tyArrayConstr completely from the compiler; introduced tyAlias instea...Araq2016-11-141-1/+1
|/
* big refactoring: step 1Araq2016-10-311-3/+3
* fixes #4673Andreas Rumpf2016-09-011-2/+2
* don't allow to pass a closure to spawnAndreas Rumpf2016-08-101-0/+2
* fixes #2758Andreas Rumpf2016-07-151-0/+1
* made indirectAccess slightly more efficientAndreas Rumpf2015-12-281-1/+2
* first implementation of the new lambda-lifting pass; barely anything worksAndreas Rumpf2015-12-261-1/+1
* tuple unpacking works in a non-var/let contextAraq2015-08-211-0/+26
* Merge branch 'more_concurrency' into develAraq2015-06-301-5/+8
|\
| * first implementation of pinnedSpawnAraq2015-05-281-5/+8
* | fixes #2297, fixes #2946Araq2015-06-181-0/+20
|/
* system.locals is now a plugin for educationAraq2015-04-241-0/+4
* first implementation of overloading of '='; missing: rewriting let/var sectionsAraq2015-04-061-2/+2
* fixes #2286Araq2015-03-121-20/+31
* fixes #325Araq2015-01-281-1/+0
* Happy new year!Guillaume Gelin2015-01-061-1/+1
* fixes a tuple lowering bugAraq2014-12-131-3/+4
* renamed CondVar to SemaphoreAraq2014-11-101-1/+1
* the codegen doesn't emit deepCopy for parallel statementsAraq2014-11-081-10/+17
* fixes exhaustion bug and missing GC_ref code generationAraq2014-11-071-0/+6
* merged things from develAraq2014-09-121-0/+1
|\
| * fixes #665Araq2014-09-111-0/+1
* | Nimrod renamed to NimAraq2014-08-281-1/+1
* | renamefestAraq2014-08-231-6/+6
|/
* progress on 'spawn'Araq2014-08-101-2/+2
* 'parallel' statement works againAraq2014-08-081-6/+4
* progress on deepCopyAraq2014-08-011-25/+41
* new jester compilesAraq2014-06-281-0/+10
* compiles againAraq2014-06-271-1/+1
* some progress for jester+asyncAraq2014-06-271-1/+16
* rewrote lambdalifting; fixes deeply nested closuresAraq2014-06-261-0/+16
* big rename: Promise -> FlowVarAraq2014-06-061-46/+46
* Promises are now refsAraq2014-06-051-22/+23
* fixed codegen for barriersAraq2014-06-021-2/+7
* bugfix: codegen for promisesAraq2014-06-021-4/+11
* fixed codegen for return valuesAraq2014-06-011-12/+15
* pi test compiles, but crashes randomlyAraq2014-06-011-4/+14
* tdisjoint_slice2 worksAraq2014-05-311-1/+1
* correct code generation for tforstmtAraq2014-05-301-20/+34
* bugfix: regionized pointers in a generic context; renamed 'Future' to 'Promise'Araq2014-05-251-44/+44
* progress with futuresAraq2014-05-231-5/+22
* 'parallel' statement almost workingAraq2014-05-221-41/+245
* progress for the 'parallel' statementAraq2014-05-141-0/+1
* initial non-compiling version of 'parallel'Araq2014-05-121-3/+19
* reintroduce thread analysis but disable it for backwards compatibilityAraq2014-04-201-3/+4
* actors compile againAraq2014-04-201-0/+1
* New concurrency model: next stepsAraq2014-04-191-1/+3
* first version of 'spawn'Araq2014-04-161-1/+173
* fixes #404Araq2014-03-231-0/+52
href='/akspecs/ranger/commit/ranger/gui/widgets/pager.py?id=a406a33dd9808f1a7e57ec96ca02423caf9cfc46'>a406a33d ^
292b4476 ^
a406a33d ^





a406a33d ^


292b4476 ^
06aefcf5 ^

c4e869dd ^



















06aefcf5 ^
c4e869dd ^
ea87d005 ^
5715beca ^
f257e476 ^


5715beca ^



1a8d64f1 ^
f257e476 ^








5715beca ^


f257e476 ^

06aefcf5 ^
b4cb1f7d ^

b3125849 ^

d6e2900a ^
b4cb1f7d ^

f257e476 ^
a406a33d ^
f257e476 ^



811f5bb8 ^






f257e476 ^

ea87d005 ^
f257e476 ^






0072c116 ^
f257e476 ^



a406a33d ^


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