MCPcopy Create free account
hub / github.com/axhlzy/FridaDebugger / logCurrentDisassembly

Method logCurrentDisassembly

agent/debugger.ts:516–524  ·  view source on GitHub ↗
(session: StalkerSession, displayInstruction: DisplayInstruction, actualPc: NativePointer)

Source from the content-addressed store, hash-verified

514 }
515
516 private logCurrentDisassembly(session: StalkerSession, displayInstruction: DisplayInstruction, actualPc: NativePointer): void {
517 const capturedWindow = this.getCapturedWindow(session, displayInstruction.address, 8);
518 if (capturedWindow.length > 0) {
519 logCapturedDisassemblyWindow(capturedWindow, displayInstruction.address, actualPc);
520 return;
521 }
522
523 logDisassemblyWindow(displayInstruction.address, displayInstruction.text);
524 }
525
526 private isOriginalCodeAddress(session: StalkerSession, address: NativePointer): boolean {
527 const filter = session.filter ?? session.restoreFilter;

Callers 1

onInstructionMethod · 0.95

Calls 3

getCapturedWindowMethod · 0.95
logDisassemblyWindowFunction · 0.85

Tested by

no test coverage detected