summary refs log tree commit diff stats
path: root/compiler/writetracking.nim
Commit message (Expand)AuthorAgeFilesLines
* Cosmetic compiler cleanup (#12718)Clyybber2019-11-281-42/+41
* Small ast.nim cleanup (#12156)Clyybber2019-09-091-4/+4
* [refactoring] remove unused imports in the compiler and in some stdlib modulesAraq2019-07-181-2/+1
* more destructor based changes (#10885)Andreas Rumpf2019-03-231-1/+1
* remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-1/+2
* guards.nim does compileAndreas Rumpf2018-05-111-6/+6
* introduce nkTupleConstr AST node for unary tuple construction; breaking changeAndreas Rumpf2018-04-131-2/+2
* deprecated unary '<'Andreas Rumpf2017-10-291-1/+1
* first implementation of the 'func' keywordAndreas Rumpf2017-09-231-0/+2
* make the Nim compiler compile as C++Araq2016-12-101-2/+4
* fixes typoAraq2015-09-091-1/+1
* optimized writetrackingAraq2015-09-031-139/+149
* 'var T' doesn't imply escapingAraq2015-09-021-1/+1
* write tracking: leaner code; minor bug fixes (still unusable)Araq2015-08-311-85/+61
* first implementation of write tracking and escape analysis; still disabledAraq2015-08-311-0/+286
=9f78ec2d5e2a74ec24cc20cd3b1d60c3bdb9d605'>^
c1585c88 ^
a90faae9 ^









e330f854 ^
a90faae9 ^




c1585c88 ^
a90faae9 ^







fa94f4d9 ^
a90faae9 ^











fa94f4d9 ^
a90faae9 ^











b0403c18 ^
a90faae9 ^
b0403c18 ^

741ef43e ^
b0403c18 ^
a90faae9 ^

b0403c18 ^
a90faae9 ^
b0403c18 ^
a90faae9 ^















b0403c18 ^
a90faae9 ^



a90faae9 ^
ae244ebd ^

e00d4854 ^
ae244ebd ^



d135851e ^
e330f854 ^
ae244ebd ^



e330f854 ^
ae244ebd ^




d135851e ^
ae244ebd ^













e330f854 ^
ae244ebd ^


d135851e ^
ae244ebd ^




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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168