383 Commits (6cb77e63e93ab0151083c513397251672bc28dc9)

Author SHA1 Message Date
Daniel Grunwald 6cb77e63e9 Fully qualify ambiguous type names. 14 years ago
Daniel Grunwald 6c6dc0e36b Fixed enum constants. 14 years ago
Daniel Grunwald d550d55560 Fixed 'as' and 'is' operators for value types. 14 years ago
Daniel Grunwald 33a7120555 Add support for negated enum constants (e.g. "v &= ~Enum.Flag;"). Closes #114. 14 years ago
Daniel Grunwald a59462a2c8 Fixed decompiler crashes. 14 years ago
Daniel Grunwald 00c4ccb7a1 Fixed decompilation of "catch{}" blocks (catch without exception type) 14 years ago
Daniel Grunwald 69ac94363d Resolve variable naming conflicts that occur with anonymous methods. 14 years ago
Daniel Grunwald 9ad5124603 Fixed type analysis for collection initializers. Closes #104. 14 years ago
Daniel Grunwald 55dec5389c Fix crash when decompiling calli instruction. Closes #113. 14 years ago
Artur Zgodziñski c81f81827f Implemented printing of .overrides and interfaces directives in IL. 14 years ago
Artur Zgodziñski 2c70fb087c Fixed MethodOverrides analyzer. 14 years ago
Artur Zgodziñski e8d81ed17c Fixed "Overrided By" method analyzer. Added similar analyzer for properties. 14 years ago
Artur Zgodziñski 368cac6c7f Added support for new modifier (methods and properties only). 14 years ago
Artur Zgodziñski c15d5d304e Fixed accessibility of property accessors. 14 years ago
Daniel Grunwald a905ca19f3 Expose the generated compilation unit in the AstBuilder. 14 years ago
Daniel Grunwald 2e4f0411cd Use operator syntax when decompiling operator methods. Closes #103. 14 years ago
Daniel Grunwald 63e11492a6 Fixed decompilation of indexers (when decompiling the member, not the whole type) 14 years ago
Daniel Grunwald 03183ab7bf Fixed crash in PatternStatementTransform (foreach loop with captured variables). 14 years ago
Daniel Grunwald 6376110913 Fixed issues with "fixed" statement that were introduced by recent changes. 14 years ago
Daniel Grunwald fe4b3d44a0 Fixed post-increment operator on fields in generic classes. 15 years ago
Daniel Grunwald 8cb85826fc Fixed type substitution for arrays. Closes #94. 15 years ago
Daniel Grunwald 5e2641732a Fixed naming variables after the property they get their initial value from. 15 years ago
Daniel Grunwald cc0ab56869 Add pre- and post-increment support for properties (both instance and static) and for multi-dimensional arrays. 15 years ago
Daniel Grunwald d91b56b033 Add support for pre- and post-increment of dereferenced pointers "(*ptr)++". 15 years ago
Daniel Grunwald 4c7a896a84 Implemented post-increment operator. Closes #76. 15 years ago
Daniel Grunwald 52b178df90 Make the pre-increment operators work on static fields. 15 years ago
Daniel Grunwald 1df82cc3d1 Improved support for compound assignments and the pre-increment operator. 15 years ago
Daniel Grunwald b5e29f0e05 Adjust unit tests. 15 years ago
Daniel Grunwald 1cd79a1301 Use type analysis to introduce casts to float/double only where required. 15 years ago
Daniel Grunwald 8770d54506 Don't use checked/unchecked expressions within an ExpressionStatement (#90) 15 years ago
Daniel Grunwald 18fde488f1 Fixed crash in AddCheckedBlocks. 15 years ago
Daniel Grunwald 7e6490a816 Simplify conv.i8(ldc.i4(x)) to ldc.i8(x). 15 years ago
Daniel Grunwald 1a94ac50fb Mark casts as checked/unchecked. 15 years ago
Daniel Grunwald 942131b06d Add support for checked/unchecked statements. 15 years ago
Daniel Grunwald d430ee056b Recombine variables after ILAst optimizations so that there is only a single C# variable for a single IL variable. 15 years ago
Daniel Grunwald 6a0d365fe4 Fix crash in DeclareVariables when an anonymous method which contains variable declarations was used in the initializer of a variable declaration in the parent method. 15 years ago
Daniel Grunwald cca7547789 Fixed some bugs in DeclareVariables. 15 years ago
Daniel Grunwald 8e3f62ba14 Fix issues with 'DeclareVariables' and adjust 'foreach' pattern to the new variable handling. 15 years ago
Daniel Grunwald c7bbdcd0cb Improved variable placement. 15 years ago
Daniel Grunwald 99f5c45a16 Use C# syntax for generic types in the tree view. 15 years ago
Daniel Grunwald 7eedd1b7ab Fix decompilation of assembly into single file. 15 years ago
Daniel Grunwald 3211ccbf6a Introduce using declarations in decompiled code. 15 years ago
Daniel Grunwald 039483ddbd Optimize PatternStatementTransform. 15 years ago
Daniel Grunwald dbbd5d872b Add support for destructors. Closes #73. 15 years ago
David Srbecký ab9452a30e ILBasicBlock refactored to consist only of the body. Removed ILComment. Closes #86 15 years ago
David Srbecký 17f68f450f Moved some of the optimizations into the while(modified) loop 15 years ago
David Srbecký 579cbb0acd Added a pass to joint basic blocks 15 years ago
David Srbecký 10a96a8d3f Helpers ILCode.IsConditionalControlFlow() and ILCode.IsUnconditionalControlFlow() 15 years ago
David Srbecký 015d70ff52 Simplification of && || ?? ?: put into separate file. Just recalculate the analysis rather then trying to keep it up to date. 15 years ago
David Srbecký 31b2de1126 Fixed initilizers and fixed statements which I broke during the refactoring. 15 years ago