summary refs log tree commit diff stats
path: root/compiler/injectdestructors.nim
Commit message (Expand)AuthorAgeFilesLines
...
* Split last read and first write analysis (#17137)Clyybber2021-02-211-20/+42
* ARC Analysis in one pass v3 (#17068)Clyybber2021-02-171-98/+103
* Revert "ARC: Analysis in one pass v2 (#17000)" (#17046)Clyybber2021-02-151-98/+98
* ARC: Analysis in one pass v2 (#17000)Clyybber2021-02-101-98/+98
* Revert "ARC Analysis in one pass (#16849)" (#16984)Clyybber2021-02-091-89/+95
* ARC Analysis in one pass (#16849)Clyybber2021-02-091-95/+89
* Finer analysis for array access (#16787)Clyybber2021-01-241-2/+2
* IC: next steps (#16729)Andreas Rumpf2021-01-231-8/+8
* Part-to-whole optimization (#16775)Clyybber2021-01-211-15/+16
* Reboot of #16195 (#16746)Clyybber2021-01-201-58/+85
* big steps torwards an efficient, simple IC implementation (#16543)Andreas Rumpf2021-01-021-3/+3
* Revert "fix #16185 (#16195)" (#16197)Andreas Rumpf2020-11-301-60/+59
* fix #16185 (#16195)cooldome2020-11-301-59/+60
* fixes #15076 (#16143)Andreas Rumpf2020-11-261-3/+5
* ORC: prepare for another patent-pending optimization (#15996)Andreas Rumpf2020-11-181-2/+47
* fix #15609 (#15856)cooldome2020-11-051-10/+9
* explicit ID generation for easier IC (#15559)Andreas Rumpf2020-10-251-13/+14
* renamed '=' to '=copy' [backport:1.2] (#15585)Andreas Rumpf2020-10-151-2/+2
* fixes #15511 (#15524)Andreas Rumpf2020-10-081-1/+3
* fixes #15512 (#15521)Andreas Rumpf2020-10-081-1/+13
* Revert "fix #15035 (#15236)" (#15408)cooldome2020-09-241-3/+2
* Revert "Introduce explicit copy (#15330)" (#15346)Andreas Rumpf2020-09-161-1/+1
* Introduce explicit copy (#15330)cooldome2020-09-161-1/+1
* fixes #15325 (#15340)Andreas Rumpf2020-09-161-1/+2
* Fix #15286 (#15292)cooldome2020-09-101-0/+3
* Big compiler Cleanup (#14777)Clyybber2020-08-281-3/+3
* fix #15035 (#15236)cooldome2020-08-281-2/+3
* cursor and mutation tracking fixes (#15113)Andreas Rumpf2020-07-301-2/+2
* fixes #15076 (#15095)Andreas Rumpf2020-07-271-13/+20
* fixes a closure iterator memory leaks, progress on #15076Araq2020-07-271-1/+1
* fixes #15038 [backport:1.2]Andreas Rumpf2020-07-261-46/+1
* fixes #15036Andreas Rumpf2020-07-231-2/+0
* arc: cursors for simple for loop variables (#15008)Andreas Rumpf2020-07-171-1/+1
* Show that a variable is cursor in --expandArc (#15002)Clyybber2020-07-171-6/+5
* An optimizer for ARC (#14962)Andreas Rumpf2020-07-151-26/+28
* Fix #14985 (#14988)Clyybber2020-07-151-2/+2
* injectdestructors fixes and refactor (#14964)Clyybber2020-07-141-192/+109
* fixes a minor regressionAraq2020-07-101-1/+1
* fixes the tcontrolflow regression, clen idea of an escaping expressionAraq2020-07-101-20/+44
* no wasMoved() calls after destructors necessaryAraq2020-07-101-6/+6
* optimize sinks even when in a loopAraq2020-07-101-23/+12
* Move `wasMoved` out of `=destroy`Clyybber2020-07-101-5/+5
* CosmeticsClyybber2020-07-101-52/+51
* Make arc compile laser againClyybber2020-07-081-1/+1
* fixes #14900, this time for real, maybe (#14934)Andreas Rumpf2020-07-081-2/+8
* fixes #14900Araq2020-07-081-38/+42
* fixes #14899Araq2020-07-081-4/+37
* progressAraq2020-07-081-17/+33
* injectdestructors: refactoring, added more cases explicitly (#14929)Andreas Rumpf2020-07-071-7/+68
* scoped memory management (#14790)Andreas Rumpf2020-07-041-416/+301
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 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515