aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorblasty <blasty@local>2026-07-23 02:00:20 +0200
committerblasty <blasty@local>2026-07-23 02:00:20 +0200
commit3babc99a85d6e9778b3a4dd26a97777c09a7ca8b (patch)
tree53eaec2d6012c009094e0a451b09b599e784a116
parentperf: stream the listing incrementally instead of load_all on open (M4) (diff)
downloadida-tui-3babc99a85d6e9778b3a4dd26a97777c09a7ca8b.tar.gz
ida-tui-3babc99a85d6e9778b3a4dd26a97777c09a7ca8b.tar.xz
ida-tui-3babc99a85d6e9778b3a4dd26a97777c09a7ca8b.zip
TODO: M4 progress — string auto-detect + streaming done; struct-expand/unify deferred
-rw-r--r--TODO14
1 files changed, 11 insertions, 3 deletions
diff --git a/TODO b/TODO
index 935fc24..3080d25 100644
--- a/TODO
+++ b/TODO
@@ -28,9 +28,17 @@ hard:
-> M3 done: `d` = typed make_data prompt in the listing (define data in
.data with any C type: int, char[16], my_struct, ...); undefined byte
runs coalesce into `db N dup(?)` rows so big .bss doesn't explode.
- -> next (optional): M4 unify the function disasm view as a filtered listing;
- struct-typed data expansion / string auto-detection; back-paging in the
- ListingModel (currently loads a segment forward via load_all).
+ -> M4 (in progress):
+ [x] string auto-detect: 'a' = make_string in the listing (IDA's 'A').
+ [x] back-paging / streaming: listing primes the viewport instantly and
+ streams the rest in the background (was load_all -> blank pane for
+ seconds on a big .text). concurrency-safe page loads.
+ [ ] struct-typed data expansion (render a struct global as its fields).
+ deferred: model change (one head -> many lines); the data is already
+ functional via `d my_struct`, expansion is display polish.
+ [ ] unify the function disasm view as a filtered listing. deferred: a
+ maintainer refactor (no new capability) with real regression risk on
+ the battle-tested function-view path; not worth doing blind.
crazy:
[ ] multi/split view ala ghidra?