forked from IronLanguages/ironpython3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBinaryExpression.cs
More file actions
350 lines (298 loc) · 12.5 KB
/
Copy pathBinaryExpression.cs
File metadata and controls
350 lines (298 loc) · 12.5 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
341
342
343
344
345
346
347
348
349
350
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information.
using MSAst = System.Linq.Expressions;
using System;
using System.Diagnostics;
using System.Reflection;
using Microsoft.Scripting;
using Microsoft.Scripting.Interpreter;
using Microsoft.Scripting.Utils;
using IronPython.Runtime.Exceptions;
using IronPython.Runtime.Operations;
using IronPython.Runtime.Binding;
using AstUtils = Microsoft.Scripting.Ast.Utils;
namespace IronPython.Compiler.Ast {
using Ast = MSAst.Expression;
public partial class BinaryExpression : Expression, IInstructionProvider {
public BinaryExpression(PythonOperator op, Expression left, Expression right) {
ContractUtils.RequiresNotNull(left, nameof(left));
ContractUtils.RequiresNotNull(right, nameof(right));
if (op == PythonOperator.None) throw new ValueErrorException("bad operator");
Operator = op;
Left = left;
Right = right;
StartIndex = left.StartIndex;
EndIndex = right.EndIndex;
}
public Expression Left { get; }
public Expression Right { get; }
public PythonOperator Operator { get; }
private bool IsComparison() {
switch (Operator) {
case PythonOperator.LessThan:
case PythonOperator.LessThanOrEqual:
case PythonOperator.GreaterThan:
case PythonOperator.GreaterThanOrEqual:
case PythonOperator.Equal:
case PythonOperator.NotEqual:
case PythonOperator.In:
case PythonOperator.NotIn:
case PythonOperator.IsNot:
case PythonOperator.Is:
return true;
}
return false;
}
private bool NeedComparisonTransformation() => IsComparison() && IsComparison(Right);
public static bool IsComparison(Expression expression) => expression is BinaryExpression be && be.IsComparison();
// This is a compound comparison operator like: a < b < c.
// That's represented as binary operators, but it's not the same as (a<b) < c, so we do special transformations.
// We need to:
// - return true iff (a<b) && (b<c), but ensure that b is only evaluated once.
// - ensure evaluation order is correct (a,b,c)
// - don't evaluate c if a<b is false.
private MSAst.Expression FinishCompare(MSAst.Expression left) {
Debug.Assert(Right is BinaryExpression);
BinaryExpression bright = (BinaryExpression)Right;
// Transform the left child of my right child (the next node in sequence)
MSAst.Expression rleft = bright.Left;
// Store it in the temp
MSAst.ParameterExpression temp = Ast.Parameter(typeof(object), "chained_comparison");
// Create binary operation: left <_op> (temp = rleft)
MSAst.Expression comparison = MakeBinaryOperation(
Operator,
left,
Ast.Assign(temp, AstUtils.Convert(rleft, temp.Type)),
Span
);
MSAst.Expression rright;
// Transform rright, comparing to temp
if (IsComparison(bright.Right)) {
rright = bright.FinishCompare(temp);
} else {
MSAst.Expression transformedRight = bright.Right;
rright = MakeBinaryOperation(
bright.Operator,
temp,
transformedRight,
bright.Span
);
}
// return (left (op) (temp = rleft)) and (rright)
MSAst.ParameterExpression tmp;
MSAst.Expression res = AstUtils.CoalesceTrue(
comparison,
rright,
AstMethods.IsTrue,
out tmp
);
return Ast.Block(
new[] { temp, tmp },
res
);
}
public override MSAst.Expression Reduce() {
if (!CanEmitWarning(Operator)) {
var folded = ConstantFold();
if (folded != null) {
folded.Parent = Parent;
return AstUtils.Convert(folded.Reduce(), typeof(object));
}
}
if (Operator == PythonOperator.Mod &&
Left is ConstantExpression leftConst &&
leftConst.Value is string) {
return Expression.Call(
AstMethods.FormatString,
Parent.LocalContext,
Left,
AstUtils.Convert(Right, typeof(object))
);
}
if (NeedComparisonTransformation()) {
// This is a compound comparison like: (a < b < c)
return FinishCompare(Left);
} else {
// Simple binary operator.
return MakeBinaryOperation(Operator, Left, Right, Span);
}
}
#region IInstructionProvider Members
void IInstructionProvider.AddInstructions(LightCompiler compiler) {
if (NeedComparisonTransformation()) {
// chained comparisons aren't supported for optimized light compiling
compiler.Compile(Reduce());
return;
}
switch (Operator) {
case PythonOperator.Is:
compiler.Compile(Left);
compiler.Compile(Right);
compiler.Instructions.Emit(IsInstruction.Instance);
break;
case PythonOperator.IsNot:
compiler.Compile(Left);
compiler.Compile(Right);
compiler.Instructions.Emit(IsNotInstruction.Instance);
break;
default:
compiler.Compile(Reduce());
break;
}
}
private abstract class BinaryInstruction : Instruction {
public override int ConsumedStack {
get {
return 2;
}
}
public override int ProducedStack {
get {
return 1;
}
}
}
private class IsInstruction : BinaryInstruction {
public static readonly IsInstruction Instance = new IsInstruction();
public override int Run(InterpretedFrame frame) {
// it's okay to pop the args in this order due to commutativity of referential equality
frame.Push(PythonOps.Is(frame.Pop(), frame.Pop()));
return +1;
}
}
private class IsNotInstruction : BinaryInstruction {
public static readonly IsNotInstruction Instance = new IsNotInstruction();
public override int Run(InterpretedFrame frame) {
// it's okay to pop the args in this order due to commutativity of referential equality
frame.Push(PythonOps.IsNot(frame.Pop(), frame.Pop()));
return +1;
}
}
#endregion
public override string NodeName => IsComparison() ? "comparison" : "operator";
private MSAst.Expression MakeBinaryOperation(PythonOperator op, MSAst.Expression left, MSAst.Expression right, SourceSpan span) {
if (op == PythonOperator.NotIn) {
return AstUtils.Convert(
Ast.Not(
GlobalParent.Operation(
typeof(bool),
PythonOperationKind.Contains,
left,
right
)
),
typeof(object)
);
} else if (op == PythonOperator.In) {
return AstUtils.Convert(
GlobalParent.Operation(
typeof(bool),
PythonOperationKind.Contains,
left,
right
),
typeof(object)
);
}
PythonOperationKind action = PythonOperatorToAction(op);
if (action != PythonOperationKind.None) {
return GlobalParent.Operation(
typeof(object),
action,
left,
right
);
} else {
// Call helper method
return Ast.Call(
GetHelperMethod(op),
ConvertIfNeeded(left, typeof(object)),
ConvertIfNeeded(right, typeof(object))
);
}
}
private bool CanEmitWarning(PythonOperator op) {
return false;
}
public override void Walk(PythonWalker walker) {
if (walker.Walk(this)) {
Left.Walk(walker);
Right.Walk(walker);
}
walker.PostWalk(this);
}
private static PythonOperationKind PythonOperatorToAction(PythonOperator op) {
switch (op) {
// Binary
case PythonOperator.Add:
return PythonOperationKind.Add;
case PythonOperator.Subtract:
return PythonOperationKind.Subtract;
case PythonOperator.Multiply:
return PythonOperationKind.Multiply;
case PythonOperator.MatMult:
return PythonOperationKind.MatMult;
case PythonOperator.FloorDivide:
return PythonOperationKind.FloorDivide;
case PythonOperator.TrueDivide:
return PythonOperationKind.TrueDivide;
case PythonOperator.Mod:
return PythonOperationKind.Mod;
case PythonOperator.BitwiseAnd:
return PythonOperationKind.BitwiseAnd;
case PythonOperator.BitwiseOr:
return PythonOperationKind.BitwiseOr;
case PythonOperator.Xor:
return PythonOperationKind.ExclusiveOr;
case PythonOperator.LeftShift:
return PythonOperationKind.LeftShift;
case PythonOperator.RightShift:
return PythonOperationKind.RightShift;
case PythonOperator.Power:
return PythonOperationKind.Power;
// Comparisons
case PythonOperator.LessThan:
return PythonOperationKind.LessThan;
case PythonOperator.LessThanOrEqual:
return PythonOperationKind.LessThanOrEqual;
case PythonOperator.GreaterThan:
return PythonOperationKind.GreaterThan;
case PythonOperator.GreaterThanOrEqual:
return PythonOperationKind.GreaterThanOrEqual;
case PythonOperator.Equal:
return PythonOperationKind.Equal;
case PythonOperator.NotEqual:
return PythonOperationKind.NotEqual;
case PythonOperator.In:
return PythonOperationKind.Contains;
case PythonOperator.NotIn:
case PythonOperator.IsNot:
case PythonOperator.Is:
return PythonOperationKind.None;
default:
Debug.Assert(false, "Unexpected PythonOperator: " + op.ToString());
return PythonOperationKind.None;
}
}
private static MethodInfo GetHelperMethod(PythonOperator op) {
switch (op) {
case PythonOperator.IsNot:
return AstMethods.IsNot;
case PythonOperator.Is:
return AstMethods.Is;
default:
Debug.Assert(false, "Invalid PythonOperator: " + op.ToString());
return null;
}
}
internal override bool CanThrow {
get {
if (Operator == PythonOperator.Is || Operator == PythonOperator.IsNot) {
return Left.CanThrow || Right.CanThrow;
}
return true;
}
}
}
}