summary refs log tree commit diff stats
path: root/compiler/vmgen.nim
Commit message (Collapse)AuthorAgeFilesLines
* Fixed uncaught exception in vm genYuriy Glukhov2018-06-131-1/+1
|
* bugfix: allow 'export' in the VMAndreas Rumpf2018-06-121-1/+1
|
* fixex merge conflictsAraq2018-06-081-1/+2
|\
| * Fix for newStringOfCap in VM (#7901)Oscar Nihlgård2018-06-041-1/+2
| |
* | completed VM support for incremental compilationsAndreas Rumpf2018-06-041-6/+6
| |
* | WIP: an API for VM replay global state supportAndreas Rumpf2018-06-031-10/+28
| |
* | baby steps for incremental compilationAndreas Rumpf2018-05-301-1/+1
| |
* | refactoring: remove idents.legacy global variable and pass the IdentCache ↵Andreas Rumpf2018-05-271-1/+1
| | | | | | | | around explicitly
* | remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-1/+1
| |
* | platform.nim doesn't use globals anymore; prepare msgs.nim for not using globalsAndreas Rumpf2018-05-181-5/+5
| |
* | preparations of making compiler/msgs.nim free of global variablesAndreas Rumpf2018-05-171-3/+3
| |
* | remove ast.emptyNode global; cleanup configuration.nimAraq2018-05-161-2/+2
|/
* transf and vmgen compile againAndreas Rumpf2018-05-121-102/+102
|
* fixes #7774 (#7783)alaviss2018-05-061-1/+3
|
* warn about inconsistent spacing around binary operators; fixes #7582Andreas Rumpf2018-05-051-1/+1
|
* correct comparisons for nil strings/seqsAndreas Rumpf2018-04-281-0/+1
|
* introduce nkTupleConstr AST node for unary tuple construction; breaking changeAndreas Rumpf2018-04-131-3/+3
|
* Cleanups 20180401 (#7458)Jacek Sieka2018-04-121-0/+3
|
* Get symbol kind (#7491)Arne Döring2018-04-111-1/+1
|
* Fixes #7407 (#7427)cooldome2018-04-061-2/+1
|
* some progress on #7261; VM does not support the new backwards indexingAraq2018-02-281-1/+1
|
* preparations for language extensions: 'sink' and 'lent' typesAndreas Rumpf2018-01-071-3/+3
|
* add support cast[integer] in VMParashurama2017-12-301-2/+45
|
* first steps in adding template/macro calls to stack tracesAraq2017-12-211-0/+2
|
* fixes crash related to runnableExamples in Nim doc that yet uses the VMAndreas Rumpf2017-12-091-0/+2
|
* bugfix: make 'macros' module available for nimscriptAndreas Rumpf2017-11-141-3/+3
|
* deprecated unary '<'Andreas Rumpf2017-10-291-11/+11
|
* first steps of making 'opt' a first class type for NimAndreas Rumpf2017-09-251-0/+2
|
* first implementation of the 'func' keywordAndreas Rumpf2017-09-231-2/+2
|
* Fix operations on string as openarray in VM. (#6257)Parashurama2017-09-151-3/+3
| | | | | | | | | | * fix openarray.len for string as openArray in VM. * fix openarray[idx] for string as openArray in VM. * fix openarray[idx]=val for string as openArray in VM. * add tests for passing string as openArray in VM. * fix issue with NimNode.len NimNode.len was also returning len for string literals. also fix logic bug in if/elif chain.
* fix VM intsize for 32bits and smaller targetOS. (#6211)Parashurama2017-08-101-3/+4
| | | | | | | This commit change the default behaviour of VM int/uint always being 64bits and make int/uint on VM behave identically to compiled code. This insert 'opcNarrowU' or 'opcNarrow' opcode on Int/Uint operations when needed to simulate smaller Int/Uint on VM.
* Vm fix zero extend proc ze/ze64 && toU32/toU16/toU8 (#5988)Parashurama2017-08-031-2/+16
| | | | | | * fixes ze/ze64 procs in VM. * fixes toU8/toU16/toU32. * add tests for ze/ze64 toU32/toU16/toU8 procs
* Lineinfo change (#6084)Arne Döring2017-07-171-1/+10
|
* fix logical right shift in VM. (#5916)Parashurama2017-06-051-1/+17
|
* Working test cases for the sophisticated matrix library example from the manualZahary Karadjov2017-03-241-1/+2
| | | | | Fixed the dot operator when used within return types (see tgenericdotrettype) Fixed the matching of generic concepts aliases used with the implicit generics style
* fixes #5221Andreas Rumpf2017-02-051-1/+1
|
* fixes #5269Andreas Rumpf2017-02-051-6/+10
|
* make vmgen more robust in the context of 'nim check'Araq2016-12-311-2/+3
|
* removed tyArrayConstr completely from the compiler; introduced tyAlias ↵Araq2016-11-141-1/+1
| | | | instead in preparation for further bugfixes
* fixes #4915andri lim2016-10-271-1/+1
|
* fixes regressionAndreas Rumpf2016-08-261-1/+1
|
* remove unused stuffJacek Sieka2016-08-091-14/+0
|
* attempt to fix #4065Andreas Rumpf2016-08-041-2/+1
|
* compiler almost free of deprecated expr/stmt namesAndreas Rumpf2016-07-301-2/+2
|
* stdlib and compiler don't use .immediate anymoreAndreas Rumpf2016-07-291-2/+2
|
* added system.newSeqOfCap for improved efficiencyAndreas Rumpf2016-07-151-2/+14
|
* fixes #2730Andreas Rumpf2016-07-131-2/+2
|
* fixes #4462Andreas Rumpf2016-07-081-3/+5
|
* fixes #4371Andreas Rumpf2016-07-081-1/+1
|
* Merge branch 'devel' of github.com:nim-lang/Nim into develAndreas Rumpf2016-07-061-1/+4
|\
'n896' href='#n896'>896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054