summary refs log tree commit diff stats
path: root/compiler/vm.nim
Commit message (Expand)AuthorAgeFilesLines
* Fixes incorrect macro stack traces.Dominik Picheta2014-08-111-1/+10
* distinguish between 'defined' and 'declared'Araq2014-08-111-3/+1
* parseBiggestFloat is now builtinAraq2014-07-161-1/+13
* VM: fixes 'raise'Araq2014-07-101-2/+2
* fixes #933Araq2014-07-081-4/+1
* fixes #1103; fixes #1297Araq2014-07-081-9/+8
* fixes #1310Araq2014-07-021-0/+7
* initial non-compiling version of 'parallel'Araq2014-05-121-2/+3
* fixes #1140Araq2014-05-051-1/+2
* Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-04-211-1/+7
|\
| * Fixes #1119.Dominik Picheta2014-04-201-0/+1
| * Fixes #1093.Dominik Picheta2014-04-201-1/+6
* | fixes #1085Araq2014-04-211-1/+1
|/
* new VM: proper shield against endless recursionsAraq2014-04-051-2/+10
* new VM: fixes for exception handlingAraq2014-04-041-8/+17
* Implement overflow/underflow checking for the VM.EXetoC2014-03-311-6/+49
* fixes #1009Araq2014-03-271-1/+1
* added #903 to the test suiteAraq2014-03-261-1/+5
* VM: attempt to get integer ops rightAraq2014-03-241-8/+6
* VM: endless loop preventionAraq2014-03-241-1/+20
* fixes #404Araq2014-03-231-0/+2
* fixes #1010Araq2014-03-221-22/+25
* fixed tuples in a static context; preparations for correct compile time evalu...Araq2014-03-221-1/+25
* should fix the nkExprColonExpr bug in the vmAraq2014-03-131-2/+1
* teach opcLdObj about nkExprColonExprZahary Karadjov2014-03-091-1/+3
* xmltree.`<>` macro works againAraq2014-02-271-2/+4
* renamed TRegister to TFullReg so that older versions can compile itAraq2014-02-261-16/+16
* htmlgen works againAraq2014-02-251-3/+8
* bootstrapping should work againAraq2014-02-251-2/+1
* made some tests green; htmlgen still brokenAraq2014-02-251-2/+6
* new VM is getting stableAraq2014-02-241-16/+34
* simple macros work againAraq2014-02-221-40/+32
* fixed opcConvAraq2014-02-221-7/+25
* vm2: new representation of registersAraq2014-02-211-441/+486
* fixes #923Araq2014-02-171-1/+1
* Fixes macros.len crashing on nodes which lack the sons field.Dominik Picheta2014-02-111-1/+1
* fixes regression: constant fac4 didn't workAraq2014-02-061-1/+4
* macro tests almost greenAraq2014-02-031-2/+4
* remove the old testerAraq2014-02-021-1/+1
|\
| * Merge branch 'devel' of https://www.github.com/Araq/Nimrod into develZahary Karadjov2014-01-261-0/+2
| |\
| * | implements #766;Zahary Karadjov2014-01-241-1/+1
* | | tstringinterp almost workingAraq2014-02-011-3/+13
| |/ |/|
* | fixes #838Araq2014-01-251-0/+2
|/
* better html generator for the tester; fixes some VM bugsAraq2014-01-171-11/+22
* Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-01-131-1/+2
|\
| * Merge branch 'upstream' into develZahary Karadjov2013-12-291-1/+2
| |\
* | | new vm: bugfixAraq2014-01-121-1/+1
|/ /
* | case consistency: cs:partial bootstraps on windowsAraq2013-12-291-1/+1
* | case consistency: next stepsAraq2013-12-291-2/+2
* | case consistency part 4Araq2013-12-271-11/+11
dc5f8fbcfd55aa74a2fc7b13b287262780ba58e'>ddc5f8fbc ^
d5f011d9e ^
c292c57e4 ^
d5f011d9e ^

d5f011d9e ^

97825805e ^

e70294dff ^

d5f011d9e ^
ddc5f8fbc ^
d5f011d9e ^
e70294dff ^
d5f011d9e ^





ddc5f8fbc ^
d5f011d9e ^





ddc5f8fbc ^

d5f011d9e ^

dbb053492 ^
d5f011d9e ^


dbb053492 ^
d5f011d9e ^

ddc5f8fbc ^

c49562825 ^
ddc5f8fbc ^
d5f011d9e ^

dbb053492 ^
d5f011d9e ^

dbb053492 ^
d5f011d9e ^

3c622d799 ^
dbb053492 ^
d5f011d9e ^

dce0b3b00 ^
dbb053492 ^
dce0b3b00 ^








d5f011d9e ^
c49562825 ^

dbb053492 ^
c49562825 ^
d5f011d9e ^

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