reko
reko copied to clipboard
Reko is a binary decompiler.
Minor bug but one I've noticed consistently. All switch statements in my code are `switch(bx)` even when the switch statement is the first thing in the function. Also I'm not...
Hi, I'm trying to build the decompiler following the instructions on the main page under the "Hacking" section using Visual Studio 2022 (v17.2.5) on a x64 Windows 10 (21H2) machine,...
It appears a [BP -2h] is not being declared inside a If scope and then from that point forward the [BP -2h] starts causing FP-EvenNum errors in the code as...
Several users have requested being able to intermingle assembler language and decompiled output, like this: ``` eax_1 = foo(ecx); ; push ecx ; call foo ; add esp,4 eax_3 =...
This is a request to allow annotations in .inc files so that the complete workflow can be done in a C like environment instead of being split between the .inc...
So I am wondering if it is possible to compress a SegPtr lookup in Reko HL code into just the SegPtr and use that to work out further variable references....
This is a continuation of the issue #1168, where Reko can successfully generate intermediate code from the executable. However, now the program will crash during its final decompilation stage where...
See https://github.com/ptomin/reko/blob/6fae491935dce345542de2be03aebbf278cc83a9/subjects/PE/x86/pySample/shingledPySample.reko/pySample_text.c#L444 The type of `tLoc14` is `LARGE_INTEGER` union. ``` typedef union _LARGE_INTEGER { struct { DWORD LowPart; LONG HighPart; } DUMMYSTRUCTNAME; struct { DWORD LowPart; LONG HighPart; } u;...
Program said to report issues. Not really sure what you needed but here is what is under the "Failed to bind call argument" line. } // Failed to bind call...
PDP-10 executable files are also called "core images" because they store the contents of the (virtual) core memory for a program, plus metadata. Some important ones are: - ITS SBLK...