Difference between revisions of "LLDB Commands"

From Coder Merlin
Line 1: Line 1:
== Begin execution and halt ==
== Execution ==
<code>
{| class='wikitable'
process launch --stop-at-entry
! Key Sequence
</code>
! Purpose
|-
| {{Command|process}} {{Command|launch}} {{Command|--stop-at-entry}}
| Launch the process and then immediately halt
|}


== Disassemble Frame ==
== Disassemble Frame ==

Revision as of 12:14, 23 September 2020

Within these castle walls be forged Mavens of Computer Science ...
— Merlin, The Coder

Execution[edit]

Key Sequence Purpose
 process   launch   --stop-at-entry  Launch the process and then immediately halt

Disassemble Frame[edit]

disassemble --frame –mixed

Memory Read[edit]

memory read --size 4 --format x --count 4 0x00007fffffffdb64

Register Read[edit]

register read

Single-Step Assembly[edit]

stepi

References[edit]