summary refs log tree commit diff stats
path: root/compiler/vm.nim
Commit message (Expand)AuthorAgeFilesLines
* Add isInstanceOf for generic procs to the macros module (#9730)cooldome2018-11-211-0/+11
* Of operator in vm fixes [backport] (#9717)cooldome2018-11-151-1/+1
* VM: don't inject destructor calls, refs #7041Andreas Rumpf2018-11-061-6/+6
* Add testAndrii Riabushenko2018-10-241-5/+9
* Add int float casts to vmAndrii Riabushenko2018-10-241-0/+12
* Change the order of compilation passes, transformation is made lazy at code g...cooldome2018-10-181-0/+11
* Make the registered passes local to the ModuleGraph (#9259)LemonBoy2018-10-091-1/+1
* Fix error during field access in VMLemonBoy2018-09-171-3/+7
* Add sym owner to macros (#8253)cooldome2018-09-031-0/+9
* fixes the remaining fixable Nimrod->Nim renamings; closes #2032Araq2018-09-031-1/+1
* fixes #8740Araq2018-09-031-1/+1
* Allow `hint` and `warning` to specify its loc info (#8771)LemonBoy2018-08-281-8/+12
* fixes 8754 (#8755)cooldome2018-08-241-0/+8
* even more strict isNil handling for strings/seqs in order to detect bugsAraq2018-08-221-12/+10
* fixes #6255, add `system.ashr` arithmetic right shift (#8547)andri lim2018-08-071-0/+3
* fixes #5617, 'copyLineInfo' addition (#8523)andri lim2018-08-051-14/+13
* fixes #7827, bindSym enhancement (#8499)andri lim2018-08-021-1/+17
* `lineInfoObj` (and `check`, `expect`) now return absolute paths (#8466)Timothee Cour2018-07-311-1/+1
* Fix ref bug in vmgen (#8424)Oscar Nihlgård2018-07-301-8/+1
* VM: accessing the string terminator is not allowed anymore; cleanup tests/sys...Andreas Rumpf2018-07-171-1/+3
* Fix vm regression (#8163)Oscar Nihlgård2018-06-301-0/+7
* Fixes #6689 (#8135)Oscar Nihlgård2018-06-301-2/+8
* VM regression fixes (#8146)Oscar Nihlgård2018-06-291-1/+3
* Improve vm support for ref typesOscar Nihlgård2018-06-261-21/+26
* completed VM support for incremental compilationsAndreas Rumpf2018-06-041-26/+38
* WIP: an API for VM replay global state supportAndreas Rumpf2018-06-031-1/+90
* incremental compilation: implemented basic replay logicAndreas Rumpf2018-06-021-17/+17
* compiler API: final cleanups; improve security by diabling 'gorge' and friendsAndreas Rumpf2018-05-291-9/+12
* vm now free of global variablesAndreas Rumpf2018-05-281-14/+8
* vm.nim: evalMacroCounter is not a global variable anymoreAndreas Rumpf2018-05-281-6/+5
* refactoring: remove idents.legacy global variable and pass the IdentCache aro...Andreas Rumpf2018-05-271-6/+6
* remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-1/+1
* Merge branch 'devel' into araq-big-refactoringAndreas Rumpf2018-05-211-1/+1
|\
| * Fix typo in "out of bounds" error messagecoffeepots2018-05-181-1/+1
* | platform.nim doesn't use globals anymore; prepare msgs.nim for not using globalsAndreas Rumpf2018-05-181-10/+10
* | preparations of making compiler/msgs.nim free of global variablesAndreas Rumpf2018-05-171-4/+4
* | remove ast.emptyNode global; cleanup configuration.nimAraq2018-05-161-3/+3
|/
* fixes testament compilationAraq2018-05-141-2/+8
|\
| * VM fix for refsOscar Nihlgård2018-05-081-2/+8
* | move more globals into the config objectAndreas Rumpf2018-05-131-9/+9
* | more modules compile againAndreas Rumpf2018-05-121-1/+1
* | more modules compile againAndreas Rumpf2018-05-121-100/+110
|/
* compiler refactoring, pass config around explicitlyAndreas Rumpf2018-05-051-20/+21
* make tests green againAndreas Rumpf2018-04-211-1/+1
* refactoring: make FileIndex a distinct type; make line information an uint16;...Andreas Rumpf2018-04-211-3/+3
* allow setting template/macro recursive evaluation limits (#7652)jcosborn2018-04-191-2/+4
* eqIdent new returns false on non identifier types (#7629)Arne Döring2018-04-171-5/+13
* move eqIdent to vm.nim (#7585)Arne Döring2018-04-151-3/+29
* introduce nkTupleConstr AST node for unary tuple construction; breaking changeAndreas Rumpf2018-04-131-9/+9
* Get symbol kind (#7491)Arne Döring2018-04-111-15/+20
ass='oid'>89807038 ^
6ca059ef ^
d9a7e6ab ^
6ca059ef ^


a66c9ae6 ^
89807038 ^

6ca059ef ^
5152d4ea ^
6d17ef49 ^
5152d4ea ^
6d17ef49 ^









6ca059ef ^
5eddbc16 ^
6ca059ef ^
5eddbc16 ^
6ca059ef ^
5eddbc16 ^
6ca059ef ^

6d17ef49 ^
5e14ce10 ^


6d17ef49 ^





6ca059ef ^

afbe301d ^
d9a7e6ab ^










afbe301d ^


5eddbc16 ^
afbe301d ^
















d9a7e6ab ^
5e14ce10 ^









6d17ef49 ^
6d17ef49 ^







d9a7e6ab ^





























82ceda30 ^
























1179f0d4 ^




























82ceda30 ^


1179f0d4 ^
82ceda30 ^




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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271