summary refs log tree commit diff stats
path: root/compiler/vmgen.nim
Commit message (Expand)AuthorAgeFilesLines
* fixes #1718Araq2014-12-101-0/+2
* fixes #1548Araq2014-11-171-5/+7
* fixes #1473Araq2014-11-121-2/+7
* fix issue #1581Billingsly Wetherfordshire2014-10-201-0/+1
* implemented 'guard' annotationAraq2014-09-211-0/+2
* merged things from develAraq2014-09-121-1/+0
|\
| * fixes #903, fixess #1513Araq2014-09-111-6/+14
* | added nimfix toolAraq2014-09-051-1/+1
* | fixes recently introduced regressionAraq2014-09-031-1/+4
* | fixes #903, fixes #1513Araq2014-09-031-7/+18
* | VM supports math and a few os procsAraq2014-08-301-1/+22
* | Nimrod renamed to NimAraq2014-08-281-1/+1
|/
* fixes #1343Araq2014-08-151-4/+3
* fixes #1433Araq2014-08-141-0/+2
* parseBiggestFloat is now builtinAraq2014-07-161-0/+18
* fixes #1323Araq2014-07-081-3/+6
* fixes #1103; fixes #1297Araq2014-07-081-20/+62
* fixes #1310Araq2014-07-021-1/+8
* corrected backends.txtAraq2014-06-301-0/+7
* fixes constant array indexing bugAraq2014-06-301-14/+31
* Fixed handling swap in vmgenFelix Krause2014-06-251-4/+6
* fixes the bug that keeps the template engine package from workingAraq2014-05-251-2/+4
* fixes #1140Araq2014-05-051-0/+1
* implemented builtin noncopying sliceAraq2014-05-021-1/+1
* Merge pull request #1123 from flaviut/bug1110Andreas Rumpf2014-04-201-0/+10
|\
| * Document vmgen.nim a bitflaviut2014-04-201-0/+10
* | Fixes #1093.Dominik Picheta2014-04-201-9/+1
|/
* fixes #1063Araq2014-04-071-1/+1
* minor VM bugfixAraq2014-04-041-0/+1
* fixed another vm bugAraq2014-04-011-8/+6
* fixes #1009Araq2014-03-271-1/+8
* added #903 to the test suiteAraq2014-03-261-1/+1
* VM: attempt to get integer ops rightAraq2014-03-241-16/+46
* VM: endless loop preventionAraq2014-03-241-7/+7
* fixes #404Araq2014-03-231-14/+17
* fixes #1023Araq2014-03-221-20/+31
* fixes #1010Araq2014-03-221-4/+4
* Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-03-221-1/+1
|\
| * make some tests greenZahary Karadjov2014-03-161-1/+1
* | fixed tuples in a static context; preparations for correct compile time evalu...Araq2014-03-221-1/+2
|/
* should fix the nkExprColonExpr bug in the vmAraq2014-03-131-7/+15
* Merge branch 'devel' of github.com:Araq/Nimrod into develZahary Karadjov2014-03-061-6/+25
|\
| * fixes #937Araq2014-03-051-6/+25
* | split the inline and closure iterators into different symbol kinds for easier...Zahary Karadjov2014-03-061-1/+1
|/
* tstmtexprs.nim works againAraq2014-02-271-2/+2
* xmltree.`<>` macro works againAraq2014-02-271-4/+4
* made some tests green; htmlgen still brokenAraq2014-02-251-5/+7
* new VM is getting stableAraq2014-02-241-11/+48
* fixed opcConvAraq2014-02-221-3/+2
* vm2: new representation of registersAraq2014-02-211-65/+63
kkartik/mu/blame/subx/Readme.md?h=hlt&id=224474d7fd04263b7300d22df337c33b97de5fe5'>^
6ec89428 ^


38971405 ^

6ec89428 ^
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