summary refs log tree commit diff stats
path: root/compiler/dfa.nim
Commit message (Expand)AuthorAgeFilesLines
* type refactor: part 4 (#23077)Andreas Rumpf2023-12-151-1/+1
* prepare for the enforcement of `std` prefix (#22873)ringabout2023-10-291-1/+2
* NIR: Nim intermediate representation (#22777)Andreas Rumpf2023-10-111-4/+0
* replaces `doAssert false` with `raiseAssert` for unreachable branches, which ...ringabout2023-08-101-1/+1
* use strictdefs for compiler (#22365)ringabout2023-08-061-2/+3
* fixes #22001 (#22177)Andreas Rumpf2023-06-271-2/+4
* adds an experimental `mm:atomicArc` switch (#21798)ringabout2023-05-081-1/+1
* fixes #20572 (#20585)Andreas Rumpf2022-10-171-1/+1
* DAA and 'out' parameters (#20506)Andreas Rumpf2022-10-061-4/+3
* new move analyser2 (#20471)Andreas Rumpf2022-10-011-426/+106
* support cstring in `case` (#20130)metagn2022-09-011-1/+1
* move assertions out of system (#19599)flywind2022-03-231-0/+3
* compiler: Handle nkCheckedFieldExpr better in dfa (#19616)Clyybber2022-03-181-4/+2
* [backport] arc: improve compile time of (nested) loops (#18890)Clyybber2021-09-241-3/+8
* fixes #18665 DFA generator bug (#18676)Andreas Rumpf2021-08-111-0/+6
* followup #18362: make `UnusedImport` work robustly (#18366)Timothee Cour2021-06-271-1/+1
* ORC: progress (#18000)Andreas Rumpf2021-05-121-1/+1
* Fix #17712 (#17873)Clyybber2021-04-271-3/+4
* fixes #17198, DFA failure on large case stmts (#17210)Saem Ghani2021-03-021-3/+8
* add -d:nimStrictMode in CI to keep code from regressing; fixes ConvFromXtoIts...Timothee Cour2021-02-171-2/+0
* ARC Analysis in one pass v3 (#17068)Clyybber2021-02-171-14/+3
* Revert "ARC: Analysis in one pass v2 (#17000)" (#17046)Clyybber2021-02-151-3/+14
* ARC: Analysis in one pass v2 (#17000)Clyybber2021-02-101-14/+3
* Revert "ARC Analysis in one pass (#16849)" (#16984)Clyybber2021-02-091-3/+14
* ARC Analysis in one pass (#16849)Clyybber2021-02-091-14/+3
* Finer analysis for array access (#16787)Clyybber2021-01-241-27/+73
* move asciitables to std/private/ (#16498)flywind2020-12-291-1/+2
* fixes #15130 (#15141)Andreas Rumpf2020-08-011-1/+1
* fixes #15111 (#15136)Andreas Rumpf2020-08-011-2/+2
* injectdestructors fixes and refactor (#14964)Clyybber2020-07-141-1/+1
* DFA and injectdestructors cleanup (#14824)Clyybber2020-06-281-135/+92
* init checks and 'out' parameters (#14521)Andreas Rumpf2020-06-231-4/+2
* more checking for --gc:arc, no need for valgrind (#14467)Andreas Rumpf2020-05-291-1/+4
* New "ping-pong" DFA (#14322)Clyybber2020-05-151-41/+22
* Fix #14269 (#14286)Clyybber2020-05-091-1/+2
* Fix the DFA for "unstructured controlflow" (#14263)Clyybber2020-05-071-74/+115
* destructors: don't produce stupid code for 'cast' (#14208) [backport:1.2]Andreas Rumpf2020-05-041-2/+2
* fixes #14159 [backport:1.2]Araq2020-05-021-1/+3
* Deprecate when declared(echo):echo (#13840)Juan Carlos2020-04-021-2/+1
* sink parameter inference for types that have destructors (#13544)Andreas Rumpf2020-03-041-0/+2
* fixes #13314 (#13372)Andreas Rumpf2020-02-091-4/+9
* Cleanup DFA (#13173)Clyybber2020-01-161-34/+14
* ARC: misc bugfixes (#13156)Andreas Rumpf2020-01-151-2/+8
* minor refactoringsAndreas Rumpf2019-12-271-9/+1
* fixes #12669Araq2019-11-291-11/+26
* Cosmetic compiler cleanup (#12718)Clyybber2019-11-281-44/+43
* Fix spellings (#12277) [backport]Federico Ceratto2019-09-271-1/+1
* fix #12037 (#12089)Clyybber2019-08-301-14/+3
* [refactoring] remove unused imports in the compiler and in some stdlib modulesAraq2019-07-181-1/+1
* there is only one style -- my styleAraq2019-07-101-29/+29
;rumpf_a@web.de> 2009-06-08 08:06:25 +0200 version0.7.10' href='/ahoang/Nim/commit/lib/pure/md5.nim?h=devel&id=4d4b3b1c04d41868ebb58bd9ccba7b303007e900'>4d4b3b1c0 ^
7e0da3e8f ^
4d4b3b1c0 ^



93eb9c456 ^

4d4b3b1c0 ^

7e0da3e8f ^

93eb9c456 ^
7e0da3e8f ^
4d4b3b1c0 ^



7e0da3e8f ^


4d4b3b1c0 ^





93eb9c456 ^

4d4b3b1c0 ^





7e0da3e8f ^


4d4b3b1c0 ^















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