summary refs log tree commit diff stats
path: root/compiler/cgendata.nim
Commit message (Collapse)AuthorAgeFilesLines
* Get rid of deprecation warningsdef2015-04-071-13/+13
|
* codegen doesn't produce line tracing commands anymore; fixes #1344Araq2015-03-211-5/+8
|
* lots of C++ codegen improvementsAraq2015-02-071-0/+3
|
* updated the compiler to use the new symbol namesAraq2014-08-281-3/+3
|
* Nimrod renamed to NimAraq2014-08-281-2/+2
|
* optimized method dispatchersAraq2014-06-121-0/+1
|
* iterators now return tyIter(T);Zahary Karadjov2014-03-051-1/+1
| | | | | | | | tyIter(T) represents an "iteration yielding values of type T" I'm planning to use that in the context of the `is` operator supporting predicates such as `C.items is iterator` and also in the upcoming support for higher-order inline iterators.
* Fixed #688 : return in except statments. Also fixed return in finally ↵Audun Wilhelmsen2014-02-231-2/+5
| | | | statements.
* Fixed issue 391 (nested break in except-stmts)Audun Wilhelmsen2014-02-161-0/+1
|
* fixes #914Araq2014-02-141-1/+2
|
* Introduce a PreMain proc in the C codegenZahary Karadjov2013-12-301-1/+2
| | | | | | | | The rationale here is that it has become too hard to step into a program when #line directives are enabled. You have to skip over many lines of init code that doesn't have corresponding lines in the nimrod program. Now, you can just step-out of PreMain and go straight to the useful code in NimMain.
* case consistency: cs:partial bootstraps on windowsAraq2013-12-291-4/+4
|
* case consistency part 4Araq2013-12-271-2/+2
|
* implemented 'injectStmt'; more debug supportAraq2013-12-161-0/+1
|
* fixes a regression where memset was used without including <string.h>Araq2013-12-031-0/+1
|
* work-in-progress for compiling generics in their owner moduleZahary Karadjov2013-08-191-3/+1
|
* documented object constrs; endb works againAraq2013-03-091-4/+3
|
* cleaned up some debugging codeZahary Karadjov2013-01-201-2/+3
|
* [caas] first version that actually works (still has a lot of logical memory ↵Zahary Karadjov2012-11-281-0/+6
| | | | leaks on recompilation)
* better extension loading for the OpenGL wrapperAraq2012-10-091-0/+2
|
* bugfix: closures as default param valuesZahary Karadjov2012-10-061-2/+0
|
* implemented a stack trace profilerAraq2012-09-151-1/+0
|
* implements #173Araq2012-07-281-1/+2
|
* removed nimdat in favor of per-module dat init procsZahary Karadjov2012-07-191-3/+7
|
* better support for unsigned integers.Zahary Karadjov2012-06-111-3/+5
|
* bugfix: finally blocks were not executed when the except block is exited by ↵Zahary Karadjov2012-06-031-2/+3
| | | | raise or return
* fixes #109Araq2012-05-201-0/+1
|
* fix threading testsZahary Karadjov2012-04-151-2/+7
|
* Proper C scopes for if, try and case statementsZahary Karadjov2012-04-121-0/+2
| | | | | | | | | even thought the setjmp implementation for try statement won't be used in C++, using properly scoped variables for them is beneficial, because we'll be able to establish a 1:1 relation between nimrod scopes and C scopes. Once we have that, we'll be able to keep the original names of local variables to greatly improve the debugging experience (i.e. watch expressions and hover tooltips will work).
* C variables are created in their enclosing block instead of their enclosing ↵Zahary Karadjov2012-04-121-4/+7
| | | | function
* proper order of initialization for .global. variablesZahary Karadjov2012-04-101-0/+4
|
* tests tcnstseq and tcnstseq3 work againAraq2012-03-281-1/+1
|
* year 2012 for most copyright headersAraq2012-01-021-1/+1
|
* code gen can generate code to keep alive stack rootsAraq2011-12-221-0/+2
|
* threads compile again; attempt to fix serious code gen issue (except + return)Araq2011-12-031-0/+2
|
* rod files: next trivial examples workingAraq2011-10-221-0/+2
|
* got rid of gGeneratedSymsAraq2011-10-211-1/+0
|
* further steps for incremental C code generationAraq2011-10-211-2/+2
|
* first steps to C file merge operation for incremental compilationAraq2011-10-211-0/+116