blob: 8ce78f25b3ea4774d7fc3da578151e5206513b47 [file] [log] [blame]
Jason Molendaa10929d2012-11-09 06:14:39 +00001<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml">
3<head>
4<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
5<link href="style.css" rel="stylesheet" type="text/css" />
6<title>LLDB Status</title>
7</head>
8
9<body>
Ashok Thirumurthi5c8dbc42013-06-12 14:26:58 +000010 <div class="www_title">
11 The <strong>LLDB</strong> Debugger
12 </div>
13
Jason Molendaa10929d2012-11-09 06:14:39 +000014<div id="container">
15 <div id="content">
Ashok Thirumurthi5c8dbc42013-06-12 14:26:58 +000016 <!--#include virtual="sidebar.incl"-->
17
Jason Molendaa10929d2012-11-09 06:14:39 +000018 <div id="middle">
19 <div class="post">
20 <h1 class ="postheader">Mac OS X Status</h1>
21 <div class="postcontent">
22
Ashok Thirumurthi5c8dbc42013-06-12 14:26:58 +000023 <p>LLDB has matured a lot in the last year and can be used for
24 C, C++ and Objective C development for x86_64, i386 and ARM debugging.
25 The entire public API is exposed though a framework on Mac OS X which
26 is used by Xcode, the lldb command line tool, and can also be used by
27 Python. The entire public API is exposed through script bridging which
28 allows LLDB to use an embedded Python script interpreter, as well as
29 having a Python module named "lldb" which can be used from Python
30 on the command line. This allows debug sessions to be scripted. It also
31 allows powerful debugging actions to be created and attached to a variety
32 of debugging workflows.</p>
Jason Molendaa10929d2012-11-09 06:14:39 +000033 </div>
34 <h1 class ="postheader">Linux Status</h1>
35 <div class="postcontent">
Ashok Thirumurthi2f27f402013-06-07 19:21:45 +000036 <p> LLDB is improving on Linux. While the debugserver has not been ported
37 (to enable remote debugging) Linux is nearing feature completeness with Darwin
38 to debug x86_64 programs, and is partially working with i386 programs.
Ed Maste9ec50222013-07-24 13:51:45 +000039 ARM architectures on Linux are untested.
40 For more details, see the Features by OS section below.
41 </div>
42 <h1 class ="postheader">FreeBSD Status</h1>
43 <div class="postcontent">
44 <p> LLDB on FreeBSD lags behind the Linux implementation but is improving rapidly.
Jason Molendaa10929d2012-11-09 06:14:39 +000045 For more details, see the Features by OS section below.
46 </div>
47 <h1 class ="postheader">Features by OS</h1>
48 <div class="postcontent">
49 <p> The table below shows a summary of the features that are available
50 on several platforms. In addition to Linux and Mac OS X, LLDB is also
51 known to work on FreeBSD. Windows support is under development.
52 <table border="1">
53 <tr>
54 <th>Feature</th>
Ed Maste9ec50222013-07-24 13:51:45 +000055 <th>FreeBSD<br>(x86_64)</th>
Ashok Thirumurthi9bca2cf2013-05-24 19:25:33 +000056 <th>Linux<br>(x86_64)</th>
Jason Molendaa10929d2012-11-09 06:14:39 +000057 <th>Mac OS X (i386/x86_64 and ARM/Thumb)</th>
58 </tr>
59 <tr>
60 <td>Backtracing</td>
Ashok Thirumurthi61b87932013-07-24 13:32:18 +000061 <td>OK</td>
Jason Molendaa10929d2012-11-09 06:14:39 +000062 <td>OK</td>
Ed Maste9ec50222013-07-24 13:51:45 +000063 <td>OK</td>
Jason Molendaa10929d2012-11-09 06:14:39 +000064 </tr>
65 <tr>
66 <td>Breakpoints
67 <ul>
68 <li>source-line
69 <li>symbolic
70 <li>C++ mangled names
71 <li>module scoping
72 </ul>
73 </td>
Daniel Malea1fc46d22013-01-10 23:13:06 +000074 <td>OK</td>
Jason Molendaa10929d2012-11-09 06:14:39 +000075 <td>OK</td>
Ed Maste9ec50222013-07-24 13:51:45 +000076 <td>OK</td>
Jason Molendaa10929d2012-11-09 06:14:39 +000077 </tr>
78 <tr>
79 <td>C++11:
80 <ul>
81 <li>function access
82 <li>template support
83 <li>dynamic types
84 </ul></td>
85 <td>OK</td>
86 <td>OK</td>
Ed Maste9ec50222013-07-24 13:51:45 +000087 <td>OK</td>
Jason Molendaa10929d2012-11-09 06:14:39 +000088 </tr>
89 <tr>
90 <td>Commandline lldb tool</td>
91 <td>OK</td>
92 <td>OK</td>
Ed Maste9ec50222013-07-24 13:51:45 +000093 <td>OK</td>
Jason Molendaa10929d2012-11-09 06:14:39 +000094 </tr>
95 <tr>
Ashok Thirumurthi5c8dbc42013-06-12 14:26:58 +000096 <td>Core file debugging</td>
Ashok Thirumurthi61b87932013-07-24 13:32:18 +000097 <td>OK (ELF)</td>
Ed Maste9ec50222013-07-24 13:51:45 +000098 <td>OK (ELF)</td>
Ashok Thirumurthi61b87932013-07-24 13:32:18 +000099 <td>OK (MachO)</td>
Ashok Thirumurthi5c8dbc42013-06-12 14:26:58 +0000100 </tr>
101 <tr>
Jason Molendaa10929d2012-11-09 06:14:39 +0000102 <td>Debugserver (remote debugging)</td>
103 <td>Not ported</td>
Ed Maste9ec50222013-07-24 13:51:45 +0000104 <td>Not ported</td>
Jason Molendaa10929d2012-11-09 06:14:39 +0000105 <td>OK</td>
106 </tr>
107 <tr>
108 <td>Disassembly</td>
109 <td>OK</td>
110 <td>OK</td>
Ed Maste9ec50222013-07-24 13:51:45 +0000111 <td>OK</td>
Jason Molendaa10929d2012-11-09 06:14:39 +0000112 </tr>
113 <tr>
114 <td>Expression evaluation</td>
Ed Maste9ec50222013-07-24 13:51:45 +0000115 <td>Unknown</td>
Jason Molendaa10929d2012-11-09 06:14:39 +0000116 <td>Works with some bugs</td>
117 <td>OK</td>
118 </tr>
119 <tr>
Ashok Thirumurthi61b87932013-07-24 13:32:18 +0000120 <td>JIT debugging</td>
Ed Maste9ec50222013-07-24 13:51:45 +0000121 <td>Unknown</td>
Ashok Thirumurthi61b87932013-07-24 13:32:18 +0000122 <td>Symbolic debugging only</td>
123 <td>Untested</td>
124 </tr>
125 <tr>
Jason Molendaa10929d2012-11-09 06:14:39 +0000126 <td>Objective-C 2.0:
127 <ul>
128 <li>printing properties
129 <li>synthetic properties
130 <li>expressions
131 <li>KVO
132 <li>dynamic types
133 <li>dot syntax
134 <li>runtime data
135 <li>stepping into/over
136 <li>printing the description of an object ("po")
137 </ul></td>
Ed Maste9ec50222013-07-24 13:51:45 +0000138 <td>Unknown</td>
Jason Molendabf692ae2012-11-09 06:16:12 +0000139 <td>Not applicable</td>
Jason Molendaa10929d2012-11-09 06:14:39 +0000140 <td>OK</td>
141 </tr>
142 <tr>
143 <td>Process control
144 <ul>
Jason Molendaa10929d2012-11-09 06:14:39 +0000145 <li>attach
146 <li>continue
Ashok Thirumurthi5c8dbc42013-06-12 14:26:58 +0000147 <li>exec, execve...
Ashok Thirumurthi9bca2cf2013-05-24 19:25:33 +0000148 <li>fork
Ashok Thirumurthi5c8dbc42013-06-12 14:26:58 +0000149 <li>launch
150 <li>status
Jason Molendaa10929d2012-11-09 06:14:39 +0000151 </ul>
152 </td>
Ed Maste9ec50222013-07-24 13:51:45 +0000153 <td>Works, with some bugs</td>
Ashok Thirumurthi5c8dbc42013-06-12 14:26:58 +0000154 <td>OK (except exec*)</td>
Jason Molendaa10929d2012-11-09 06:14:39 +0000155 <td>OK</td>
156 </tr>
157 <tr>
158 <td>Public Python API</td>
159 <td>OK</td>
160 <td>OK</td>
Ed Maste9ec50222013-07-24 13:51:45 +0000161 <td>OK</td>
Jason Molendaa10929d2012-11-09 06:14:39 +0000162 </tr>
163 <tr>
Ashok Thirumurthi9bca2cf2013-05-24 19:25:33 +0000164 <td>Registers (x86_64 and i386)
165 <ul>
166 <li>general purpose
167 <li>floating point
168 <li>exception state
169 <li>SSE
170 <li>AVX
171 </ul>
172 </td>
Ed Maste9ec50222013-07-24 13:51:45 +0000173 <td>GP and FP OK</td>
Ashok Thirumurthi9bca2cf2013-05-24 19:25:33 +0000174 <td>OK (except for exception state registers)</td>
175 <td>OK</td>
176 </tr>
177 <tr>
Jason Molendaa10929d2012-11-09 06:14:39 +0000178 <td>Script bridging</td>
179 <td>OK</td>
180 <td>OK</td>
Ed Maste9ec50222013-07-24 13:51:45 +0000181 <td>OK</td>
Jason Molendaa10929d2012-11-09 06:14:39 +0000182 </tr>
183 <tr>
184 <td>Symbol reading and object file introspection</td>
185 <td>OK</td>
186 <td>OK</td>
Ed Maste9ec50222013-07-24 13:51:45 +0000187 <td>OK</td>
Jason Molendaa10929d2012-11-09 06:14:39 +0000188 </tr>
189 <tr>
190 <td>Thread inspection and stepping</td>
Ed Maste9ec50222013-07-24 13:51:45 +0000191 <td>Not yet implemented</td>
Ashok Thirumurthi2f27f402013-06-07 19:21:45 +0000192 <td>OK</td>
Jason Molendaa10929d2012-11-09 06:14:39 +0000193 <td>OK</td>
194 </tr>
195 <tr>
196 <td>Watchpoints</td>
Ed Maste9ec50222013-07-24 13:51:45 +0000197 <td>Fail</td>
Matt Kopec0dd71702013-05-08 19:45:07 +0000198 <td>OK</td>
Jason Molendaa10929d2012-11-09 06:14:39 +0000199 <td>OK</td>
200 </tr>
201 </table>
202 </div>
203 <div class="postfooter"></div>
204 </div>
205 </div>
206 </div>
207</div>
208</body>
209</html>