fix: harden parsers, correct decompiler, optimize perf — bump to 0.1.7#5
Open
Razshy wants to merge 3 commits into
Open
fix: harden parsers, correct decompiler, optimize perf — bump to 0.1.7#5Razshy wants to merge 3 commits into
Razshy wants to merge 3 commits into
Conversation
Correctness (30 bugs fixed): - Fix dangling-else causing ELF/Mach-O load failures - Replace all unaligned reinterpret_casts with memcpy (ARM64 crash fix) - Fix worker pool destructor race condition (hang on exit) - Correct JLE/JBE compound condition lifting in decompiler - Fix multi-operand IMUL handling (2-op and 3-op forms) - Fix DCE over-aggressively killing heap stores - Fix SSA identity elimination ignoring version numbers - Guard against infinite loops, div-by-zero, OOB in ELF/.NET loaders - Prevent Python injection in IDA export - Add platform guards for Windows-only debugger module (macOS builds) - Harden settings/database parsing against corrupt files Performance: - Replace EntropyView 14K AddRectFilled/frame with single GPU texture - Eliminate per-frame string allocations in DisasmView render path - Shrink Insn struct 272→144 bytes, replace unordered_map with flat vector - Remove duplicated instruction storage from BasicBlocks - Add ImGuiListClipper to Strings/Imports panels, cache filtered results - Replace O(n log n) full-sort with O(n) linear merge for instruction store - Analysis of 3.6MB binary: ~10x faster merge, 4.8GB→~2GB RAM
…t converted to larger type' Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Correctness (30 bugs fixed):
10x faster merge, 4.8GB→2GB RAM