[Lldb-commits] [lldb] r163669 - /lldb/trunk/www/lldb-gdb.html

Jim Ingham jingham at apple.com
Tue Sep 11 17:38:19 PDT 2012


Author: jingham
Date: Tue Sep 11 19:38:19 2012
New Revision: 163669

URL: http://llvm.org/viewvc/llvm-project?rev=163669&view=rev
Log:
Add "info func" to the list.

Modified:
    lldb/trunk/www/lldb-gdb.html

Modified: lldb/trunk/www/lldb-gdb.html
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/www/lldb-gdb.html?rev=163669&r1=163668&r2=163669&view=diff
==============================================================================
--- lldb/trunk/www/lldb-gdb.html (original)
+++ lldb/trunk/www/lldb-gdb.html Tue Sep 11 19:38:19 2012
@@ -872,6 +872,20 @@
                         </td>
                     </tr>
 
+                    <tr><td class="header" colspan="2">Lookup functions matching a regular expression in a binary.</td></tr>
+                    <tr>
+                        <td class="content">
+                            This one finds debug symbols:<br>
+                            <b>(lldb)</b> image lookup -r -n <FUNC_REGEX><br><br>
+                            This one finds non-debug symbols:<br>
+                            <b>(lldb)</b> image lookup -r -s <FUNC_REGEX><br><br>
+                            Provide a list of binaries as arguments to limit the search.
+                        </td>
+                        <td class="content">
+                            <b>(gdb)</b> info function <FUNC_REGEX><br>
+                        </td>
+                    </tr>
+
                     <tr><td class="header" colspan="2">Lookup information for an address in <b>a.out</a> only.</td></tr>
                     <tr>
                         <td class="content">





More information about the lldb-commits mailing list