summaryrefslogtreecommitdiff
path: root/rust/src/architecture/basic_block.rs
AgeCommit message (Collapse)Author
2026-02-16Share context between BB recovery, lifing, and disassemblyBrandon Miller
Adds a GetInstructionTextWithContext callback to the architecture class that can be used to pass data from AnalyzeBasicBlocks. This same context is also supplied to LiftFunction and allows for supplying shared function and/or binary view level information across basic block analysis, function lifting, and disassembly text rendering
2026-01-20[Rust] Fix UB for basic block analysis context out params (#7908)Mason Reed
2025-12-10[Rust] Misc cleanup for ABBMason Reed
2025-12-10[Rust] Move architecture module code into more reasonable filesMason Reed
To keep backwards compatibility for commonly referenced code we re-export them within the architecture module. Also does some light refactoring of some newly added APIs to keep them more consistent with other parts of the codebase.