Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | reverting the GC change | Zahary Karadjov | 2013-09-05 | 1 | -1/+1 |
| | |||||
* | resolved the conflict | Araq | 2013-09-03 | 20 | -204/+436 |
|\ | |||||
| * | Add arity typetrait | Mark Flamer | 2013-09-02 | 1 | -0/+4 |
| | | |||||
| * | switching the compiler to the markAndSweep collector | Zahary Karadjov | 2013-09-03 | 1 | -0/+2 |
| | | | | | | | | | | This produces faster bootstrapping, works properly for the caas mode and fixes the Aporia build on a mac | ||||
| * | Merge branch 'type-classes' into upstream | Zahary Karadjov | 2013-09-03 | 19 | -204/+430 |
| |\ | |||||
| | * | implemented the using statement | Zahary Karadjov | 2013-08-31 | 7 | -9/+51 |
| | | | |||||
| | * | minor improvement towards tgenericshardcases | Zahary Karadjov | 2013-08-28 | 4 | -24/+42 |
| | | | |||||
| | * | fix tisop | Zahary Karadjov | 2013-08-27 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adding nil checks on the exit paths for semCompiles errors. This was probably not needed before, because semIndirectOp had a special detection for semCompiles contexts. We could try to restore these, but wouldn't this just postpone the crashes until someone tries the same expressions in nimrod check? One of the previous commits also used errorNode to avoid returning nil. This may be an alaternative approach. | ||||
| | * | fix tcompiles | Zahary Karadjov | 2013-08-27 | 2 | -4/+4 |
| | | | |||||
| | * | proper discrimination between csEmpty and csNoMatch | Zahary Karadjov | 2013-08-27 | 1 | -3/+8 |
| | | | | | | | | | | | | fixes twrongtupleaccess and topaque | ||||
| | * | fix tnoop | Zahary Karadjov | 2013-08-26 | 3 | -8/+12 |
| | | | | | | | | | | | | | | | | | | | | | | | | This commit requires further investigation. Fixing semExpr(nkCall) once and for all to work with sym-choices and to allow overloading with immediate templates and macros will probably set this straight too. | ||||
| | * | implemented delegators and improved the error messages of unmatched type classes | Zahary Karadjov | 2013-08-26 | 12 | -82/+119 |
| | | | |||||
| | * | prevent eval crashes due to PContext-dependent ops not being available in ↵ | Zahary Karadjov | 2013-08-25 | 4 | -42/+40 |
| | | | | | | | | | | | | evalConstExpr | ||||
| | * | working code for simple cases of user-defined type classes | Zahary Karadjov | 2013-08-25 | 7 | -41/+135 |
| | | | |||||
| | * | fix parsing of ``proc foo(x: distinct Type)`` | Zahary Karadjov | 2013-08-24 | 1 | -6/+1 |
| | | | |||||
| | * | parsing of user defined type classes | Zahary Karadjov | 2013-08-23 | 2 | -1/+34 |
| | | | |||||
* | | | better support for GNU's assembler | Araq | 2013-09-03 | 3 | -11/+29 |
|/ / | |||||
* | | bugfix: line information for comments | Araq | 2013-09-01 | 1 | -1/+0 |
| | | |||||
* | | -d:nocaas mode for easier bootstrapping on exotic OSes (Haiku) | Araq | 2013-09-01 | 3 | -22/+36 |
| | | |||||
* | | fixes #582 | Araq | 2013-09-01 | 1 | -1/+0 |
| | | |||||
* | | fixes #516 | Araq | 2013-08-31 | 1 | -3/+6 |
| | | |||||
* | | fixes #554, fixes #179 | Araq | 2013-08-31 | 2 | -4/+7 |
| | | |||||
* | | fixes #459 | Araq | 2013-08-31 | 1 | -2/+5 |
| | | |||||
* | | fixes #563 | Araq | 2013-08-31 | 1 | -0/+1 |
| | | |||||
* | | fixes #569; C++ codegen works again | Araq | 2013-08-31 | 1 | -12/+7 |
| | | |||||
* | | fixes #578 | Araq | 2013-08-30 | 2 | -2/+2 |
| | | |||||
* | | bugfix: conversions to float32 are allowed again but of lower priority | Araq | 2013-08-30 | 1 | -3/+3 |
| | | |||||
* | | conversions to float32 are allowed again but of lower priority | Araq | 2013-08-30 | 1 | -3/+3 |
| | | |||||
* | | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2013-08-30 | 12 | -54/+124 |
|\| | |||||
| * | implemented and documented the new typedesc binding rules | Zahary Karadjov | 2013-08-23 | 2 | -5/+13 |
| | | |||||
| * | pass-through of static int generic params to arrays when late instantiation ↵ | Zahary Karadjov | 2013-08-23 | 7 | -16/+24 |
| | | | | | | | | is disabled | ||||
| * | Experimental support for delayed instantiation of generics | Zahary Karadjov | 2013-08-23 | 10 | -39/+93 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This postpones the semantic pass over the generic's body until the generic is instantiated. There are several pros and cons for this method and the capabilities that it enables may still be possible in the old framework if we teach it a few new trick. Such an attempt will follow in the next commits. pros: 1) It allows macros to be expanded during generic instantiation that will provide the body of the generic. See ``tmacrogenerics``. 2) The instantiation code is dramatically simplified. Dealing with unknown types in the generic's body pre-pass requires a lot of hacky code and error silencing in semTypeNode. See ``tgenericshardcases``. cons: 1) There is a performance penalty of roughly 5% when bootstrapping. 2) Certain errors that used to be detected in the previous pre-pass won't be detected with the new scheme until instantiation. | ||||
* | | fixes #572 | Araq | 2013-08-30 | 1 | -5/+5 |
| | | |||||
* | | float64 is now an alias to 'float'; fixes #545 | Araq | 2013-08-30 | 6 | -16/+33 |
| | | |||||
* | | bugfix: 'not x of y' requires () | Araq | 2013-08-30 | 1 | -3/+9 |
| | | |||||
* | | docgen: more newlines in the output to support primitive postprocessors | Araq | 2013-08-29 | 2 | -16/+2 |
|/ | |||||
* | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2013-08-22 | 17 | -235/+457 |
|\ | |||||
| * | hacky fix for generic constraints matching | Zahary Karadjov | 2013-08-19 | 5 | -9/+34 |
| | | |||||
| * | check the owners of generic instantiations properly and fix tinvalidclosure | Zahary Karadjov | 2013-08-19 | 2 | -3/+12 |
| | | |||||
| * | work-in-progress for compiling generics in their owner module | Zahary Karadjov | 2013-08-19 | 4 | -8/+17 |
| | | |||||
| * | some steps to improve the type mismatches with the new | Zahary Karadjov | 2013-08-19 | 2 | -10/+17 |
| | | | | | | | | generic instantiation logic | ||||
| * | fixes iterating over enums | Zahary Karadjov | 2013-08-19 | 1 | -4/+4 |
| | | |||||
| * | Revert "Revert "made some tests green"" | Zahary Karadjov | 2013-08-19 | 4 | -19/+25 |
| | | |||||
| * | Revert "Revert "further fixes for void stripping. fixes tvoid."" | Zahary Karadjov | 2013-08-19 | 1 | -20/+25 |
| | | | | | | | | This reverts commit d11cf5d1915d83159094f5074a6e17a72c65d9fa. | ||||
| * | Revert "Revert "fix threading tests"" | Zahary Karadjov | 2013-08-19 | 2 | -9/+17 |
| | | | | | | | | This reverts commit 9c45e33d8c8b1a5f5fca69a467fda87b9b547057. | ||||
| * | Revert "Revert "fix tforwardgeneric"" | Zahary Karadjov | 2013-08-19 | 3 | -4/+5 |
| | | | | | | | | This reverts commit e3f93241c3824e49b69c647bbd44726a79e8f8f8. | ||||
| * | Revert "Revert "static and default params for generics"" | Zahary Karadjov | 2013-08-19 | 4 | -61/+92 |
| | | | | | | | | This reverts commit 0662ec4a434f4656b5afc486bc4ebaab82c52da6. | ||||
| * | Revert "Revert "allow keyword params for the `[]` and `{}` operators"" | Zahary Karadjov | 2013-08-19 | 1 | -8/+12 |
| | | | | | | | | This reverts commit b7ea4a7e65ddf10bf3e425e59bc57e9f9c57e916. | ||||
| * | remerge "allow void as field type" | Zahary Karadjov | 2013-08-19 | 2 | -27/+43 |
| | | |||||
| * | Revert "Revert "bugfix: emulated thread vars used in combination with the ↵ | Zahary Karadjov | 2013-08-19 | 3 | -4/+11 |
| | | | | | | | | | | | | mark & sweep GC"" This reverts commit 75c586bbe1cc649b36fc00362ab40ebb1d163d9f. |