Releases: JustasMasiulis/ida_bitfields
Releases · JustasMasiulis/ida_bitfields
v1.2.0
v1.1.1
v1.1.0
Functionality
- Improved matching of expressions: special access functions like
HIDWORD
,LOBYTE
, etc are now handled.- before:
HIDWORD(*(unsigned __int64 *)&pte_temp.u.Soft) != 0xFFFFFFFF
- after:
b(pte_temp.u.Soft, PageFileHigh) != 0xFFFFFFFF
- before:
- Added handling of assignments.
- before:
Protection = (*(unsigned __int64 *)&pte_value.u.Soft >> 5) & 0x1F;
- after:
Protection = b(pte_value.u.Soft, Protection);
- before:
- Fixed some bugs relating to multi-bit fields and their comparison values.
Other stuff
- Switched to CMake.
- Releases will now be compiled with Clang.
v1.0.0
Initial release.