693 Commits (c7bbdcd0cb81c182318f188a1ef4e077ed0f403f)
 

Author SHA1 Message Date
Daniel Grunwald c7bbdcd0cb Improved variable placement. 15 years ago
Daniel Grunwald 1331869851 Fixed definite assignment analysis bug. 15 years ago
Daniel Grunwald f537fafdeb Add NextStatement/PreviousStatement properties. 15 years ago
Daniel Grunwald a2fb74bee6 Order the control flow nodes lexically, and allow restricting definite assignment analysis to a specific lexical range. 15 years ago
Daniel Grunwald 2793b233e3 Allow performing definite assignment analysis without providing an ITypeResolveContext. 15 years ago
Daniel Grunwald c0a05d6672 Add InsertAfter/InsertBefore to AstNodeCollection. 15 years ago
Artur Zgodziński bc6e2ddaca Preserving all selected nodes, foldings state and position of decompiler text view in the navigation history. 15 years ago
Daniel Grunwald 305d9e58e0 Use the formatted type name in BaseTypesTreeNode and DerivedTypesTreeNode. 15 years ago
Artur Zgodziński 0a5032257e Searching for derived types of generic types fixed. 15 years ago
Daniel Grunwald 99f5c45a16 Use C# syntax for generic types in the tree view. 15 years ago
Artur Zgodziński 361de5f862 Method overrides analyzer added. 15 years ago
Daniel Grunwald 45a70a5141 Show the full name of the parent class when decompiling a method. 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 cd634bbfba Evaluate constant expressions in definite assignment analysis. 15 years ago
Daniel Grunwald 039483ddbd Optimize PatternStatementTransform. 15 years ago
Daniel Grunwald 1c80484a85 Add support for non-custom attributes to CecilLoader. 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
David Srbecký 1a64d56b5a Create short circuit logical expressions as left associative 15 years ago
David Srbecký 1b8a62fb7c Run optimization loops backwards (bottom-up) 15 years ago
David Srbecký 6046fdcdfb Do not put brtrue into its own basic block - store it together with the previous instructions. 15 years ago
David Srbecký 9fcf789277 Fixed a bug in the graph dominance calculation 15 years ago
David Srbecký b3f1d599f8 Refactored some peephole transforms; Moved some of the transforms before loop and condition detection 15 years ago
Daniel Grunwald bc229df848 Handle pointer arithmetic. 15 years ago
Daniel Grunwald 3ed0de81f7 Support fixed statement with multiple initializers. 15 years ago
Daniel Grunwald 1d11e75af3 Add support for fixed statement with strings. 15 years ago
Daniel Grunwald 1b90809728 Implemented 'fixed' statement for arrays. 15 years ago
Daniel Grunwald 3759b614cf Add support for calling methods on pointers (ptr->ToString()). 15 years ago
Daniel Grunwald b41ee3ca88 Fix type analysis bugs. 15 years ago
Daniel Grunwald db7653653d Add support for decompiling fixed statements. 15 years ago
Daniel Grunwald 3c3e4ad44a Improve spacing in fixed statement output. 15 years ago
Daniel Grunwald a3c241dac6 Improve handling of pinned variables. 15 years ago
Daniel Grunwald 7b2c444181 Add support for unsafe code. Closes #48. 15 years ago
Daniel Grunwald 2601a4901a Fix "Missing variable name in created C# code". Closes #81. 15 years ago
Daniel Grunwald 80fa674de6 Use a property to return the list of annotations. 15 years ago
Daniel Grunwald 01d7e2abbd Use the same representation for parameters and variables. 15 years ago
Daniel Grunwald 2228f29330 Convert [ParamArray] and [Extension] to 'params'/'this' modifiers. 15 years ago
Daniel Grunwald eb84a840f5 Improve name generation. 15 years ago
Daniel Grunwald 43b30dabd0 Consider where a variable is used when determining a name for the variable. 15 years ago
Daniel Grunwald 892996f079 Assign names to parameters. Closes #41, #81. 15 years ago
Daniel Grunwald c4335dd2ef Fix decompilation of arrays as attribute arguments. Closes #82. 15 years ago
David Srbecký cce7300d66 Removed the declarative pattern matching algorithm from ILAst 15 years ago
David Srbecký 05b3bfbff2 Use the simple pattern matching in yield return 15 years ago
David Srbecký 95ec14a7c5 Use the simple pattern matching for array initializers 15 years ago