[FF & REBASE] UefiExt: Improve module finding logic and automate loading new binaries. #15
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.
Add refresh option to !findall command to reduce memory usage
Currently
!findallwill, starting from scratch, lookup system table, find the debug table configuration table, scan through all image, and try to load each symbol. This is fine for manual invocation but is not ideal for automated use as it results in a lot of memory use. This change creates a "refresh" option (!findall -r) that will re-use the system table and/or debug table pointer. It also cleans up some of the code for readability.Automatically check for new images when breaking
This changes introduces a callback into the UefiExt for state transitions. Using this, it will track breaks that occur after a resume (not a step) and will automatically check the debug table for new images loaded since the last break. This commit makes it so
!findallshouldn't need to be called automatically after the initial connection. This leverages the refresh option for find all to optimize memory use.Update RUST environment to PATINA
Updates the RUST tag to PATINA to more accurately reflect the intended environment. Additionally adds the "Patina Debugger" tag check for future changes in Patina.