blob: 80fe5cb816a24f74a5269d0444236df4c28d8cd7 [file] [log] [blame]
Chris Lattner1811fca2004-01-05 05:06:33 +00001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3<html>
4<head>
Bill Wendlinge9353d72009-05-17 05:52:39 +00005 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
Chris Lattner1811fca2004-01-05 05:06:33 +00006 <title>Source Level Debugging with LLVM</title>
7 <link rel="stylesheet" href="llvm.css" type="text/css">
8</head>
9<body>
10
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +000011<h1>Source Level Debugging with LLVM</h1>
Chris Lattner1811fca2004-01-05 05:06:33 +000012
Reid Spencerc3c4c4f2004-11-01 08:19:36 +000013<table class="layout" style="width:100%">
14 <tr class="layout">
15 <td class="left">
Chris Lattner1811fca2004-01-05 05:06:33 +000016<ul>
Misha Brukmanf91d9942004-05-12 19:21:57 +000017 <li><a href="#introduction">Introduction</a>
Chris Lattner1811fca2004-01-05 05:06:33 +000018 <ol>
19 <li><a href="#phil">Philosophy behind LLVM debugging information</a></li>
Jim Laskey5dcfd562006-03-23 17:54:33 +000020 <li><a href="#consumers">Debug information consumers</a></li>
Chris Lattner1811fca2004-01-05 05:06:33 +000021 <li><a href="#debugopt">Debugging optimized code</a></li>
Misha Brukmanf91d9942004-05-12 19:21:57 +000022 </ol></li>
Misha Brukmanf91d9942004-05-12 19:21:57 +000023 <li><a href="#format">Debugging information format</a>
Chris Lattner1811fca2004-01-05 05:06:33 +000024 <ol>
Jim Laskey14edc932006-03-14 18:08:46 +000025 <li><a href="#debug_info_descriptors">Debug information descriptors</a>
Chris Lattner1811fca2004-01-05 05:06:33 +000026 <ul>
Jim Laskey14edc932006-03-14 18:08:46 +000027 <li><a href="#format_compile_units">Compile unit descriptors</a></li>
Devang Patel59445db2010-03-09 00:44:10 +000028 <li><a href="#format_files">File descriptors</a></li>
Jim Laskey14edc932006-03-14 18:08:46 +000029 <li><a href="#format_global_variables">Global variable descriptors</a></li>
30 <li><a href="#format_subprograms">Subprogram descriptors</a></li>
Jim Laskey9dcffe72006-03-15 19:10:52 +000031 <li><a href="#format_blocks">Block descriptors</a></li>
Jim Laskey14edc932006-03-14 18:08:46 +000032 <li><a href="#format_basic_type">Basic type descriptors</a></li>
33 <li><a href="#format_derived_type">Derived type descriptors</a></li>
34 <li><a href="#format_composite_type">Composite type descriptors</a></li>
35 <li><a href="#format_subrange">Subrange descriptors</a></li>
36 <li><a href="#format_enumeration">Enumerator descriptors</a></li>
Jim Laskey5dcfd562006-03-23 17:54:33 +000037 <li><a href="#format_variables">Local variables</a></li>
Misha Brukmanf91d9942004-05-12 19:21:57 +000038 </ul></li>
Jim Laskey14edc932006-03-14 18:08:46 +000039 <li><a href="#format_common_intrinsics">Debugger intrinsic functions</a>
40 <ul>
Jim Laskey14edc932006-03-14 18:08:46 +000041 <li><a href="#format_common_declare">llvm.dbg.declare</a></li>
Victor Hernandez0b62cc62010-01-11 22:53:48 +000042 <li><a href="#format_common_value">llvm.dbg.value</a></li>
Jim Laskey14edc932006-03-14 18:08:46 +000043 </ul></li>
Misha Brukmanf91d9942004-05-12 19:21:57 +000044 </ol></li>
Devang Patel4da997b2009-11-25 23:28:01 +000045 <li><a href="#format_common_lifetime">Object lifetimes and scoping</a></li>
Misha Brukmanf91d9942004-05-12 19:21:57 +000046 <li><a href="#ccxx_frontend">C/C++ front-end specific debug information</a>
Chris Lattner1811fca2004-01-05 05:06:33 +000047 <ol>
Jim Laskey14edc932006-03-14 18:08:46 +000048 <li><a href="#ccxx_compile_units">C/C++ source file information</a></li>
49 <li><a href="#ccxx_global_variable">C/C++ global variable information</a></li>
50 <li><a href="#ccxx_subprogram">C/C++ function information</a></li>
51 <li><a href="#ccxx_basic_types">C/C++ basic types</a></li>
52 <li><a href="#ccxx_derived_types">C/C++ derived types</a></li>
53 <li><a href="#ccxx_composite_types">C/C++ struct/union types</a></li>
54 <li><a href="#ccxx_enumeration_types">C/C++ enumeration types</a></li>
Misha Brukmanf91d9942004-05-12 19:21:57 +000055 </ol></li>
Devang Patel8cd89642011-11-15 22:59:54 +000056 <li><a href="#llvmdwarfextension">LLVM Dwarf Extensions</a>
57 <ol>
58 <li><a href="#objcproperty">Debugging Information Extension
59 for Objective C Properties</a></li>
60 <ul>
61 <li><a href="#objcpropertyintroduction">Introduction</a></li>
62 <li><a href="#objcpropertyproposal">Proposal</a></li>
63 <li><a href="#objcpropertynewattributes">New DWARF Attributes</a></li>
64 <li><a href="#objcpropertynewconstants">New DWARF Constants</a></li>
65 </ul>
66
67 </ol>
68 </li>
Chris Lattner1811fca2004-01-05 05:06:33 +000069</ul>
Misha Brukmanf91d9942004-05-12 19:21:57 +000070</td>
Reid Spencerc3c4c4f2004-11-01 08:19:36 +000071<td class="right">
Misha Brukman3c1f8e72004-05-12 21:26:16 +000072<img src="img/venusflytrap.jpg" alt="A leafy and green bug eater" width="247"
Misha Brukmanf91d9942004-05-12 19:21:57 +000073height="369">
74</td>
Reid Spencerc3c4c4f2004-11-01 08:19:36 +000075</tr></table>
Misha Brukmanf91d9942004-05-12 19:21:57 +000076
Chris Lattner020e1fc2004-05-23 21:07:27 +000077<div class="doc_author">
Jim Laskey14edc932006-03-14 18:08:46 +000078 <p>Written by <a href="mailto:sabre@nondot.org">Chris Lattner</a>
Jim Laskey6e8a2f42007-03-14 19:32:21 +000079 and <a href="mailto:jlaskey@mac.com">Jim Laskey</a></p>
Chris Lattner020e1fc2004-05-23 21:07:27 +000080</div>
81
Chris Lattner1811fca2004-01-05 05:06:33 +000082
83<!-- *********************************************************************** -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +000084<h2><a name="introduction">Introduction</a></h2>
Misha Brukmancda6a9b2004-12-09 20:27:37 +000085<!-- *********************************************************************** -->
Chris Lattner1811fca2004-01-05 05:06:33 +000086
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +000087<div>
Chris Lattner1811fca2004-01-05 05:06:33 +000088
89<p>This document is the central repository for all information pertaining to
Bill Wendlinge9353d72009-05-17 05:52:39 +000090 debug information in LLVM. It describes the <a href="#format">actual format
91 that the LLVM debug information</a> takes, which is useful for those
92 interested in creating front-ends or dealing directly with the information.
Chris Lattnercb3f64f2009-07-18 21:47:15 +000093 Further, this document provides specific examples of what debug information
Chris Lattner92ec3d12011-01-18 06:12:10 +000094 for C/C++ looks like.</p>
Chris Lattner1811fca2004-01-05 05:06:33 +000095
Chris Lattner1811fca2004-01-05 05:06:33 +000096<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +000097<h3>
Chris Lattner1811fca2004-01-05 05:06:33 +000098 <a name="phil">Philosophy behind LLVM debugging information</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +000099</h3>
Chris Lattner1811fca2004-01-05 05:06:33 +0000100
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000101<div>
Chris Lattner1811fca2004-01-05 05:06:33 +0000102
Misha Brukmanf91d9942004-05-12 19:21:57 +0000103<p>The idea of the LLVM debugging information is to capture how the important
Bill Wendlinge9353d72009-05-17 05:52:39 +0000104 pieces of the source-language's Abstract Syntax Tree map onto LLVM code.
105 Several design aspects have shaped the solution that appears here. The
106 important ones are:</p>
Chris Lattner1811fca2004-01-05 05:06:33 +0000107
Misha Brukmanf91d9942004-05-12 19:21:57 +0000108<ul>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000109 <li>Debugging information should have very little impact on the rest of the
110 compiler. No transformations, analyses, or code generators should need to
111 be modified because of debugging information.</li>
Chris Lattner1811fca2004-01-05 05:06:33 +0000112
Bill Wendlinge9353d72009-05-17 05:52:39 +0000113 <li>LLVM optimizations should interact in <a href="#debugopt">well-defined and
114 easily described ways</a> with the debugging information.</li>
Chris Lattner1811fca2004-01-05 05:06:33 +0000115
Bill Wendlinge9353d72009-05-17 05:52:39 +0000116 <li>Because LLVM is designed to support arbitrary programming languages,
117 LLVM-to-LLVM tools should not need to know anything about the semantics of
118 the source-level-language.</li>
Chris Lattner1811fca2004-01-05 05:06:33 +0000119
Bill Wendlinge9353d72009-05-17 05:52:39 +0000120 <li>Source-level languages are often <b>widely</b> different from one another.
121 LLVM should not put any restrictions of the flavor of the source-language,
122 and the debugging information should work with any language.</li>
Chris Lattner1811fca2004-01-05 05:06:33 +0000123
Bill Wendlinge9353d72009-05-17 05:52:39 +0000124 <li>With code generator support, it should be possible to use an LLVM compiler
125 to compile a program to native machine code and standard debugging
126 formats. This allows compatibility with traditional machine-code level
127 debuggers, like GDB or DBX.</li>
Misha Brukmanf91d9942004-05-12 19:21:57 +0000128</ul>
Chris Lattner1811fca2004-01-05 05:06:33 +0000129
Bill Wendlinge9353d72009-05-17 05:52:39 +0000130<p>The approach used by the LLVM implementation is to use a small set
131 of <a href="#format_common_intrinsics">intrinsic functions</a> to define a
132 mapping between LLVM program objects and the source-level objects. The
Devang Patel80ae3492009-08-28 23:24:31 +0000133 description of the source-level program is maintained in LLVM metadata
134 in an <a href="#ccxx_frontend">implementation-defined format</a>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000135 (the C/C++ front-end currently uses working draft 7 of
136 the <a href="http://www.eagercon.com/dwarf/dwarf3std.htm">DWARF 3
137 standard</a>).</p>
Chris Lattner1811fca2004-01-05 05:06:33 +0000138
Jim Laskey14edc932006-03-14 18:08:46 +0000139<p>When a program is being debugged, a debugger interacts with the user and
Bill Wendlinge9353d72009-05-17 05:52:39 +0000140 turns the stored debug information into source-language specific information.
141 As such, a debugger must be aware of the source-language, and is thus tied to
142 a specific language or family of languages.</p>
Chris Lattner1811fca2004-01-05 05:06:33 +0000143
144</div>
145
Chris Lattner1811fca2004-01-05 05:06:33 +0000146<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000147<h3>
Jim Laskey5dcfd562006-03-23 17:54:33 +0000148 <a name="consumers">Debug information consumers</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000149</h3>
Jim Laskey5dcfd562006-03-23 17:54:33 +0000150
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000151<div>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000152
Jim Laskey5dcfd562006-03-23 17:54:33 +0000153<p>The role of debug information is to provide meta information normally
Bill Wendlinge9353d72009-05-17 05:52:39 +0000154 stripped away during the compilation process. This meta information provides
155 an LLVM user a relationship between generated code and the original program
156 source code.</p>
Jim Laskey5dcfd562006-03-23 17:54:33 +0000157
Chris Lattner904f2172010-04-05 04:11:11 +0000158<p>Currently, debug information is consumed by DwarfDebug to produce dwarf
Bill Wendlinge9353d72009-05-17 05:52:39 +0000159 information used by the gdb debugger. Other targets could use the same
160 information to produce stabs or other debug forms.</p>
Jim Laskey5dcfd562006-03-23 17:54:33 +0000161
162<p>It would also be reasonable to use debug information to feed profiling tools
Bill Wendlinge9353d72009-05-17 05:52:39 +0000163 for analysis of generated code, or, tools for reconstructing the original
164 source from generated code.</p>
Jim Laskey5dcfd562006-03-23 17:54:33 +0000165
166<p>TODO - expound a bit more.</p>
167
168</div>
169
170<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000171<h3>
Chris Lattner1811fca2004-01-05 05:06:33 +0000172 <a name="debugopt">Debugging optimized code</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000173</h3>
Chris Lattner1811fca2004-01-05 05:06:33 +0000174
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000175<div>
Chris Lattner1811fca2004-01-05 05:06:33 +0000176
Misha Brukmanf91d9942004-05-12 19:21:57 +0000177<p>An extremely high priority of LLVM debugging information is to make it
Bill Wendlinge9353d72009-05-17 05:52:39 +0000178 interact well with optimizations and analysis. In particular, the LLVM debug
179 information provides the following guarantees:</p>
Misha Brukmanf91d9942004-05-12 19:21:57 +0000180
181<ul>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000182 <li>LLVM debug information <b>always provides information to accurately read
183 the source-level state of the program</b>, regardless of which LLVM
184 optimizations have been run, and without any modification to the
185 optimizations themselves. However, some optimizations may impact the
186 ability to modify the current state of the program with a debugger, such
187 as setting program variables, or calling functions that have been
188 deleted.</li>
Chris Lattner1811fca2004-01-05 05:06:33 +0000189
Bill Wendlinge9353d72009-05-17 05:52:39 +0000190 <li>As desired, LLVM optimizations can be upgraded to be aware of the LLVM
191 debugging information, allowing them to update the debugging information
192 as they perform aggressive optimizations. This means that, with effort,
193 the LLVM optimizers could optimize debug code just as well as non-debug
194 code.</li>
Chris Lattner1811fca2004-01-05 05:06:33 +0000195
Devang Patel5c26a852011-05-31 17:45:27 +0000196 <li>LLVM debug information does not prevent optimizations from
Bill Wendlinge9353d72009-05-17 05:52:39 +0000197 happening (for example inlining, basic block reordering/merging/cleanup,
Devang Patel1d81ea82011-05-31 18:06:14 +0000198 tail duplication, etc).</li>
Chris Lattner1811fca2004-01-05 05:06:33 +0000199
Bill Wendlinge9353d72009-05-17 05:52:39 +0000200 <li>LLVM debug information is automatically optimized along with the rest of
201 the program, using existing facilities. For example, duplicate
202 information is automatically merged by the linker, and unused information
203 is automatically removed.</li>
Misha Brukmanf91d9942004-05-12 19:21:57 +0000204</ul>
Chris Lattner1811fca2004-01-05 05:06:33 +0000205
Misha Brukmanf91d9942004-05-12 19:21:57 +0000206<p>Basically, the debug information allows you to compile a program with
Bill Wendlinge9353d72009-05-17 05:52:39 +0000207 "<tt>-O0 -g</tt>" and get full debug information, allowing you to arbitrarily
208 modify the program as it executes from a debugger. Compiling a program with
209 "<tt>-O3 -g</tt>" gives you full debug information that is always available
210 and accurate for reading (e.g., you get accurate stack traces despite tail
211 call elimination and inlining), but you might lose the ability to modify the
212 program and call functions where were optimized out of the program, or
213 inlined away completely.</p>
Chris Lattner1811fca2004-01-05 05:06:33 +0000214
Misha Brukman39dcddf2008-12-16 02:54:22 +0000215<p><a href="TestingGuide.html#quicktestsuite">LLVM test suite</a> provides a
Bill Wendlinge9353d72009-05-17 05:52:39 +0000216 framework to test optimizer's handling of debugging information. It can be
217 run like this:</p>
Devang Patelb885a912008-11-21 19:35:57 +0000218
219<div class="doc_code">
220<pre>
221% cd llvm/projects/test-suite/MultiSource/Benchmarks # or some other level
222% make TEST=dbgopt
223</pre>
224</div>
225
Bill Wendlinge9353d72009-05-17 05:52:39 +0000226<p>This will test impact of debugging information on optimization passes. If
227 debugging information influences optimization passes then it will be reported
228 as a failure. See <a href="TestingGuide.html">TestingGuide</a> for more
229 information on LLVM test infrastructure and how to run various tests.</p>
Devang Patelb885a912008-11-21 19:35:57 +0000230
Chris Lattner1811fca2004-01-05 05:06:33 +0000231</div>
232
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000233</div>
234
Chris Lattner1811fca2004-01-05 05:06:33 +0000235<!-- *********************************************************************** -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000236<h2>
Chris Lattner941515c2004-01-06 05:31:32 +0000237 <a name="format">Debugging information format</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000238</h2>
Chris Lattner1811fca2004-01-05 05:06:33 +0000239<!-- *********************************************************************** -->
240
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000241<div>
Chris Lattner1811fca2004-01-05 05:06:33 +0000242
243<p>LLVM debugging information has been carefully designed to make it possible
Bill Wendlinge9353d72009-05-17 05:52:39 +0000244 for the optimizer to optimize the program and debugging information without
245 necessarily having to know anything about debugging information. In
John Criswell2a4b0802010-03-17 15:01:50 +0000246 particular, the use of metadata avoids duplicated debugging information from
Devang Patel80ae3492009-08-28 23:24:31 +0000247 the beginning, and the global dead code elimination pass automatically
248 deletes debugging information for a function if it decides to delete the
249 function. </p>
Chris Lattner1811fca2004-01-05 05:06:33 +0000250
251<p>To do this, most of the debugging information (descriptors for types,
Bill Wendlinge9353d72009-05-17 05:52:39 +0000252 variables, functions, source files, etc) is inserted by the language
Devang Patel80ae3492009-08-28 23:24:31 +0000253 front-end in the form of LLVM metadata. </p>
Chris Lattner1811fca2004-01-05 05:06:33 +0000254
Jim Laskey14edc932006-03-14 18:08:46 +0000255<p>Debug information is designed to be agnostic about the target debugger and
Bill Wendlinge9353d72009-05-17 05:52:39 +0000256 debugging information representation (e.g. DWARF/Stabs/etc). It uses a
Devang Patel80ae3492009-08-28 23:24:31 +0000257 generic pass to decode the information that represents variables, types,
258 functions, namespaces, etc: this allows for arbitrary source-language
259 semantics and type-systems to be used, as long as there is a module
260 written for the target debugger to interpret the information. </p>
Chris Lattner1811fca2004-01-05 05:06:33 +0000261
Misha Brukmanf91d9942004-05-12 19:21:57 +0000262<p>To provide basic functionality, the LLVM debugger does have to make some
Bill Wendlinge9353d72009-05-17 05:52:39 +0000263 assumptions about the source-level language being debugged, though it keeps
264 these to a minimum. The only common features that the LLVM debugger assumes
Devang Patel59445db2010-03-09 00:44:10 +0000265 exist are <a href="#format_files">source files</a>,
Bill Wendlinge9353d72009-05-17 05:52:39 +0000266 and <a href="#format_global_variables">program objects</a>. These abstract
267 objects are used by a debugger to form stack traces, show information about
268 local variables, etc.</p>
Chris Lattner1811fca2004-01-05 05:06:33 +0000269
270<p>This section of the documentation first describes the representation aspects
Bill Wendlinge9353d72009-05-17 05:52:39 +0000271 common to any source-language. The <a href="#ccxx_frontend">next section</a>
272 describes the data layout conventions used by the C and C++ front-ends.</p>
Chris Lattner1811fca2004-01-05 05:06:33 +0000273
Chris Lattner1811fca2004-01-05 05:06:33 +0000274<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000275<h3>
Jim Laskey14edc932006-03-14 18:08:46 +0000276 <a name="debug_info_descriptors">Debug information descriptors</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000277</h3>
Chris Lattner1811fca2004-01-05 05:06:33 +0000278
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000279<div>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000280
Jim Laskey14edc932006-03-14 18:08:46 +0000281<p>In consideration of the complexity and volume of debug information, LLVM
Devang Patel80ae3492009-08-28 23:24:31 +0000282 provides a specification for well formed debug descriptors. </p>
Chris Lattner1811fca2004-01-05 05:06:33 +0000283
Jim Laskey14edc932006-03-14 18:08:46 +0000284<p>Consumers of LLVM debug information expect the descriptors for program
Bill Wendlinge9353d72009-05-17 05:52:39 +0000285 objects to start in a canonical format, but the descriptors can include
286 additional information appended at the end that is source-language
287 specific. All LLVM debugging information is versioned, allowing backwards
288 compatibility in the case that the core structures need to change in some
289 way. Also, all debugging information objects start with a tag to indicate
290 what type of object it is. The source-language is allowed to define its own
291 objects, by using unreserved tag numbers. We recommend using with tags in
Benjamin Kramer0f420382009-10-12 14:46:08 +0000292 the range 0x1000 through 0x2000 (there is a defined enum DW_TAG_user_base =
Bill Wendlinge9353d72009-05-17 05:52:39 +0000293 0x1000.)</p>
Jim Laskey14edc932006-03-14 18:08:46 +0000294
Devang Patel80ae3492009-08-28 23:24:31 +0000295<p>The fields of debug descriptors used internally by LLVM
Nick Lewyckya87014f2010-03-31 07:50:17 +0000296 are restricted to only the simple data types <tt>i32</tt>, <tt>i1</tt>,
297 <tt>float</tt>, <tt>double</tt>, <tt>mdstring</tt> and <tt>mdnode</tt>. </p>
Chris Lattner1811fca2004-01-05 05:06:33 +0000298
Bill Wendlinge9353d72009-05-17 05:52:39 +0000299<div class="doc_code">
Misha Brukmanf91d9942004-05-12 19:21:57 +0000300<pre>
Devang Patel80ae3492009-08-28 23:24:31 +0000301!1 = metadata !{
Nick Lewyckya87014f2010-03-31 07:50:17 +0000302 i32, ;; A tag
Bill Wendlinge9353d72009-05-17 05:52:39 +0000303 ...
304}
Misha Brukmanf91d9942004-05-12 19:21:57 +0000305</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000306</div>
Chris Lattner1811fca2004-01-05 05:06:33 +0000307
Jim Laskeyb2ff2d42006-06-16 13:14:03 +0000308<p><a name="LLVMDebugVersion">The first field of a descriptor is always an
Nick Lewyckya87014f2010-03-31 07:50:17 +0000309 <tt>i32</tt> containing a tag value identifying the content of the
Bill Wendlinge9353d72009-05-17 05:52:39 +0000310 descriptor. The remaining fields are specific to the descriptor. The values
311 of tags are loosely bound to the tag values of DWARF information entries.
312 However, that does not restrict the use of the information supplied to DWARF
313 targets. To facilitate versioning of debug information, the tag is augmented
Nick Lewyckyf6e37112011-07-25 21:13:23 +0000314 with the current debug version (LLVMDebugVersion = 8 &lt;&lt; 16 or
315 0x80000 or 524288.)</a></p>
Jim Laskey14edc932006-03-14 18:08:46 +0000316
Jim Laskeyb2ff2d42006-06-16 13:14:03 +0000317<p>The details of the various descriptors follow.</p>
Jim Laskey14edc932006-03-14 18:08:46 +0000318
Jim Laskey14edc932006-03-14 18:08:46 +0000319<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000320<h4>
Jim Laskey14edc932006-03-14 18:08:46 +0000321 <a name="format_compile_units">Compile unit descriptors</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000322</h4>
Jim Laskey14edc932006-03-14 18:08:46 +0000323
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000324<div>
Jim Laskey14edc932006-03-14 18:08:46 +0000325
Bill Wendlinge9353d72009-05-17 05:52:39 +0000326<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +0000327<pre>
Devang Patel80ae3492009-08-28 23:24:31 +0000328!0 = metadata !{
329 i32, ;; Tag = 17 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a>
330 ;; (DW_TAG_compile_unit)
331 i32, ;; Unused field.
332 i32, ;; DWARF language identifier (ex. DW_LANG_C89)
333 metadata, ;; Source file name
334 metadata, ;; Source file directory (includes trailing slash)
335 metadata ;; Producer (ex. "4.0.1 LLVM (LLVM research group)")
336 i1, ;; True if this is a main compile unit.
337 i1, ;; True if this is optimized.
338 metadata, ;; Flags
339 i32 ;; Runtime version
Devang Patel24a674b2011-09-09 17:07:15 +0000340 metadata ;; List of enums types
341 metadata ;; List of retained types
342 metadata ;; List of subprograms
343 metadata ;; List of global variables
Bill Wendlinge9353d72009-05-17 05:52:39 +0000344}
Jim Laskey14edc932006-03-14 18:08:46 +0000345</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000346</div>
Jim Laskey14edc932006-03-14 18:08:46 +0000347
Bill Wendlinge9353d72009-05-17 05:52:39 +0000348<p>These descriptors contain a source language ID for the file (we use the DWARF
349 3.0 ID numbers, such as <tt>DW_LANG_C89</tt>, <tt>DW_LANG_C_plus_plus</tt>,
350 <tt>DW_LANG_Cobol74</tt>, etc), three strings describing the filename,
351 working directory of the compiler, and an identifier string for the compiler
352 that produced it.</p>
Jim Laskey14edc932006-03-14 18:08:46 +0000353
Bill Wendlinge9353d72009-05-17 05:52:39 +0000354<p>Compile unit descriptors provide the root context for objects declared in a
Devang Patel09fa69e2011-05-03 16:18:28 +0000355 specific compilation unit. File descriptors are defined using this context.
356 These descriptors are collected by a named metadata
Devang Patel24a674b2011-09-09 17:07:15 +0000357 <tt>!llvm.dbg.cu</tt>. Compile unit descriptor keeps track of subprograms,
358 global variables and type information.
Jim Laskey14edc932006-03-14 18:08:46 +0000359
Devang Patel59445db2010-03-09 00:44:10 +0000360</div>
361
362<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000363<h4>
Devang Patel59445db2010-03-09 00:44:10 +0000364 <a name="format_files">File descriptors</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000365</h4>
Devang Patel59445db2010-03-09 00:44:10 +0000366
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000367<div>
Devang Patel59445db2010-03-09 00:44:10 +0000368
369<div class="doc_code">
370<pre>
371!0 = metadata !{
372 i32, ;; Tag = 41 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a>
373 ;; (DW_TAG_file_type)
374 metadata, ;; Source file name
375 metadata, ;; Source file directory (includes trailing slash)
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000376 metadata ;; Unused
Devang Patel59445db2010-03-09 00:44:10 +0000377}
378</pre>
379</div>
380
John Criswell2a4b0802010-03-17 15:01:50 +0000381<p>These descriptors contain information for a file. Global variables and top
Devang Patel59445db2010-03-09 00:44:10 +0000382 level functions would be defined using this context.k File descriptors also
383 provide context for source line correspondence. </p>
384
385<p>Each input file is encoded as a separate file descriptor in LLVM debugging
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000386 information output. </p>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000387
Jim Laskey14edc932006-03-14 18:08:46 +0000388</div>
389
390<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000391<h4>
Jim Laskey14edc932006-03-14 18:08:46 +0000392 <a name="format_global_variables">Global variable descriptors</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000393</h4>
Jim Laskey14edc932006-03-14 18:08:46 +0000394
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000395<div>
Jim Laskey14edc932006-03-14 18:08:46 +0000396
Bill Wendlinge9353d72009-05-17 05:52:39 +0000397<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +0000398<pre>
Devang Patel80ae3492009-08-28 23:24:31 +0000399!1 = metadata !{
400 i32, ;; Tag = 52 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a>
401 ;; (DW_TAG_variable)
402 i32, ;; Unused field.
403 metadata, ;; Reference to context descriptor
404 metadata, ;; Name
405 metadata, ;; Display name (fully qualified C++ name)
406 metadata, ;; MIPS linkage name (for C++)
Devang Patel59445db2010-03-09 00:44:10 +0000407 metadata, ;; Reference to file where defined
Devang Patel80ae3492009-08-28 23:24:31 +0000408 i32, ;; Line number where defined
409 metadata, ;; Reference to type descriptor
410 i1, ;; True if the global is local to compile unit (static)
411 i1, ;; True if the global is defined in the compile unit (not extern)
Dan Gohmanaabfdb32010-05-28 17:13:49 +0000412 {}* ;; Reference to the global variable
Bill Wendlinge9353d72009-05-17 05:52:39 +0000413}
Jim Laskey14edc932006-03-14 18:08:46 +0000414</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000415</div>
Jim Laskey14edc932006-03-14 18:08:46 +0000416
417<p>These descriptors provide debug information about globals variables. The
Devang Patel1c6b6812011-03-29 17:27:08 +0000418provide details such as name, type and where the variable is defined. All
419global variables are collected by named metadata <tt>!llvm.dbg.gv</tt>.</p>
Jim Laskey14edc932006-03-14 18:08:46 +0000420
421</div>
422
423<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000424<h4>
Jim Laskey14edc932006-03-14 18:08:46 +0000425 <a name="format_subprograms">Subprogram descriptors</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000426</h4>
Jim Laskey14edc932006-03-14 18:08:46 +0000427
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000428<div>
Jim Laskey14edc932006-03-14 18:08:46 +0000429
Bill Wendlinge9353d72009-05-17 05:52:39 +0000430<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +0000431<pre>
Devang Patel80ae3492009-08-28 23:24:31 +0000432!2 = metadata !{
433 i32, ;; Tag = 46 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a>
434 ;; (DW_TAG_subprogram)
435 i32, ;; Unused field.
436 metadata, ;; Reference to context descriptor
437 metadata, ;; Name
438 metadata, ;; Display name (fully qualified C++ name)
439 metadata, ;; MIPS linkage name (for C++)
Devang Patel59445db2010-03-09 00:44:10 +0000440 metadata, ;; Reference to file where defined
Devang Patel80ae3492009-08-28 23:24:31 +0000441 i32, ;; Line number where defined
442 metadata, ;; Reference to type descriptor
443 i1, ;; True if the global is local to compile unit (static)
Devang Patel1d6bbd42011-04-22 23:10:17 +0000444 i1, ;; True if the global is defined in the compile unit (not extern)
445 i32, ;; Virtuality, e.g. dwarf::DW_VIRTUALITY__virtual
446 i32, ;; Index into a virtual function
Devang Patele89b7592010-06-04 22:49:55 +0000447 metadata, ;; indicates which base type contains the vtable pointer for the
448 ;; derived class
Devang Patelc16e1ed2011-12-16 17:50:04 +0000449 i32, ;; Flags - Artifical, Private, Protected, Explicit, Prototyped.
Devang Patel1d6bbd42011-04-22 23:10:17 +0000450 i1, ;; isOptimized
451 Function *,;; Pointer to LLVM function
452 metadata, ;; Lists function template parameters
453 metadata ;; Function declaration descriptor
Devang Patel59e27c52011-08-19 23:28:12 +0000454 metadata ;; List of function variables
Bill Wendlinge9353d72009-05-17 05:52:39 +0000455}
Jim Laskey14edc932006-03-14 18:08:46 +0000456</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000457</div>
Jim Laskey14edc932006-03-14 18:08:46 +0000458
459<p>These descriptors provide debug information about functions, methods and
Bill Wendlinge9353d72009-05-17 05:52:39 +0000460 subprograms. They provide details such as name, return types and the source
Devang Patel1c6b6812011-03-29 17:27:08 +0000461 location where the subprogram is defined.
462 All subprogram descriptors are collected by a named metadata
463 <tt>!llvm.dbg.sp</tt>.
464</p>
Jim Laskey9dcffe72006-03-15 19:10:52 +0000465
466</div>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000467
Jim Laskey9dcffe72006-03-15 19:10:52 +0000468<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000469<h4>
Jim Laskey9dcffe72006-03-15 19:10:52 +0000470 <a name="format_blocks">Block descriptors</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000471</h4>
Jim Laskey9dcffe72006-03-15 19:10:52 +0000472
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000473<div>
Jim Laskey9dcffe72006-03-15 19:10:52 +0000474
Bill Wendlinge9353d72009-05-17 05:52:39 +0000475<div class="doc_code">
Jim Laskey9dcffe72006-03-15 19:10:52 +0000476<pre>
Devang Patel80ae3492009-08-28 23:24:31 +0000477!3 = metadata !{
Devang Patel9fbc6802010-10-04 16:51:59 +0000478 i32, ;; Tag = 11 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a> (DW_TAG_lexical_block)
Devang Patelcac38902010-10-01 22:45:00 +0000479 metadata,;; Reference to context descriptor
480 i32, ;; Line number
Devang Patelfb30b852011-03-08 16:25:29 +0000481 i32, ;; Column number
482 metadata,;; Reference to source file
483 i32 ;; Unique ID to identify blocks from a template function
Bill Wendlinge9353d72009-05-17 05:52:39 +0000484}
Jim Laskey9dcffe72006-03-15 19:10:52 +0000485</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000486</div>
Jim Laskey9dcffe72006-03-15 19:10:52 +0000487
Eric Christopher6647b832011-10-11 22:59:11 +0000488<p>This descriptor provides debug information about nested blocks within a
Devang Patelcac38902010-10-01 22:45:00 +0000489 subprogram. The line number and column numbers are used to dinstinguish
490 two lexical blocks at same depth. </p>
Jim Laskey9dcffe72006-03-15 19:10:52 +0000491
Eric Christopher6647b832011-10-11 22:59:11 +0000492<div class="doc_code">
493<pre>
494!3 = metadata !{
495 i32, ;; Tag = 11 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a> (DW_TAG_lexical_block)
496 metadata ;; Reference to the scope we're annotating with a file change
497 metadata,;; Reference to the file the scope is enclosed in.
498}
499</pre>
500</div>
501
502<p>This descriptor provides a wrapper around a lexical scope to handle file
503 changes in the middle of a lexical block.</p>
504
Jim Laskey14edc932006-03-14 18:08:46 +0000505</div>
506
507<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000508<h4>
Jim Laskey14edc932006-03-14 18:08:46 +0000509 <a name="format_basic_type">Basic type descriptors</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000510</h4>
Jim Laskey14edc932006-03-14 18:08:46 +0000511
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000512<div>
Jim Laskey14edc932006-03-14 18:08:46 +0000513
Bill Wendlinge9353d72009-05-17 05:52:39 +0000514<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +0000515<pre>
Devang Patel80ae3492009-08-28 23:24:31 +0000516!4 = metadata !{
517 i32, ;; Tag = 36 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a>
518 ;; (DW_TAG_base_type)
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000519 metadata, ;; Reference to context
Devang Patel80ae3492009-08-28 23:24:31 +0000520 metadata, ;; Name (may be "" for anonymous types)
Devang Patel59445db2010-03-09 00:44:10 +0000521 metadata, ;; Reference to file where defined (may be NULL)
Devang Patel80ae3492009-08-28 23:24:31 +0000522 i32, ;; Line number where defined (may be 0)
523 i64, ;; Size in bits
524 i64, ;; Alignment in bits
525 i64, ;; Offset in bits
526 i32, ;; Flags
527 i32 ;; DWARF type encoding
Bill Wendlinge9353d72009-05-17 05:52:39 +0000528}
Jim Laskey14edc932006-03-14 18:08:46 +0000529</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000530</div>
Jim Laskey14edc932006-03-14 18:08:46 +0000531
532<p>These descriptors define primitive types used in the code. Example int, bool
Bill Wendlinge9353d72009-05-17 05:52:39 +0000533 and float. The context provides the scope of the type, which is usually the
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000534 top level. Since basic types are not usually user defined the context
Bill Wendlinge9353d72009-05-17 05:52:39 +0000535 and line number can be left as NULL and 0. The size, alignment and offset
536 are expressed in bits and can be 64 bit values. The alignment is used to
537 round the offset when embedded in a
538 <a href="#format_composite_type">composite type</a> (example to keep float
539 doubles on 64 bit boundaries.) The offset is the bit offset if embedded in
540 a <a href="#format_composite_type">composite type</a>.</p>
Jim Laskey14edc932006-03-14 18:08:46 +0000541
542<p>The type encoding provides the details of the type. The values are typically
Bill Wendlinge9353d72009-05-17 05:52:39 +0000543 one of the following:</p>
Jim Laskey14edc932006-03-14 18:08:46 +0000544
Bill Wendlinge9353d72009-05-17 05:52:39 +0000545<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +0000546<pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000547DW_ATE_address = 1
548DW_ATE_boolean = 2
549DW_ATE_float = 4
550DW_ATE_signed = 5
551DW_ATE_signed_char = 6
552DW_ATE_unsigned = 7
553DW_ATE_unsigned_char = 8
Jim Laskey14edc932006-03-14 18:08:46 +0000554</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000555</div>
Jim Laskey14edc932006-03-14 18:08:46 +0000556
557</div>
558
559<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000560<h4>
Jim Laskey14edc932006-03-14 18:08:46 +0000561 <a name="format_derived_type">Derived type descriptors</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000562</h4>
Jim Laskey14edc932006-03-14 18:08:46 +0000563
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000564<div>
Jim Laskey14edc932006-03-14 18:08:46 +0000565
Bill Wendlinge9353d72009-05-17 05:52:39 +0000566<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +0000567<pre>
Devang Patel80ae3492009-08-28 23:24:31 +0000568!5 = metadata !{
569 i32, ;; Tag (see below)
570 metadata, ;; Reference to context
571 metadata, ;; Name (may be "" for anonymous types)
Devang Patel59445db2010-03-09 00:44:10 +0000572 metadata, ;; Reference to file where defined (may be NULL)
Devang Patel80ae3492009-08-28 23:24:31 +0000573 i32, ;; Line number where defined (may be 0)
Devang Patelbed5e7d2010-10-01 19:19:30 +0000574 i64, ;; Size in bits
575 i64, ;; Alignment in bits
576 i64, ;; Offset in bits
Eric Christopher3e3ecd02011-12-16 23:42:33 +0000577 i32, ;; Flags to encode attributes, e.g. private
Devang Patel514b4002011-04-16 00:11:51 +0000578 metadata, ;; Reference to type derived from
579 metadata, ;; (optional) Name of the Objective C property assoicated with
580 ;; Objective-C an ivar
581 metadata, ;; (optional) Name of the Objective C property getter selector.
582 metadata, ;; (optional) Name of the Objective C property setter selector.
583 i32 ;; (optional) Objective C property attributes.
Bill Wendlinge9353d72009-05-17 05:52:39 +0000584}
Jim Laskey14edc932006-03-14 18:08:46 +0000585</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000586</div>
Jim Laskey14edc932006-03-14 18:08:46 +0000587
588<p>These descriptors are used to define types derived from other types. The
589value of the tag varies depending on the meaning. The following are possible
Misha Brukman39dcddf2008-12-16 02:54:22 +0000590tag values:</p>
Jim Laskey14edc932006-03-14 18:08:46 +0000591
Bill Wendlinge9353d72009-05-17 05:52:39 +0000592<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +0000593<pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000594DW_TAG_formal_parameter = 5
595DW_TAG_member = 13
596DW_TAG_pointer_type = 15
597DW_TAG_reference_type = 16
598DW_TAG_typedef = 22
599DW_TAG_const_type = 38
600DW_TAG_volatile_type = 53
601DW_TAG_restrict_type = 55
Jim Laskey14edc932006-03-14 18:08:46 +0000602</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000603</div>
Jim Laskey14edc932006-03-14 18:08:46 +0000604
Bill Wendlinge9353d72009-05-17 05:52:39 +0000605<p><tt>DW_TAG_member</tt> is used to define a member of
606 a <a href="#format_composite_type">composite type</a>
607 or <a href="#format_subprograms">subprogram</a>. The type of the member is
608 the <a href="#format_derived_type">derived
609 type</a>. <tt>DW_TAG_formal_parameter</tt> is used to define a member which
610 is a formal argument of a subprogram.</p>
Jim Laskey14edc932006-03-14 18:08:46 +0000611
Bill Wendlinge9353d72009-05-17 05:52:39 +0000612<p><tt>DW_TAG_typedef</tt> is used to provide a name for the derived type.</p>
Jim Laskey14edc932006-03-14 18:08:46 +0000613
Bill Wendlinge9353d72009-05-17 05:52:39 +0000614<p><tt>DW_TAG_pointer_type</tt>,<tt>DW_TAG_reference_type</tt>,
615 <tt>DW_TAG_const_type</tt>, <tt>DW_TAG_volatile_type</tt>
616 and <tt>DW_TAG_restrict_type</tt> are used to qualify
617 the <a href="#format_derived_type">derived type</a>. </p>
Jim Laskey14edc932006-03-14 18:08:46 +0000618
619<p><a href="#format_derived_type">Derived type</a> location can be determined
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000620 from the context and line number. The size, alignment and offset are
Bill Wendlinge9353d72009-05-17 05:52:39 +0000621 expressed in bits and can be 64 bit values. The alignment is used to round
622 the offset when embedded in a <a href="#format_composite_type">composite
623 type</a> (example to keep float doubles on 64 bit boundaries.) The offset is
624 the bit offset if embedded in a <a href="#format_composite_type">composite
625 type</a>.</p>
Jim Laskey14edc932006-03-14 18:08:46 +0000626
Devang Patel7846c1e2011-02-03 00:22:17 +0000627<p>Note that the <tt>void *</tt> type is expressed as a type derived from NULL.
628</p>
Jim Laskey14edc932006-03-14 18:08:46 +0000629
630</div>
631
632<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000633<h4>
Jim Laskey14edc932006-03-14 18:08:46 +0000634 <a name="format_composite_type">Composite type descriptors</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000635</h4>
Jim Laskey14edc932006-03-14 18:08:46 +0000636
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000637<div>
Jim Laskey14edc932006-03-14 18:08:46 +0000638
Bill Wendlinge9353d72009-05-17 05:52:39 +0000639<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +0000640<pre>
Devang Patel80ae3492009-08-28 23:24:31 +0000641!6 = metadata !{
642 i32, ;; Tag (see below)
643 metadata, ;; Reference to context
644 metadata, ;; Name (may be "" for anonymous types)
Devang Patel59445db2010-03-09 00:44:10 +0000645 metadata, ;; Reference to file where defined (may be NULL)
Devang Patel80ae3492009-08-28 23:24:31 +0000646 i32, ;; Line number where defined (may be 0)
647 i64, ;; Size in bits
648 i64, ;; Alignment in bits
649 i64, ;; Offset in bits
650 i32, ;; Flags
651 metadata, ;; Reference to type derived from
652 metadata, ;; Reference to array of member descriptors
653 i32 ;; Runtime languages
Bill Wendlinge9353d72009-05-17 05:52:39 +0000654}
Jim Laskey14edc932006-03-14 18:08:46 +0000655</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000656</div>
Jim Laskey14edc932006-03-14 18:08:46 +0000657
658<p>These descriptors are used to define types that are composed of 0 or more
659elements. The value of the tag varies depending on the meaning. The following
Misha Brukman39dcddf2008-12-16 02:54:22 +0000660are possible tag values:</p>
Jim Laskey14edc932006-03-14 18:08:46 +0000661
Bill Wendlinge9353d72009-05-17 05:52:39 +0000662<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +0000663<pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000664DW_TAG_array_type = 1
665DW_TAG_enumeration_type = 4
666DW_TAG_structure_type = 19
667DW_TAG_union_type = 23
668DW_TAG_vector_type = 259
Bruno Cardoso Lopes9d809ca2009-05-29 17:08:57 +0000669DW_TAG_subroutine_type = 21
670DW_TAG_inheritance = 28
Jim Laskey14edc932006-03-14 18:08:46 +0000671</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000672</div>
Jim Laskey14edc932006-03-14 18:08:46 +0000673
Jim Laskey19f964e2006-06-15 20:51:43 +0000674<p>The vector flag indicates that an array type is a native packed vector.</p>
675
Jim Laskeyb2ff2d42006-06-16 13:14:03 +0000676<p>The members of array types (tag = <tt>DW_TAG_array_type</tt>) or vector types
Bill Wendlinge9353d72009-05-17 05:52:39 +0000677 (tag = <tt>DW_TAG_vector_type</tt>) are <a href="#format_subrange">subrange
678 descriptors</a>, each representing the range of subscripts at that level of
679 indexing.</p>
Jim Laskey14edc932006-03-14 18:08:46 +0000680
681<p>The members of enumeration types (tag = <tt>DW_TAG_enumeration_type</tt>) are
Bill Wendlinge9353d72009-05-17 05:52:39 +0000682 <a href="#format_enumeration">enumerator descriptors</a>, each representing
Devang Patel1c6b6812011-03-29 17:27:08 +0000683 the definition of enumeration value for the set. All enumeration type
684 descriptors are collected by named metadata <tt>!llvm.dbg.enum</tt>.</p>
Jim Laskey14edc932006-03-14 18:08:46 +0000685
686<p>The members of structure (tag = <tt>DW_TAG_structure_type</tt>) or union (tag
Bill Wendlinge9353d72009-05-17 05:52:39 +0000687 = <tt>DW_TAG_union_type</tt>) types are any one of
688 the <a href="#format_basic_type">basic</a>,
689 <a href="#format_derived_type">derived</a>
690 or <a href="#format_composite_type">composite</a> type descriptors, each
691 representing a field member of the structure or union.</p>
Jim Laskey14edc932006-03-14 18:08:46 +0000692
Jim Laskey4771cca2006-08-21 21:21:06 +0000693<p>For C++ classes (tag = <tt>DW_TAG_structure_type</tt>), member descriptors
Bill Wendlinge9353d72009-05-17 05:52:39 +0000694 provide information about base classes, static members and member
695 functions. If a member is a <a href="#format_derived_type">derived type
696 descriptor</a> and has a tag of <tt>DW_TAG_inheritance</tt>, then the type
697 represents a base class. If the member of is
698 a <a href="#format_global_variables">global variable descriptor</a> then it
699 represents a static member. And, if the member is
700 a <a href="#format_subprograms">subprogram descriptor</a> then it represents
701 a member function. For static members and member
702 functions, <tt>getName()</tt> returns the members link or the C++ mangled
703 name. <tt>getDisplayName()</tt> the simplied version of the name.</p>
Jim Laskey4771cca2006-08-21 21:21:06 +0000704
Bill Wendlinge9353d72009-05-17 05:52:39 +0000705<p>The first member of subroutine (tag = <tt>DW_TAG_subroutine_type</tt>) type
706 elements is the return type for the subroutine. The remaining elements are
707 the formal arguments to the subroutine.</p>
Jim Laskey4810c262006-06-20 21:13:20 +0000708
Jim Laskey14edc932006-03-14 18:08:46 +0000709<p><a href="#format_composite_type">Composite type</a> location can be
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000710 determined from the context and line number. The size, alignment and
Bill Wendlinge9353d72009-05-17 05:52:39 +0000711 offset are expressed in bits and can be 64 bit values. The alignment is used
712 to round the offset when embedded in
713 a <a href="#format_composite_type">composite type</a> (as an example, to keep
714 float doubles on 64 bit boundaries.) The offset is the bit offset if embedded
715 in a <a href="#format_composite_type">composite type</a>.</p>
Jim Laskey14edc932006-03-14 18:08:46 +0000716
717</div>
718
719<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000720<h4>
Jim Laskey14edc932006-03-14 18:08:46 +0000721 <a name="format_subrange">Subrange descriptors</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000722</h4>
Jim Laskey14edc932006-03-14 18:08:46 +0000723
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000724<div>
Jim Laskey14edc932006-03-14 18:08:46 +0000725
Bill Wendlinge9353d72009-05-17 05:52:39 +0000726<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +0000727<pre>
Devang Patel7846c1e2011-02-03 00:22:17 +0000728!42 = metadata !{
Bill Wendlinge9353d72009-05-17 05:52:39 +0000729 i32, ;; Tag = 33 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a> (DW_TAG_subrange_type)
730 i64, ;; Low value
731 i64 ;; High value
732}
Jim Laskey14edc932006-03-14 18:08:46 +0000733</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000734</div>
Jim Laskey14edc932006-03-14 18:08:46 +0000735
736<p>These descriptors are used to define ranges of array subscripts for an array
Bill Wendlinge9353d72009-05-17 05:52:39 +0000737 <a href="#format_composite_type">composite type</a>. The low value defines
738 the lower bounds typically zero for C/C++. The high value is the upper
739 bounds. Values are 64 bit. High - low + 1 is the size of the array. If low
Devang Patel778947c2011-04-08 23:39:38 +0000740 > high the array bounds are not included in generated debugging information.
741</p>
Jim Laskey14edc932006-03-14 18:08:46 +0000742
743</div>
744
745<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000746<h4>
Jim Laskey14edc932006-03-14 18:08:46 +0000747 <a name="format_enumeration">Enumerator descriptors</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000748</h4>
Jim Laskey14edc932006-03-14 18:08:46 +0000749
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000750<div>
Jim Laskey14edc932006-03-14 18:08:46 +0000751
Bill Wendlinge9353d72009-05-17 05:52:39 +0000752<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +0000753<pre>
Devang Patel80ae3492009-08-28 23:24:31 +0000754!6 = metadata !{
755 i32, ;; Tag = 40 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a>
756 ;; (DW_TAG_enumerator)
757 metadata, ;; Name
758 i64 ;; Value
Bill Wendlinge9353d72009-05-17 05:52:39 +0000759}
Jim Laskey14edc932006-03-14 18:08:46 +0000760</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000761</div>
Jim Laskey14edc932006-03-14 18:08:46 +0000762
Bill Wendlinge9353d72009-05-17 05:52:39 +0000763<p>These descriptors are used to define members of an
764 enumeration <a href="#format_composite_type">composite type</a>, it
765 associates the name to the value.</p>
Jim Laskey14edc932006-03-14 18:08:46 +0000766
767</div>
768
769<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000770<h4>
Jim Laskey5dcfd562006-03-23 17:54:33 +0000771 <a name="format_variables">Local variables</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000772</h4>
Jim Laskey5dcfd562006-03-23 17:54:33 +0000773
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000774<div>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000775
776<div class="doc_code">
Jim Laskey5dcfd562006-03-23 17:54:33 +0000777<pre>
Devang Patel80ae3492009-08-28 23:24:31 +0000778!7 = metadata !{
779 i32, ;; Tag (see below)
780 metadata, ;; Context
781 metadata, ;; Name
Devang Patel59445db2010-03-09 00:44:10 +0000782 metadata, ;; Reference to file where defined
Devang Patele1aa67c2011-03-08 16:29:40 +0000783 i32, ;; 24 bit - Line number where defined
784 ;; 8 bit - Argument number. 1 indicates 1st argument.
Devang Patelac0a1f62011-07-27 18:14:50 +0000785 metadata, ;; Type descriptor
786 i32, ;; flags
787 metadata ;; (optional) Reference to inline location
Bill Wendlinge9353d72009-05-17 05:52:39 +0000788}
Jim Laskey5dcfd562006-03-23 17:54:33 +0000789</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000790</div>
Jim Laskey5dcfd562006-03-23 17:54:33 +0000791
792<p>These descriptors are used to define variables local to a sub program. The
Bill Wendlinge9353d72009-05-17 05:52:39 +0000793 value of the tag depends on the usage of the variable:</p>
Jim Laskey5dcfd562006-03-23 17:54:33 +0000794
Bill Wendlinge9353d72009-05-17 05:52:39 +0000795<div class="doc_code">
Jim Laskey5dcfd562006-03-23 17:54:33 +0000796<pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000797DW_TAG_auto_variable = 256
798DW_TAG_arg_variable = 257
799DW_TAG_return_variable = 258
Jim Laskey5dcfd562006-03-23 17:54:33 +0000800</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000801</div>
Jim Laskey5dcfd562006-03-23 17:54:33 +0000802
803<p>An auto variable is any variable declared in the body of the function. An
Bill Wendlinge9353d72009-05-17 05:52:39 +0000804 argument variable is any variable that appears as a formal argument to the
805 function. A return variable is used to track the result of a function and
806 has no source correspondent.</p>
Jim Laskey5dcfd562006-03-23 17:54:33 +0000807
Jim Laskey3481e122006-03-24 09:20:27 +0000808<p>The context is either the subprogram or block where the variable is defined.
Devang Pateleb1bb4e2011-08-16 22:09:43 +0000809 Name the source variable name. Context and line indicate where the
Bill Wendlinge9353d72009-05-17 05:52:39 +0000810 variable was defined. Type descriptor defines the declared type of the
811 variable.</p>
Jim Laskey5dcfd562006-03-23 17:54:33 +0000812
813</div>
814
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000815</div>
816
Jim Laskey5dcfd562006-03-23 17:54:33 +0000817<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000818<h3>
Jim Laskey14edc932006-03-14 18:08:46 +0000819 <a name="format_common_intrinsics">Debugger intrinsic functions</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000820</h3>
Jim Laskey14edc932006-03-14 18:08:46 +0000821
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000822<div>
Jim Laskey14edc932006-03-14 18:08:46 +0000823
824<p>LLVM uses several intrinsic functions (name prefixed with "llvm.dbg") to
Bill Wendlinge9353d72009-05-17 05:52:39 +0000825 provide debug information at various points in generated code.</p>
Jim Laskey14edc932006-03-14 18:08:46 +0000826
Jim Laskey14edc932006-03-14 18:08:46 +0000827<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000828<h4>
Jim Laskey14edc932006-03-14 18:08:46 +0000829 <a name="format_common_declare">llvm.dbg.declare</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000830</h4>
Jim Laskey14edc932006-03-14 18:08:46 +0000831
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000832<div>
Jim Laskey14edc932006-03-14 18:08:46 +0000833<pre>
Devang Patel6df452c2010-10-01 19:22:16 +0000834 void %<a href="#format_common_declare">llvm.dbg.declare</a>(metadata, metadata)
Jim Laskey14edc932006-03-14 18:08:46 +0000835</pre>
836
Jim Laskey3481e122006-03-24 09:20:27 +0000837<p>This intrinsic provides information about a local element (ex. variable.) The
NAKAMURA Takumi6bd36d52011-04-09 09:51:57 +0000838 first argument is metadata holding alloca for the variable. The
Devang Patel9a8539c2011-02-01 17:22:12 +0000839 second argument is metadata containing description of the variable. </p>
Jim Laskey14edc932006-03-14 18:08:46 +0000840</div>
841
842<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000843<h4>
Victor Hernandez0b62cc62010-01-11 22:53:48 +0000844 <a name="format_common_value">llvm.dbg.value</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000845</h4>
Victor Hernandez0b62cc62010-01-11 22:53:48 +0000846
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000847<div>
Victor Hernandez0b62cc62010-01-11 22:53:48 +0000848<pre>
Dan Gohmand6a6f612010-05-28 17:07:41 +0000849 void %<a href="#format_common_value">llvm.dbg.value</a>(metadata, i64, metadata)
Victor Hernandez0b62cc62010-01-11 22:53:48 +0000850</pre>
851
852<p>This intrinsic provides information when a user source variable is set to a
853 new value. The first argument is the new value (wrapped as metadata). The
854 second argument is the offset in the user source variable where the new value
Devang Patel9a8539c2011-02-01 17:22:12 +0000855 is written. The third argument is metadata containing description of the
856 user source variable. </p>
Victor Hernandez0b62cc62010-01-11 22:53:48 +0000857</div>
858
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000859</div>
860
Victor Hernandez0b62cc62010-01-11 22:53:48 +0000861<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000862<h3>
Chris Lattner941515c2004-01-06 05:31:32 +0000863 <a name="format_common_lifetime">Object lifetimes and scoping</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +0000864</h3>
Chris Lattner1811fca2004-01-05 05:06:33 +0000865
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +0000866<div>
Bill Wendling991b84e2009-12-01 00:53:11 +0000867<p>In many languages, the local variables in functions can have their lifetimes
868 or scopes limited to a subset of a function. In the C family of languages,
Bill Wendlinge9353d72009-05-17 05:52:39 +0000869 for example, variables are only live (readable and writable) within the
870 source block that they are defined in. In functional languages, values are
871 only readable after they have been defined. Though this is a very obvious
Bill Wendling991b84e2009-12-01 00:53:11 +0000872 concept, it is non-trivial to model in LLVM, because it has no notion of
Bill Wendlinge9353d72009-05-17 05:52:39 +0000873 scoping in this sense, and does not want to be tied to a language's scoping
874 rules.</p>
Chris Lattner1811fca2004-01-05 05:06:33 +0000875
Bill Wendling991b84e2009-12-01 00:53:11 +0000876<p>In order to handle this, the LLVM debug format uses the metadata attached to
Nick Lewyckya87014f2010-03-31 07:50:17 +0000877 llvm instructions to encode line number and scoping information. Consider
878 the following C fragment, for example:</p>
Chris Lattner1811fca2004-01-05 05:06:33 +0000879
Bill Wendlinge9353d72009-05-17 05:52:39 +0000880<div class="doc_code">
Misha Brukmanf91d9942004-05-12 19:21:57 +0000881<pre>
Chris Lattner1811fca2004-01-05 05:06:33 +00008821. void foo() {
Devang Patel4da997b2009-11-25 23:28:01 +00008832. int X = 21;
8843. int Y = 22;
Chris Lattner1811fca2004-01-05 05:06:33 +00008854. {
Devang Patel4da997b2009-11-25 23:28:01 +00008865. int Z = 23;
8876. Z = X;
Chris Lattner1811fca2004-01-05 05:06:33 +00008887. }
Devang Patel4da997b2009-11-25 23:28:01 +00008898. X = Y;
Chris Lattner1811fca2004-01-05 05:06:33 +00008909. }
Misha Brukmanf91d9942004-05-12 19:21:57 +0000891</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000892</div>
Chris Lattner1811fca2004-01-05 05:06:33 +0000893
Jim Laskey14edc932006-03-14 18:08:46 +0000894<p>Compiled to LLVM, this function would be represented like this:</p>
Chris Lattner1811fca2004-01-05 05:06:33 +0000895
Bill Wendlinge9353d72009-05-17 05:52:39 +0000896<div class="doc_code">
Misha Brukmanf91d9942004-05-12 19:21:57 +0000897<pre>
Bill Wendling991b84e2009-12-01 00:53:11 +0000898define void @foo() nounwind ssp {
Jim Laskey14edc932006-03-14 18:08:46 +0000899entry:
Bill Wendling05252352009-12-01 00:59:58 +0000900 %X = alloca i32, align 4 ; &lt;i32*&gt; [#uses=4]
901 %Y = alloca i32, align 4 ; &lt;i32*&gt; [#uses=4]
902 %Z = alloca i32, align 4 ; &lt;i32*&gt; [#uses=3]
Dan Gohmanaabfdb32010-05-28 17:13:49 +0000903 %0 = bitcast i32* %X to {}* ; &lt;{}*&gt; [#uses=1]
Devang Patel7846c1e2011-02-03 00:22:17 +0000904 call void @llvm.dbg.declare(metadata !{i32 * %X}, metadata !0), !dbg !7
Devang Patel4da997b2009-11-25 23:28:01 +0000905 store i32 21, i32* %X, !dbg !8
Dan Gohmanaabfdb32010-05-28 17:13:49 +0000906 %1 = bitcast i32* %Y to {}* ; &lt;{}*&gt; [#uses=1]
Devang Patel7846c1e2011-02-03 00:22:17 +0000907 call void @llvm.dbg.declare(metadata !{i32 * %Y}, metadata !9), !dbg !10
Devang Patel4da997b2009-11-25 23:28:01 +0000908 store i32 22, i32* %Y, !dbg !11
Dan Gohmanaabfdb32010-05-28 17:13:49 +0000909 %2 = bitcast i32* %Z to {}* ; &lt;{}*&gt; [#uses=1]
Devang Patel7846c1e2011-02-03 00:22:17 +0000910 call void @llvm.dbg.declare(metadata !{i32 * %Z}, metadata !12), !dbg !14
Devang Patel4da997b2009-11-25 23:28:01 +0000911 store i32 23, i32* %Z, !dbg !15
Bill Wendling05252352009-12-01 00:59:58 +0000912 %tmp = load i32* %X, !dbg !16 ; &lt;i32&gt; [#uses=1]
913 %tmp1 = load i32* %Y, !dbg !16 ; &lt;i32&gt; [#uses=1]
914 %add = add nsw i32 %tmp, %tmp1, !dbg !16 ; &lt;i32&gt; [#uses=1]
Devang Patel4da997b2009-11-25 23:28:01 +0000915 store i32 %add, i32* %Z, !dbg !16
Bill Wendling05252352009-12-01 00:59:58 +0000916 %tmp2 = load i32* %Y, !dbg !17 ; &lt;i32&gt; [#uses=1]
Devang Patel4da997b2009-11-25 23:28:01 +0000917 store i32 %tmp2, i32* %X, !dbg !17
918 ret void, !dbg !18
Chris Lattner1811fca2004-01-05 05:06:33 +0000919}
Devang Patel4da997b2009-11-25 23:28:01 +0000920
Devang Patel7846c1e2011-02-03 00:22:17 +0000921declare void @llvm.dbg.declare(metadata, metadata) nounwind readnone
Devang Patel4da997b2009-11-25 23:28:01 +0000922
923!0 = metadata !{i32 459008, metadata !1, metadata !"X",
924 metadata !3, i32 2, metadata !6}; [ DW_TAG_auto_variable ]
925!1 = metadata !{i32 458763, metadata !2}; [DW_TAG_lexical_block ]
926!2 = metadata !{i32 458798, i32 0, metadata !3, metadata !"foo", metadata !"foo",
927 metadata !"foo", metadata !3, i32 1, metadata !4,
928 i1 false, i1 true}; [DW_TAG_subprogram ]
929!3 = metadata !{i32 458769, i32 0, i32 12, metadata !"foo.c",
930 metadata !"/private/tmp", metadata !"clang 1.1", i1 true,
931 i1 false, metadata !"", i32 0}; [DW_TAG_compile_unit ]
932!4 = metadata !{i32 458773, metadata !3, metadata !"", null, i32 0, i64 0, i64 0,
933 i64 0, i32 0, null, metadata !5, i32 0}; [DW_TAG_subroutine_type ]
934!5 = metadata !{null}
935!6 = metadata !{i32 458788, metadata !3, metadata !"int", metadata !3, i32 0,
936 i64 32, i64 32, i64 0, i32 0, i32 5}; [DW_TAG_base_type ]
937!7 = metadata !{i32 2, i32 7, metadata !1, null}
938!8 = metadata !{i32 2, i32 3, metadata !1, null}
939!9 = metadata !{i32 459008, metadata !1, metadata !"Y", metadata !3, i32 3,
940 metadata !6}; [ DW_TAG_auto_variable ]
941!10 = metadata !{i32 3, i32 7, metadata !1, null}
942!11 = metadata !{i32 3, i32 3, metadata !1, null}
943!12 = metadata !{i32 459008, metadata !13, metadata !"Z", metadata !3, i32 5,
944 metadata !6}; [ DW_TAG_auto_variable ]
945!13 = metadata !{i32 458763, metadata !1}; [DW_TAG_lexical_block ]
946!14 = metadata !{i32 5, i32 9, metadata !13, null}
947!15 = metadata !{i32 5, i32 5, metadata !13, null}
948!16 = metadata !{i32 6, i32 5, metadata !13, null}
949!17 = metadata !{i32 8, i32 3, metadata !1, null}
950!18 = metadata !{i32 9, i32 1, metadata !2, null}
Misha Brukmanf91d9942004-05-12 19:21:57 +0000951</pre>
Chris Lattner1811fca2004-01-05 05:06:33 +0000952</div>
953
Bill Wendling991b84e2009-12-01 00:53:11 +0000954<p>This example illustrates a few important details about LLVM debugging
955 information. In particular, it shows how the <tt>llvm.dbg.declare</tt>
956 intrinsic and location information, which are attached to an instruction,
957 are applied together to allow a debugger to analyze the relationship between
958 statements, variable definitions, and the code used to implement the
959 function.</p>
Chris Lattner1811fca2004-01-05 05:06:33 +0000960
Bill Wendling991b84e2009-12-01 00:53:11 +0000961<div class="doc_code">
Bill Wendling05252352009-12-01 00:59:58 +0000962<pre>
Devang Patel7846c1e2011-02-03 00:22:17 +0000963call void @llvm.dbg.declare(metadata, metadata !0), !dbg !7
Bill Wendling991b84e2009-12-01 00:53:11 +0000964</pre>
965</div>
966
967<p>The first intrinsic
Devang Patel4da997b2009-11-25 23:28:01 +0000968 <tt>%<a href="#format_common_declare">llvm.dbg.declare</a></tt>
Bill Wendling991b84e2009-12-01 00:53:11 +0000969 encodes debugging information for the variable <tt>X</tt>. The metadata
970 <tt>!dbg !7</tt> attached to the intrinsic provides scope information for the
971 variable <tt>X</tt>.</p>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000972
Bill Wendling991b84e2009-12-01 00:53:11 +0000973<div class="doc_code">
974<pre>
975!7 = metadata !{i32 2, i32 7, metadata !1, null}
976!1 = metadata !{i32 458763, metadata !2}; [DW_TAG_lexical_block ]
977!2 = metadata !{i32 458798, i32 0, metadata !3, metadata !"foo",
978 metadata !"foo", metadata !"foo", metadata !3, i32 1,
979 metadata !4, i1 false, i1 true}; [DW_TAG_subprogram ]
980</pre>
981</div>
982
983<p>Here <tt>!7</tt> is metadata providing location information. It has four
984 fields: line number, column number, scope, and original scope. The original
985 scope represents inline location if this instruction is inlined inside a
986 caller, and is null otherwise. In this example, scope is encoded by
Devang Patel4da997b2009-11-25 23:28:01 +0000987 <tt>!1</tt>. <tt>!1</tt> represents a lexical block inside the scope
988 <tt>!2</tt>, where <tt>!2</tt> is a
Bill Wendling991b84e2009-12-01 00:53:11 +0000989 <a href="#format_subprograms">subprogram descriptor</a>. This way the
990 location information attached to the intrinsics indicates that the
991 variable <tt>X</tt> is declared at line number 2 at a function level scope in
992 function <tt>foo</tt>.</p>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000993
Devang Patel4da997b2009-11-25 23:28:01 +0000994<p>Now lets take another example.</p>
Bill Wendlinge9353d72009-05-17 05:52:39 +0000995
Bill Wendling991b84e2009-12-01 00:53:11 +0000996<div class="doc_code">
Bill Wendling05252352009-12-01 00:59:58 +0000997<pre>
Devang Patel7846c1e2011-02-03 00:22:17 +0000998call void @llvm.dbg.declare(metadata, metadata !12), !dbg !14
Bill Wendling991b84e2009-12-01 00:53:11 +0000999</pre>
1000</div>
1001
1002<p>The second intrinsic
Devang Patel4da997b2009-11-25 23:28:01 +00001003 <tt>%<a href="#format_common_declare">llvm.dbg.declare</a></tt>
Bill Wendling991b84e2009-12-01 00:53:11 +00001004 encodes debugging information for variable <tt>Z</tt>. The metadata
1005 <tt>!dbg !14</tt> attached to the intrinsic provides scope information for
1006 the variable <tt>Z</tt>.</p>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001007
Bill Wendling991b84e2009-12-01 00:53:11 +00001008<div class="doc_code">
1009<pre>
1010!13 = metadata !{i32 458763, metadata !1}; [DW_TAG_lexical_block ]
1011!14 = metadata !{i32 5, i32 9, metadata !13, null}
1012</pre>
1013</div>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001014
John Criswell2a4b0802010-03-17 15:01:50 +00001015<p>Here <tt>!14</tt> indicates that <tt>Z</tt> is declared at line number 5 and
Bill Wendling991b84e2009-12-01 00:53:11 +00001016 column number 9 inside of lexical scope <tt>!13</tt>. The lexical scope
1017 itself resides inside of lexical scope <tt>!1</tt> described above.</p>
1018
1019<p>The scope information attached with each instruction provides a
1020 straightforward way to find instructions covered by a scope.</p>
1021
Bill Wendlinge9353d72009-05-17 05:52:39 +00001022</div>
Chris Lattner1811fca2004-01-05 05:06:33 +00001023
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001024</div>
1025
Chris Lattner1811fca2004-01-05 05:06:33 +00001026<!-- *********************************************************************** -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001027<h2>
Chris Lattner941515c2004-01-06 05:31:32 +00001028 <a name="ccxx_frontend">C/C++ front-end specific debug information</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001029</h2>
Misha Brukmancda6a9b2004-12-09 20:27:37 +00001030<!-- *********************************************************************** -->
Chris Lattner1811fca2004-01-05 05:06:33 +00001031
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001032<div>
Chris Lattner1811fca2004-01-05 05:06:33 +00001033
Misha Brukmanf91d9942004-05-12 19:21:57 +00001034<p>The C and C++ front-ends represent information about the program in a format
Bill Wendlinge9353d72009-05-17 05:52:39 +00001035 that is effectively identical
1036 to <a href="http://www.eagercon.com/dwarf/dwarf3std.htm">DWARF 3.0</a> in
1037 terms of information content. This allows code generators to trivially
1038 support native debuggers by generating standard dwarf information, and
1039 contains enough information for non-dwarf targets to translate it as
1040 needed.</p>
Chris Lattner1811fca2004-01-05 05:06:33 +00001041
Jim Laskey14edc932006-03-14 18:08:46 +00001042<p>This section describes the forms used to represent C and C++ programs. Other
Bill Wendlinge9353d72009-05-17 05:52:39 +00001043 languages could pattern themselves after this (which itself is tuned to
1044 representing programs in the same way that DWARF 3 does), or they could
1045 choose to provide completely different forms if they don't fit into the DWARF
1046 model. As support for debugging information gets added to the various LLVM
1047 source-language front-ends, the information used should be documented
1048 here.</p>
Chris Lattner1811fca2004-01-05 05:06:33 +00001049
Jim Laskey14edc932006-03-14 18:08:46 +00001050<p>The following sections provide examples of various C/C++ constructs and the
Bill Wendlinge9353d72009-05-17 05:52:39 +00001051 debug information that would best describe those constructs.</p>
Jim Laskey14edc932006-03-14 18:08:46 +00001052
Chris Lattner1811fca2004-01-05 05:06:33 +00001053<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001054<h3>
Jim Laskey14edc932006-03-14 18:08:46 +00001055 <a name="ccxx_compile_units">C/C++ source file information</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001056</h3>
Chris Lattner1811fca2004-01-05 05:06:33 +00001057
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001058<div>
Chris Lattner1811fca2004-01-05 05:06:33 +00001059
Bill Wendlinge9353d72009-05-17 05:52:39 +00001060<p>Given the source files <tt>MySource.cpp</tt> and <tt>MyHeader.h</tt> located
1061 in the directory <tt>/Users/mine/sources</tt>, the following code:</p>
Chris Lattner941515c2004-01-06 05:31:32 +00001062
Bill Wendlinge9353d72009-05-17 05:52:39 +00001063<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001064<pre>
1065#include "MyHeader.h"
Chris Lattner941515c2004-01-06 05:31:32 +00001066
Jim Laskey14edc932006-03-14 18:08:46 +00001067int main(int argc, char *argv[]) {
1068 return 0;
1069}
1070</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001071</div>
Chris Lattner941515c2004-01-06 05:31:32 +00001072
Misha Brukman39dcddf2008-12-16 02:54:22 +00001073<p>a C/C++ front-end would generate the following descriptors:</p>
Jim Laskey14edc932006-03-14 18:08:46 +00001074
Bill Wendlinge9353d72009-05-17 05:52:39 +00001075<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001076<pre>
1077...
1078;;
Devang Patel59445db2010-03-09 00:44:10 +00001079;; Define the compile unit for the main source file "/Users/mine/sources/MySource.cpp".
Jim Laskey14edc932006-03-14 18:08:46 +00001080;;
Devang Patel59445db2010-03-09 00:44:10 +00001081!2 = metadata !{
1082 i32 524305, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001083 i32 0, ;; Unused
1084 i32 4, ;; Language Id
1085 metadata !"MySource.cpp",
1086 metadata !"/Users/mine/sources",
1087 metadata !"4.2.1 (Based on Apple Inc. build 5649) (LLVM build 00)",
1088 i1 true, ;; Main Compile Unit
1089 i1 false, ;; Optimized compile unit
1090 metadata !"", ;; Compiler flags
1091 i32 0} ;; Runtime version
1092
Jim Laskey14edc932006-03-14 18:08:46 +00001093;;
Devang Patel59445db2010-03-09 00:44:10 +00001094;; Define the file for the file "/Users/mine/sources/MySource.cpp".
Jim Laskey14edc932006-03-14 18:08:46 +00001095;;
Devang Patel80ae3492009-08-28 23:24:31 +00001096!1 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001097 i32 524329, ;; Tag
1098 metadata !"MySource.cpp",
Devang Patel80ae3492009-08-28 23:24:31 +00001099 metadata !"/Users/mine/sources",
Devang Patel4a7904d62010-07-13 16:53:20 +00001100 metadata !2 ;; Compile unit
Devang Patel59445db2010-03-09 00:44:10 +00001101}
1102
1103;;
1104;; Define the file for the file "/Users/mine/sources/Myheader.h"
1105;;
1106!3 = metadata !{
1107 i32 524329, ;; Tag
1108 metadata !"Myheader.h"
1109 metadata !"/Users/mine/sources",
Devang Patel4a7904d62010-07-13 16:53:20 +00001110 metadata !2 ;; Compile unit
Devang Patel59445db2010-03-09 00:44:10 +00001111}
Jim Laskey14edc932006-03-14 18:08:46 +00001112
Jim Laskey14edc932006-03-14 18:08:46 +00001113...
1114</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001115</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001116
Devang Patel5bc1c4b2010-03-26 19:08:36 +00001117<p>llvm::Instruction provides easy access to metadata attached with an
1118instruction. One can extract line number information encoded in LLVM IR
1119using <tt>Instruction::getMetadata()</tt> and
1120<tt>DILocation::getLineNumber()</tt>.
1121<pre>
1122 if (MDNode *N = I->getMetadata("dbg")) { // Here I is an LLVM instruction
1123 DILocation Loc(N); // DILocation is in DebugInfo.h
1124 unsigned Line = Loc.getLineNumber();
1125 StringRef File = Loc.getFilename();
1126 StringRef Dir = Loc.getDirectory();
1127 }
1128</pre>
Chris Lattner941515c2004-01-06 05:31:32 +00001129</div>
1130
1131<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001132<h3>
Jim Laskey14edc932006-03-14 18:08:46 +00001133 <a name="ccxx_global_variable">C/C++ global variable information</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001134</h3>
Chris Lattner941515c2004-01-06 05:31:32 +00001135
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001136<div>
Jim Laskey14edc932006-03-14 18:08:46 +00001137
Misha Brukman39dcddf2008-12-16 02:54:22 +00001138<p>Given an integer global variable declared as follows:</p>
Jim Laskey14edc932006-03-14 18:08:46 +00001139
Bill Wendlinge9353d72009-05-17 05:52:39 +00001140<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001141<pre>
1142int MyGlobal = 100;
1143</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001144</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001145
Misha Brukman39dcddf2008-12-16 02:54:22 +00001146<p>a C/C++ front-end would generate the following descriptors:</p>
Jim Laskey14edc932006-03-14 18:08:46 +00001147
Bill Wendlinge9353d72009-05-17 05:52:39 +00001148<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001149<pre>
1150;;
Jim Laskey14edc932006-03-14 18:08:46 +00001151;; Define the global itself.
1152;;
1153%MyGlobal = global int 100
1154...
1155;;
Devang Patel80ae3492009-08-28 23:24:31 +00001156;; List of debug info of globals
Jim Laskey14edc932006-03-14 18:08:46 +00001157;;
Devang Patel80ae3492009-08-28 23:24:31 +00001158!llvm.dbg.gv = !{!0}
Jim Laskey14edc932006-03-14 18:08:46 +00001159
1160;;
1161;; Define the global variable descriptor. Note the reference to the global
1162;; variable anchor and the global variable itself.
1163;;
Devang Patel80ae3492009-08-28 23:24:31 +00001164!0 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001165 i32 524340, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001166 i32 0, ;; Unused
1167 metadata !1, ;; Context
1168 metadata !"MyGlobal", ;; Name
1169 metadata !"MyGlobal", ;; Display Name
1170 metadata !"MyGlobal", ;; Linkage Name
Devang Patel59445db2010-03-09 00:44:10 +00001171 metadata !3, ;; Compile Unit
Devang Patel80ae3492009-08-28 23:24:31 +00001172 i32 1, ;; Line Number
Devang Patel59445db2010-03-09 00:44:10 +00001173 metadata !4, ;; Type
Devang Patel80ae3492009-08-28 23:24:31 +00001174 i1 false, ;; Is a local variable
1175 i1 true, ;; Is this a definition
1176 i32* @MyGlobal ;; The global variable
1177}
1178
Jim Laskey14edc932006-03-14 18:08:46 +00001179;;
1180;; Define the basic type of 32 bit signed integer. Note that since int is an
1181;; intrinsic type the source file is NULL and line 0.
1182;;
Devang Patel59445db2010-03-09 00:44:10 +00001183!4 = metadata !{
1184 i32 524324, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001185 metadata !1, ;; Context
1186 metadata !"int", ;; Name
Devang Patel59445db2010-03-09 00:44:10 +00001187 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001188 i32 0, ;; Line number
1189 i64 32, ;; Size in Bits
1190 i64 32, ;; Align in Bits
1191 i64 0, ;; Offset in Bits
1192 i32 0, ;; Flags
1193 i32 5 ;; Encoding
1194}
Jim Laskey14edc932006-03-14 18:08:46 +00001195
Jim Laskey14edc932006-03-14 18:08:46 +00001196</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001197</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001198
Chris Lattner941515c2004-01-06 05:31:32 +00001199</div>
Chris Lattner1811fca2004-01-05 05:06:33 +00001200
Jim Laskey14edc932006-03-14 18:08:46 +00001201<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001202<h3>
Jim Laskey14edc932006-03-14 18:08:46 +00001203 <a name="ccxx_subprogram">C/C++ function information</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001204</h3>
Jim Laskey14edc932006-03-14 18:08:46 +00001205
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001206<div>
Jim Laskey14edc932006-03-14 18:08:46 +00001207
Misha Brukman39dcddf2008-12-16 02:54:22 +00001208<p>Given a function declared as follows:</p>
Jim Laskey14edc932006-03-14 18:08:46 +00001209
Bill Wendlinge9353d72009-05-17 05:52:39 +00001210<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001211<pre>
1212int main(int argc, char *argv[]) {
1213 return 0;
1214}
1215</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001216</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001217
Misha Brukman39dcddf2008-12-16 02:54:22 +00001218<p>a C/C++ front-end would generate the following descriptors:</p>
Jim Laskey14edc932006-03-14 18:08:46 +00001219
Bill Wendlinge9353d72009-05-17 05:52:39 +00001220<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001221<pre>
1222;;
Jim Laskey14edc932006-03-14 18:08:46 +00001223;; Define the anchor for subprograms. Note that the second field of the
1224;; anchor is 46, which is the same as the tag for subprograms
1225;; (46 = DW_TAG_subprogram.)
1226;;
Devang Patel59445db2010-03-09 00:44:10 +00001227!6 = metadata !{
1228 i32 524334, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001229 i32 0, ;; Unused
1230 metadata !1, ;; Context
1231 metadata !"main", ;; Name
1232 metadata !"main", ;; Display name
1233 metadata !"main", ;; Linkage name
Devang Patel59445db2010-03-09 00:44:10 +00001234 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001235 i32 1, ;; Line number
Devang Patel59445db2010-03-09 00:44:10 +00001236 metadata !4, ;; Type
Devang Patel80ae3492009-08-28 23:24:31 +00001237 i1 false, ;; Is local
Devang Patel9f738842011-04-05 22:52:06 +00001238 i1 true, ;; Is definition
1239 i32 0, ;; Virtuality attribute, e.g. pure virtual function
1240 i32 0, ;; Index into virtual table for C++ methods
1241 i32 0, ;; Type that holds virtual table.
1242 i32 0, ;; Flags
1243 i1 false, ;; True if this function is optimized
1244 Function *, ;; Pointer to llvm::Function
1245 null ;; Function template parameters
Devang Patel80ae3492009-08-28 23:24:31 +00001246}
Jim Laskey14edc932006-03-14 18:08:46 +00001247;;
1248;; Define the subprogram itself.
1249;;
Devang Patel80ae3492009-08-28 23:24:31 +00001250define i32 @main(i32 %argc, i8** %argv) {
Jim Laskey14edc932006-03-14 18:08:46 +00001251...
1252}
1253</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001254</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001255
1256</div>
1257
1258<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001259<h3>
Jim Laskey14edc932006-03-14 18:08:46 +00001260 <a name="ccxx_basic_types">C/C++ basic types</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001261</h3>
Jim Laskey14edc932006-03-14 18:08:46 +00001262
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001263<div>
Jim Laskey14edc932006-03-14 18:08:46 +00001264
Misha Brukman39dcddf2008-12-16 02:54:22 +00001265<p>The following are the basic type descriptors for C/C++ core types:</p>
Jim Laskey14edc932006-03-14 18:08:46 +00001266
Jim Laskey14edc932006-03-14 18:08:46 +00001267<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001268<h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001269 <a name="ccxx_basic_type_bool">bool</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001270</h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001271
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001272<div>
Jim Laskey14edc932006-03-14 18:08:46 +00001273
Bill Wendlinge9353d72009-05-17 05:52:39 +00001274<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001275<pre>
Devang Patel80ae3492009-08-28 23:24:31 +00001276!2 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001277 i32 524324, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001278 metadata !1, ;; Context
1279 metadata !"bool", ;; Name
Devang Patel59445db2010-03-09 00:44:10 +00001280 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001281 i32 0, ;; Line number
1282 i64 8, ;; Size in Bits
1283 i64 8, ;; Align in Bits
1284 i64 0, ;; Offset in Bits
1285 i32 0, ;; Flags
1286 i32 2 ;; Encoding
1287}
Jim Laskey14edc932006-03-14 18:08:46 +00001288</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001289</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001290
1291</div>
1292
1293<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001294<h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001295 <a name="ccxx_basic_char">char</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001296</h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001297
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001298<div>
Jim Laskey14edc932006-03-14 18:08:46 +00001299
Bill Wendlinge9353d72009-05-17 05:52:39 +00001300<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001301<pre>
Devang Patel80ae3492009-08-28 23:24:31 +00001302!2 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001303 i32 524324, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001304 metadata !1, ;; Context
1305 metadata !"char", ;; Name
Devang Patel59445db2010-03-09 00:44:10 +00001306 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001307 i32 0, ;; Line number
1308 i64 8, ;; Size in Bits
1309 i64 8, ;; Align in Bits
1310 i64 0, ;; Offset in Bits
1311 i32 0, ;; Flags
1312 i32 6 ;; Encoding
1313}
Jim Laskey14edc932006-03-14 18:08:46 +00001314</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001315</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001316
1317</div>
1318
1319<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001320<h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001321 <a name="ccxx_basic_unsigned_char">unsigned char</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001322</h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001323
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001324<div>
Jim Laskey14edc932006-03-14 18:08:46 +00001325
Bill Wendlinge9353d72009-05-17 05:52:39 +00001326<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001327<pre>
Devang Patel80ae3492009-08-28 23:24:31 +00001328!2 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001329 i32 524324, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001330 metadata !1, ;; Context
1331 metadata !"unsigned char",
Devang Patel59445db2010-03-09 00:44:10 +00001332 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001333 i32 0, ;; Line number
1334 i64 8, ;; Size in Bits
1335 i64 8, ;; Align in Bits
1336 i64 0, ;; Offset in Bits
1337 i32 0, ;; Flags
1338 i32 8 ;; Encoding
1339}
Jim Laskey14edc932006-03-14 18:08:46 +00001340</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001341</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001342
1343</div>
1344
1345<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001346<h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001347 <a name="ccxx_basic_short">short</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001348</h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001349
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001350<div>
Jim Laskey14edc932006-03-14 18:08:46 +00001351
Bill Wendlinge9353d72009-05-17 05:52:39 +00001352<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001353<pre>
Devang Patel80ae3492009-08-28 23:24:31 +00001354!2 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001355 i32 524324, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001356 metadata !1, ;; Context
1357 metadata !"short int",
Devang Patel59445db2010-03-09 00:44:10 +00001358 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001359 i32 0, ;; Line number
1360 i64 16, ;; Size in Bits
1361 i64 16, ;; Align in Bits
1362 i64 0, ;; Offset in Bits
1363 i32 0, ;; Flags
1364 i32 5 ;; Encoding
1365}
Jim Laskey14edc932006-03-14 18:08:46 +00001366</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001367</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001368
1369</div>
1370
1371<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001372<h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001373 <a name="ccxx_basic_unsigned_short">unsigned short</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001374</h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001375
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001376<div>
Jim Laskey14edc932006-03-14 18:08:46 +00001377
Bill Wendlinge9353d72009-05-17 05:52:39 +00001378<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001379<pre>
Devang Patel80ae3492009-08-28 23:24:31 +00001380!2 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001381 i32 524324, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001382 metadata !1, ;; Context
1383 metadata !"short unsigned int",
Devang Patel59445db2010-03-09 00:44:10 +00001384 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001385 i32 0, ;; Line number
1386 i64 16, ;; Size in Bits
1387 i64 16, ;; Align in Bits
1388 i64 0, ;; Offset in Bits
1389 i32 0, ;; Flags
1390 i32 7 ;; Encoding
1391}
Jim Laskey14edc932006-03-14 18:08:46 +00001392</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001393</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001394
1395</div>
1396
1397<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001398<h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001399 <a name="ccxx_basic_int">int</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001400</h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001401
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001402<div>
Jim Laskey14edc932006-03-14 18:08:46 +00001403
Bill Wendlinge9353d72009-05-17 05:52:39 +00001404<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001405<pre>
Devang Patel80ae3492009-08-28 23:24:31 +00001406!2 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001407 i32 524324, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001408 metadata !1, ;; Context
1409 metadata !"int", ;; Name
Devang Patel59445db2010-03-09 00:44:10 +00001410 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001411 i32 0, ;; Line number
1412 i64 32, ;; Size in Bits
1413 i64 32, ;; Align in Bits
1414 i64 0, ;; Offset in Bits
1415 i32 0, ;; Flags
1416 i32 5 ;; Encoding
1417}
Bill Wendlinge9353d72009-05-17 05:52:39 +00001418</pre></div>
Jim Laskey14edc932006-03-14 18:08:46 +00001419
1420</div>
1421
1422<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001423<h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001424 <a name="ccxx_basic_unsigned_int">unsigned int</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001425</h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001426
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001427<div>
Jim Laskey14edc932006-03-14 18:08:46 +00001428
Bill Wendlinge9353d72009-05-17 05:52:39 +00001429<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001430<pre>
Devang Patel80ae3492009-08-28 23:24:31 +00001431!2 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001432 i32 524324, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001433 metadata !1, ;; Context
1434 metadata !"unsigned int",
Devang Patel59445db2010-03-09 00:44:10 +00001435 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001436 i32 0, ;; Line number
1437 i64 32, ;; Size in Bits
1438 i64 32, ;; Align in Bits
1439 i64 0, ;; Offset in Bits
1440 i32 0, ;; Flags
1441 i32 7 ;; Encoding
1442}
Jim Laskey14edc932006-03-14 18:08:46 +00001443</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001444</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001445
1446</div>
1447
1448<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001449<h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001450 <a name="ccxx_basic_long_long">long long</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001451</h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001452
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001453<div>
Jim Laskey14edc932006-03-14 18:08:46 +00001454
Bill Wendlinge9353d72009-05-17 05:52:39 +00001455<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001456<pre>
Devang Patel80ae3492009-08-28 23:24:31 +00001457!2 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001458 i32 524324, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001459 metadata !1, ;; Context
1460 metadata !"long long int",
Devang Patel59445db2010-03-09 00:44:10 +00001461 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001462 i32 0, ;; Line number
1463 i64 64, ;; Size in Bits
1464 i64 64, ;; Align in Bits
1465 i64 0, ;; Offset in Bits
1466 i32 0, ;; Flags
1467 i32 5 ;; Encoding
1468}
Jim Laskey14edc932006-03-14 18:08:46 +00001469</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001470</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001471
1472</div>
1473
1474<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001475<h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001476 <a name="ccxx_basic_unsigned_long_long">unsigned long long</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001477</h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001478
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001479<div>
Jim Laskey14edc932006-03-14 18:08:46 +00001480
Bill Wendlinge9353d72009-05-17 05:52:39 +00001481<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001482<pre>
Devang Patel80ae3492009-08-28 23:24:31 +00001483!2 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001484 i32 524324, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001485 metadata !1, ;; Context
1486 metadata !"long long unsigned int",
Devang Patel59445db2010-03-09 00:44:10 +00001487 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001488 i32 0, ;; Line number
1489 i64 64, ;; Size in Bits
1490 i64 64, ;; Align in Bits
1491 i64 0, ;; Offset in Bits
1492 i32 0, ;; Flags
1493 i32 7 ;; Encoding
1494}
Jim Laskey14edc932006-03-14 18:08:46 +00001495</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001496</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001497
1498</div>
1499
1500<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001501<h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001502 <a name="ccxx_basic_float">float</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001503</h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001504
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001505<div>
Jim Laskey14edc932006-03-14 18:08:46 +00001506
Bill Wendlinge9353d72009-05-17 05:52:39 +00001507<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001508<pre>
Devang Patel80ae3492009-08-28 23:24:31 +00001509!2 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001510 i32 524324, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001511 metadata !1, ;; Context
1512 metadata !"float",
Devang Patel59445db2010-03-09 00:44:10 +00001513 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001514 i32 0, ;; Line number
1515 i64 32, ;; Size in Bits
1516 i64 32, ;; Align in Bits
1517 i64 0, ;; Offset in Bits
1518 i32 0, ;; Flags
1519 i32 4 ;; Encoding
1520}
Jim Laskey14edc932006-03-14 18:08:46 +00001521</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001522</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001523
1524</div>
1525
1526<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001527<h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001528 <a name="ccxx_basic_double">double</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001529</h4>
Jim Laskey14edc932006-03-14 18:08:46 +00001530
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001531<div>
Jim Laskey14edc932006-03-14 18:08:46 +00001532
Bill Wendlinge9353d72009-05-17 05:52:39 +00001533<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001534<pre>
Devang Patel80ae3492009-08-28 23:24:31 +00001535!2 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001536 i32 524324, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001537 metadata !1, ;; Context
1538 metadata !"double",;; Name
Devang Patel59445db2010-03-09 00:44:10 +00001539 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001540 i32 0, ;; Line number
1541 i64 64, ;; Size in Bits
1542 i64 64, ;; Align in Bits
1543 i64 0, ;; Offset in Bits
1544 i32 0, ;; Flags
1545 i32 4 ;; Encoding
1546}
Jim Laskey14edc932006-03-14 18:08:46 +00001547</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001548</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001549
1550</div>
1551
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001552</div>
1553
Jim Laskey14edc932006-03-14 18:08:46 +00001554<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001555<h3>
Jim Laskey14edc932006-03-14 18:08:46 +00001556 <a name="ccxx_derived_types">C/C++ derived types</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001557</h3>
Jim Laskey14edc932006-03-14 18:08:46 +00001558
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001559<div>
Jim Laskey14edc932006-03-14 18:08:46 +00001560
Misha Brukman39dcddf2008-12-16 02:54:22 +00001561<p>Given the following as an example of C/C++ derived type:</p>
Jim Laskey14edc932006-03-14 18:08:46 +00001562
Bill Wendlinge9353d72009-05-17 05:52:39 +00001563<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001564<pre>
1565typedef const int *IntPtr;
1566</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001567</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001568
Misha Brukman39dcddf2008-12-16 02:54:22 +00001569<p>a C/C++ front-end would generate the following descriptors:</p>
Jim Laskey14edc932006-03-14 18:08:46 +00001570
Bill Wendlinge9353d72009-05-17 05:52:39 +00001571<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001572<pre>
1573;;
1574;; Define the typedef "IntPtr".
1575;;
Devang Patel80ae3492009-08-28 23:24:31 +00001576!2 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001577 i32 524310, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001578 metadata !1, ;; Context
1579 metadata !"IntPtr", ;; Name
Devang Patel59445db2010-03-09 00:44:10 +00001580 metadata !3, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001581 i32 0, ;; Line number
1582 i64 0, ;; Size in bits
1583 i64 0, ;; Align in bits
1584 i64 0, ;; Offset in bits
1585 i32 0, ;; Flags
1586 metadata !4 ;; Derived From type
1587}
Jim Laskey14edc932006-03-14 18:08:46 +00001588
1589;;
1590;; Define the pointer type.
1591;;
Devang Patel80ae3492009-08-28 23:24:31 +00001592!4 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001593 i32 524303, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001594 metadata !1, ;; Context
1595 metadata !"", ;; Name
Devang Patel59445db2010-03-09 00:44:10 +00001596 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001597 i32 0, ;; Line number
1598 i64 64, ;; Size in bits
1599 i64 64, ;; Align in bits
1600 i64 0, ;; Offset in bits
1601 i32 0, ;; Flags
1602 metadata !5 ;; Derived From type
1603}
Jim Laskey14edc932006-03-14 18:08:46 +00001604;;
1605;; Define the const type.
1606;;
Devang Patel80ae3492009-08-28 23:24:31 +00001607!5 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001608 i32 524326, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001609 metadata !1, ;; Context
1610 metadata !"", ;; Name
Devang Patel59445db2010-03-09 00:44:10 +00001611 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001612 i32 0, ;; Line number
1613 i64 32, ;; Size in bits
1614 i64 32, ;; Align in bits
1615 i64 0, ;; Offset in bits
1616 i32 0, ;; Flags
1617 metadata !6 ;; Derived From type
1618}
Jim Laskey14edc932006-03-14 18:08:46 +00001619;;
1620;; Define the int type.
1621;;
Devang Patel80ae3492009-08-28 23:24:31 +00001622!6 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001623 i32 524324, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001624 metadata !1, ;; Context
1625 metadata !"int", ;; Name
Devang Patel59445db2010-03-09 00:44:10 +00001626 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001627 i32 0, ;; Line number
1628 i64 32, ;; Size in bits
1629 i64 32, ;; Align in bits
1630 i64 0, ;; Offset in bits
1631 i32 0, ;; Flags
1632 5 ;; Encoding
1633}
Jim Laskey14edc932006-03-14 18:08:46 +00001634</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001635</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001636
1637</div>
1638
1639<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001640<h3>
Jim Laskey14edc932006-03-14 18:08:46 +00001641 <a name="ccxx_composite_types">C/C++ struct/union types</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001642</h3>
Jim Laskey14edc932006-03-14 18:08:46 +00001643
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001644<div>
Jim Laskey14edc932006-03-14 18:08:46 +00001645
Misha Brukman39dcddf2008-12-16 02:54:22 +00001646<p>Given the following as an example of C/C++ struct type:</p>
Jim Laskey14edc932006-03-14 18:08:46 +00001647
Bill Wendlinge9353d72009-05-17 05:52:39 +00001648<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001649<pre>
1650struct Color {
1651 unsigned Red;
1652 unsigned Green;
1653 unsigned Blue;
1654};
1655</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001656</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001657
Misha Brukman39dcddf2008-12-16 02:54:22 +00001658<p>a C/C++ front-end would generate the following descriptors:</p>
Jim Laskey14edc932006-03-14 18:08:46 +00001659
Bill Wendlinge9353d72009-05-17 05:52:39 +00001660<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001661<pre>
1662;;
1663;; Define basic type for unsigned int.
1664;;
Devang Patel80ae3492009-08-28 23:24:31 +00001665!5 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001666 i32 524324, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001667 metadata !1, ;; Context
1668 metadata !"unsigned int",
Devang Patel59445db2010-03-09 00:44:10 +00001669 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001670 i32 0, ;; Line number
1671 i64 32, ;; Size in Bits
1672 i64 32, ;; Align in Bits
1673 i64 0, ;; Offset in Bits
1674 i32 0, ;; Flags
1675 i32 7 ;; Encoding
1676}
Jim Laskey14edc932006-03-14 18:08:46 +00001677;;
1678;; Define composite type for struct Color.
1679;;
Devang Patel80ae3492009-08-28 23:24:31 +00001680!2 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001681 i32 524307, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001682 metadata !1, ;; Context
1683 metadata !"Color", ;; Name
1684 metadata !1, ;; Compile unit
1685 i32 1, ;; Line number
1686 i64 96, ;; Size in bits
1687 i64 32, ;; Align in bits
1688 i64 0, ;; Offset in bits
1689 i32 0, ;; Flags
1690 null, ;; Derived From
1691 metadata !3, ;; Elements
1692 i32 0 ;; Runtime Language
1693}
Jim Laskey14edc932006-03-14 18:08:46 +00001694
1695;;
1696;; Define the Red field.
1697;;
Devang Patel80ae3492009-08-28 23:24:31 +00001698!4 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001699 i32 524301, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001700 metadata !1, ;; Context
1701 metadata !"Red", ;; Name
Devang Patel59445db2010-03-09 00:44:10 +00001702 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001703 i32 2, ;; Line number
1704 i64 32, ;; Size in bits
1705 i64 32, ;; Align in bits
1706 i64 0, ;; Offset in bits
1707 i32 0, ;; Flags
1708 metadata !5 ;; Derived From type
1709}
Jim Laskey14edc932006-03-14 18:08:46 +00001710
1711;;
1712;; Define the Green field.
1713;;
Devang Patel80ae3492009-08-28 23:24:31 +00001714!6 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001715 i32 524301, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001716 metadata !1, ;; Context
1717 metadata !"Green", ;; Name
Devang Patel59445db2010-03-09 00:44:10 +00001718 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001719 i32 3, ;; Line number
1720 i64 32, ;; Size in bits
1721 i64 32, ;; Align in bits
1722 i64 32, ;; Offset in bits
1723 i32 0, ;; Flags
1724 metadata !5 ;; Derived From type
1725}
Jim Laskey14edc932006-03-14 18:08:46 +00001726
1727;;
1728;; Define the Blue field.
1729;;
Devang Patel80ae3492009-08-28 23:24:31 +00001730!7 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001731 i32 524301, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001732 metadata !1, ;; Context
1733 metadata !"Blue", ;; Name
Devang Patel59445db2010-03-09 00:44:10 +00001734 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001735 i32 4, ;; Line number
1736 i64 32, ;; Size in bits
1737 i64 32, ;; Align in bits
1738 i64 64, ;; Offset in bits
1739 i32 0, ;; Flags
1740 metadata !5 ;; Derived From type
1741}
Jim Laskey14edc932006-03-14 18:08:46 +00001742
1743;;
1744;; Define the array of fields used by the composite type Color.
1745;;
Devang Patel80ae3492009-08-28 23:24:31 +00001746!3 = metadata !{metadata !4, metadata !6, metadata !7}
Jim Laskey14edc932006-03-14 18:08:46 +00001747</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001748</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001749
1750</div>
1751
1752<!-- ======================================================================= -->
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001753<h3>
Jim Laskey14edc932006-03-14 18:08:46 +00001754 <a name="ccxx_enumeration_types">C/C++ enumeration types</a>
NAKAMURA Takumifc8d9302011-04-18 23:59:50 +00001755</h3>
Jim Laskey14edc932006-03-14 18:08:46 +00001756
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001757<div>
Jim Laskey14edc932006-03-14 18:08:46 +00001758
Misha Brukman39dcddf2008-12-16 02:54:22 +00001759<p>Given the following as an example of C/C++ enumeration type:</p>
Jim Laskey14edc932006-03-14 18:08:46 +00001760
Bill Wendlinge9353d72009-05-17 05:52:39 +00001761<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001762<pre>
1763enum Trees {
1764 Spruce = 100,
1765 Oak = 200,
1766 Maple = 300
1767};
1768</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001769</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001770
Misha Brukman39dcddf2008-12-16 02:54:22 +00001771<p>a C/C++ front-end would generate the following descriptors:</p>
Jim Laskey14edc932006-03-14 18:08:46 +00001772
Bill Wendlinge9353d72009-05-17 05:52:39 +00001773<div class="doc_code">
Jim Laskey14edc932006-03-14 18:08:46 +00001774<pre>
1775;;
1776;; Define composite type for enum Trees
1777;;
Devang Patel80ae3492009-08-28 23:24:31 +00001778!2 = metadata !{
Devang Patel59445db2010-03-09 00:44:10 +00001779 i32 524292, ;; Tag
Devang Patel80ae3492009-08-28 23:24:31 +00001780 metadata !1, ;; Context
1781 metadata !"Trees", ;; Name
Devang Patel59445db2010-03-09 00:44:10 +00001782 metadata !1, ;; File
Devang Patel80ae3492009-08-28 23:24:31 +00001783 i32 1, ;; Line number
1784 i64 32, ;; Size in bits
1785 i64 32, ;; Align in bits
1786 i64 0, ;; Offset in bits
1787 i32 0, ;; Flags
1788 null, ;; Derived From type
1789 metadata !3, ;; Elements
1790 i32 0 ;; Runtime language
1791}
Devang Patel02aac922009-08-25 05:24:07 +00001792
Devang Patelf08e35d2009-08-26 05:01:18 +00001793;;
1794;; Define the array of enumerators used by composite type Trees.
1795;;
Devang Patel80ae3492009-08-28 23:24:31 +00001796!3 = metadata !{metadata !4, metadata !5, metadata !6}
1797
1798;;
1799;; Define Spruce enumerator.
1800;;
Devang Patel59445db2010-03-09 00:44:10 +00001801!4 = metadata !{i32 524328, metadata !"Spruce", i64 100}
Devang Patel80ae3492009-08-28 23:24:31 +00001802
1803;;
1804;; Define Oak enumerator.
1805;;
Devang Patel59445db2010-03-09 00:44:10 +00001806!5 = metadata !{i32 524328, metadata !"Oak", i64 200}
Devang Patel80ae3492009-08-28 23:24:31 +00001807
1808;;
1809;; Define Maple enumerator.
1810;;
Devang Patel59445db2010-03-09 00:44:10 +00001811!6 = metadata !{i32 524328, metadata !"Maple", i64 300}
Devang Patel80ae3492009-08-28 23:24:31 +00001812
Jim Laskey14edc932006-03-14 18:08:46 +00001813</pre>
Bill Wendlinge9353d72009-05-17 05:52:39 +00001814</div>
Jim Laskey14edc932006-03-14 18:08:46 +00001815
1816</div>
Chris Lattner1811fca2004-01-05 05:06:33 +00001817
NAKAMURA Takumiaa3d6242011-04-23 00:30:22 +00001818</div>
1819
Devang Patel8cd89642011-11-15 22:59:54 +00001820
1821<!-- *********************************************************************** -->
1822<h2>
1823 <a name="llvmdwarfextension">Debugging information format</a>
1824</h2>
1825<!-- *********************************************************************** -->
1826<div>
1827<!-- ======================================================================= -->
1828<h3>
1829 <a name="objcproperty">Debugging Information Extension for Objective C
1830Properties</a></li>
1831</h3>
1832<div>
1833<!-- *********************************************************************** -->
1834<h4>
1835 <a name="objcpropertyintroduction">Introduction</a>
1836</h4>
1837<!-- *********************************************************************** -->
1838
1839<div>
1840<p>Objective C provides a simpler way to declare and define accessor methods
1841using declared properties. The language provides features to declare a
1842property and to let compiler synthesize accessor methods.
1843</p>
1844
1845<p>The debugger lets developer inspect Objective C interfaces and their
1846instance variables and class variables. However, the debugger does not know
1847anything about the properties defined in Objective C interfaces. The debugger
1848consumes information generated by compiler in DWARF format. The format does
1849not support encoding of Objective C properties. This proposal describes DWARF
1850extensions to encode Objective C properties, which the debugger can use to let
1851developers inspect Objective C properties.
1852</p>
1853
1854</div>
1855
1856
1857<!-- *********************************************************************** -->
1858<h4>
1859 <a name="objcpropertyproposal">Proposal</a>
1860</h4>
1861<!-- *********************************************************************** -->
1862
1863<div>
1864<p>Objective C properties are always backed by an instance variable. The
1865instance variables backing properties are identified using
1866DW_AT_APPLE_property_name attribute. The instance variables with this
1867attribute may not have data location attributes. The location of instance
1868variables is determined by debugger only after consulting Objective C runtime.
1869</p>
1870
1871<div class="doc_code">
1872<pre>
1873@interface I1 {
1874 int n2;
1875}
1876
1877@property p1;
1878@property p2;
1879@end
1880
1881@implementation I1
1882@synthesize p1;
1883@synthesize p2 = n2;
1884@end
1885
1886
1887TAG_structure_type [7] *
1888 AT_APPLE_runtime_class( 0x10 )
1889 AT_name( "I1" )
1890 AT_decl_file( "Objc_Property.m" )
1891 AT_decl_line( 3 )
1892
1893 TAG_member [8]
1894 AT_name( "p1" )
1895 AT_APPLE_property_name(“p1”)
1896 AT_type( {0x00000147} ( int ) )
1897
1898 TAG_member [8]
1899 AT_name( "n2" )
1900 AT_APPLE_property_name(“p2”)
1901 AT_type( {0x00000147} ( int ) )
1902</pre>
1903</div>
1904
1905<p> Developers can decorate a property with attributes which are encoded using
1906DW_AT_APPLE_property_attribute.
1907</p>
1908
1909<div class="doc_code">
1910<pre>
1911@property (readonly, nonatomic) int pr;
1912
1913
1914TAG_member [8]
1915 AT_name(“pr”)
1916 AT_APPLE_property_name(“pr”)
1917 AT_type ( {0x00000147} (int) )
1918 AT_APPLE_property_attribute (DW_APPLE_PROPERTY_readonly, DW_APPLE_PROPERTY_nonatomic)
1919</pre>
1920</div>
1921
1922<p> The setter and getter method names are attached to the property using
1923DW_AT_APPLE_property_setter and DW_AT_APPLE_property_getter attributes.
1924</p>
1925<div class="doc_code">
1926<pre>
1927@interface I1
1928@property (setter=myOwnP3Setter:) int p3;
1929-(void)myOwnP3Setter:(int)a;
1930@end
1931
1932@implementation I1
1933@synthesize p3;
1934-(void)myOwnP3Setter:(int)a{ }
1935@end
1936
19370x000003bd: TAG_structure_type [7] *
1938 AT_APPLE_runtime_class( 0x10 )
1939 AT_name( "I1" )
1940 AT_decl_file( "Objc_Property.m" )
1941 AT_decl_line( 3 )
19420x000003f3: TAG_member [8]
1943 AT_name( "p3" )
1944 AT_APPLE_property_name(“p3”)
1945 AT_APPLE_property_setter(“myOwnP3Setter:”)
1946 AT_type( {0x00000147} ( int ) )
1947</pre>
1948</div>
1949
1950</div>
1951
1952<!-- *********************************************************************** -->
1953<h4>
1954 <a name="objcpropertynewattributes">New DWARF Attributes</a>
1955</h4>
1956<!-- *********************************************************************** -->
1957
1958<div>
1959<table border="1" cellspacing="0">
1960 <tr>
1961 <th width=200 >Attribute</th>
1962 <th width=200 >Value</th>
1963 <th width=200 >Classes</th>
1964 </tr>
1965 <tr>
1966 <td width=200 >DW_AT_APPLE_property_name</td>
1967 <td width=200 >0x3fe8</td>
1968 <td width=200 >String</td>
1969 </tr>
1970 <tr>
1971 <td width=200 >DW_AT_APPLE_property_getter</td>
1972 <td width=200 >0x3fe9</td>
1973 <td width=200 >String</td>
1974 </tr>
1975 <tr>
1976 <td width=200 >DW_AT_APPLE_property_setter</td>
1977 <td width=200 >0x3fea</td>
1978 <td width=200 >String</td>
1979 </tr>
1980 <tr>
1981 <td width=200 >DW_AT_APPLE_property_attribute</td>
1982 <td width=200 >0x3feb</td>
1983 <td width=200 >Constant</td>
1984 </tr>
1985</table>
1986
1987</div>
1988
1989<!-- *********************************************************************** -->
1990<h4>
1991 <a name="objcpropertynewconstants">New DWARF Constants</a>
1992</h4>
1993<!-- *********************************************************************** -->
1994
1995<div>
1996<table border="1" cellspacing="0">
1997 <tr>
1998 <th width=200 >Name</th>
1999 <th width=200 >Value</th>
2000 </tr>
2001 <tr>
2002 <td width=200 >DW_AT_APPLE_PROPERTY_readonly</td>
2003 <td width=200 >0x1</td>
2004 </tr>
2005 <tr>
2006 <td width=200 >DW_AT_APPLE_PROPERTY_readwrite</td>
2007 <td width=200 >0x2</td>
2008 </tr>
2009 <tr>
2010 <td width=200 >DW_AT_APPLE_PROPERTY_assign</td>
2011 <td width=200 >0x4</td>
2012 </tr>
2013 <tr>
2014 <td width=200 >DW_AT_APPLE_PROPERTY_retain</td>
2015 <td width=200 >0x8</td>
2016 </tr>
2017 <tr>
2018 <td width=200 >DW_AT_APPLE_PROPERTY_copy</td>
2019 <td width=200 >0x10</td>
2020 </tr>
2021 <tr>
2022 <td width=200 >DW_AT_APPLE_PROPERTY_nonatomic</td>
2023 <td width=200 >0x20</td>
2024 </tr>
2025</table>
2026
2027</div>
2028</div>
2029</div>
2030
Chris Lattner1811fca2004-01-05 05:06:33 +00002031<!-- *********************************************************************** -->
Misha Brukmanf91d9942004-05-12 19:21:57 +00002032
Chris Lattner1811fca2004-01-05 05:06:33 +00002033<hr>
Misha Brukmanf91d9942004-05-12 19:21:57 +00002034<address>
2035 <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
Misha Brukman86242e12008-12-11 17:34:48 +00002036 src="http://jigsaw.w3.org/css-validator/images/vcss-blue" alt="Valid CSS"></a>
Misha Brukmanf91d9942004-05-12 19:21:57 +00002037 <a href="http://validator.w3.org/check/referer"><img
Misha Brukman86242e12008-12-11 17:34:48 +00002038 src="http://www.w3.org/Icons/valid-html401-blue" alt="Valid HTML 4.01"></a>
Misha Brukmanf91d9942004-05-12 19:21:57 +00002039
2040 <a href="mailto:sabre@nondot.org">Chris Lattner</a><br>
NAKAMURA Takumica46f5a2011-04-09 02:13:37 +00002041 <a href="http://llvm.org/">LLVM Compiler Infrastructure</a><br>
Chris Lattner1811fca2004-01-05 05:06:33 +00002042 Last modified: $Date$
Misha Brukmanf91d9942004-05-12 19:21:57 +00002043</address>
Chris Lattner1811fca2004-01-05 05:06:33 +00002044
2045</body>
2046</html>