如何在LLDB中的源代码调试模式和反汇编调试模式之间切换

Ton*_*527 3 xcode lldb

如何在LLDB中的源代码调试模式和反汇编调试模式之间切换?例如“ Xcode-> Debug-> Debug Workflow-> Always show disassembly”菜单功能?

Jim*_*ham 5

这四个设置控制停止时lldb如何显示源/程序集:

  stop-disassembly-count   -- The number of disassembly lines to show when displaying a stopped context.
  stop-disassembly-display -- Control when to display disassembly when displaying a stopped context.
  stop-line-count-after    -- The number of sources lines to display that come after the current source line when displaying a stopped context.
  stop-line-count-before   -- The number of sources lines to display that come before the current source line when displaying a stopped context.
Run Code Online (Sandbox Code Playgroud)

因此,例如:

(lldb) set set stop-disassembly-display always
(lldb) set set stop-line-count-before 0
(lldb) set set stop-line-count-after 0
Run Code Online (Sandbox Code Playgroud)

将仅显示装配体。