LoginSignup
0
0

More than 5 years have passed since last update.

lldbで便利なコマンド

Last updated at Posted at 2013-11-25

バックトレースの表示(bt -c 件数)

(lldb) bt -c 3
* thread #1: tid = 0xf50fa, 0x0022845e hogehoge`CharacterBoxLayer::mShowContents(this=0x16c55e00) + 318 at CharacterBoxLayer.cpp:49, queue = 'com.apple.main-thread, stop reason = breakpoint 1.1
    frame #0: 0x0022845ehogehoge` CharacterBoxLayer::mShowContents(this=0x16c55e00) + 318 at CharacterBoxLayer.cpp:49
    frame #1: 0x002282e9 hogehoge`CharacterBoxLayer::init(this=0x16c55e00) + 57 at CharacterBoxLayer.cpp:32
    frame #2: 0x002288a7 hogehoge`CharacterBoxLayer::create() + 119 at CharacterBoxLayer.cpp:85

コマンド履歴(command history -c 件数)

(lldb)  command history -c 3
   0: p mListView
   1: p winSize
   2: po winSize

コマンド実行 (p コマンド)

(lldb) p mpListView->isRunning()
(bool) $8 = false

次のブレークポイントまで実行 (c)

(lldb) c
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0