summary refs log tree commit diff stats
path: root/compiler/evalffi.nim
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'upstream' into develZahary Karadjov2013-12-291-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: compiler/ccgutils.nim compiler/msgs.nim compiler/sem.nim compiler/semexprs.nim compiler/seminst.nim compiler/semmagic.nim compiler/semstmts.nim compiler/semtypes.nim compiler/semtypinst.nim compiler/sigmatch.nim compiler/types.nim compiler/vmgen.nim lib/core/macros.nim lib/system.nim tests/reject/tenummix.nim web/news.txt
| * static params: expr[T] is now static[T]Zahary Karadjov2013-12-191-1/+1
| | | | | | | | | | | | | | This introduces tyStatic and successfully bootstraps and handles few simple test cases. Static params within macros are no longer treated as PNimrodNodes - they are now equivalent to constants of the designated type.
* | vm: FFI improvementsAraq2013-12-231-0/+3
| |
* | new VM: some progress for the FFI supportAraq2013-12-231-14/+20
| |
* | next steps for FFI supportAraq2013-11-251-0/+43
|/
* first steps to implement object construction expressionsAraq2013-03-071-4/+4
|
* FFI at compiletime improvementsAraq2013-01-081-22/+47
|
* next steps for FFI at compile timeAraq2013-01-021-13/+29
|
* fixed a newly introduced c2nim bug; many untested improvements to the FFI at ↵Araq2012-12-311-40/+190
| | | | compile time
* better errors for FFIAraq2012-12-271-9/+13
|
* small improvements for FFIAraq2012-12-261-18/+48
|
* bugfix: openssl import for macosxAraq2012-12-191-0/+3
|
* small examples work with the FFIAraq2012-12-191-20/+37
|
* first steps for FFI support at compile timeAraq2012-12-191-0/+198
453fa7c871869c19375ce60fbd7413'>6e1eeeeb ^
36f616b5 ^


51530916 ^


1ba81b0f ^
5f05e954 ^
6e1eeeeb ^
36f616b5 ^


1ba81b0f ^
51530916 ^


6573fe1f ^
6e1eeeeb ^



b39ceb27 ^
26785f2a ^
b39ceb27 ^
8f249677 ^
b39ceb27 ^

6e1eeeeb ^


51530916 ^

4ea9905f ^


6e1eeeeb ^
455f0338 ^
6e1eeeeb ^
385ff136 ^
455f0338 ^


6e1eeeeb ^






455f0338 ^
6573fe1f ^
ec99eb7a ^
51530916 ^
6e1eeeeb ^











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