ptomin

Results 6 issues of ptomin

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;...

bug

### Problem Currently memory accesses are converted to variables too early. And it causes incorrect value propagation. ##### Example ``` Mem1[fp - 8:word32] = 0x123 func(fp - 8) # Stack...

bug
local-stack-variables

- Start `WindowsDecompiler` - Press `Finish Decompilation` - Press `Restart` - Press `Finish Decompilation` one more time. Output differs between two decompiler passes. See changes at a3ac489.

bug

It would be nice to view decompiled global variables in Reko GUI

enhancement

See following unit test: https://github.com/uxmal/reko/blob/7e783de18f909c85ff8a446351439aa67c92957b/src/UnitTests/Decompiler/Typing/TypedExpressionRewriterTests.cs#L1703 Expected: `a + r1` But was: `a + r1 * 0x20`