~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric-proposed

« back to all changes in this revision

Viewing changes to contrib/Mono.Cecil/Cecil.Decompiler/Cecil.Decompiler/DecompilationPipeline.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-07-05 13:00:05 UTC
  • mfrom: (1.2.8 upstream) (1.3.9 experimental)
  • Revision ID: james.westby@ubuntu.com-20100705130005-d6hp4k5gcn1xkj8c
Tags: 2.4+dfsg-1ubuntu1
* debian/patches/remove_support_for_moonlight.patch,
  debian/patches/dont_add_moonlight_to_core_addins.patch,
  debian/control:
  + Enable support for Moonlight
* debian/rules:
  + Ensure Moonlight addin isn't shipped in main MonoDevelop package by
    mistake

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#region license
 
2
//
 
3
//      (C) 2007 - 2008 Novell, Inc. http://www.novell.com
 
4
//      (C) 2007 - 2008 Jb Evain http://evain.net
 
5
//
 
6
// Permission is hereby granted, free of charge, to any person obtaining
 
7
// a copy of this software and associated documentation files (the
 
8
// "Software"), to deal in the Software without restriction, including
 
9
// without limitation the rights to use, copy, modify, merge, publish,
 
10
// distribute, sublicense, and/or sell copies of the Software, and to
 
11
// permit persons to whom the Software is furnished to do so, subject to
 
12
// the following conditions:
 
13
//
 
14
// The above copyright notice and this permission notice shall be
 
15
// included in all copies or substantial portions of the Software.
 
16
//
 
17
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
18
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
19
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
20
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
21
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
22
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
23
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
24
//
 
25
#endregion
 
26
 
 
27
using System;
 
28
using System.Collections.Generic;
 
29
 
 
30
using Mono.Cecil;
 
31
using Mono.Cecil.Cil;
 
32
 
 
33
using Cecil.Decompiler.Ast;
 
34
using Cecil.Decompiler.Cil;
 
35
using Cecil.Decompiler.Steps;
 
36
 
 
37
namespace Cecil.Decompiler {
 
38
 
 
39
        public class DecompilationPipeline {
 
40
 
 
41
                DecompilationContext context;
 
42
                BlockStatement body_block;
 
43
 
 
44
                IEnumerable<IDecompilationStep> steps;
 
45
 
 
46
                public DecompilationContext Context {
 
47
                        get { return context; }
 
48
                }
 
49
 
 
50
                public BlockStatement Body {
 
51
                        get { return body_block; }
 
52
                }
 
53
 
 
54
                public DecompilationPipeline (params IDecompilationStep [] steps)
 
55
                        : this (steps as IEnumerable<IDecompilationStep>)
 
56
                {
 
57
                }
 
58
 
 
59
                public DecompilationPipeline (IEnumerable<IDecompilationStep> steps)
 
60
                {
 
61
                        this.steps = steps;
 
62
                }
 
63
 
 
64
                public void Run (MethodBody body)
 
65
                {
 
66
                        this.context = new DecompilationContext (body, ControlFlowGraph.Create (body.Method));
 
67
                        var block = new BlockStatement ();
 
68
 
 
69
                        foreach (var step in steps)
 
70
                                block = step.Process (context, block);
 
71
 
 
72
                        body_block = block;
 
73
                }
 
74
        }
 
75
}