101 Commits (542bb9db2f8e6b06b9fd56b4d6942ef39d16c93d)

Author SHA1 Message Date
David Srbecký 9fb7d244ed Find conditions 15 years ago
David Srbecký 4f0c70fce3 Flatten temporary blocks; 15 years ago
David Srbecký d9cdb29c2d Refactoring control flow 15 years ago
Daniel Grunwald 1f6e2a4106 Fixed assignments to static fields. 15 years ago
Daniel Grunwald 336412fff9 Add idiom for System.Type.GetTypeFromHandle(typeof(...).TypeHandle); don't create body for abstract methods. 15 years ago
Daniel Grunwald d997511d58 Add hyperlink support to decompiler. 15 years ago
Daniel Grunwald b48fabaf05 Initial port to new NRefactory. 15 years ago
David Srbecký c3885ad7a1 Implemented control flow merge points (aka Phi) 15 years ago
David Srbecký 9387dadfc8 Fixed conditional loops 15 years ago
David Srbecký 0d522ba136 Fixed some missing gotos and labels 15 years ago
David Srbecký a420fd6d38 Don't use SimplifyMacros because it breaks the method Body 15 years ago
Daniel Grunwald 949b6adac4 Improve naming of local variables (remove the 'I' in interface names) 15 years ago
Daniel Grunwald 7d4252373c Improve automatic variable names. 15 years ago
Daniel Grunwald 185e9e4331 Fix decompiling "this". 15 years ago
Daniel Grunwald 949e7c2378 Move decompiler code into ICSharpCode.Decompiler; add very simple integration with ILSpy. 15 years ago
David Srbecký 36f29f72e5 Moved everything into top-level directory 15 years ago
David Srbecký 69753642eb Support for try-catch blocks 15 years ago
David Srbecký eed0f0af6c Refactoring the data model 15 years ago
David Srbecký 44e1258b5f Updated decompiler to the new Cecil 15 years ago
David Srbecký a26fd6c0b2 Decompiling class 'ReversiForm'. 15 years ago
David Srbecký edc9e53590 Stack analysis for methods that include exception handlers 15 years ago
David Srbecký 7b93f5762b Constructors of multidimensional arrays. 15 years ago
David Srbecký b89018a214 Added class constructors 15 years ago
David Srbecký 4beea5c6a1 Completely rewritten ByteCodeExpressions. 15 years ago
David Srbecký 9f4dc8611d Rename StackExpression to ByteCodeExpression 15 years ago
David Srbecký f5a3052d23 generate code for dup 15 years ago
David Srbecký 15e2cd828a Rename unknown bool variables to "flag". 15 years ago
David Srbecký a87a9468e7 Track the type of expression. 15 years ago
David Srbecký c3aedb0b3c Preliminary support for multi-dimensional arrays 15 years ago
David Srbecký 3f268ec44f ldsfld 15 years ago
David Srbecký 059e91cdd9 Do not include explicit reference to 'this' 15 years ago
David Srbecký 6faf690899 Parenthesize all expression to ensure correctness. 15 years ago
David Srbecký 459742f3ca Simplify short-circuit branches ("a && b" or "a || b"). 15 years ago
David Srbecký e6269f491b Moved jump reduction to the Ast transform phase 15 years ago
David Srbecký eaa7a63343 castclass 15 years ago
David Srbecký 3ca49743ae ldtoken 15 years ago
David Srbecký 49eeb49d1b newobj 15 years ago
David Srbecký 6e7f51fad7 Property access. (Detect properties by naming convention; still needs to be done properly) 15 years ago
David Srbecký 57192a1fdc stfld 15 years ago
David Srbecký 86ca89b055 callvirt 15 years ago
David Srbecký 6e4b542709 ldfld 15 years ago
David Srbecký 40e1edd7d9 Fixed all bugs that prevented the decompiler from running. 15 years ago
David Srbecký af14439362 Terminating all optimizations with exceptions 15 years ago
David Srbecký 35f06e0a4b Label is not reference counted object anymore, it is just a string. During transform we in two passes - find all live labels - remove all dead ones (the rest). 15 years ago
David Srbecký 479918e7bc Remove MyBlockStatement. 15 years ago
David Srbecký 5b48611b69 Replace variable name for integers with "i", "j", "k", etc... 15 years ago
David Srbecký af00ad101a Restore for loop condition. It is a simple pattern match. 15 years ago
David Srbecký d086b446e8 Remove flowing redundant jumps at the end of Ast blocks: 15 years ago
David Srbecký 6ebd05c0fe Simplify type names. For example replace "System.Console.WriteLine" with "Console.WriteLine" because we have a "using System;" statement. Replace "Int32" with "int", etc... 15 years ago
David Srbecký 8643290a4c Remove redundant 'goto' statements in form: 15 years ago