summary refs log tree commit diff stats
path: root/compiler/vmgen.nim
Commit message (Expand)AuthorAgeFilesLines
* VM: support importc var, ptr/pointer types, cast int <=> ptr/pointer (#12877)Timothee Cour2020-01-051-4/+30
* Refactored VM registerlayout. The size and location of the registers in (#12775)Ico Doornekamp2019-11-301-20/+20
* fixes #11727 [backport]Araq2019-11-281-2/+7
* fixes #12488 [backport]Araq2019-11-281-1/+4
* Cosmetic compiler cleanup (#12718)Clyybber2019-11-281-262/+256
* VM: improvements for var T/addr (#12667); fixes #12489Andreas Rumpf2019-11-281-8/+14
* fixes #12612 [backport] (#12681)Andreas Rumpf2019-11-191-6/+9
* ARC: solves phase ordering problems (#12654)Andreas Rumpf2019-11-141-2/+1
* fixes #12547 [backport]Araq2019-10-291-0/+7
* VM: fixes register leaks [backport] (#12510)Andreas Rumpf2019-10-251-0/+2
* VM: fixes most ran-out-registers problems [backport] (#12485)Andreas Rumpf2019-10-241-19/+38
* fixes #12310 [backport] (#12470)Andreas Rumpf2019-10-201-2/+6
* fixes #12294 [backport]Andreas Rumpf2019-09-301-1/+0
* Fix spellings (#12277) [backport]Federico Ceratto2019-09-271-1/+1
* fixes #10981; fixes #7261 (#12217)Andreas Rumpf2019-09-191-1/+4
* add nodeId proc to macros (#11456)Arne Döring2019-09-181-0/+2
* rename cast opcodes, fix for 32bit cast, fix python pretty printer (#12207)Arne Döring2019-09-181-5/+9
* fixes #12195Araq2019-09-171-18/+17
* Small ast.nim cleanup (#12156)Clyybber2019-09-091-9/+9
* Merge branch 'devel' into uint-range-checksAndreas Rumpf2019-09-021-1/+1
|\
| * fix min/max for float numbers (#12068)Arne Döring2019-09-021-1/+1
* | Merge branch 'devel' into uint-range-checksAraq2019-09-021-2/+1
|\|
| * Fix to int to biggest int (#12066)Arne Döring2019-08-271-2/+1
* | minor stuffArne Döring2019-08-271-10/+4
|/
* int128 on firstOrd, lastOrd and lengthOrd (#11701)Arne Döring2019-08-071-3/+3
* fixes #9829 (#11849)Arne Döring2019-08-041-1/+1
* [refactoring] remove unused imports in the compiler and in some stdlib modulesAraq2019-07-181-4/+2
* [bugfix] VM: finally do inheritance properlyAraq2019-07-121-11/+12
* there is only one style -- my styleAraq2019-07-101-38/+38
* fixes #10901Araq2019-07-101-0/+2
* Offsetof fixes (#11690)Arne Döring2019-07-091-2/+6
* fixes #11610 (#11659)Andreas Rumpf2019-07-051-4/+5
* fixes #8405: -d:useNimRtl now works even when {.rtl.} procs are used at compi...Timothee Cour2019-07-031-3/+7
* [refactoring] remove zeroExtend and friends from the compiler builtins. (#11531)Arne Döring2019-06-241-15/+0
* VM can now cast integer type arbitrarily. (#11459) [feature]Arne Döring2019-06-101-31/+15
* Remove immediate pragma (#11308)Arne Döring2019-05-291-3/+1
* fixes #11268 (#11299)Andreas Rumpf2019-05-221-2/+3
* rename tyExpr/tyStmt to tyUntyped/tyTyped (#11227)Arne Döring2019-05-111-3/+3
* fixes #6855Araq2019-05-101-4/+7
* Replace countup(x, y) with x .. yClyybber2019-05-071-1/+1
* Replace countup(x, y-1) with x ..< yClyybber2019-05-071-6/+6
* introduce temporary <//> for 'owned' to get this compile with 0.19 (#11145)Andreas Rumpf2019-05-021-15/+26
* added system.unown to make 'owned' sane to use in practice; later on we might...Araq2019-04-291-1/+1
* Fix #11111 nkIdentsDef left in vmgen (#11126)Mamy Ratsimbazafy2019-04-271-2/+2
* fixes #10886 [backport] (#10897)Andreas Rumpf2019-03-231-7/+16
* more destructor based changes (#10885)Andreas Rumpf2019-03-231-1/+1
* sizeof alignof offsetof macros api (#10855)Arne Döring2019-03-191-0/+6
* added system.default in order to prevent the abstraction inversion that 'temp...Andreas Rumpf2019-03-051-9/+13
* StringStream and parseJson, parseCfg, parseSql et al for the vm (#10746)Arne Döring2019-02-281-0/+2
* Initial version of the hot-code reloading support for native targets (#10729)zah2019-02-261-0/+1
6 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 782 783 784 785 786 787 788