diff --git a/lldb/docs/use/map.rst b/lldb/docs/use/map.rst --- a/lldb/docs/use/map.rst +++ b/lldb/docs/use/map.rst @@ -1,7 +1,7 @@ GDB to LLDB command map ======================= -Below is a table of GDB commands with the LLDB counterparts. The built in +Below is a table of GDB commands with their 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. @@ -58,7 +58,7 @@ - Launch a process for with arguments a.out 1 2 3 without having to supply the args every time. + Launch process a.out with arguments 1 2 3 without having to supply the args every time. @@ -124,9 +124,7 @@ - Launch a process with arguments in existing terminal - /dev/ttys006 (macOS only). - + Launch a process with arguments <args> in existing terminal /dev/ttys006 (macOS only). @@ -205,7 +203,7 @@ - Attach to a process with process ID 123. + Attach to the process with process ID 123. @@ -219,7 +217,7 @@ - Attach to a process named "a.out". + Attach to the process named "a.out". @@ -443,7 +441,7 @@ - Set a breakpoint at all functions named main. + Set a breakpoint at all functions named main. @@ -459,7 +457,7 @@ - Set a breakpoint in file test.c at line 12. + Set a breakpoint in file test.c at line 12. @@ -475,7 +473,7 @@ - Set a breakpoint at all C++ methods whose basename is main. + Set a breakpoint at all C++ methods whose basename is main. @@ -492,7 +490,7 @@ - Set a breakpoint at and object C function: -[NSString stringWithFormat:]. + Set a breakpoint at an Objective-C function -[NSString stringWithFormat:]. @@ -508,7 +506,7 @@ - Set a breakpoint at all Objective-C methods whose selector is count. + Set a breakpoint at all Objective-C methods whose selector is count. @@ -541,7 +539,7 @@ - Ensure that breakpoints by file and line work for #included .c/.cpp/.m files. + Ensure that breakpoints by file and line work for #include .c/.cpp/.m files. @@ -577,7 +575,7 @@ - Set a conditional breakpoint + Set a conditional breakpoint. @@ -901,7 +899,7 @@ - Display the variables "argc" and "argv" only when you stop in the function named main. + Display the variables "argc" and "argv" only when you stop in the function named main. @@ -915,7 +913,7 @@ - Display the variable "*this" only when you stop in c class named MyClass. + Display the variable "*this" only when you stop in c class named MyClass. @@ -1043,7 +1041,7 @@ - Calling a function so you can stop at a breakpoint in the function. + Call a function so you can stop at a breakpoint in it. @@ -1059,7 +1057,7 @@ - Calling a function that crashes, and stopping when the function crashes. + Call a function that crashes, then stop when it does. @@ -1292,7 +1290,7 @@ - Show the general purpose registers for the current thread formatted as signed decimal. LLDB tries to use the same format characters as printf(3) when possible. Type "help format" to see the full list of format specifiers. + Show the general purpose registers for the current thread formatted as signed decimal. LLDB tries to use the same format characters as printf(3) when possible. Type "help format" to see the full list of format specifiers. @@ -1364,7 +1362,7 @@ - Read memory from address 0xbffff3c0 and show 4 hex uint32_t values. + Read memory from address 0xbffff3c0 and show 4 hex uint32_t values. @@ -1409,7 +1407,7 @@ - Read 512 bytes of memory from address 0xbffff3c0 and save results to a local file as text. + Read 512 bytes of memory from address 0xbffff3c0 and save the results to a local file as text. @@ -1516,7 +1514,7 @@ - Disassemble any functions named main. + Disassemble any functions named main. @@ -1687,7 +1685,7 @@ - Look up information for an address in a.out only. + Look up information for an address in a.out only. @@ -1731,7 +1729,7 @@ - Dump all sections in the a.out module. + Dump all sections in the a.out module. @@ -1755,7 +1753,7 @@ - Dump all symbols in a.out and liba.so. + Dump all symbols in a.out and liba.so. @@ -1810,7 +1808,7 @@ - Remap source file pathnames for the debug session. If your source files are no longer located in the same location as when the program was built --- maybe the program was built on a different computer --- you need to tell the debugger how to find the sources at their local file path instead of the build system's file path. + Remap source file pathnames for the debug session. If your source files are no longer located in the same location as when the program was built (for example, if the program was built on a different computer) you need to tell the debugger how to find the sources at their local file path instead of the build system's file path.