blob: c69b68f0c20ed8309336d6ac619ed296cfd65d70 [file]
(lldb) target create <path to executable>
Current executable set to <path to executable>.
(lldb) settings set stop-disassembly-display never
(lldb) command script import <path to lldb script>
(lldb) b kt42208-2.kt:21
Breakpoint 1: where = lldb_kt42208WithVariableAndNest-39bb6a00.kexe`kfun:#listAddA(){} + <breakpoint offset> at kt42208-2.kt:21:1, address = <memory address>
(lldb) r
Process <process id> launched: <path to executable>
Process <process id> stopped
* thread #<thread id>, stop reason = breakpoint 1.1
frame #0: <frame pc> lldb_kt42208WithVariableAndNest-39bb6a00.kexe`kfun:#listAddA(){} at kt42208-2.kt:21:1
18 inline fun foo() = { ->
19 listAddA()
20 }
-> 21 fun listAddA() {
^
22 list.add(A())
23 }
(lldb) bt
* thread #<thread id>, stop reason = breakpoint 1.1
* frame #0: <frame pc> lldb_kt42208WithVariableAndNest-39bb6a00.kexe`kfun:#listAddA(){} at kt42208-2.kt:21:1
frame #1: <frame pc> lldb_kt42208WithVariableAndNest-39bb6a00.kexe`kfun:main$$inlined$foo$1.invoke#internal(_this=main$$inlined$foo$1<value id>) at kt42208-2.kt:19:5
frame #2: <frame pc> lldb_kt42208WithVariableAndNest-39bb6a00.kexe`kfun:main$$inlined$foo$1.$<bridge-DN>invoke(_this=main$$inlined$foo$1<value id>){}#internal at kt42208-2.kt:18:20
frame #3: <frame pc> lldb_kt42208WithVariableAndNest-39bb6a00.kexe`kfun:kotlin.Function0#invoke(){}1:0 at [K][Suspend]Functions:1:1
frame #4: <frame pc> lldb_kt42208WithVariableAndNest-39bb6a00.kexe`kfun:#main(){} at kt42208-1.kt:10:5
(lldb) c
Process <process id> resuming
Process <process id> stopped
* thread #<thread id>, stop reason = breakpoint 1.1
frame #0: <frame pc> lldb_kt42208WithVariableAndNest-39bb6a00.kexe`kfun:#listAddA(){} at kt42208-2.kt:21:1
18 inline fun foo() = { ->
19 listAddA()
20 }
-> 21 fun listAddA() {
^
22 list.add(A())
23 }
(lldb) bt
* thread #<thread id>, stop reason = breakpoint 1.1
* frame #0: <frame pc> lldb_kt42208WithVariableAndNest-39bb6a00.kexe`kfun:#listAddA(){} at kt42208-2.kt:21:1
frame #1: <frame pc> lldb_kt42208WithVariableAndNest-39bb6a00.kexe`kfun:main$$inlined$foo$1.invoke#internal(_this=main$$inlined$foo$1<value id>) at kt42208-2.kt:19:5
frame #2: <frame pc> lldb_kt42208WithVariableAndNest-39bb6a00.kexe`kfun:main$$inlined$foo$1.$<bridge-DN>invoke(_this=main$$inlined$foo$1<value id>){}#internal at kt42208-2.kt:18:20
frame #3: <frame pc> lldb_kt42208WithVariableAndNest-39bb6a00.kexe`kfun:kotlin.Function0#invoke(){}1:0 at [K][Suspend]Functions:1:1
frame #4: <frame pc> lldb_kt42208WithVariableAndNest-39bb6a00.kexe`kfun:#main(){} at kt42208-1.kt:11:5
(lldb) c
Process <process id> resuming
Process <process id> stopped
* thread #<thread id>, stop reason = breakpoint 1.1
frame #0: <frame pc> lldb_kt42208WithVariableAndNest-39bb6a00.kexe`kfun:#listAddA(){} at kt42208-2.kt:21:1
18 inline fun foo() = { ->
19 listAddA()
20 }
-> 21 fun listAddA() {
^
22 list.add(A())
23 }
(lldb) bt
* thread #<thread id>, stop reason = breakpoint 1.1
* frame #0: <frame pc> lldb_kt42208WithVariableAndNest-39bb6a00.kexe`kfun:#listAddA(){} at kt42208-2.kt:21:1
frame #1: <frame pc> lldb_kt42208WithVariableAndNest-39bb6a00.kexe`kfun:main$$inlined$foo$1.invoke#internal(_this=main$$inlined$foo$1<value id>) at kt42208-2.kt:19:5
frame #2: <frame pc> lldb_kt42208WithVariableAndNest-39bb6a00.kexe`kfun:main$$inlined$foo$1.$<bridge-DN>invoke(_this=main$$inlined$foo$1<value id>){}#internal at kt42208-2.kt:18:20
frame #3: <frame pc> lldb_kt42208WithVariableAndNest-39bb6a00.kexe`kfun:kotlin.Function0#invoke(){}1:0 at [K][Suspend]Functions:1:1
frame #4: <frame pc> lldb_kt42208WithVariableAndNest-39bb6a00.kexe`kfun:#main(){} at kt42208-1.kt:12:5
(lldb) q