美文网首页
lldb不常用命令

lldb不常用命令

作者: 酷酷的哀殿 | 来源:发表于2016-03-08 13:15 被阅读81次

(lldb) ****help register
The following subcommands are supported:

  read  -- Dump the contents of one or more register values from the
           current frame.  If no register is specified, dumps them all.
  write -- Modify a single register value.

(lldb) help register read
Dump the contents of one or more register values from the current frame.
If no register is specified, dumps them all.

Syntax: register read <cmd-options> [<register-name> [<register-name> [...]]]

Command Options Usage:
register read [-A] [-f <format>] [-G <gdb-format>] [-s <index>] [<register-name> [<register-name> [...]]]
register read [-Aa] [-f <format>] [-G <gdb-format>] [<register-name> [<register-name> [...]]]

   -A ( --alternate )
        Display register names using the alternate register name if there
        is one.

   -G <gdb-format> ( --gdb-format <gdb-format> )
        Specify a format using a GDB format specifier string.

   -a ( --all )
        Show all register sets.

   -f <format> ( --format <format> )
        Specify a format to be used for display.

   -s <index> ( --set <index> )
        Specify which register sets to dump by index.
 
 This command takes options and free-form arguments.  If your arguments
 resemble option specifiers (i.e., they start with a - or --), you must use
 ' -- ' between the end of the command options and the beginning of the
 arguments.

(lldb)

相关文章

  • lldb调试

    1. 常用命令 (lldb) thread step-over // The same as "next" or ...

  • 常用调试命令

    LLDB常用命令 LLDB是LLVM下的调试器 p 输出基本类型 po 输出objc对象 expr 断点调试时,在...

  • iOS 开发中 LLDB 常用命令整理

    iOS 开发中 LLDB 常用命令整理 expression(或者缩写expr) 表达式 expression ...

  • 六、iOS逆向之《LLDB高级用法&Cycript》

    前言 上节文章讲解了一些lldb的常用命令,这篇文章我们来讲解一些lldb的高级用法。 一、ASLR ASLR概述...

  • # LLDB调试一些常用命令和技巧

    LLDB调试一些常用命令和技巧 1.常用命令 help是帮助命令,会打印出一个command list,help ...

  • lldb

    lldb 调试实战 0x0 命令结构 其中options和argument是可选的. 0x1 常用命令 1,设置断...

  • LLDB调试-Chisel使用

    LLDB 调试器集成于 Xcode 内部并支持 C++ ,Python插件,这里解释了其工作原理。常用命令包括pr...

  • iOS逆向:动态调试

    目录一,Xcode动态调试的原理二,终端动态调试的原理三,建立连接四,LLDB常用命令五,ASLR 一,Xcode...

  • lldb常用命令

    LLDB命令的语法有其通用结构,通常是以下形式的: [ [ ...]] [-options [option...

  • LLDB常用命令

    po打印具体对象,调用变量的API,基本数据类型需要先强制类型转换,宏不能直接打印 call / p / prin...

网友评论

      本文标题:lldb不常用命令

      本文链接:https://www.haomeiwen.com/subject/iarzkttx.html