summary refs log tree commit diff stats
path: root/compiler/cgen.nim
Commit message (Expand)AuthorAgeFilesLines
* deprecated unary '<'Andreas Rumpf2017-10-291-1/+1
* backend preparations for incomplete/forwarded object typesAndreas Rumpf2017-10-281-5/+5
* No implicit quit for Genode (#6515)Emery Hemingway2017-10-251-2/+1
* fixes a codegen bug: in 'result = f(result)' the default initialization for '...Andreas Rumpf2017-10-091-1/+8
* first implementation of the 'func' keywordAndreas Rumpf2017-09-231-1/+1
* refactoring: TLoc knows the node it originated from; it is planned to use thi...Andreas Rumpf2017-09-211-38/+53
* introduce OnHeapNew and rename TLoc.s to TLoc.storageAndreas Rumpf2017-09-211-6/+6
* improve the debugging experience when line directives are usedZahary Karadjov2017-09-041-4/+6
* fixes #6279Andreas Rumpf2017-08-291-0/+9
* fixes #5989Araq2017-07-171-2/+2
* cgen: #undef some more predefined symbols. (#5831)Markus F.X.J. Oberhumer2017-06-131-0/+10
* review and merge zahary's work (#5849)zah2017-06-031-5/+7
* a few tiny cleanups (#5712)Jacek Sieka2017-05-291-4/+0
* Create correct C protoypes in genMainProc. (#5822)Markus F.X.J. Oberhumer2017-05-161-4/+4
* make -d:nimdiff feature more robustAndreas Rumpf2017-04-261-2/+5
* support for the Genode OS framework (#5560)Emery Hemingway2017-03-311-0/+16
* fixes #5598Araq2017-03-231-0/+1
* minor codegen bugfix: don't use names for closures that are also mangled Nim ...Araq2017-02-261-1/+1
* fixes #5439Araq2017-02-261-4/+5
* Merge branch 'devel' into faster-nimsuggestAndreas Rumpf2017-02-241-14/+14
|\
| * removed compiler internal list implementation (#5371)Arne Döring2017-02-221-14/+14
* | big compiler refactoring; avoid globals for multi method dispatcher generationAndreas Rumpf2017-02-221-2/+2
|/
* C++ codegen: emit 'extern C' for importc'ed functions that we declare a proto...Araq2017-02-141-4/+7
* name mangling bugfixes; ndi file generation for debugger supportAndreas Rumpf2017-02-031-1/+5
* new name mangling rules for easier debuggingAndreas Rumpf2017-02-021-13/+14
* new name mangling scheme implementedAndreas Rumpf2017-02-021-6/+7
* refactoring: explict config state instead of globalsAndreas Rumpf2017-02-011-2/+3
* .compile pragma supports patterns and actionsAraq2017-01-281-31/+36
* happy new yearAraq2017-01-071-2/+2
* make Nim compiler compile with 0.15.2Araq2017-01-071-3/+16
* fixes #5171Araq2017-01-031-0/+1
* fixes recently introduced regressionAndreas Rumpf2016-12-211-6/+8
* fixes #5136Andreas Rumpf2016-12-211-6/+6
* Merge branch 'devel' into sighashesAraq2016-12-191-11/+14
|\
| * fixes #4308, fixes #4905Araq2016-12-181-0/+2
| * revert line info generation change; produces worse results for other casesAraq2016-12-181-2/+2
| * significantly better stack traces when templates are involvedAraq2016-12-181-8/+12
* | sighashes: do not use the ID mechanism at allAraq2016-12-131-7/+28
* | implements -d:nimdiff switch for seeing generated C code diffsAndreas Rumpf2016-12-061-1/+7
* | refactoring: C codegen with fewer global variablesAraq2016-12-051-52/+54
* | more tests workAraq2016-12-021-0/+1
* | Merge branch 'devel' into sighashesAraq2016-12-011-0/+1
|\|
| * Fixed dynlink with OpenSSL >1.1.0. Added loadLibPattern.Yuriy Glukhov2016-11-301-0/+1
* | attempt to fix thingsAndreas Rumpf2016-11-231-1/+1
* | the compiler uses tyAlias internally; tester compiles againAraq2016-11-161-8/+11
* | removed tyArrayConstr completely from the compiler; introduced tyAlias instea...Araq2016-11-141-2/+2
* | signature hashing: more progressAraq2016-11-111-12/+7
* | C codegen: first version of signature hashing for better incremental buildsAraq2016-11-081-8/+10
|/
* new dependency tracking for nimsuggestAraq2016-11-051-2/+4
* refactoring complete: explicit ident cacheAraq2016-10-311-1/+1
fe18f8808'>^
c0f84b1f ^



b301e0c0 ^
c0f84b1f ^





b301e0c0 ^
c0f84b1f ^









1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153