summary refs log tree commit diff stats
path: root/compiler/semfold.nim
Commit message (Expand)AuthorAgeFilesLines
* cString => cSourceString; tyCString => tyCstring so that error msgs show cstr...Timothee Cour2021-04-171-2/+2
* fixes #16076 (#17486)Andreas Rumpf2021-03-231-1/+2
* IC: next steps (#16705)Andreas Rumpf2021-01-141-97/+103
* fix #16650 (#16660)flywind2021-01-101-1/+6
* big steps torwards an efficient, simple IC implementation (#16543)Andreas Rumpf2021-01-021-2/+2
* fixes #16069; [backport:1.2] [backport:1.4] (#16115)Andreas Rumpf2020-11-241-0/+1
* Disallow nil dereference at compile time (#16032)cooldome2020-11-181-0/+4
* Semfold for nil cast (#16030)cooldome2020-11-181-1/+1
* combine PR#16009 and PR#16012 (#16024)flywind2020-11-181-1/+1
* Revert "fix #15623 (#16009)"Andrey R (cooldome)2020-11-171-1/+1
* fix #15623 (#16009)flywind2020-11-171-1/+1
* explicit ID generation for easier IC (#15559)Andreas Rumpf2020-10-251-85/+46
* fixes #15532 (#15534)Andreas Rumpf2020-10-091-0/+2
* Big compiler Cleanup (#14777)Clyybber2020-08-281-1/+1
* Deprecated laxStrings for mutating the internal zero terminator on strings an...Juan Carlos2020-06-231-2/+0
* Error -> Defect for defects (#13908)Jacek Sieka2020-04-281-2/+2
* fix #14007 (#14012) [backport]cooldome2020-04-181-2/+6
* Fix semfold handling of {.str/int/bool-define.} (#13964)Oscar Nihlgård2020-04-131-0/+6
* fix last remaining warning when building nim (`intVal should be Int128`) + mi...Timothee Cour2020-04-021-23/+4
* Continue bool conversion fixing (#13751)cooldome2020-03-251-0/+9
* fixes #13661 (#13664) [backport]Andreas Rumpf2020-03-161-1/+0
* fix operators containing percent for VM usage (#13536)Arne Döring2020-03-111-2/+2
* Remove dead magics (#13551)Arne Döring2020-03-031-9/+1
* make case-object transitions explicit, make unknownLineInfo a const, replace ...Jasper Jenkins2020-01-171-1/+1
* Cosmetic compiler cleanup (#12718)Clyybber2019-11-281-70/+70
* conversions to unsigned numbers are not checked anymore; implements /… (#12...Andreas Rumpf2019-11-201-4/+2
* fix deprecation warnings related to Int128 (#12474)Miran2019-10-281-47/+48
* fixes #12170 (#12176)Andreas Rumpf2019-09-111-2/+2
* Small ast.nim cleanup (#12156)Clyybber2019-09-091-14/+14
* Merge branch 'devel' into uint-range-checksAndreas Rumpf2019-09-021-7/+0
|\
| * fix min/max for float numbers (#12068)Arne Döring2019-09-021-7/+0
* | makes more tests greenAndreas Rumpf2019-09-021-2/+2
* | make test greenAraq2019-09-021-2/+3
|/
* Fix to int to biggest int (#12066)Arne Döring2019-08-271-3/+0
* fixes #12056 (#12063)Andreas Rumpf2019-08-271-2/+5
* int128 on firstOrd, lastOrd and lengthOrd (#11701)Arne Döring2019-08-071-129/+130
* [refactoring] remove unused imports in the compiler and in some stdlib modulesAraq2019-07-181-2/+2
* styleCheck: make the compiler and large parts of the stdlib compatible with -...Araq2019-07-101-4/+4
* Offsetof fixes (#11690)Arne Döring2019-07-091-7/+5
* [refactoring] remove zeroExtend and friends from the compiler builtins. (#11531)Arne Döring2019-06-241-6/+0
* fix regression in semfold for old right shift (#11477)Arne Döring2019-06-121-1/+16
* right shift is now by default sign preserving (#11322)Arne Döring2019-05-291-7/+4
* less copy tree (#11249)Arne Döring2019-05-151-19/+15
* Make range checks in semConv (#7164)Oscar Nihlgård2019-05-101-4/+1
* Replace countup(x, y-1) with x ..< yClyybber2019-05-071-9/+9
* low/high for float ranges (#11177)Oscar Nihlgård2019-05-061-2/+8
* Initial version of the hot-code reloading support for native targets (#10729)zah2019-02-261-2/+0
* Fix codegen problem with strict C++ compilers (#10639)LemonBoy2019-02-131-1/+1
* revive #10228 (fix #9880) (#10610)Timothee Cour2019-02-131-2/+2
* helpers2 now has a real nameAraq2019-02-071-1/+1
a> 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