http://open-source-security-software.net/project/reko/releases.atom Recent releases for reko 2024-09-19T01:44:57.682304+00:00 python-feedgen reko version-0.5.0.0 reko version-0.5.0.0 2015-07-27T13:59:41+00:00 **Reko** is the new name for the Decompiler project I previously hosted on SourceForge. This version has no major new features, but internally the groundwork is being laid for heuristic static analysis and an improved type inference algorithm. 2015-07-27T13:59:41+00:00 reko version-0.5.1.0 reko version-0.5.1.0 2015-08-14T20:29:44+00:00 This release incorporates the Capstone disassembler and the Capstone.NET wrapper into the Reko decompiler framework. Capstone is currently used to disassemble ARMv5-7 and Thumb instructions. This is relative new code, so it may uncover many bugs. Please experiment and if you find any issues please report them! A Windows installer is included in this release. Linux and Un*x users: please recommend a distribution packaging mode for Mono software. A special thank-you to @9ee1 and @halsten who were instrumental in getting the Capstone adaptation done so swiftly. 2015-08-14T20:29:44+00:00 reko version-0.5.2.0 reko version-0.5.2.0 2015-08-27T10:02:06+00:00 This release introduces a new Structure Analysis phase that replaces the previous one, which was buggy, overcomplicated, and generated code that wasn't that aesthetically pleasing. The structure analyzer was based on the paper [Native x86 Decompilation Using Semantics-Preserving Structural Analysis and Iterative Control-Flow Structuring](https://www.usenix.org/conference/usenixsecurity13/technical-sessions/presentation/schwartz) (Edward J. Schwartz, JongHyup Lee, Maverick Woo (@maverickwoo), and David Brumley (@dbrumley)) New metadata files for AmigaOS were contributed by @nemerle. 2015-08-27T10:02:06+00:00 reko version-0.5.3.0 reko version-0.5.3.0 2015-09-13T20:49:08+00:00 - Support for the MIPS architecture, and MIPS support in the PE and ELF image format - TextViewer now supports free selection of text. 2015-09-13T20:49:08+00:00 reko version-0.5.4.0 reko version-0.5.4.0 2015-10-30T21:00:44+00:00 - Support for renaming decompiled procedures and changing their signatures. Changing signatures will affect following decompilation stages, as expected. - Support for the Windows - OS/2 New Executable format (NE EXE) - Implemented continuous integration using Travis CI 2015-10-30T21:00:44+00:00 reko version-0.5.5.0 reko version-0.5.5.0 2016-01-08T20:33:54+00:00 A belated Christmas present! With a shout out to @ptomin and @nemerle, with gratitude for their contributions. - Shingled disassembler implementation, in preparation for heuristic discovery of code. - Support for WinCE / MIPS - Improved data type inference - New project file format supports saving of more user options. - Better support for MonoDevelop - Many many small bugfixes 2016-01-08T20:33:54+00:00 reko version-0.6.0,0 reko version-0.6.0,0 2016-04-19T08:16:31+00:00 At last, a new major release! Большое спасибо to @ptomin, who put in an amazing amount of effort to bring you: - Combined code and low-level viewer, to allow users to compare Reko's output with the original binary. - Improvements in user-specified data types In the eye candy department: - A graph viewer, to help users to visualize procedure call graph (thanks to @halsten for the suggestion) - Image map view shows an overview of the image bytes as pixels - Allow user to specify the encoding used for text when displaying character data And the nuts and bolts work: - New reko configuration and project file formats - More MIPS instructions supported - SPARC support greatly expanded - Added initial support for DEC VAX processor architecture - Support for SEGA Genesis platform added - Much better support for ELF binaries, both executables and relocatable object files - Refactored central ImageMap class to support binaries with large address space "gaps" Because of the major changes that have taken place, it's likely that Reko may be unstable after all the major surgery. If you encounter any issues while running Reko, please report them in the issue tracker. Enjoy! 2016-04-19T08:16:31+00:00 reko version-0.6.1.0 reko version-0.6.1.0 2016-08-24T19:16:07+00:00 This minor release focuses on stabilization, but a few major features have made it as well: - Implemented a general varargs processing mechanism, and specific instances for standard C `printf` and `scanf` function families, as well as the `Py_BuildValue` function from the Python runtime. - Early support for dealing with indirect function calls. - Improved ELF support for x86, x86-64, MIPS, PowerPC, ARM, and Sparc - Improved PE support for x86, x86-64, MIPS, and ARM - Added support for lifting more instructions in x86, M68k, VAX, Sparc, MIPS, Z80 architectures. - Beginning support for signature libraries. - The cancel button actually works now! - Support for "No decompile" - General bugfixes Special thanks to @ptomin, @nemerle, @mewmew, @xor2003, @Lukas-Dresel for their contibutions. 2016-08-24T19:16:07+00:00 reko version-0.6.2.0 reko version-0.6.2.0 2017-01-12T07:49:11+00:00 Mostly consisting of bugfixes and stability improvements. - Function previewer in the mixed-asm-data window: ![image](https://cloud.githubusercontent.com/assets/10154465/21881184/2cf6d46c-d8a3-11e6-8281-f369cf115ce1.png) - Added support for Wii and RT-11 platforms - Added support for RT-11 LDA and SAV files, and Nintendo DOL files. - Add support for custom loader. Users can provide their own front-ends to Reko. - Support for parsing GCC symbols - Added support for Atmel AVR8, Risc-V, and Xtensa AVR8 processor architectures - Added `[[reko::arg(fpu)]]` C++-style attribute - #213: more work on the jump table dialog Thanks to @ptomin, @a2intl, @Lukas-Dresel, @MeFisto94, @rogersachan, and @smx-smx for their contributions 2017-01-12T07:49:11+00:00 reko version-0.7.0.0 reko version-0.7.0.0 2017-05-31T19:12:43+00:00 The big feature of this release is the adaptation and implementation of the shingled disassembler and procedure detection algorithms described in the papers "Shingled Graph Disassembly: Finding the Undecidable Path" by Richard Wartell, Yan Zhou, Kevin W.Hamlen, and Murat Kantarcioglu (https://www.utdallas.edu/~hamlen/wartell13techrep.pdf) and "Compiler-Agnostic Function Detection in Binaries", by Dennis Andriesse, Asia Slowinska, Herbert Bos (https://syssec.mistakenot.net/papers/eurosp-2017.pdf). A clone of the source code from the latter is located here: https://github.com/uxmal/nucleus. These optional analyses vastly improve Reko's discovery of executable code, at the cost of increased memory and time consumption. Because of the cost, they must be explicitly requested. In the GUI client, this is done by right-clicking on a loaded program node, selecting the `Properties` menu item, switching to the `Scanning` tab and selecting "Shingled scanning". From the command line, the following incantation will do the job: ``` decompile --heuristic shingle binary.exe ``` Some other goodies are also part of this release: * Added support for the Super-H, TLCS-90, and TLCS-900 processor architectures. * Added support for the SEGA DreamCast, and NeoGeo platforms * Added a front end that can load LLVM `.ll` files and transpile them into Reko IR. Special thanks for @mewmew for his assistance * Added an Intel HEX file front end. * The usual large number of bug fixes Thanks to @ptomin, @Kalmalyzer, and @smx-smx for their contributions. 2017-05-31T19:12:43+00:00 reko version-0.7.1.0 reko version-0.7.1.0 2017-08-11T10:54:11+00:00 This is mostly a bugfix release and a courtesy builds to users unable to build their own binaries. * Added partial support for Atari-TOS binaries * X86-64 ELF support for locating 'main' program. * Replaced Win32-specific code in OllyDbg script handler * Added --time-limit command-line switch to force termination after a certain time interval * More x86 and M68k instruction rewriters * Handle MIPS SWL/SWR and LWL/LWR instruction pairs * Support for displaying absolute address when PC-relative addressing expressions are encountered * Support for Borland C++ mangled identifiers * Improved NE EXE image loader Thanks to @ptomin and @smx-smx for their contributions, and @rfalke for reporting issues found in testing. 2017-08-11T10:54:11+00:00 reko version-0.7.2.0 reko version-0.7.2.0 2017-10-24T23:19:48+00:00 Another bug release and courtesy build to users unable to build their own binaries. * Refactored the CallingConvention classes * Improvements to code structuring (thanks to @ptomin) * Handle 68k PE executables (yes, really!) (thanks to @smx-smx) * Improved MIPS code rewriting, with focus on LWL/LWR, SWL/SWL instructions * Added Appveyor as a CI provider * Impovements in the Reko build process * Bugfixes Thanks to @ptomin , @smx-smx , and @rogersachan for their contributions. 2017-10-24T23:19:48+00:00 reko version-0.8.0.0 reko version-0.8.0.0 2018-03-10T00:33:06+00:00 Release notes: The major feature in this release are the changes to Reko to support the use of native code disassemblers, and potentially any other low-level libraries that may prove beneficial such as symbol parsers and code emulators. The Reko build system was modified to allow the compilation of C++ code that interfaces between low-level libraries and the other, managed parts of Reko. The immediate benefits of these changes are the much improved support for the ARM processor architecture and (finally) the possibility of running Reko in 64-bit mode. This is the first release where a 64-bit MSI installer is available for Windows users. Non-Windows users can now choose whether to build a 32- or a 64-bit version of Reko. With the expanded address space, the 64-bit version will be able to handle larger binaries than the 32-bit version. Another area of large improvements is the generation of structured C code. Reko's high-level output is now much improved. Some other changes of note: * Improved TRAP and A-line instruction support for MacOS Classic. * General improvements for MacOS classic and M68k support. * Impelemented a Pascal parser to handle MacOS MPW header files. * Improved support for Intel HEX files. * Support for DEC Alpha and AVR8 architectures. * Support for many more x86 SSE instructions, initial support for AVX instruction types. * Finally merged PR from @Lukas-Dresel to improve support for MIPS-64. * Parallelized regression suite script across processes; this sped up the output by a factor of 5. * Support for Borland symbol information. * Moved project to C# 7 and .NET framework 4.7. * Fixed bugs in the Type inference affecting recursively defined types. Thanks to @dmakarov, @Lukas-Dresel, @Kalmalyzer, @VladRassokhin, @gbody, @chostelet for their contributions. Special thanks to @ptomin and @smx-smx for their code, time, and devotion. 2018-03-10T00:33:06+00:00 reko version-0.8.1.0 reko version-0.8.1.0 2019-03-17T13:20:35+00:00 It's been a long time since the last release, but a lot has been happening in Reko-land. This release contains: * Support for PIC16 and PIC18 architectures (with thanks to @chostelet) * Much better support for Intel HEX files (with thanks to @chostelet) * Moved to C# 7.2, .NET Framework 4.7, and NUnit 3.0 (with thanks to @chostelet) * Improvements in indirect call handling (with thanks to @ptomin) * Support for adding persistent user annotations / comments (with thanks to @ptomin) * Backward propagation of stack pointer from procedure end recovers more frame-based variables (with thanks to @ptomin) * C parser improvements (with thanks to @ptomin) * Improvements in MacOS classic binaries (with thanks to @gbody) * Handled compressed A5World segments in MacOS classic binaries (with thanks to @gbody) * Refactored Reko.Gui.dll to remove Windows Forms dependencies in preparation for GUI front end independence (with thanks to @smx-smx) * Xbox 360 XEX Loader (with thanks to @smx-smx) * PowerPC VMX instructions (with thanks to @smx-smx) * Improvements in X86 disassembler robustness (with thanks to @smx-smx) * Generation of for-loops from while- and do-loops (with thanks to @rfalke) * Initial support for ARM AArch64, IBM zSeries, Intel 8051, Motorola 6800, MSP 430, Risc-V, SuperH, TMS 7000, and XTensa architectures. * Support for the PowerPC 750 instruction set. * Improved disassembler performance about 20% across all architectures. * Improvements in shingled scanner heuristic, reducing false positives. * Much better support for indirect jump / call target resolution. * Improved handling of ELF PLT entries. * Fusion of MIPS-style unaligned loads and stores. * support for 16- 80- and 128-bit IEEE 754 floating point numbers. * Moved from Rhino.Mocks to Moq mock framework. * Support for more than one architecture per decompiled binary. * Support for platform-specific memory maps. * Memory visualizer control shows heat maps of binaries. * Command line switch --scan-only. * Added NamingPolicy classes to abstract automatic naming of variables, procedures, and types. * Lots and lots of small bug fixes. Thanks to @gbody, @wdigger, @wesinator, @wildptr for their contributions. Special thanks to @chostelet, @ptomin and @smx-smx for their code, time, and dedication. 2019-03-17T13:20:35+00:00 reko version-0.9.0.0 reko version-0.9.0.0 2019-11-08T22:28:23+00:00 The main feature of this release is the long-awaited reworking of the analysis phase of the Reko decompiler. The slow and inaccurate interprocedural register liveness analysis was replaced by a novel analysis based on the strongly connected components (SCC's) of the call graph. The SCC's, which most of the time consist of a single procedure, are converted to SSA form earlier now. In addition the classic Cytron et. al SSA construction algorithm, which requires the eager calculation of the immediate dominator relation of the basic blocks in the procedures, was replaced with a simpler S algorithm described in "Simple and Efficient Construction of Static Single Assignment Form" by Matthias Braun et al. The SSA algorithm has been augmented to perform lazy register / stack variable alias analysis, which turned out to be more efficient than the old register alias analysis phase. The handling of 'hell nodes' has received focused attention. Hell nodes are indirect calls without associated function type metadata. Previously Reko was pessimistically assuming the worst: that all registers are live in and live out. Several heuristics have been applied to 'tame' the hell nodes to make the resulting output manageable (with many thanks to @ptomin). Many other improvements to the data flow analysis were incorporated in this release as well. The results are improved source file outputs. Initial support was added for the following CPU architectures: * Blackfin * Cray YMP * OpenRISC * MicroBlaze * PA-RISC * RL-78 Progress is hampered by the lack of good sample binaries with which to train the decompiler. Please contact us if you have any such binaries available. Changes were also made in the output folder structure, and binary resources (like embedded icons and menus) are now extracted. (with thanks to @Cairn23) Thanks to @Cairn23 and @gbody for their contributions. Special thanks go again to @ptomin and @smx-smx for their code, time, and dedication. 2019-11-08T22:28:23+00:00 reko version-0.9.1.0 reko version-0.9.1.0 2020-04-17T14:37:07+00:00 This is a minor release, but with a lot of new small features and fixes. A noteworthy new feature is Reko's ability to automatically place decompiled procedures into different files, based on a `OutputFilePolicy`. An OutputFilePolicy decides into which files procedures should go, based on criteria like segment name, address offset within a segment etc. Future work will allow users to customize the placements on a per-procedure basis. The project has partially completed moving `.csproj` files to the new .NET SDK format (issue #748). Most files are now building to the `netstandard2.0` target framework. Progress is stalled due to the complex Reko build process. If you're interested in helping us get ready for .NET 5, contact the Reko team at https://gitter.im/uxmal/reko. Initial support was added for the following CPU instruction set architectures: * Motorola 6809 * WE32100 * LatticeMico32 * ARC, ARCompact * Mips16e Other noteworthy new features include: * Support for 16-bit OS/2 executables (with thanks to @claunia) * Introduced rudimentary LE/LX executable support (with thanks to @claunia) * Introduced support for Nintendo Switch (with thanks to @smx-smx) * Enhancements to Xbox370 XEX executable loader (with thanks to @smx-smx) * Apply relocations to MacOS classic A5 world (with thanks to @gbody) * Implement finding ASCII and UTF-8 strings (with thanks to @ermshiperete) * Stability and bug fixes in SSA transform (with thanks to @ptomin) * Introduced 6502 emulator for handling C64 unpackers. * Introduced support for CodeView debugging information. * Introduced support for Commoder 64 T64 file format and MorphOS binaries. * Introduced OMF library loader * New `AssembleAt` method will allow patching of code with assembler language * Handle Windows VxD dynamic linking fixups * Fixes to i8051, ARM, M68k, PowerPC, X86 disassemblers and rewriters * Changes to the C parser to handle Microsoft and IBM-specific extensions (__far, __near, __pascal, etc) * Support for Microsoft Binary Format (5-byte floating point numbers) * Generalized OllyDbg support to handle non-x86 architectures. Thanks to @chostelet, @claunia, @ermshiperete, @gbody, @Piruzzolo, @ptomin, and @smx-smx for their time and contributions to this release. 2020-04-17T14:37:07+00:00 reko version-0.9.2 reko version-0.9.2 2020-10-02T10:26:42+00:00 This release of Reko is dedicated to the memory of contributor Christian Hostelet, who passed away this year. He extended Reko with support for MicroChip PIC and was instrumental in implementing support for specifying processor models in the Reko GUI. This release is the first one that publishes the Reko runtime components (architectures, image loaders, platforms etc) as a separate NuGet package, available at https://www.nuget.org/packages/Reko.Decompiler.Runtime. Programmers can now use the Reko toolchain in their own projects to load files. One implication of publishing a NuGet is that semantic versioning needs to be observed (https://semver.org/). Since Reko is still very much a work in progress, this doesn't impact the project heavily yet. However, now that external projects have dependencies on Reko, we will try to make their maintainers' lives easier by being scrupulous about version numbers. The OllyScript interpreter was refactored and extended to support X86 segmented addresses. This makes it possible for Reko to use a simple OllyScript to unpack binaries, rather than having to hand-write unpackers in C#. The X86 emulator was also augmented to support segmented addresses. The PK-Lite MS-DOS EXE unpacker uses an OllyScript file to accomplish its task. Internally, a new `Convert` expression was introduced to remove the amiguity inherent in the `Cast` expression. The latter assumes the types of the cast expression is known, which in decompilation is not always true. `Convert` explicitly states what type is being converted from and what type is converted to. Adoption of `Convert` resulted in many code improvements, especially around handling of floating-point literal values. The rendering of global variables is now much improved (with thanks to @ptomin). For developers, the new `ITestGenerationService` supports the generation of unit tests when a machine instruction couldn't be decoded or rewritten. It generates a text file in the decompiler output directory, which users can submit in an error report. The Reko intermediate language is moving toward becoming "round-trippable". The intent is to reach a point where Reko can read in IR in a persisted format (like text or binary) faithfully. A special thank you to @rfalke, who reported many issues when running his decompiler testing project: https://github.com/rfalke/decompiler-subjects. The RekoSifter tool was used to discover many issues in the Reko disassemblers (with thanks to @smx-smx for his work). * Support for AVR32, 64-bit SPARC, 65816, Risc-V, Hitachi H8, * Support for the SNES, original Xbox plaforms * Support for the SREC, Xbox XBE image file formats * Support for MASM and NASM style disassembly (suggested by @tgiphil) * Support loading C64 PRG files (#928) * Implemented missing instruction decoders and rewriters for architectures with large instruction sets (ARM32, AArch64, X86) * Improved support for MachO binaries * Initial support for loading WASM files, still a work in progress. * The command line client has a progress indicator (suggested by @smx-smx) Thanks to @blindmatrix, @ptomin, @rfalke, and @smx-smx for their time and contributions to Reko. In memoriam - Christian Hostelet (1955-2020). 2020-10-02T10:26:42+00:00 reko version-0.9.3 reko version-0.9.3 2021-02-06T18:17:27+00:00 This is the last time Reko is released for .NET Framework and Mono. Future releases will be based on .NET Core and .NET 5 The release consists of minor feature enhancements and bug fixes. * Initial support for IA-64 and v850 support * Support for the MIL-STD-1750, XCore-200, CompactRisc, MCore and Hexagon architectures * Rewrite Reko's MemoryArea abstraction to support non-byte-oriented archictectures (like Cray YMP and MIL-STD-1750) * As usual, more x86 rewriters (with thanks to @smx-smx) * Improved Sparc, zSeries, and Risc-V disassemblers * Fuse adjacent memory accesses * x86 and GUI support for specifying separate architecture models. * Unpacker script for Exepack 3.60 et al. * Loader for preprocessed C headers, making it possible to use such headers as metafiles in Reko projects (with thanks to @ptomin) * User-supplied labels (#987) * Register Values dialog (#950) * Support for the TekHex and LDM text file formats * Support for Unicos binary executables. * Support for PharLap DOS Extender executables (with thanks to @gbody) Thanks to @gbody, @claunia, @ptomin and @smx-smx for their time and contributions to Reko. 2021-02-06T18:17:27+00:00 reko version-0.10.0 reko version-0.10.0 2021-08-16T19:29:25+00:00 In this Release, the Reko source code has been moved onto .NET Core. The Windows Forms GUI and command line interpreter are now hosted on .NET Core 3.1, while the Reko plugins have been ported to .NET Standard 2.1. The Reko C parser was extended to handle more platform specific dialects of C. Special C++-style attributes can be used to specify metadata in C format, rather than in XML format. A Python scripting engine and API were added by @ptomin. Scripts written in Python can be written to analyze a loaded image file. * Support for the Nintendo Gameboy, Altera Nios-II, and C166 architectures. * Support for PowerPC MacOS; improved support for Class M68k MacOS. * Support for Xbe, eCoff, PEF, and XCoff image file formats. * MS-DOS specific improvements were contributed by @blindmatrix. * The `Tools > Hex diassembler` window provides a quick way to disassemble hex-encoded bytes Under the hood, some major refactorings were done to rationalize the sprawling `Reko.Core` namespace. The build system was revamped by @smx-smx, centralizing various ad-hoc tools. Support for C# 8 `nullable` has been introduced in most projects. Thanks to @blindmatrix, @claunia, @gbody, @ptomin, @samB, @smx-smx, @Starword for their time and contributions to Reko. 2021-08-16T19:29:25+00:00 reko version-0.10.1 reko version-0.10.1 2021-09-21T22:48:38+00:00 This maintenance release moves Reko from .NET Core 3.1 to .NET 5.0, resulting in some performance gains. It also fixes the MSI installers for Windows, which had several issues (including #1066 and #1067). Special thanks to @smx-smx for his work on his CI integration work. * The Reko build system now assumes C# 9.0 * Crude support for `#define` directives in the Reko C parser * Overhaul of PA-RISC and HP SOM loader * The command line driver `--version` switch displays the git hash used to build the binary. * Improvements in AArch64 disassembler and rewriter (with @rfalke as a driving force) 2021-09-21T22:48:38+00:00 reko version-0.11.0 reko version-0.11.0 2022-03-13T23:15:46+00:00 This release of Reko has breaking changes in interfaces and classes, and completes the move to .NET 5.0. Many classes were also moved to different namespaces: you'll need to recompile your project. The file loading code was refactored heavily to be easier to use and to support the reading of files stored in (potentially deeply nested) archives. Many fixes were made in the AArch64 rewriter (with gentle prodding from @rfalke). Some other new features are: * Wasm files can be loaded and disassembled. A rewriter will materialize in a later release. * Reko Gui is asynchronous. This will help the ongoing port to Avalonia. * Stack variable references that escape to other procedures are now tracked (courtesy of @ptomin). * The new ByteTrie<T> class can be used for pattern matching. * Added support for PDP-10 architecture. The PDP-10 is word-addressable, has 36-bit words, 18-bit addresses, and variable sized bytes, all of which contrast vividly with present day 8-bit-based architectures. * The MemoryControl displays sizes other than bytes. This accommodates PDP-10, Microchip PIC, and Mil-Std-1750A. * Intrinsic procedures can now have generic parameter and return types. * Added initial support for COFF files. * Adapted OllyLangInterpreter to other architectures than X86. * Added m6502 emulator, c64 emulator. * Various CI improvements and fixes. Also, Reko now builds on ARM64! (courtesy of @smx-smx) * Added support for constants larger than 64 bits. * Support for reading TAR and AR archives. * Support loading files from arbitrarily nested archives. * Rewrote the loader so it is much easier to use (and understand). * Extended C parser to handle more GCC attributes. * Support for Sanyo LC8670. Thanks to @nemerle, @ptomin, @shandianchengzi, @slartibardfast, and @smx-smx for their time and contributions to the Reko project! 2022-03-13T23:15:46+00:00 reko version-0.11.1 reko version-0.11.1 2022-04-07T22:17:52+00:00 This maintenance release provides minor enhancements and bugfixes, including: * More ARM32 rewriters. * More uses of generic `IntrinsicProcedures`. * Replace recursive `SccFinder` with an non-recursive implementation. * Initial support for Terse Executable format. * Don't try tracing into nonexecutable code. * Ctrl+0 resets the zoom level of the Graph Viewer * Many more PowerPC instructions supported * C parser issues reported by @smx-smx * Make SSA analysis use bit-accurate analysis for stack variables. * Multithreaded robustness. It also has some refactorings and new classes, setting the stage for a future refactoring of the Scanner: * New `RtlSwitch` subclass of `RtlInstruction` * Support for platform-specific patterns for procedure entries. 2022-04-07T22:17:52+00:00 reko version-0.11.2 reko version-0.11.2 2022-12-05T15:51:49+00:00 My, has it been that long already since last release? Here's an overview of what's happened since. The Reko solution was moved to .NET 6. As expected, performance and memory footprint was impoved. The partially completed, still very much work-in-progress Avalonia development branch was merged into `master`. Moving forward, any changes in the GUI components will be mirrored in Windows Forms and Avalonia. For instance, the new Base Address finder tool window now exists for both GUI platforms. Another big push is the move to support multithreaded scanning and analysis. Today, Reko uses only a single CPU thread for its CPU-intensive work. Partitioning the work as mutually independent workloads across multiple threads should see a great improvement in execution time. In order to accomplish this, several classes have been altered to only use read-only interfaces to global data, to prevent data race conditions. The work to eliminate globally visible mutable state continues. Several new metadata annotations were added ( with the gentle prodding of @Elthial). You can now annotate C functions with the `[[noreturn]]` , `[[reko::arg(seq...)]]`, and `[[reko::address]]` attributes. Other bits and bobs: * Improvements to `ArgumentGuesser` to handle call sites where Reko can't prove the target address. * The codebase's namespaces were refactored to make them more easy to understand. * Added or improved support for the following architectures: ARM, AArch64, BlackBin, Fujitsu F2MC16FX, MIPS, PDP-7, PowrPC, RiscV, MicroBlaze, SuperH SH2..SH4A, TriCore and x86 EVEX * Support for discovering and parsing x86 and x86-64 MSVC RTTI . * Fix calculation of alignment of unions (@ptomin) * Refactored intrinsics for improved performance * PharLap "MP" Exp file loader (#1169) * MzExe: allow reading PEs without IAT (@smx-smx) * Improved support for XEX executables (@smx-smx) * Handle '*' in `*scanf` format strings. Special thanks to @ptomin and @smx for their dedication and contributions. 2022-12-05T15:51:49+00:00 reko version-0.11.3 reko version-0.11.3 2023-01-05T00:43:49+00:00 The largest new feature of this release is the support for disassembling, rewriting, and emulation of instructions of the AEON (or BEON, or R2) processor. It is the first architecture in Reko implemented with no manual -- we've been unable to find the instruction set described in a publicly available resource. Instead, thanks to the hard work of @throwaway96, most of the instruction set has been reverse engineered. Many thanks for this great effort! @smx-smx improved the stability of the build and eliminated redundant compilations of the build tools, resulting in a faster build overall. Some other features added are: * Introduced the notion of `Unlikely` instructions: instructions that while well-formed are unlikely to be present in a "normal" program. Reko can optionally be instructed to treat such unlikely instructions as invalid * The user may also optionally instruct the Reko to treat protected/system instructions as invalid. * Since the move to .NET 6, Reko's custom 16-bit IEEE float implementation became redundant and was removed. * The GUI client now supports multiple scanning heuristics. * Support for user-defined segments was added. * Improvements in handling of varargs procedures. * Switch statements for MIPS, MIL-STD-1750A and Intel 8051 improved. Thanks to @throwaway96 and @smx-smx for their contributions and support! 2023-01-05T00:43:49+00:00 reko version-0.11.4 reko version-0.11.4 2023-09-03T17:53:03+00:00 Another few months, another Reko minor release. Development continues in various directions. In the architecture department, support was improved for various architectures, especually AEON and H8. X86 string instructions (rep movsb etc) are replaced by their C library equivalents (memcpy etc) (contributed by @ptomin). Bugs in the X86 and 6502 emulators were fixed. Reko's C parser and preprocessor in particular received some attention. Nested `#if/endif` statements are now handled, various stability contributions were provided by @throwaway96. The command line executable was changed from `decompile.exe` to `reko.exe`. It was refactored to support sub-commands. Currently those are * `reko disasseble`, which loads a file and disassembles its contents * `reko decompile`, which in addition performs data, type and structure analysis. * `reko assemble`, which allows users to assemble source files. If no subcommand is specified, Reko will default to `decompile`. Underneath the covers, the Reko decompiler is undergoing a slow but seismic refactoring. Progress was made in the new Scanner, which already is about 4x faster than the existing implementation. The Analysis phase was also refactored (via the new `SccWorkerCoordinator` class) to make it possible to run it multithreaded in the future. Across the board, global mutable state is being replaced with immutable data structures, or judiciously kept thread-safe by using appopriate critical sections and locks. Reko will start understanding SIMD instructions better with the introduction of the `SimdIntrinsic` class. The user interface is also seeing a slow but seismic overhaul. The Windows Forms GUI is refactored so that creating side-by-side interface elements in parallel with the Avalonia GUI is smoother. Various small GUI enhancements have been added, like support for flipping through architectures in the low level view. This feature allows the user to flip through Reko's architectures and see the results in the DisassemblyView. The new `CallGraphNavigatorView` improves the navigation of the decompiled program's call graph. * A new unpacker for PKLITE v1.12-1.20 * Support for various `[[reko::...]]` attributes in header files, especially `[[reko::characteristics]]`. * Partial support for the OpenVMS platform. * The pseudoregister `%continuation` is used to reify the return address of a called `Procedure`. * Improved support for LE binaries. * M68k fixed (with thanks to @gbody) * More MS-DOS INT 21h services defined. * Support translation of WASM IR into Reko IR. * Added support for `calls-respect-abi` heuristic. * Display the currently selected address range in the status bar (#1232) * Added the Padauk PDK13,PDK14 and PDK15 instruction sets. Thanks to @gbody, @mjunix, @ptomin, @smx-smx, and @throwaway96 for their contributions and dedication. 2023-09-03T17:53:03+00:00