forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIlExpression.cs
More file actions
340 lines (280 loc) · 8.67 KB
/
IlExpression.cs
File metadata and controls
340 lines (280 loc) · 8.67 KB
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
// -----------------------------------------------------------------------
// <copyright file="IlExpression.cs" company="Asynkron HB">
// Copyright (C) 2015-2017 Asynkron HB All rights reserved
// </copyright>
// -----------------------------------------------------------------------
#if NET45
using System;
using System.Reflection;
using System.Reflection.Emit;
using Wire.Extensions;
namespace Wire.Compilation
{
public abstract class IlExpression
{
public abstract void Emit(IlCompilerContext ctx);
public abstract Type Type();
}
public class IlBool : IlExpression
{
private readonly bool _value;
public IlBool(bool value)
{
_value = value;
}
public override void Emit(IlCompilerContext ctx)
{
ctx.Il.Emit(_value ? OpCodes.Ldc_I4_1 : OpCodes.Ldc_I4_0);
ctx.StackDepth++;
}
public override Type Type() => typeof(bool);
}
public class IlRuntimeConstant : IlExpression
{
private readonly object _object;
public IlRuntimeConstant(object value, int index)
{
_object = value;
Index = index;
}
public int Index { get; }
public override void Emit(IlCompilerContext ctx)
{
var field = ctx.SelfType.GetFields(BindingFlagsEx.All)[Index];
ctx.Il.Emit(OpCodes.Ldarg_0);
ctx.Il.Emit(OpCodes.Ldfld, field);
ctx.StackDepth++;
}
public override Type Type() => _object.GetType();
}
public class IlReadField : IlExpression
{
private readonly FieldInfo _field;
private readonly IlExpression _target;
public IlReadField(FieldInfo field, IlExpression target)
{
_field = field;
_target = target;
}
public override void Emit(IlCompilerContext ctx)
{
_target.Emit(ctx);
ctx.Il.Emit(OpCodes.Ldfld, _field);
//we are still at the same stack size as we consumed the target
}
public override Type Type() => _field.FieldType;
}
public class IlWriteVariable : IlExpression
{
private readonly IlExpression _value;
private readonly IlVariable _variable;
public IlWriteVariable(IlVariable variable, IlExpression value)
{
_variable = variable;
_value = value;
}
public override void Emit(IlCompilerContext ctx)
{
_value.Emit(ctx);
ctx.Il.Emit(OpCodes.Stloc, _variable.VariableIndex);
ctx.StackDepth--;
}
public override Type Type()
{
throw new NotImplementedException();
}
}
public class IlWriteField : IlExpression
{
private readonly FieldInfo _field;
private readonly IlExpression _target;
private readonly IlExpression _value;
public IlWriteField(FieldInfo field, IlExpression target, IlExpression value)
{
_field = field;
_target = target;
_value = value;
}
public override void Emit(IlCompilerContext ctx)
{
_target.Emit(ctx);
_value.Emit(ctx);
ctx.Il.Emit(OpCodes.Stfld, _field);
ctx.StackDepth -= 2;
}
public override Type Type()
{
throw new NotImplementedException();
}
}
public class IlNew : IlExpression
{
private readonly Type _type;
public IlNew(Type type)
{
_type = type;
}
public override void Emit(IlCompilerContext ctx)
{
var ctor = _type.GetConstructor(new Type[] {});
// ReSharper disable once AssignNullToNotNullAttribute
ctx.Il.Emit(OpCodes.Newobj, ctor);
ctx.StackDepth++;
}
public override Type Type() => _type;
}
public class IlParameter : IlExpression
{
private readonly Type _type;
public IlParameter(int parameterIndex, Type type, string name)
{
Name = name;
ParameterIndex = parameterIndex;
_type = type;
}
public string Name { get; }
public int ParameterIndex { get; }
public override void Emit(IlCompilerContext ctx)
{
ctx.Il.Emit(OpCodes.Ldarg, ParameterIndex);
ctx.StackDepth++;
}
public override Type Type() => _type;
}
public class IlVariable : IlExpression
{
public IlVariable(int variableIndex, Type type, string name)
{
VariableIndex = variableIndex;
Name = name;
VarType = type;
}
public int VariableIndex { get; }
public string Name { get; }
public Type VarType { get; }
public override void Emit(IlCompilerContext ctx)
{
ctx.Il.Emit(OpCodes.Ldloc, VariableIndex);
ctx.StackDepth++;
}
public override Type Type() => VarType;
}
public class IlCastClass : IlExpression
{
private readonly IlExpression _expression;
private readonly Type _type;
public IlCastClass(Type type, IlExpression expression)
{
_type = type;
_expression = expression;
}
public override void Emit(IlCompilerContext ctx)
{
_expression.Emit(ctx);
ctx.StackDepth--;
ctx.Il.Emit(OpCodes.Castclass, _type);
ctx.StackDepth++;
}
public override Type Type() => _type;
}
public class IlBox : IlExpression
{
private readonly IlExpression _expression;
private readonly Type _type;
public IlBox(Type type, IlExpression expression)
{
_type = type;
_expression = expression;
}
public override void Emit(IlCompilerContext ctx)
{
_expression.Emit(ctx);
ctx.Il.Emit(OpCodes.Box, _type);
}
public override Type Type() => typeof(object);
}
public class IlUnbox : IlExpression
{
private readonly IlExpression _expression;
private readonly Type _type;
public IlUnbox(Type type, IlExpression expression)
{
_type = type;
_expression = expression;
}
public override void Emit(IlCompilerContext ctx)
{
_expression.Emit(ctx);
ctx.Il.Emit(OpCodes.Unbox_Any, _type);
}
public override Type Type() => _type;
}
public class IlCall : IlExpression
{
private readonly IlExpression[] _args;
private readonly MethodInfo _method;
private readonly IlExpression _target;
public IlCall(IlExpression target, MethodInfo method, params IlExpression[] args)
{
if (args.Length != method.GetParameters().Length)
{
throw new ArgumentException("Parameter count mismatch", nameof(args));
}
_target = target;
_method = method;
_args = args;
}
public override void Emit(IlCompilerContext ctx)
{
_target.Emit(ctx);
ctx.StackDepth--;
foreach (var arg in _args)
{
arg.Emit(ctx);
ctx.StackDepth--;
}
if (_method.IsVirtual)
{
ctx.Il.EmitCall(OpCodes.Callvirt, _method, null);
}
else
{
ctx.Il.EmitCall(OpCodes.Call, _method, null);
}
if (_method.ReturnType != typeof(void))
{
ctx.StackDepth++;
}
}
public override Type Type() => _method.ReturnType;
}
public class IlCallStatic : IlExpression
{
private readonly IlExpression[] _args;
private readonly MethodInfo _method;
public IlCallStatic(MethodInfo method, params IlExpression[] args)
{
if (args.Length != method.GetParameters().Length)
{
throw new ArgumentException("Parameter count mismatch", nameof(args));
}
_method = method;
_args = args;
}
public override void Emit(IlCompilerContext ctx)
{
foreach (var arg in _args)
{
arg.Emit(ctx);
ctx.StackDepth--;
}
ctx.Il.EmitCall(OpCodes.Call, _method, null);
if (_method.ReturnType != typeof(void))
{
ctx.StackDepth++;
}
}
public override Type Type() => _method.ReturnType;
}
}
#endif