File: ExpressionDecompiler.cs

package info (click to toggle)
cecil-flowanalysis 0.1~vcs20110809.r1.b34edf6-3.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,080 kB
  • sloc: cs: 5,473; sh: 22; makefile: 18; ansic: 7; php: 1
file content (678 lines) | stat: -rwxr-xr-x 16,157 bytes parent folder | download | duplicates (3)
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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
#region license
//
// (C) db4objects Inc. http://www.db4o.com
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
#endregion

using System;
using System.Collections;
using System.Collections.Generic;
using Cecil.FlowAnalysis.Utilities;
using Cecil.FlowAnalysis.CodeStructure;
using Mono.Cecil;
using Mono.Cecil.Cil;
using Mono.Collections.Generic;

namespace Cecil.FlowAnalysis.ActionFlow {

	internal class Stack<T> : IEnumerable<T> {

		readonly Collection<T> collection = new Collection<T> ();

		public int Count {
			get { return collection.Count; }
		}

		public T Peek ()
		{
			if (collection.Count == 0)
				throw new InvalidOperationException ();

			return collection [collection.Count - 1];
		}

		public void Push (T value)
		{
			collection.Add (value);
		}

		public T Pop ()
		{
			if (collection.Count == 0)
				throw new InvalidOperationException ();

			var top = collection.Count - 1;
			var value = collection [top];
			collection.RemoveAt (top);
			return value;
		}

		public IEnumerator<T> GetEnumerator ()
		{
			return collection.GetEnumerator ();
		}

		IEnumerator IEnumerable.GetEnumerator ()
		{
			return GetEnumerator ();
		}
	}

	internal class ExpressionDecompiler : AbstractInstructionVisitor {

		Stack<Expression> _expressionStack;
		MethodDefinition _method;

		public int Count {
			get { return _expressionStack.Count; }
		}

		public ExpressionDecompiler (MethodDefinition method)
		{
			_method = method;
			_expressionStack = new Stack<Expression> ();
		}

		public override void OnNop (Instruction instruction)
		{
		}

		public override void OnRet (Instruction instruction)
		{
		}

		public override void OnBr (Instruction instruction)
		{
		}

		public override void OnStloc_0 (Instruction instruction)
		{
			PushVariableAssignement (0);
		}

		public override void OnStloc_1 (Instruction instruction)
		{
			PushVariableAssignement (1);
		}

		public override void OnStloc_2 (Instruction instruction)
		{
			PushVariableAssignement (2);
		}

		public override void OnStloc_3 (Instruction instruction)
		{
			PushVariableAssignement (3);
		}

		public override void OnStloc (Instruction instruction)
		{
			PushVariableAssignement ((VariableReference) instruction.Operand);
		}

		private void PushVariableAssignement (VariableReference variable)
		{
			PushVariableAssignement (variable.Index);
		}

		private void PushVariableAssignement (int index)
		{
			PushVariableReference (index);
			PushAssignment (Pop (), Pop ());
		}

		public override void OnStsfld (Instruction instruction)
		{
			FieldReference field = (FieldReference) instruction.Operand;
			PushAssignment (new FieldReferenceExpression (null, field), Pop());
		}

		public override void OnStfld (Instruction instruction)
		{
			FieldReference field = (FieldReference) instruction.Operand;
			Expression expression = Pop ();
			Expression target = Pop ();
			PushAssignment(new FieldReferenceExpression (target, field), expression);
		}

		private void PushAssignment (Expression lvalue, Expression rvalue)
		{
			Push (
				new AssignExpression (
					lvalue,
					rvalue));
		}

		public override void OnCallvirt (Instruction instruction)
		{
			OnCall (instruction);
		}

		public override void OnBox (Instruction instruction)
		{
			Push(
				new CastExpression (
					Pop (),
					(TypeReference) instruction.Operand));
		}

		public override void OnCastclass (Instruction instruction)
		{
			Push (
				new CastExpression (
					Pop (),
					(TypeReference) instruction.Operand));
		}

		public override void OnIsinst (Instruction instruction)
		{
			Push (
				new TryCastExpression (
					Pop (),
					(TypeReference) instruction.Operand));
		}

		public override void OnCall (Instruction instruction)
		{
			MethodReference method = (MethodReference) instruction.Operand;

			Collection<Expression> args = PopRange (method.Parameters.Count);
			Expression target = method.HasThis ? Pop () : null;

			Push (
				new MethodInvocationExpression (
					new MethodReferenceExpression (target, method), args));
		}

		public override void OnDup (Instruction instruction)
		{
			Expression expression = Pop ();
			Push (expression);
			Push (expression);
		}

		public override void OnPop (Instruction instruction)
		{
		}

		public override void OnAdd (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.Add);
		}

