Below is a table of GDB commands with the LLDB counterparts. The built in GDB-compatibility aliases in LLDB are also listed. The full lldb command names are often long, but any unique short form can be used. Instead of "breakpoint set", "br se" is also acceptable.
lldb gdbコンバータ
- 2014年11月5日(水) 16:24 JST
- 投稿者: akira
- 表示回数 145
gdb移行1
GDB TO LLDB COMMAND MAP
EXECUTION COMMANDS
GDB | LLDB |
Launch a process no arguments. | |
(gdb) run (gdb) r |
(lldb) process launch (lldb) run (lldb) r |
Launch a process with arguments . |
|
(gdb) run (gdb) r |
(lldb) process launch -- (lldb) r |
Launch a process for with arguments a.out 1 2 3 without having to supply the args every time. |
|
% gdb --args a.out 1 2 3 (gdb) run ... (gdb) run ... |
% lldb -- a.out 1 2 3 (lldb) run ... (lldb) run ... |
Or: | |
(gdb) set args 1 2 3 (gdb) run ... (gdb) run ... |
(lldb) settings set target.run-args 1 2 3 (lldb) run ... (lldb) run ... |
Launch a process with arguments in new terminal window (Mac OS X only). | |
(lldb) process launch --tty -- (lldb) pro la -t -- |
|
Launch a process with arguments in existing terminal |
|
(lldb) process launch --tty=/dev/ttys006 -- (lldb) pro la -t/dev/ttys006 -- |
|
Set environment variables for process before launching. | |
(gdb) set env DEBUG 1 | (lldb) settings set target.env-vars DEBUG=1 (lldb) set se target.env-vars DEBUG=1 (lldb) env DEBUG=1 |
Unset environment variables for process before launching. | |
(gdb) unset env DEBUG | (lldb) settings remove target.env-vars DEBUG (lldb) set rem target.env-vars DEBUG |
Show the arguments that will be or were passed to the program when run. | |
(gdb) show args Argument list to give program being debugged when it is started is "1 2 3". |
(lldb) settings show target.run-args target.run-args (array of strings) = [0]: "1" [1]: "2" [2]: "3" |
Set environment variables for process and launch process in one command. | |
(lldb) process launch -v DEBUG=1 | |
Attach to a process with process ID 123. | |
(gdb) attach 123 | (lldb) process attach --pid 123 (lldb) attach -p 123 |
Attach to a process named "a.out". | |
(gdb) attach a.out | (lldb) process attach --name a.out (lldb) pro at -n a.out |
Wait for a process named "a.out" to launch and attach. | |
(gdb) attach -waitfor a.out | (lldb) process attach --name a.out --waitfor (lldb) pro at -n a.out -w |
Attach to a remote gdb protocol server running on system "eorgadd", port 8000. | |
(gdb) target remote eorgadd:8000 | (lldb) gdb-remote eorgadd:8000 |
Attach to a remote gdb protocol server running on the local system, port 8000. | |
(gdb) target remote localhost:8000 | (lldb) gdb-remote 8000 |
Attach to a Darwin kernel in kdp mode on system "eorgadd". | |
(gdb) kdp-reattach eorgadd | (lldb) kdp-remote eorgadd |
Do a source level single step in the currently selected thread. | |
(gdb) step (gdb) s |
(lldb) thread step-in (lldb) step (lldb) s |
Do a source level single step over in the currently selected thread. | |
(gdb) next (gdb) n |
(lldb) thread step-over (lldb) next (lldb) n |
Do an instruction level single step in the currently selected thread. | |
(gdb) stepi (gdb) si |
(lldb) thread step-inst (lldb) si |
Do an instruction level single step over in the currently selected thread. | |
(gdb) nexti (gdb) ni |
(lldb) thread step-inst-over (lldb) ni |
Step out of the currently selected frame. | |
(gdb) finish | (lldb) thread step-out (lldb) finish |
Return immediately from the currently selected frame, with an optional return value. | |
(gdb) return |
(lldb) thread return |
Backtrace and disassemble every time you stop. | |
(lldb) target stop-hook add Enter your stop hook command(s). Type 'DONE' to end. > bt > disassemble --pc > DONE Stop hook #1 added. |
BREAKPOINT COMMANDS
GDB | LLDB |
Set a breakpoint at all functions named main. | |
(gdb) break main | (lldb) breakpoint set --name main (lldb) br s -n main (lldb) b main |
Set a breakpoint in file test.c at line 12. | |
(gdb) break test.c:12 | (lldb) breakpoint set --file test.c --line 12 (lldb) br s -f test.c -l 12 (lldb) b test.c:12 |
Set a breakpoint at all C++ methods whose basename is main. | |
(gdb) break main (Hope that there are no C functions named main). |
(lldb) breakpoint set --method main (lldb) br s -M main |
Set a breakpoint at and object C function: -[NSString stringWithFormat:]. | |
(gdb) break -[NSString stringWithFormat:] | (lldb) breakpoint set --name "-[NSString stringWithFormat:]" (lldb) b -[NSString stringWithFormat:] |
Set a breakpoint at all Objective C methods whose selector is count. | |
(gdb) break count (Hope that there are no C or C++ functions namedcount). |
(lldb) breakpoint set --selector count (lldb) br s -S count |
Set a breakpoint by regular expression on function name. | |
(gdb) rbreak regular-expression | (lldb) breakpoint set --func-regex regular-expression (lldb) br s -r regular-expression |
Ensure that breakpoints by file and line work for #included .c/.cpp/.m files. | |
(gdb) b foo.c:12 | (lldb) settings set target.inline-breakpoint-strategy always (lldb) br s -f foo.c -l 12 |
Set a breakpoint by regular expression on source file contents. | |
(gdb) shell grep -e -n pattern source-file (gdb) break source-file:CopyLineNumbers |
(lldb) breakpoint set --source-pattern regular-expression --file SourceFile (lldb) br s -p regular-expression -f file |
Set a conditional breakpoint | |
(gdb) break foo if strcmp(y,"hello") == 0 | (lldb) breakpoint set --name foo --condition '(int)strcmp(y,"hello") == 0' (lldb) br s -n foo -c '(int)strcmp(y,"hello") == 0' |
List all breakpoints. | |
(gdb) info break | (lldb) breakpoint list (lldb) br l |
Delete a breakpoint. | |
(gdb) delete 1 | (lldb) breakpoint delete 1 (lldb) br del 1 |
WATCHPOINT COMMANDS
GDB | LLDB |
Set a watchpoint on a variable when it is written to. | |
(gdb) watch global_var | (lldb) watchpoint set variable global_var (lldb) wa s v global_var |
Set a watchpoint on a memory location when it is written into. The size of the region to watch for defaults to the pointer size if no '-x byte_size' is specified. This command takes raw input, evaluated as an expression returning an unsigned integer pointing to the start of the region, after the '--' option terminator. | |
(gdb) watch -location g_char_ptr | (lldb) watchpoint set expression -- my_ptr (lldb) wa s e -- my_ptr |
Set a condition on a watchpoint. | |
(lldb) watch set var global (lldb) watchpoint modify -c '(global==5)' (lldb) c ... (lldb) bt * thread #1: tid = 0x1c03, 0x0000000100000ef5 a.out`modify + 21 at main.cpp:16, stop reason = watchpoint 1 frame #0: 0x0000000100000ef5 a.out`modify + 21 at main.cpp:16 frame #1: 0x0000000100000eac a.out`main + 108 at main.cpp:25 frame #2: 0x00007fff8ac9c7e1 libdyld.dylib`start + 1 (lldb) frame var global (int32_t) global = 5 |
|
List all watchpoints. | |
(gdb) info break | (lldb) watchpoint list (lldb) watch l |
Delete a watchpoint. | |
(gdb) delete 1 | (lldb) watchpoint delete 1 (lldb) watch del 1 |
EXAMINING VARIABLES
GDB | LLDB |
Show the arguments and local variables for the current frame. | |
(gdb) info args and (gdb) info locals |
(lldb) frame variable (lldb) fr v |
Show the local variables for the current frame. | |
(gdb) info locals | (lldb) frame variable --no-args (lldb) fr v -a |
Show the contents of local variable "bar". | |
(gdb) p bar | (lldb) frame variable bar (lldb) fr v bar (lldb) p bar |
Show the contents of local variable "bar" formatted as hex. | |
(gdb) p/x bar | (lldb) frame variable --format x bar (lldb) fr v -f x bar |
Show the contents of global variable "baz". | |
(gdb) p baz | (lldb) target variable baz (lldb) ta v baz |
Show the global/static variables defined in the current source file. | |
n/a | (lldb) target variable (lldb) ta v |
Display the variables "argc" and "argv" every time you stop. | |
(gdb) display argc (gdb) display argv |
(lldb) target stop-hook add --one-liner "frame variable argc argv" (lldb) ta st a -o "fr v argc argv" (lldb) display argc (lldb) display argv |
Display the variables "argc" and "argv" only when you stop in the function named main. | |
(lldb) target stop-hook add --name main --one-liner "frame variable argc argv" (lldb) ta st a -n main -o "fr v argc argv" |
|
Display the variable "*this" only when you stop in c class named MyClass. | |
(lldb) target stop-hook add --classname MyClass --one-liner "frame variable *this" (lldb) ta st a -c MyClass -o "fr v *this" |
EVALUATING EXPRESSIONS
GDB | LLDB |
Evaluating a generalized expression in the current frame. | |
(gdb) print (int) printf ("Print nine: %d.", 4 + 5) or if you don't want to see void returns: (gdb) call (int) printf ("Print nine: %d.", 4 + 5) |
(lldb) expr (int) printf ("Print nine: %d.", 4 + 5) or using the print alias: (lldb) print (int) printf ("Print nine: %d.", 4 + 5) |
Creating and assigning a value to a convenience variable. | |
(gdb) set $foo = 5 (gdb) set variable $foo = 5 or using the print command (gdb) print $foo = 5 or using the call command (gdb) call $foo = 5 and if you want to specify the type of the variable:(gdb) set $foo = (unsigned int) 5 |
In lldb you evaluate a variable declaration expression as you would write it in C: (lldb) expr unsigned int $foo = 5 |
Printing the ObjC "description" of an object. | |
(gdb) po [SomeClass returnAnObject] | (lldb) expr -o -- [SomeClass returnAnObject] or using the po alias: (lldb) po [SomeClass returnAnObject] |
Print the dynamic type of the result of an expression. | |
(gdb) set print object 1 (gdb) p someCPPObjectPtrOrReference only works for C++ objects. |
(lldb) expr -d 1 -- [SomeClass returnAnObject] (lldb) expr -d 1 -- someCPPObjectPtrOrReference or set dynamic type printing to be the default: (lldb)settings set target.prefer-dynamic run-target |
Calling a function so you can stop at a breakpoint in the function. | |
(gdb) set unwindonsignal 0 (gdb) p function_with_a_breakpoint() |
(lldb) expr -i 0 -- function_with_a_breakpoint() |
Calling a function that crashes, and stopping when the function crashes. | |
(gdb) set unwindonsignal 0 (gdb) p function_which_crashes() |
(lldb) expr -u 0 -- function_which_crashes() |