summary refs log tree commit diff stats
path: root/compiler/ic
Commit message (Expand)AuthorAgeFilesLines
* Don't require blank line before Markdown code (#20215)Andrey Makarov2022-08-151-2/+1
* Change `styleCheck` to ignore foreign packages (#19822)quantimnot2022-07-141-4/+4
* Refactor and doc package handling, module name mangling (#19821)quantimnot2022-05-302-15/+9
* move assertions out of system (#19599)flywind2022-03-239-0/+29
* [minor]use `addInt` and `addFloat` (#18733)flywind2021-08-241-2/+2
* fixes #17943 (#18045)Andreas Rumpf2021-05-191-0/+3
* bring back std/ prefix within compiler and ensure it works in bootstrap + bsd...Timothee Cour2021-04-301-1/+1
* typos (#17824)Andreas Rumpf2021-04-231-1/+1
* CIs: attempt to use csources_v1 (#16282)Andreas Rumpf2021-04-216-10/+10
* updated the documentation (#17796)Andreas Rumpf2021-04-201-1/+1
* IC navigator: added support for include files (#17784)Andreas Rumpf2021-04-192-5/+25
* ic refactoring (#17778)Andreas Rumpf2021-04-197-159/+146
* [ci skip] document compiler/ic/rodfiles.nim (#17771)Saem Ghani2021-04-191-0/+72
* IC: fixes a long standing bug about DCE set computations (#17763)Andreas Rumpf2021-04-181-25/+33
* -d:nimDebug: calls doAssert false instead of quit (#17739)Timothee Cour2021-04-171-2/+1
* IC: yet another embarrassing omission (#17743)Andreas Rumpf2021-04-171-1/+2
* ic navigator tests (#17735)Andreas Rumpf2021-04-162-2/+3
* `import foo {.all.}` reboot (#17706)Timothee Cour2021-04-162-16/+43
* IC: rodfiles: no floats (#17720)Andreas Rumpf2021-04-144-21/+18
* IC: first steps towards 'nim check --def --ic:on' (#17714)Andreas Rumpf2021-04-143-7/+172
* IC: code cleanup (#17708)Andreas Rumpf2021-04-131-45/+12
* IC: serialization bugfix (#17701)Andreas Rumpf2021-04-131-4/+4
* IC: integrity checking (#17695)Andreas Rumpf2021-04-113-1/+157
* IC: added basic test case for methods (#17679)Andreas Rumpf2021-04-092-6/+27
* followup custom literals (#17500)Timothee Cour2021-03-271-0/+1
* IC: bugfix (#17533)Andreas Rumpf2021-03-271-2/+5
* added a 'koch ic' command for easier adhoc testing of IC (#17508)Andreas Rumpf2021-03-263-6/+29
* IC: backend: remember produced type information (#17440)Andreas Rumpf2021-03-233-9/+46
* IC: green tests (#17311)Andreas Rumpf2021-03-194-13/+20
* IC: compilerprocs are handled correctly (#17265)Andreas Rumpf2021-03-095-23/+88
* IC: further progress (#17150)Andreas Rumpf2021-03-052-9/+19
* fix `UnusedImport` for `nim c compiler/nim` (#17152)Timothee Cour2021-02-231-3/+4
* IC: bugfixes (WIP) (#16836)Andreas Rumpf2021-02-025-26/+106
* IC: final implementation steps (#16801)Andreas Rumpf2021-01-254-23/+127
* IC: next steps (#16729)Andreas Rumpf2021-01-235-24/+259
* IC: next steps (#16705)Andreas Rumpf2021-01-142-80/+111
* IC: next steps (#16632)Andreas Rumpf2021-01-125-274/+386
* IC: next steps (#16550)Andreas Rumpf2021-01-073-158/+346
* big steps torwards an efficient, simple IC implementation (#16543)Andreas Rumpf2021-01-026-186/+1057
* refactorings to prepare the compiler for IC (#15935)Andreas Rumpf2020-12-175-0/+724
t'>
2c678a4e ^
204dae92 ^

2c678a4e ^
5fe060d5 ^
805d58c6 ^
204dae92 ^

5fe060d5 ^
805d58c6 ^
204dae92 ^
5fe060d5 ^















4945e77a ^
5fe060d5 ^























































































































































672e3e50 ^


a654e4ec ^
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