		public override void OnSub (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.Subtract);
		}

		public override void OnMul (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.Multiply);
		}

		public override void OnDiv (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.Divide);
		}

		public void PushBinaryExpression (BinaryOperator op)
		{
			Expression rhs = Pop ();
			Expression lhs = Pop ();
			Push (new BinaryExpression (op, lhs, rhs));
		}

		public override void OnLdstr (Instruction instruction)
		{
			PushLiteral (instruction.Operand);
		}

		public override void OnLdc_R4 (Instruction instruction)
		{
			PushLiteral (instruction.Operand);
		}

		public override void OnLdc_R8 (Instruction instruction)
		{
			PushLiteral (instruction.Operand);
		}

		public override void OnLdc_I8 (Instruction instruction)
		{
			PushLiteral (instruction.Operand);
		}

		public override void OnLdc_I4 (Instruction instruction)
		{
			PushLiteral (instruction.Operand);
		}

		public override void OnLdc_I4_M1 (Instruction instruction)
		{
			PushLiteral (-1);
		}

		public override void OnLdc_I4_0 (Instruction instruction)
		{
			PushLiteral (0);
		}

		public override void OnLdc_I4_1 (Instruction instruction)
		{
			PushLiteral (1);
		}

		public override void OnLdc_I4_2 (Instruction instruction)
		{
			PushLiteral (2);
		}

		public override void OnLdc_I4_3 (Instruction instruction)
		{
			PushLiteral (3);
		}

		public override void OnLdc_I4_4 (Instruction instruction)
		{
			PushLiteral (4);
		}

		public override void OnLdc_I4_5 (Instruction instruction)
		{
			PushLiteral (5);
		}

		public override void OnLdc_I4_6 (Instruction instruction)
		{
			PushLiteral (6);
		}

		public override void OnLdc_I4_7 (Instruction instruction)
		{
			PushLiteral (7);
		}

		public override void OnLdc_I4_8 (Instruction instruction)
		{
			PushLiteral (8);
		}

		public override void OnLdloc_0 (Instruction instruction)
		{
			PushVariableReference (0);
		}

		public override void OnLdloc_1 (Instruction instruction)
		{
			PushVariableReference (1);
		}

		public override void OnLdloc_2 (Instruction instruction)
		{
			PushVariableReference (2);
		}

		public override void OnLdloc_3 (Instruction instruction)
		{
			PushVariableReference (3);
		}

		public override void OnLdloc (Instruction instruction)
		{
			PushVariableReference ((VariableReference) instruction.Operand);
		}

		public override void OnCeq (Instruction instruction)
		{
			// XXX: ceq might be used for reference equality as well

			Expression rhs = Pop ();
			Expression lhs = Pop ();

			// simplify common expression patterns
			// ((x < y) == 0) => x >= y
			// ((x > y) == 0) => x <= y
			// ((x == y) == 0) => x != y
			// (BooleanMethod(x) == 0) => !BooleanMethod(x)
			if (IsBooleanExpression (lhs) && IsFalse (rhs)) {
				Negate (lhs);
			} else {
				Push (new BinaryExpression (BinaryOperator.ValueEquality, lhs, rhs));
			}
		}

		static bool IsFalse (Expression expression)
		{
			LiteralExpression literal = expression as LiteralExpression;
			return literal != null && literal.Value.Equals (0);
		}

		bool IsBooleanExpression (Expression expression)
		{
			switch (expression.CodeElementType) {
			case CodeElementType.BinaryExpression:
				return IsComparisonOperator (((BinaryExpression) expression).Operator);
			case CodeElementType.MethodInvocationExpression:
				MethodReferenceExpression mre = ((MethodInvocationExpression) expression).Target as MethodReferenceExpression;
				if (null != mre) return mre.Method.ReturnType.MetadataType == MetadataType.Boolean;
				break;
			}
			return false;
		}

		static bool IsComparisonOperator (BinaryOperator op)
		{
			switch (op) {
			case BinaryOperator.GreaterThan:
			case BinaryOperator.LessThan:
			case BinaryOperator.GreaterThanOrEqual:
			case BinaryOperator.LessThanOrEqual:
			case BinaryOperator.ValueEquality:
			case BinaryOperator.ValueInequality:
				return true;
			}
			return false;
		}

		public override void OnClt (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.LessThan);
		}

		public override void OnClt_Un (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.LessThan);
		}

		public override void OnCgt (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.GreaterThan);
		}

		public override void OnCgt_Un (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.GreaterThan);
		}

		public override void OnBeq (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.ValueEquality);
		}

		public override void OnBne_Un (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.ValueInequality);
		}

		public override void OnBle (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.LessThanOrEqual);
		}

		public override void OnBle_Un (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.LessThanOrEqual);
		}

		public override void OnBgt (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.GreaterThan);
		}

		public override void OnBgt_Un (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.GreaterThan);
		}

		public override void OnBge (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.GreaterThanOrEqual);
		}

		public override void OnBge_Un (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.GreaterThanOrEqual);
		}

		public override void OnBlt (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.LessThan);
		}

		public override void OnBlt_Un (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.LessThan);
		}

		public override void OnShr (Instruction instruction)
		{
 			PushBinaryExpression (BinaryOperator.RightShift);
		}

		public override void OnShr_Un (Instruction instruction)
		{
 			PushBinaryExpression (BinaryOperator.RightShift);
		}

		public override void OnShl (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.LeftShift);
		}

		public override void OnOr (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.BitwiseOr);
		}

		public override void OnAnd (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.BitwiseAnd);
		}

		public override void OnXor (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.BitwiseXor);
		}

		public override void OnRem (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.Modulo);
		}

		public override void OnRem_Un (Instruction instruction)
		{
			PushBinaryExpression (BinaryOperator.Modulo);
		}

		public override void OnNot (Instruction instruction)
		{
			PushUnaryExpression (UnaryOperator.BitwiseComplement, Pop ());
		}

		public override void OnBrtrue (Instruction instruction)
		{
		}

		public override void OnBrfalse (Instruction instruction)
		{
			Negate ();
		}

		private void PushVariableReference (int index)
		{
			PushVariableReference (_method.Body.Variables [index]);
		}

		private void PushVariableReference (VariableReference variable)
		{
			Push (new VariableReferenceExpression (variable));
		}

		public override void OnLdfld (Instruction instruction)
		{
			Push (new FieldReferenceExpression (Pop (), (FieldReference) instruction.Operand));
		}

		public override void OnLdsfld (Instruction instruction)
		{
			Push (new FieldReferenceExpression (null, (FieldReference) instruction.Operand));
		}

		public override void OnLdnull (Instruction instruction)
		{
			PushLiteral (null);
		}

		public override void OnLdarg_0 (Instruction instruction)
		{
			PushArgumentReference (0);
		}

		public override void OnLdarg_1 (Instruction instruction)
		{
			PushArgumentReference (1);
		}

		public override void OnLdarg_2 (Instruction instruction)
		{
			PushArgumentReference (2);
		}

		public override void OnLdarg_3 (Instruction instruction)
		{
			PushArgumentReference (3);
		}

		public override void OnLdarg (Instruction instruction)
		{
			PushArgumentReference (((VariableDefinition)instruction.Operand).Index);
		}

		public void Negate ()
		{
			Negate (Pop ());
		}

		public void Negate (Expression expression)
		{
			switch (expression.CodeElementType) {
			case CodeElementType.BinaryExpression:
				BinaryExpression be = (BinaryExpression) expression;
				BinaryOperator op = GetInverseOperator (be.Operator);
				if (BinaryOperator.None != op) {
					Push (new BinaryExpression (op, be.Left, be.Right));
				} else {
					if (BinaryOperator.LogicalAnd == be.Operator) {
						Negate (be.Left);
						Negate (be.Right);
						PushBinaryExpression (BinaryOperator.LogicalOr);
					} else {
						PushNotExpression (expression);
					}
				}
				break;

			case CodeElementType.UnaryExpression:
				UnaryExpression ue = (UnaryExpression) expression;
				switch (ue.Operator) {
				case UnaryOperator.Not:
					Push (ue.Operand);
					break;

				default:
					throw new ArgumentException ("expression");
				}
				break;

			default:
				PushNotExpression (expression);
				break;
			}
		}

		void PushNotExpression (Expression expression)
		{
			PushUnaryExpression (UnaryOperator.Not, expression);
		}

		void PushUnaryExpression (UnaryOperator op, Expression expression)
		{
			Push (new UnaryExpression (op, expression));
		}

		static BinaryOperator GetInverseOperator (BinaryOperator op)
		{
			switch (op) {
			case BinaryOperator.ValueEquality:
				return BinaryOperator.ValueInequality;
			case BinaryOperator.ValueInequality:
				return BinaryOperator.ValueEquality;
			case BinaryOperator.LessThan:
				return BinaryOperator.GreaterThanOrEqual;
			case BinaryOperator.LessThanOrEqual:
				return BinaryOperator.GreaterThan;
			case BinaryOperator.GreaterThan:
				return BinaryOperator.LessThanOrEqual;
			case BinaryOperator.GreaterThanOrEqual:
				return BinaryOperator.LessThan;
			}
			return BinaryOperator.None;
		}

		void PushArgumentReference (int index)
		{
			if (_method.HasThis) {
				if (index == 0) {
					Push (new ThisReferenceExpression ());
					return;
				}
				index -= 1; // the Parameters collection dos not contain the implict this argument
			}
			Push (new ArgumentReferenceExpression (_method.Parameters [index]));
		}

		void PushLiteral (object value)
		{
			Push (new LiteralExpression (value));
		}

		void Push (Expression expression)
		{
			if (null == expression) throw new ArgumentNullException ("expression");
			_expressionStack.Push (expression);
		}

		public Expression Pop ()
		{
			return (Expression) _expressionStack.Pop ();
		}

		Collection<Expression> PopRange (int count)
		{
			Collection<Expression> range = new Collection<Expression> ();
			for (int i=0; i < count; ++i) {
				range.Insert (0, Pop ());
			}
			return range;
		}
	}
}