summary refs log tree commit diff stats
path: root/compiler/ecmasgen.nim
Commit message (Expand)AuthorAgeFilesLines
* got rid of some mAddU64 etc. magicsAraq2012-07-201-5/+0
* changed integer promotion rules; breaks bootstrapping and lots of codeAraq2012-07-081-1/+2
* JS codegen improvements; barely usable nowAraq2012-07-021-23/+46
* JS codegen enhancements; still unusableAraq2012-07-011-28/+70
* dead code elimination for JS backend; JS improvements (but doesn't work yet)Araq2012-06-301-66/+123
* Merge branch 'master' of github.com:Araq/Nimrod into upstreamZahary Karadjov2012-06-021-1/+2
|\
| * added system.||; lacks runtime supportAraq2012-05-231-1/+2
* | Added system.staticExec proc for executing external command at compile-timeZahary Karadjov2012-06-021-0/+2
|/
* fixes #109Araq2012-05-201-1/+8
* tyOrdinal now means "integral types". tyTypeClass created to take care of typ...Zahary Karadjov2012-03-221-1/+1
* ecmas fixesdom962012-02-051-0/+4
* year 2012 for most copyright headersAraq2012-01-021-2/+2
* alias analysis as required for the code gen and the HLOAraq2011-12-081-8/+0
* fixes #71; sorry about the polling implementationAraq2011-12-051-2/+3
* implemented 'let' statementAraq2011-11-291-3/+3
* Fixed the tester. Some fixes and additions for the JS backend.dom962011-10-311-1/+1
* lazy loading of body ast implementedAraq2011-10-301-2/+2
* JS backend: supports methods (untested)Araq2011-10-281-14/+22
* code generator supports constant sequences; more consistent compile time eval...Araq2011-10-071-0/+1
* got rid of tyPureObject; broke bootstrapping; use generated C codeAraq2011-09-241-4/+6
* Fixed string concatenation and other bugs in the JS backend. Fixed a small bu...dom962011-09-231-38/+70
* finally got rid of nkPassAsOpenArrayAraq2011-08-161-1/+0
* json code generation works againAraq2011-08-071-3/+3
* support for C++ code generation; importcpp and importobjc pragmasAraq2011-08-071-7/+7
* bugfixes; step one for 'var T' as return type supportAraq2011-07-281-2/+2
* intsets are now a proper module and part of the stdlibAraq2011-06-141-3/+4
* got rid of nstrtabs and nhashes modulesAraq2011-06-101-1/+1
* got rid of some arcane module namesAraq2011-04-211-1/+1
* big repo cleanupAraq2011-04-121-0/+1454
oang/Nim/blame/compiler/cgendata.nim?h=devel&id=ce933c90a48ddf0331016edbc684ba6937412e22'>^
49fa421ba ^

39049e151 ^
a6f90d4cd ^



39049e151 ^
a6f90d4cd ^

6e9a98d1e ^
a6f90d4cd ^
d9cf9b079 ^
d2b45dbe8 ^
39290cf88 ^
15dd3a225 ^
a64d4dc35 ^
8cccaebc2 ^
a64d4dc35 ^
5641be51c ^
c3344862b ^





451129de4 ^

c3344862b ^
6e9a98d1e ^
2781fea9e ^
c3344862b ^
5641be51c ^
02a2180a6 ^
c3344862b ^
bcda71a8a ^


39049e151 ^
56aa1ac5b ^
a6f90d4cd ^

caf787800 ^

a6f90d4cd ^


a6f90d4cd ^

e84834db7 ^


bc37668c5 ^
1854d2978 ^
56aa1ac5b ^
5641be51c ^
a6f90d4cd ^
860cbd310 ^
ca4b971bc ^
3ac6bd8ae ^
c94647aec ^
3ac6bd8ae ^






ba38b83dd ^





87a2ced1b ^
b1ad5fd7d ^
ba38b83dd ^
ca4b971bc ^
fd31e8ff6 ^
f04d21f27 ^
1284827df ^
d83736221 ^
ba38b83dd ^
5ad1acc60 ^










b97a7dbf3 ^
a6f90d4cd ^
c94647aec ^
4b0ba5e3f ^
86556ebfd ^

a6f90d4cd ^
4b0ba5e3f ^
860cbd310 ^
66db9de71 ^



860cbd310 ^
7ea318a05 ^

92c2a51bf ^
860cbd310 ^
fd31e8ff6 ^
a6f90d4cd ^
a64f03230 ^
ca4b971bc ^
39290cf88 ^
a6f90d4cd ^

a6f90d4cd ^
39049e151 ^
92b8fac94 ^
39049e151 ^
f08e90f0d ^
39049e151 ^
42ae2064d ^
ba38b83dd ^
848676cec ^
538b06a12 ^
050789a8f ^


92c2a51bf ^



39049e151 ^
20d56875d ^
7e747d11c ^
20d56875d ^
39049e151 ^
20d56875d ^

a6f90d4cd ^
5641be51c ^
a6f90d4cd ^


394a56650 ^

d2b45dbe8 ^
a6f90d4cd ^
739b4f214 ^
56aa1ac5b ^
a6f90d4cd ^
1284827df ^
ca4b971bc ^

ba38b83dd ^

87a2ced1b ^
82c009a2c ^

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