summary refs log tree commit diff stats
path: root/compiler/dfa.nim
Commit message (Expand)AuthorAgeFilesLines
* Replace countup(x, y-1) with x ..< yClyybber2019-05-071-1/+1
* move analyser: fixes another critical bugAraq2019-04-291-1/+1
* make twidgets example green (#11135)Andreas Rumpf2019-04-281-3/+9
* fixes #11095 (#11104)Andreas Rumpf2019-04-251-11/+28
* added a note about what to not doAndreas Rumpf2019-04-191-0/+10
* move analyser is smarter; refs #11053Andreas Rumpf2019-04-191-1/+4
* DFA: We are not allowed to take ownership of parametersAraq2019-04-171-1/+2
* make move-analysis smarter; see tuse_ownedref_after_move test caseAraq2019-04-161-8/+30
* dfa.nim: track object/tuple field accesses more precisely; sink(o.x); sink(o....Araq2019-04-161-17/+56
* compute sinks/assignments properly for for-loop iteration variablesAraq2019-04-081-1/+1
* more destructor based changes (#10885)Andreas Rumpf2019-03-231-1/+1
* explicit default values for a leaner codegen, .cursor variables for optimizationAndreas Rumpf2019-03-071-39/+0
* dfa.nim: continues are badAndreas Rumpf2019-03-061-2/+3
* introduce tfHasOwned for fast must-move checkings; removed tfAcyclic as the G...Andreas Rumpf2019-03-051-1/+1
* DFA: fixes wrong 'def' instruction emissionAndreas Rumpf2019-03-051-5/+6
* destructors/dfa: more documentationAndreas Rumpf2019-03-041-3/+5
* isLastRead regression fix (#10463)cooldome2019-01-281-6/+9
* control flow graphs: introduce 'join' points for easy analyses based on abstr...Andreas Rumpf2019-01-231-152/+391
* improve vmgen.codeListing formatting (#10306)Timothee Cour2019-01-151-1/+1
* use control flow graph for sink paramsAndrii Riabushenko2018-12-091-1/+1
* destructors; fixes #9594Araq2018-11-021-2/+12
* DFA: implement exception handling properlyAndreas Rumpf2018-10-141-2/+20
* dfa.nim: clarify exception handlingAndreas Rumpf2018-10-131-1/+4
* compiler: cleanup dfa.nimAndreas Rumpf2018-10-121-21/+25
* don't require an implementation for procs marked with .error; activate the mo...Araq2018-09-291-0/+1
* remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-1/+1
* make tests green againAndreas Rumpf2018-05-181-1/+2
* preparations of making compiler/msgs.nim free of global variablesAndreas Rumpf2018-05-171-1/+1
* transf and vmgen compile againAndreas Rumpf2018-05-121-7/+7
* lambda lifting compiles againAndreas Rumpf2018-05-121-2/+2
* introduce nkTupleConstr AST node for unary tuple construction; breaking changeAndreas Rumpf2018-04-131-1/+1
* DFA: code cleanups and some support for consuming operationsAndreas Rumpf2017-12-271-109/+9
* DFA attempt to capture the essence of linear typesAndreas Rumpf2017-12-231-2/+21
* DFA works for simple examplesAndreas Rumpf2017-12-211-9/+17
* next steps in giving Nim a decent DFA infrastructureAraq2017-12-181-5/+83
* Fixed koch warning when installing Nim. (#6898)Gerke Max Preussner2017-12-121-3/+3
* deprecated unary '<'Andreas Rumpf2017-10-291-2/+2
* initial version of the new untested destructor passAndreas Rumpf2017-10-121-4/+4
* preparations for a new AST transformation pass with the aim of giving us reli...Andreas Rumpf2017-10-091-22/+40
* disable the new DFAAndreas Rumpf2017-10-091-24/+33
* work in progress: a dataflow architecture for NimAndreas Rumpf2017-10-091-0/+412
75' href='#n475'>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 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781