blob: e4566179ea2b18bde2c92f3578b432a3511a19d9 [file] [log] [blame]
Chris Lattnerbdfb3392004-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 Wendling48839d92009-05-17 05:52:39 +00005 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
Chris Lattnerbdfb3392004-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 Takumi05d02652011-04-18 23:59:50 +000011<h1>Source Level Debugging with LLVM</h1>
Chris Lattnerbdfb3392004-01-05 05:06:33 +000012
Reid Spencerd3f876c2004-11-01 08:19:36 +000013<table class="layout" style="width:100%">
14 <tr class="layout">
15 <td class="left">
Chris Lattnerbdfb3392004-01-05 05:06:33 +000016<ul>
Misha Brukman82873732004-05-12 19:21:57 +000017 <li><a href="#introduction">Introduction</a>
Chris Lattnerbdfb3392004-01-05 05:06:33 +000018 <ol>
19 <li><a href="#phil">Philosophy behind LLVM debugging information</a></li>
Jim Laskey383e0092006-03-23 17:54:33 +000020 <li><a href="#consumers">Debug information consumers</a></li>
Chris Lattnerbdfb3392004-01-05 05:06:33 +000021 <li><a href="#debugopt">Debugging optimized code</a></li>
Misha Brukman82873732004-05-12 19:21:57 +000022 </ol></li>
Misha Brukman82873732004-05-12 19:21:57 +000023 <li><a href="#format">Debugging information format</a>
Chris Lattnerbdfb3392004-01-05 05:06:33 +000024 <ol>
Jim Laskeycec12a52006-03-14 18:08:46 +000025 <li><a href="#debug_info_descriptors">Debug information descriptors</a>
Chris Lattnerbdfb3392004-01-05 05:06:33 +000026 <ul>
Jim Laskeycec12a52006-03-14 18:08:46 +000027 <li><a href="#format_compile_units">Compile unit descriptors</a></li>
Devang Patel4b945502010-03-09 00:44:10 +000028 <li><a href="#format_files">File descriptors</a></li>
Jim Laskeycec12a52006-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 Laskey3d11bee2006-03-15 19:10:52 +000031 <li><a href="#format_blocks">Block descriptors</a></li>
Jim Laskeycec12a52006-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 Laskey383e0092006-03-23 17:54:33 +000037 <li><a href="#format_variables">Local variables</a></li>
Misha Brukman82873732004-05-12 19:21:57 +000038 </ul></li>
Jim Laskeycec12a52006-03-14 18:08:46 +000039 <li><a href="#format_common_intrinsics">Debugger intrinsic functions</a>
40 <ul>
Jim Laskeycec12a52006-03-14 18:08:46 +000041 <li><a href="#format_common_declare">llvm.dbg.declare</a></li>
Victor Hernandez67a1a542010-01-11 22:53:48 +000042 <li><a href="#format_common_value">llvm.dbg.value</a></li>
Jim Laskeycec12a52006-03-14 18:08:46 +000043 </ul></li>
Misha Brukman82873732004-05-12 19:21:57 +000044 </ol></li>
Devang Patel744950d2009-11-25 23:28:01 +000045 <li><a href="#format_common_lifetime">Object lifetimes and scoping</a></li>
Misha Brukman82873732004-05-12 19:21:57 +000046 <li><a href="#ccxx_frontend">C/C++ front-end specific debug information</a>
Chris Lattnerbdfb3392004-01-05 05:06:33 +000047 <ol>
Jim Laskeycec12a52006-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 Brukman82873732004-05-12 19:21:57 +000055 </ol></li>
Chris Lattnerbdfb3392004-01-05 05:06:33 +000056</ul>
Misha Brukman82873732004-05-12 19:21:57 +000057</td>
Reid Spencerd3f876c2004-11-01 08:19:36 +000058<td class="right">
Misha Brukmane849a1a2004-05-12 21:26:16 +000059<img src="img/venusflytrap.jpg" alt="A leafy and green bug eater" width="247"
Misha Brukman82873732004-05-12 19:21:57 +000060height="369">
61</td>
Reid Spencerd3f876c2004-11-01 08:19:36 +000062</tr></table>
Misha Brukman82873732004-05-12 19:21:57 +000063
Chris Lattner7911ce22004-05-23 21:07:27 +000064<div class="doc_author">
Jim Laskeycec12a52006-03-14 18:08:46 +000065 <p>Written by <a href="mailto:sabre@nondot.org">Chris Lattner</a>
Jim Laskeyc760a922007-03-14 19:32:21 +000066 and <a href="mailto:jlaskey@mac.com">Jim Laskey</a></p>
Chris Lattner7911ce22004-05-23 21:07:27 +000067</div>
68
Chris Lattnerbdfb3392004-01-05 05:06:33 +000069
70<!-- *********************************************************************** -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +000071<h2><a name="introduction">Introduction</a></h2>
Misha Brukman94218a72004-12-09 20:27:37 +000072<!-- *********************************************************************** -->
Chris Lattnerbdfb3392004-01-05 05:06:33 +000073
74<div class="doc_text">
75
76<p>This document is the central repository for all information pertaining to
Bill Wendling48839d92009-05-17 05:52:39 +000077 debug information in LLVM. It describes the <a href="#format">actual format
78 that the LLVM debug information</a> takes, which is useful for those
79 interested in creating front-ends or dealing directly with the information.
Chris Lattner8ad2f982009-07-18 21:47:15 +000080 Further, this document provides specific examples of what debug information
Chris Lattner89940752011-01-18 06:12:10 +000081 for C/C++ looks like.</p>
Chris Lattnerbdfb3392004-01-05 05:06:33 +000082
83</div>
84
85<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +000086<h3>
Chris Lattnerbdfb3392004-01-05 05:06:33 +000087 <a name="phil">Philosophy behind LLVM debugging information</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +000088</h3>
Chris Lattnerbdfb3392004-01-05 05:06:33 +000089
90<div class="doc_text">
91
Misha Brukman82873732004-05-12 19:21:57 +000092<p>The idea of the LLVM debugging information is to capture how the important
Bill Wendling48839d92009-05-17 05:52:39 +000093 pieces of the source-language's Abstract Syntax Tree map onto LLVM code.
94 Several design aspects have shaped the solution that appears here. The
95 important ones are:</p>
Chris Lattnerbdfb3392004-01-05 05:06:33 +000096
Misha Brukman82873732004-05-12 19:21:57 +000097<ul>
Bill Wendling48839d92009-05-17 05:52:39 +000098 <li>Debugging information should have very little impact on the rest of the
99 compiler. No transformations, analyses, or code generators should need to
100 be modified because of debugging information.</li>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000101
Bill Wendling48839d92009-05-17 05:52:39 +0000102 <li>LLVM optimizations should interact in <a href="#debugopt">well-defined and
103 easily described ways</a> with the debugging information.</li>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000104
Bill Wendling48839d92009-05-17 05:52:39 +0000105 <li>Because LLVM is designed to support arbitrary programming languages,
106 LLVM-to-LLVM tools should not need to know anything about the semantics of
107 the source-level-language.</li>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000108
Bill Wendling48839d92009-05-17 05:52:39 +0000109 <li>Source-level languages are often <b>widely</b> different from one another.
110 LLVM should not put any restrictions of the flavor of the source-language,
111 and the debugging information should work with any language.</li>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000112
Bill Wendling48839d92009-05-17 05:52:39 +0000113 <li>With code generator support, it should be possible to use an LLVM compiler
114 to compile a program to native machine code and standard debugging
115 formats. This allows compatibility with traditional machine-code level
116 debuggers, like GDB or DBX.</li>
Misha Brukman82873732004-05-12 19:21:57 +0000117</ul>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000118
Bill Wendling48839d92009-05-17 05:52:39 +0000119<p>The approach used by the LLVM implementation is to use a small set
120 of <a href="#format_common_intrinsics">intrinsic functions</a> to define a
121 mapping between LLVM program objects and the source-level objects. The
Devang Patele4b27562009-08-28 23:24:31 +0000122 description of the source-level program is maintained in LLVM metadata
123 in an <a href="#ccxx_frontend">implementation-defined format</a>
Bill Wendling48839d92009-05-17 05:52:39 +0000124 (the C/C++ front-end currently uses working draft 7 of
125 the <a href="http://www.eagercon.com/dwarf/dwarf3std.htm">DWARF 3
126 standard</a>).</p>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000127
Jim Laskeycec12a52006-03-14 18:08:46 +0000128<p>When a program is being debugged, a debugger interacts with the user and
Bill Wendling48839d92009-05-17 05:52:39 +0000129 turns the stored debug information into source-language specific information.
130 As such, a debugger must be aware of the source-language, and is thus tied to
131 a specific language or family of languages.</p>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000132
133</div>
134
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000135<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000136<h3>
Jim Laskey383e0092006-03-23 17:54:33 +0000137 <a name="consumers">Debug information consumers</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000138</h3>
Jim Laskey383e0092006-03-23 17:54:33 +0000139
140<div class="doc_text">
Bill Wendling48839d92009-05-17 05:52:39 +0000141
Jim Laskey383e0092006-03-23 17:54:33 +0000142<p>The role of debug information is to provide meta information normally
Bill Wendling48839d92009-05-17 05:52:39 +0000143 stripped away during the compilation process. This meta information provides
144 an LLVM user a relationship between generated code and the original program
145 source code.</p>
Jim Laskey383e0092006-03-23 17:54:33 +0000146
Chris Lattnerc3107782010-04-05 04:11:11 +0000147<p>Currently, debug information is consumed by DwarfDebug to produce dwarf
Bill Wendling48839d92009-05-17 05:52:39 +0000148 information used by the gdb debugger. Other targets could use the same
149 information to produce stabs or other debug forms.</p>
Jim Laskey383e0092006-03-23 17:54:33 +0000150
151<p>It would also be reasonable to use debug information to feed profiling tools
Bill Wendling48839d92009-05-17 05:52:39 +0000152 for analysis of generated code, or, tools for reconstructing the original
153 source from generated code.</p>
Jim Laskey383e0092006-03-23 17:54:33 +0000154
155<p>TODO - expound a bit more.</p>
156
157</div>
158
159<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000160<h3>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000161 <a name="debugopt">Debugging optimized code</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000162</h3>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000163
164<div class="doc_text">
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000165
Misha Brukman82873732004-05-12 19:21:57 +0000166<p>An extremely high priority of LLVM debugging information is to make it
Bill Wendling48839d92009-05-17 05:52:39 +0000167 interact well with optimizations and analysis. In particular, the LLVM debug
168 information provides the following guarantees:</p>
Misha Brukman82873732004-05-12 19:21:57 +0000169
170<ul>
Bill Wendling48839d92009-05-17 05:52:39 +0000171 <li>LLVM debug information <b>always provides information to accurately read
172 the source-level state of the program</b>, regardless of which LLVM
173 optimizations have been run, and without any modification to the
174 optimizations themselves. However, some optimizations may impact the
175 ability to modify the current state of the program with a debugger, such
176 as setting program variables, or calling functions that have been
177 deleted.</li>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000178
Bill Wendling48839d92009-05-17 05:52:39 +0000179 <li>LLVM optimizations gracefully interact with debugging information. If
180 they are not aware of debug information, they are automatically disabled
181 as necessary in the cases that would invalidate the debug info. This
182 retains the LLVM features, making it easy to write new
183 transformations.</li>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000184
Bill Wendling48839d92009-05-17 05:52:39 +0000185 <li>As desired, LLVM optimizations can be upgraded to be aware of the LLVM
186 debugging information, allowing them to update the debugging information
187 as they perform aggressive optimizations. This means that, with effort,
188 the LLVM optimizers could optimize debug code just as well as non-debug
189 code.</li>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000190
Bill Wendling48839d92009-05-17 05:52:39 +0000191 <li>LLVM debug information does not prevent many important optimizations from
192 happening (for example inlining, basic block reordering/merging/cleanup,
193 tail duplication, etc), further reducing the amount of the compiler that
194 eventually is "aware" of debugging information.</li>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000195
Bill Wendling48839d92009-05-17 05:52:39 +0000196 <li>LLVM debug information is automatically optimized along with the rest of
197 the program, using existing facilities. For example, duplicate
198 information is automatically merged by the linker, and unused information
199 is automatically removed.</li>
Misha Brukman82873732004-05-12 19:21:57 +0000200</ul>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000201
Misha Brukman82873732004-05-12 19:21:57 +0000202<p>Basically, the debug information allows you to compile a program with
Bill Wendling48839d92009-05-17 05:52:39 +0000203 "<tt>-O0 -g</tt>" and get full debug information, allowing you to arbitrarily
204 modify the program as it executes from a debugger. Compiling a program with
205 "<tt>-O3 -g</tt>" gives you full debug information that is always available
206 and accurate for reading (e.g., you get accurate stack traces despite tail
207 call elimination and inlining), but you might lose the ability to modify the
208 program and call functions where were optimized out of the program, or
209 inlined away completely.</p>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000210
Misha Brukman96e00812008-12-16 02:54:22 +0000211<p><a href="TestingGuide.html#quicktestsuite">LLVM test suite</a> provides a
Bill Wendling48839d92009-05-17 05:52:39 +0000212 framework to test optimizer's handling of debugging information. It can be
213 run like this:</p>
Devang Patela5c05aa2008-11-21 19:35:57 +0000214
215<div class="doc_code">
216<pre>
217% cd llvm/projects/test-suite/MultiSource/Benchmarks # or some other level
218% make TEST=dbgopt
219</pre>
220</div>
221
Bill Wendling48839d92009-05-17 05:52:39 +0000222<p>This will test impact of debugging information on optimization passes. If
223 debugging information influences optimization passes then it will be reported
224 as a failure. See <a href="TestingGuide.html">TestingGuide</a> for more
225 information on LLVM test infrastructure and how to run various tests.</p>
Devang Patela5c05aa2008-11-21 19:35:57 +0000226
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000227</div>
228
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000229<!-- *********************************************************************** -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000230<h2>
Chris Lattner8ff75902004-01-06 05:31:32 +0000231 <a name="format">Debugging information format</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000232</h2>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000233<!-- *********************************************************************** -->
234
235<div class="doc_text">
236
237<p>LLVM debugging information has been carefully designed to make it possible
Bill Wendling48839d92009-05-17 05:52:39 +0000238 for the optimizer to optimize the program and debugging information without
239 necessarily having to know anything about debugging information. In
John Criswellb34500f2010-03-17 15:01:50 +0000240 particular, the use of metadata avoids duplicated debugging information from
Devang Patele4b27562009-08-28 23:24:31 +0000241 the beginning, and the global dead code elimination pass automatically
242 deletes debugging information for a function if it decides to delete the
243 function. </p>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000244
245<p>To do this, most of the debugging information (descriptors for types,
Bill Wendling48839d92009-05-17 05:52:39 +0000246 variables, functions, source files, etc) is inserted by the language
Devang Patele4b27562009-08-28 23:24:31 +0000247 front-end in the form of LLVM metadata. </p>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000248
Jim Laskeycec12a52006-03-14 18:08:46 +0000249<p>Debug information is designed to be agnostic about the target debugger and
Bill Wendling48839d92009-05-17 05:52:39 +0000250 debugging information representation (e.g. DWARF/Stabs/etc). It uses a
Devang Patele4b27562009-08-28 23:24:31 +0000251 generic pass to decode the information that represents variables, types,
252 functions, namespaces, etc: this allows for arbitrary source-language
253 semantics and type-systems to be used, as long as there is a module
254 written for the target debugger to interpret the information. </p>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000255
Misha Brukman82873732004-05-12 19:21:57 +0000256<p>To provide basic functionality, the LLVM debugger does have to make some
Bill Wendling48839d92009-05-17 05:52:39 +0000257 assumptions about the source-level language being debugged, though it keeps
258 these to a minimum. The only common features that the LLVM debugger assumes
Devang Patel4b945502010-03-09 00:44:10 +0000259 exist are <a href="#format_files">source files</a>,
Bill Wendling48839d92009-05-17 05:52:39 +0000260 and <a href="#format_global_variables">program objects</a>. These abstract
261 objects are used by a debugger to form stack traces, show information about
262 local variables, etc.</p>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000263
264<p>This section of the documentation first describes the representation aspects
Bill Wendling48839d92009-05-17 05:52:39 +0000265 common to any source-language. The <a href="#ccxx_frontend">next section</a>
266 describes the data layout conventions used by the C and C++ front-ends.</p>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000267
268</div>
269
270<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000271<h3>
Jim Laskeycec12a52006-03-14 18:08:46 +0000272 <a name="debug_info_descriptors">Debug information descriptors</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000273</h3>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000274
275<div class="doc_text">
Bill Wendling48839d92009-05-17 05:52:39 +0000276
Jim Laskeycec12a52006-03-14 18:08:46 +0000277<p>In consideration of the complexity and volume of debug information, LLVM
Devang Patele4b27562009-08-28 23:24:31 +0000278 provides a specification for well formed debug descriptors. </p>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000279
Jim Laskeycec12a52006-03-14 18:08:46 +0000280<p>Consumers of LLVM debug information expect the descriptors for program
Bill Wendling48839d92009-05-17 05:52:39 +0000281 objects to start in a canonical format, but the descriptors can include
282 additional information appended at the end that is source-language
283 specific. All LLVM debugging information is versioned, allowing backwards
284 compatibility in the case that the core structures need to change in some
285 way. Also, all debugging information objects start with a tag to indicate
286 what type of object it is. The source-language is allowed to define its own
287 objects, by using unreserved tag numbers. We recommend using with tags in
Benjamin Kramer8040cd32009-10-12 14:46:08 +0000288 the range 0x1000 through 0x2000 (there is a defined enum DW_TAG_user_base =
Bill Wendling48839d92009-05-17 05:52:39 +0000289 0x1000.)</p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000290
Devang Patele4b27562009-08-28 23:24:31 +0000291<p>The fields of debug descriptors used internally by LLVM
Nick Lewycky655fd032010-03-31 07:50:17 +0000292 are restricted to only the simple data types <tt>i32</tt>, <tt>i1</tt>,
293 <tt>float</tt>, <tt>double</tt>, <tt>mdstring</tt> and <tt>mdnode</tt>. </p>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000294
Bill Wendling48839d92009-05-17 05:52:39 +0000295<div class="doc_code">
Misha Brukman82873732004-05-12 19:21:57 +0000296<pre>
Devang Patele4b27562009-08-28 23:24:31 +0000297!1 = metadata !{
Nick Lewycky655fd032010-03-31 07:50:17 +0000298 i32, ;; A tag
Bill Wendling48839d92009-05-17 05:52:39 +0000299 ...
300}
Misha Brukman82873732004-05-12 19:21:57 +0000301</pre>
Bill Wendling48839d92009-05-17 05:52:39 +0000302</div>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000303
Jim Laskey7089f452006-06-16 13:14:03 +0000304<p><a name="LLVMDebugVersion">The first field of a descriptor is always an
Nick Lewycky655fd032010-03-31 07:50:17 +0000305 <tt>i32</tt> containing a tag value identifying the content of the
Bill Wendling48839d92009-05-17 05:52:39 +0000306 descriptor. The remaining fields are specific to the descriptor. The values
307 of tags are loosely bound to the tag values of DWARF information entries.
308 However, that does not restrict the use of the information supplied to DWARF
309 targets. To facilitate versioning of debug information, the tag is augmented
Nick Lewycky655fd032010-03-31 07:50:17 +0000310 with the current debug version (LLVMDebugVersion = 8 &lt;&lt; 16 or 0x80000 or
Devang Patel4b945502010-03-09 00:44:10 +0000311 524288.)</a></p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000312
Jim Laskey7089f452006-06-16 13:14:03 +0000313<p>The details of the various descriptors follow.</p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000314
315</div>
316
317<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000318<h4>
Jim Laskeycec12a52006-03-14 18:08:46 +0000319 <a name="format_compile_units">Compile unit descriptors</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000320</h4>
Jim Laskeycec12a52006-03-14 18:08:46 +0000321
322<div class="doc_text">
323
Bill Wendling48839d92009-05-17 05:52:39 +0000324<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +0000325<pre>
Devang Patele4b27562009-08-28 23:24:31 +0000326!0 = metadata !{
327 i32, ;; Tag = 17 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a>
328 ;; (DW_TAG_compile_unit)
329 i32, ;; Unused field.
330 i32, ;; DWARF language identifier (ex. DW_LANG_C89)
331 metadata, ;; Source file name
332 metadata, ;; Source file directory (includes trailing slash)
333 metadata ;; Producer (ex. "4.0.1 LLVM (LLVM research group)")
334 i1, ;; True if this is a main compile unit.
335 i1, ;; True if this is optimized.
336 metadata, ;; Flags
337 i32 ;; Runtime version
Bill Wendling48839d92009-05-17 05:52:39 +0000338}
Jim Laskeycec12a52006-03-14 18:08:46 +0000339</pre>
Bill Wendling48839d92009-05-17 05:52:39 +0000340</div>
Jim Laskeycec12a52006-03-14 18:08:46 +0000341
Bill Wendling48839d92009-05-17 05:52:39 +0000342<p>These descriptors contain a source language ID for the file (we use the DWARF
343 3.0 ID numbers, such as <tt>DW_LANG_C89</tt>, <tt>DW_LANG_C_plus_plus</tt>,
344 <tt>DW_LANG_Cobol74</tt>, etc), three strings describing the filename,
345 working directory of the compiler, and an identifier string for the compiler
346 that produced it.</p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000347
Bill Wendling48839d92009-05-17 05:52:39 +0000348<p>Compile unit descriptors provide the root context for objects declared in a
Devang Patel4b945502010-03-09 00:44:10 +0000349 specific compilation unit. File descriptors are defined using this context.</p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000350
Devang Patel4b945502010-03-09 00:44:10 +0000351</div>
352
353<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000354<h4>
Devang Patel4b945502010-03-09 00:44:10 +0000355 <a name="format_files">File descriptors</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000356</h4>
Devang Patel4b945502010-03-09 00:44:10 +0000357
358<div class="doc_text">
359
360<div class="doc_code">
361<pre>
362!0 = metadata !{
363 i32, ;; Tag = 41 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a>
364 ;; (DW_TAG_file_type)
365 metadata, ;; Source file name
366 metadata, ;; Source file directory (includes trailing slash)
367 metadata ;; Reference to compile unit where defined
368}
369</pre>
370</div>
371
John Criswellb34500f2010-03-17 15:01:50 +0000372<p>These descriptors contain information for a file. Global variables and top
Devang Patel4b945502010-03-09 00:44:10 +0000373 level functions would be defined using this context.k File descriptors also
374 provide context for source line correspondence. </p>
375
376<p>Each input file is encoded as a separate file descriptor in LLVM debugging
377 information output. Each file descriptor would be defined using a
378 compile unit. </p>
Bill Wendling48839d92009-05-17 05:52:39 +0000379
Jim Laskeycec12a52006-03-14 18:08:46 +0000380</div>
381
382<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000383<h4>
Jim Laskeycec12a52006-03-14 18:08:46 +0000384 <a name="format_global_variables">Global variable descriptors</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000385</h4>
Jim Laskeycec12a52006-03-14 18:08:46 +0000386
387<div class="doc_text">
388
Bill Wendling48839d92009-05-17 05:52:39 +0000389<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +0000390<pre>
Devang Patele4b27562009-08-28 23:24:31 +0000391!1 = metadata !{
392 i32, ;; Tag = 52 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a>
393 ;; (DW_TAG_variable)
394 i32, ;; Unused field.
395 metadata, ;; Reference to context descriptor
396 metadata, ;; Name
397 metadata, ;; Display name (fully qualified C++ name)
398 metadata, ;; MIPS linkage name (for C++)
Devang Patel4b945502010-03-09 00:44:10 +0000399 metadata, ;; Reference to file where defined
Devang Patele4b27562009-08-28 23:24:31 +0000400 i32, ;; Line number where defined
401 metadata, ;; Reference to type descriptor
402 i1, ;; True if the global is local to compile unit (static)
403 i1, ;; True if the global is defined in the compile unit (not extern)
Dan Gohmanfe47aae2010-05-28 17:13:49 +0000404 {}* ;; Reference to the global variable
Bill Wendling48839d92009-05-17 05:52:39 +0000405}
Jim Laskeycec12a52006-03-14 18:08:46 +0000406</pre>
Bill Wendling48839d92009-05-17 05:52:39 +0000407</div>
Jim Laskeycec12a52006-03-14 18:08:46 +0000408
409<p>These descriptors provide debug information about globals variables. The
Devang Patelda6eed32011-03-29 17:27:08 +0000410provide details such as name, type and where the variable is defined. All
411global variables are collected by named metadata <tt>!llvm.dbg.gv</tt>.</p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000412
413</div>
414
415<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000416<h4>
Jim Laskeycec12a52006-03-14 18:08:46 +0000417 <a name="format_subprograms">Subprogram descriptors</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000418</h4>
Jim Laskeycec12a52006-03-14 18:08:46 +0000419
420<div class="doc_text">
421
Bill Wendling48839d92009-05-17 05:52:39 +0000422<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +0000423<pre>
Devang Patele4b27562009-08-28 23:24:31 +0000424!2 = metadata !{
425 i32, ;; Tag = 46 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a>
426 ;; (DW_TAG_subprogram)
427 i32, ;; Unused field.
428 metadata, ;; Reference to context descriptor
429 metadata, ;; Name
430 metadata, ;; Display name (fully qualified C++ name)
431 metadata, ;; MIPS linkage name (for C++)
Devang Patel4b945502010-03-09 00:44:10 +0000432 metadata, ;; Reference to file where defined
Devang Patele4b27562009-08-28 23:24:31 +0000433 i32, ;; Line number where defined
434 metadata, ;; Reference to type descriptor
435 i1, ;; True if the global is local to compile unit (static)
Devang Patel5e06bb82011-04-22 23:10:17 +0000436 i1, ;; True if the global is defined in the compile unit (not extern)
437 i32, ;; Virtuality, e.g. dwarf::DW_VIRTUALITY__virtual
438 i32, ;; Index into a virtual function
Devang Patel80ecc152010-06-04 22:49:55 +0000439 metadata, ;; indicates which base type contains the vtable pointer for the
440 ;; derived class
Devang Patel5e06bb82011-04-22 23:10:17 +0000441 i1, ;; isArtificial
442 i1, ;; isOptimized
443 Function *,;; Pointer to LLVM function
444 metadata, ;; Lists function template parameters
445 metadata ;; Function declaration descriptor
Bill Wendling48839d92009-05-17 05:52:39 +0000446}
Jim Laskeycec12a52006-03-14 18:08:46 +0000447</pre>
Bill Wendling48839d92009-05-17 05:52:39 +0000448</div>
Jim Laskeycec12a52006-03-14 18:08:46 +0000449
450<p>These descriptors provide debug information about functions, methods and
Bill Wendling48839d92009-05-17 05:52:39 +0000451 subprograms. They provide details such as name, return types and the source
Devang Patelda6eed32011-03-29 17:27:08 +0000452 location where the subprogram is defined.
453 All subprogram descriptors are collected by a named metadata
454 <tt>!llvm.dbg.sp</tt>.
455</p>
Jim Laskey3d11bee2006-03-15 19:10:52 +0000456
457</div>
Bill Wendling48839d92009-05-17 05:52:39 +0000458
Jim Laskey3d11bee2006-03-15 19:10:52 +0000459<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000460<h4>
Jim Laskey3d11bee2006-03-15 19:10:52 +0000461 <a name="format_blocks">Block descriptors</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000462</h4>
Jim Laskey3d11bee2006-03-15 19:10:52 +0000463
464<div class="doc_text">
465
Bill Wendling48839d92009-05-17 05:52:39 +0000466<div class="doc_code">
Jim Laskey3d11bee2006-03-15 19:10:52 +0000467<pre>
Devang Patele4b27562009-08-28 23:24:31 +0000468!3 = metadata !{
Devang Patelc79dda22010-10-04 16:51:59 +0000469 i32, ;; Tag = 11 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a> (DW_TAG_lexical_block)
Devang Patel7f271fc2010-10-01 22:45:00 +0000470 metadata,;; Reference to context descriptor
471 i32, ;; Line number
Devang Patel90d81f12011-03-08 16:25:29 +0000472 i32, ;; Column number
473 metadata,;; Reference to source file
474 i32 ;; Unique ID to identify blocks from a template function
Bill Wendling48839d92009-05-17 05:52:39 +0000475}
Jim Laskey3d11bee2006-03-15 19:10:52 +0000476</pre>
Bill Wendling48839d92009-05-17 05:52:39 +0000477</div>
Jim Laskey3d11bee2006-03-15 19:10:52 +0000478
479<p>These descriptors provide debug information about nested blocks within a
Devang Patel7f271fc2010-10-01 22:45:00 +0000480 subprogram. The line number and column numbers are used to dinstinguish
481 two lexical blocks at same depth. </p>
Jim Laskey3d11bee2006-03-15 19:10:52 +0000482
Jim Laskeycec12a52006-03-14 18:08:46 +0000483</div>
484
485<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000486<h4>
Jim Laskeycec12a52006-03-14 18:08:46 +0000487 <a name="format_basic_type">Basic type descriptors</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000488</h4>
Jim Laskeycec12a52006-03-14 18:08:46 +0000489
490<div class="doc_text">
491
Bill Wendling48839d92009-05-17 05:52:39 +0000492<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +0000493<pre>
Devang Patele4b27562009-08-28 23:24:31 +0000494!4 = metadata !{
495 i32, ;; Tag = 36 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a>
496 ;; (DW_TAG_base_type)
497 metadata, ;; Reference to context (typically a compile unit)
498 metadata, ;; Name (may be "" for anonymous types)
Devang Patel4b945502010-03-09 00:44:10 +0000499 metadata, ;; Reference to file where defined (may be NULL)
Devang Patele4b27562009-08-28 23:24:31 +0000500 i32, ;; Line number where defined (may be 0)
501 i64, ;; Size in bits
502 i64, ;; Alignment in bits
503 i64, ;; Offset in bits
504 i32, ;; Flags
505 i32 ;; DWARF type encoding
Bill Wendling48839d92009-05-17 05:52:39 +0000506}
Jim Laskeycec12a52006-03-14 18:08:46 +0000507</pre>
Bill Wendling48839d92009-05-17 05:52:39 +0000508</div>
Jim Laskeycec12a52006-03-14 18:08:46 +0000509
510<p>These descriptors define primitive types used in the code. Example int, bool
Bill Wendling48839d92009-05-17 05:52:39 +0000511 and float. The context provides the scope of the type, which is usually the
512 top level. Since basic types are not usually user defined the compile unit
513 and line number can be left as NULL and 0. The size, alignment and offset
514 are expressed in bits and can be 64 bit values. The alignment is used to
515 round the offset when embedded in a
516 <a href="#format_composite_type">composite type</a> (example to keep float
517 doubles on 64 bit boundaries.) The offset is the bit offset if embedded in
518 a <a href="#format_composite_type">composite type</a>.</p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000519
520<p>The type encoding provides the details of the type. The values are typically
Bill Wendling48839d92009-05-17 05:52:39 +0000521 one of the following:</p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000522
Bill Wendling48839d92009-05-17 05:52:39 +0000523<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +0000524<pre>
Bill Wendling48839d92009-05-17 05:52:39 +0000525DW_ATE_address = 1
526DW_ATE_boolean = 2
527DW_ATE_float = 4
528DW_ATE_signed = 5
529DW_ATE_signed_char = 6
530DW_ATE_unsigned = 7
531DW_ATE_unsigned_char = 8
Jim Laskeycec12a52006-03-14 18:08:46 +0000532</pre>
Bill Wendling48839d92009-05-17 05:52:39 +0000533</div>
Jim Laskeycec12a52006-03-14 18:08:46 +0000534
535</div>
536
537<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000538<h4>
Jim Laskeycec12a52006-03-14 18:08:46 +0000539 <a name="format_derived_type">Derived type descriptors</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000540</h4>
Jim Laskeycec12a52006-03-14 18:08:46 +0000541
542<div class="doc_text">
543
Bill Wendling48839d92009-05-17 05:52:39 +0000544<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +0000545<pre>
Devang Patele4b27562009-08-28 23:24:31 +0000546!5 = metadata !{
547 i32, ;; Tag (see below)
548 metadata, ;; Reference to context
549 metadata, ;; Name (may be "" for anonymous types)
Devang Patel4b945502010-03-09 00:44:10 +0000550 metadata, ;; Reference to file where defined (may be NULL)
Devang Patele4b27562009-08-28 23:24:31 +0000551 i32, ;; Line number where defined (may be 0)
Devang Patel0ffd10b2010-10-01 19:19:30 +0000552 i64, ;; Size in bits
553 i64, ;; Alignment in bits
554 i64, ;; Offset in bits
Devang Patele9db5e22011-04-16 00:11:51 +0000555 metadata, ;; Reference to type derived from
556 metadata, ;; (optional) Name of the Objective C property assoicated with
557 ;; Objective-C an ivar
558 metadata, ;; (optional) Name of the Objective C property getter selector.
559 metadata, ;; (optional) Name of the Objective C property setter selector.
560 i32 ;; (optional) Objective C property attributes.
Bill Wendling48839d92009-05-17 05:52:39 +0000561}
Jim Laskeycec12a52006-03-14 18:08:46 +0000562</pre>
Bill Wendling48839d92009-05-17 05:52:39 +0000563</div>
Jim Laskeycec12a52006-03-14 18:08:46 +0000564
565<p>These descriptors are used to define types derived from other types. The
566value of the tag varies depending on the meaning. The following are possible
Misha Brukman96e00812008-12-16 02:54:22 +0000567tag values:</p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000568
Bill Wendling48839d92009-05-17 05:52:39 +0000569<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +0000570<pre>
Bill Wendling48839d92009-05-17 05:52:39 +0000571DW_TAG_formal_parameter = 5
572DW_TAG_member = 13
573DW_TAG_pointer_type = 15
574DW_TAG_reference_type = 16
575DW_TAG_typedef = 22
576DW_TAG_const_type = 38
577DW_TAG_volatile_type = 53
578DW_TAG_restrict_type = 55
Jim Laskeycec12a52006-03-14 18:08:46 +0000579</pre>
Bill Wendling48839d92009-05-17 05:52:39 +0000580</div>
Jim Laskeycec12a52006-03-14 18:08:46 +0000581
Bill Wendling48839d92009-05-17 05:52:39 +0000582<p><tt>DW_TAG_member</tt> is used to define a member of
583 a <a href="#format_composite_type">composite type</a>
584 or <a href="#format_subprograms">subprogram</a>. The type of the member is
585 the <a href="#format_derived_type">derived
586 type</a>. <tt>DW_TAG_formal_parameter</tt> is used to define a member which
587 is a formal argument of a subprogram.</p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000588
Bill Wendling48839d92009-05-17 05:52:39 +0000589<p><tt>DW_TAG_typedef</tt> is used to provide a name for the derived type.</p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000590
Bill Wendling48839d92009-05-17 05:52:39 +0000591<p><tt>DW_TAG_pointer_type</tt>,<tt>DW_TAG_reference_type</tt>,
592 <tt>DW_TAG_const_type</tt>, <tt>DW_TAG_volatile_type</tt>
593 and <tt>DW_TAG_restrict_type</tt> are used to qualify
594 the <a href="#format_derived_type">derived type</a>. </p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000595
596<p><a href="#format_derived_type">Derived type</a> location can be determined
Bill Wendling48839d92009-05-17 05:52:39 +0000597 from the compile unit and line number. The size, alignment and offset are
598 expressed in bits and can be 64 bit values. The alignment is used to round
599 the offset when embedded in a <a href="#format_composite_type">composite
600 type</a> (example to keep float doubles on 64 bit boundaries.) The offset is
601 the bit offset if embedded in a <a href="#format_composite_type">composite
602 type</a>.</p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000603
Devang Patel37280782011-02-03 00:22:17 +0000604<p>Note that the <tt>void *</tt> type is expressed as a type derived from NULL.
605</p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000606
607</div>
608
609<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000610<h4>
Jim Laskeycec12a52006-03-14 18:08:46 +0000611 <a name="format_composite_type">Composite type descriptors</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000612</h4>
Jim Laskeycec12a52006-03-14 18:08:46 +0000613
614<div class="doc_text">
615
Bill Wendling48839d92009-05-17 05:52:39 +0000616<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +0000617<pre>
Devang Patele4b27562009-08-28 23:24:31 +0000618!6 = metadata !{
619 i32, ;; Tag (see below)
620 metadata, ;; Reference to context
621 metadata, ;; Name (may be "" for anonymous types)
Devang Patel4b945502010-03-09 00:44:10 +0000622 metadata, ;; Reference to file where defined (may be NULL)
Devang Patele4b27562009-08-28 23:24:31 +0000623 i32, ;; Line number where defined (may be 0)
624 i64, ;; Size in bits
625 i64, ;; Alignment in bits
626 i64, ;; Offset in bits
627 i32, ;; Flags
628 metadata, ;; Reference to type derived from
629 metadata, ;; Reference to array of member descriptors
630 i32 ;; Runtime languages
Bill Wendling48839d92009-05-17 05:52:39 +0000631}
Jim Laskeycec12a52006-03-14 18:08:46 +0000632</pre>
Bill Wendling48839d92009-05-17 05:52:39 +0000633</div>
Jim Laskeycec12a52006-03-14 18:08:46 +0000634
635<p>These descriptors are used to define types that are composed of 0 or more
636elements. The value of the tag varies depending on the meaning. The following
Misha Brukman96e00812008-12-16 02:54:22 +0000637are possible tag values:</p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000638
Bill Wendling48839d92009-05-17 05:52:39 +0000639<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +0000640<pre>
Bill Wendling48839d92009-05-17 05:52:39 +0000641DW_TAG_array_type = 1
642DW_TAG_enumeration_type = 4
643DW_TAG_structure_type = 19
644DW_TAG_union_type = 23
645DW_TAG_vector_type = 259
Bruno Cardoso Lopesd80ddc02009-05-29 17:08:57 +0000646DW_TAG_subroutine_type = 21
647DW_TAG_inheritance = 28
Jim Laskeycec12a52006-03-14 18:08:46 +0000648</pre>
Bill Wendling48839d92009-05-17 05:52:39 +0000649</div>
Jim Laskeycec12a52006-03-14 18:08:46 +0000650
Jim Laskeyf8a01a92006-06-15 20:51:43 +0000651<p>The vector flag indicates that an array type is a native packed vector.</p>
652
Jim Laskey7089f452006-06-16 13:14:03 +0000653<p>The members of array types (tag = <tt>DW_TAG_array_type</tt>) or vector types
Bill Wendling48839d92009-05-17 05:52:39 +0000654 (tag = <tt>DW_TAG_vector_type</tt>) are <a href="#format_subrange">subrange
655 descriptors</a>, each representing the range of subscripts at that level of
656 indexing.</p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000657
658<p>The members of enumeration types (tag = <tt>DW_TAG_enumeration_type</tt>) are
Bill Wendling48839d92009-05-17 05:52:39 +0000659 <a href="#format_enumeration">enumerator descriptors</a>, each representing
Devang Patelda6eed32011-03-29 17:27:08 +0000660 the definition of enumeration value for the set. All enumeration type
661 descriptors are collected by named metadata <tt>!llvm.dbg.enum</tt>.</p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000662
663<p>The members of structure (tag = <tt>DW_TAG_structure_type</tt>) or union (tag
Bill Wendling48839d92009-05-17 05:52:39 +0000664 = <tt>DW_TAG_union_type</tt>) types are any one of
665 the <a href="#format_basic_type">basic</a>,
666 <a href="#format_derived_type">derived</a>
667 or <a href="#format_composite_type">composite</a> type descriptors, each
668 representing a field member of the structure or union.</p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000669
Jim Laskey4a9df242006-08-21 21:21:06 +0000670<p>For C++ classes (tag = <tt>DW_TAG_structure_type</tt>), member descriptors
Bill Wendling48839d92009-05-17 05:52:39 +0000671 provide information about base classes, static members and member
672 functions. If a member is a <a href="#format_derived_type">derived type
673 descriptor</a> and has a tag of <tt>DW_TAG_inheritance</tt>, then the type
674 represents a base class. If the member of is
675 a <a href="#format_global_variables">global variable descriptor</a> then it
676 represents a static member. And, if the member is
677 a <a href="#format_subprograms">subprogram descriptor</a> then it represents
678 a member function. For static members and member
679 functions, <tt>getName()</tt> returns the members link or the C++ mangled
680 name. <tt>getDisplayName()</tt> the simplied version of the name.</p>
Jim Laskey4a9df242006-08-21 21:21:06 +0000681
Bill Wendling48839d92009-05-17 05:52:39 +0000682<p>The first member of subroutine (tag = <tt>DW_TAG_subroutine_type</tt>) type
683 elements is the return type for the subroutine. The remaining elements are
684 the formal arguments to the subroutine.</p>
Jim Laskey094ee722006-06-20 21:13:20 +0000685
Jim Laskeycec12a52006-03-14 18:08:46 +0000686<p><a href="#format_composite_type">Composite type</a> location can be
Bill Wendling48839d92009-05-17 05:52:39 +0000687 determined from the compile unit and line number. The size, alignment and
688 offset are expressed in bits and can be 64 bit values. The alignment is used
689 to round the offset when embedded in
690 a <a href="#format_composite_type">composite type</a> (as an example, to keep
691 float doubles on 64 bit boundaries.) The offset is the bit offset if embedded
692 in a <a href="#format_composite_type">composite type</a>.</p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000693
694</div>
695
696<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000697<h4>
Jim Laskeycec12a52006-03-14 18:08:46 +0000698 <a name="format_subrange">Subrange descriptors</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000699</h4>
Jim Laskeycec12a52006-03-14 18:08:46 +0000700
701<div class="doc_text">
702
Bill Wendling48839d92009-05-17 05:52:39 +0000703<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +0000704<pre>
Devang Patel37280782011-02-03 00:22:17 +0000705!42 = metadata !{
Bill Wendling48839d92009-05-17 05:52:39 +0000706 i32, ;; Tag = 33 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a> (DW_TAG_subrange_type)
707 i64, ;; Low value
708 i64 ;; High value
709}
Jim Laskeycec12a52006-03-14 18:08:46 +0000710</pre>
Bill Wendling48839d92009-05-17 05:52:39 +0000711</div>
Jim Laskeycec12a52006-03-14 18:08:46 +0000712
713<p>These descriptors are used to define ranges of array subscripts for an array
Bill Wendling48839d92009-05-17 05:52:39 +0000714 <a href="#format_composite_type">composite type</a>. The low value defines
715 the lower bounds typically zero for C/C++. The high value is the upper
716 bounds. Values are 64 bit. High - low + 1 is the size of the array. If low
Devang Patel3f932a72011-04-08 23:39:38 +0000717 > high the array bounds are not included in generated debugging information.
718</p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000719
720</div>
721
722<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000723<h4>
Jim Laskeycec12a52006-03-14 18:08:46 +0000724 <a name="format_enumeration">Enumerator descriptors</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000725</h4>
Jim Laskeycec12a52006-03-14 18:08:46 +0000726
727<div class="doc_text">
728
Bill Wendling48839d92009-05-17 05:52:39 +0000729<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +0000730<pre>
Devang Patele4b27562009-08-28 23:24:31 +0000731!6 = metadata !{
732 i32, ;; Tag = 40 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a>
733 ;; (DW_TAG_enumerator)
734 metadata, ;; Name
735 i64 ;; Value
Bill Wendling48839d92009-05-17 05:52:39 +0000736}
Jim Laskeycec12a52006-03-14 18:08:46 +0000737</pre>
Bill Wendling48839d92009-05-17 05:52:39 +0000738</div>
Jim Laskeycec12a52006-03-14 18:08:46 +0000739
Bill Wendling48839d92009-05-17 05:52:39 +0000740<p>These descriptors are used to define members of an
741 enumeration <a href="#format_composite_type">composite type</a>, it
742 associates the name to the value.</p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000743
744</div>
745
746<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000747<h4>
Jim Laskey383e0092006-03-23 17:54:33 +0000748 <a name="format_variables">Local variables</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000749</h4>
Jim Laskey383e0092006-03-23 17:54:33 +0000750
751<div class="doc_text">
Bill Wendling48839d92009-05-17 05:52:39 +0000752
753<div class="doc_code">
Jim Laskey383e0092006-03-23 17:54:33 +0000754<pre>
Devang Patele4b27562009-08-28 23:24:31 +0000755!7 = metadata !{
756 i32, ;; Tag (see below)
757 metadata, ;; Context
758 metadata, ;; Name
Devang Patel4b945502010-03-09 00:44:10 +0000759 metadata, ;; Reference to file where defined
Devang Patela83688f2011-03-08 16:29:40 +0000760 i32, ;; 24 bit - Line number where defined
761 ;; 8 bit - Argument number. 1 indicates 1st argument.
Devang Patele4b27562009-08-28 23:24:31 +0000762 metadata ;; Type descriptor
Bill Wendling48839d92009-05-17 05:52:39 +0000763}
Jim Laskey383e0092006-03-23 17:54:33 +0000764</pre>
Bill Wendling48839d92009-05-17 05:52:39 +0000765</div>
Jim Laskey383e0092006-03-23 17:54:33 +0000766
767<p>These descriptors are used to define variables local to a sub program. The
Bill Wendling48839d92009-05-17 05:52:39 +0000768 value of the tag depends on the usage of the variable:</p>
Jim Laskey383e0092006-03-23 17:54:33 +0000769
Bill Wendling48839d92009-05-17 05:52:39 +0000770<div class="doc_code">
Jim Laskey383e0092006-03-23 17:54:33 +0000771<pre>
Bill Wendling48839d92009-05-17 05:52:39 +0000772DW_TAG_auto_variable = 256
773DW_TAG_arg_variable = 257
774DW_TAG_return_variable = 258
Jim Laskey383e0092006-03-23 17:54:33 +0000775</pre>
Bill Wendling48839d92009-05-17 05:52:39 +0000776</div>
Jim Laskey383e0092006-03-23 17:54:33 +0000777
778<p>An auto variable is any variable declared in the body of the function. An
Bill Wendling48839d92009-05-17 05:52:39 +0000779 argument variable is any variable that appears as a formal argument to the
780 function. A return variable is used to track the result of a function and
781 has no source correspondent.</p>
Jim Laskey383e0092006-03-23 17:54:33 +0000782
Jim Laskey2d395d92006-03-24 09:20:27 +0000783<p>The context is either the subprogram or block where the variable is defined.
Bill Wendling48839d92009-05-17 05:52:39 +0000784 Name the source variable name. Compile unit and line indicate where the
785 variable was defined. Type descriptor defines the declared type of the
786 variable.</p>
Jim Laskey383e0092006-03-23 17:54:33 +0000787
788</div>
789
790<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000791<h3>
Jim Laskeycec12a52006-03-14 18:08:46 +0000792 <a name="format_common_intrinsics">Debugger intrinsic functions</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000793</h3>
Jim Laskeycec12a52006-03-14 18:08:46 +0000794
795<div class="doc_text">
796
797<p>LLVM uses several intrinsic functions (name prefixed with "llvm.dbg") to
Bill Wendling48839d92009-05-17 05:52:39 +0000798 provide debug information at various points in generated code.</p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000799
800</div>
801
802<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000803<h4>
Jim Laskeycec12a52006-03-14 18:08:46 +0000804 <a name="format_common_declare">llvm.dbg.declare</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000805</h4>
Jim Laskeycec12a52006-03-14 18:08:46 +0000806
807<div class="doc_text">
808<pre>
Devang Patel4c7c0c62010-10-01 19:22:16 +0000809 void %<a href="#format_common_declare">llvm.dbg.declare</a>(metadata, metadata)
Jim Laskeycec12a52006-03-14 18:08:46 +0000810</pre>
811
Jim Laskey2d395d92006-03-24 09:20:27 +0000812<p>This intrinsic provides information about a local element (ex. variable.) The
NAKAMURA Takumi4d6deb02011-04-09 09:51:57 +0000813 first argument is metadata holding alloca for the variable. The
Devang Patele136e502011-02-01 17:22:12 +0000814 second argument is metadata containing description of the variable. </p>
Jim Laskeycec12a52006-03-14 18:08:46 +0000815</div>
816
817<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000818<h4>
Victor Hernandez67a1a542010-01-11 22:53:48 +0000819 <a name="format_common_value">llvm.dbg.value</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000820</h4>
Victor Hernandez67a1a542010-01-11 22:53:48 +0000821
822<div class="doc_text">
823<pre>
Dan Gohman3dfb3cf2010-05-28 17:07:41 +0000824 void %<a href="#format_common_value">llvm.dbg.value</a>(metadata, i64, metadata)
Victor Hernandez67a1a542010-01-11 22:53:48 +0000825</pre>
826
827<p>This intrinsic provides information when a user source variable is set to a
828 new value. The first argument is the new value (wrapped as metadata). The
829 second argument is the offset in the user source variable where the new value
Devang Patele136e502011-02-01 17:22:12 +0000830 is written. The third argument is metadata containing description of the
831 user source variable. </p>
Victor Hernandez67a1a542010-01-11 22:53:48 +0000832</div>
833
834<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000835<h3>
Chris Lattner8ff75902004-01-06 05:31:32 +0000836 <a name="format_common_lifetime">Object lifetimes and scoping</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000837</h3>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000838
839<div class="doc_text">
Bill Wendlingcf493b82009-12-01 00:53:11 +0000840<p>In many languages, the local variables in functions can have their lifetimes
841 or scopes limited to a subset of a function. In the C family of languages,
Bill Wendling48839d92009-05-17 05:52:39 +0000842 for example, variables are only live (readable and writable) within the
843 source block that they are defined in. In functional languages, values are
844 only readable after they have been defined. Though this is a very obvious
Bill Wendlingcf493b82009-12-01 00:53:11 +0000845 concept, it is non-trivial to model in LLVM, because it has no notion of
Bill Wendling48839d92009-05-17 05:52:39 +0000846 scoping in this sense, and does not want to be tied to a language's scoping
847 rules.</p>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000848
Bill Wendlingcf493b82009-12-01 00:53:11 +0000849<p>In order to handle this, the LLVM debug format uses the metadata attached to
Nick Lewycky655fd032010-03-31 07:50:17 +0000850 llvm instructions to encode line number and scoping information. Consider
851 the following C fragment, for example:</p>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000852
Bill Wendling48839d92009-05-17 05:52:39 +0000853<div class="doc_code">
Misha Brukman82873732004-05-12 19:21:57 +0000854<pre>
Chris Lattnerbdfb3392004-01-05 05:06:33 +00008551. void foo() {
Devang Patel744950d2009-11-25 23:28:01 +00008562. int X = 21;
8573. int Y = 22;
Chris Lattnerbdfb3392004-01-05 05:06:33 +00008584. {
Devang Patel744950d2009-11-25 23:28:01 +00008595. int Z = 23;
8606. Z = X;
Chris Lattnerbdfb3392004-01-05 05:06:33 +00008617. }
Devang Patel744950d2009-11-25 23:28:01 +00008628. X = Y;
Chris Lattnerbdfb3392004-01-05 05:06:33 +00008639. }
Misha Brukman82873732004-05-12 19:21:57 +0000864</pre>
Bill Wendling48839d92009-05-17 05:52:39 +0000865</div>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000866
Jim Laskeycec12a52006-03-14 18:08:46 +0000867<p>Compiled to LLVM, this function would be represented like this:</p>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000868
Bill Wendling48839d92009-05-17 05:52:39 +0000869<div class="doc_code">
Misha Brukman82873732004-05-12 19:21:57 +0000870<pre>
Bill Wendlingcf493b82009-12-01 00:53:11 +0000871define void @foo() nounwind ssp {
Jim Laskeycec12a52006-03-14 18:08:46 +0000872entry:
Bill Wendling02216ff2009-12-01 00:59:58 +0000873 %X = alloca i32, align 4 ; &lt;i32*&gt; [#uses=4]
874 %Y = alloca i32, align 4 ; &lt;i32*&gt; [#uses=4]
875 %Z = alloca i32, align 4 ; &lt;i32*&gt; [#uses=3]
Dan Gohmanfe47aae2010-05-28 17:13:49 +0000876 %0 = bitcast i32* %X to {}* ; &lt;{}*&gt; [#uses=1]
Devang Patel37280782011-02-03 00:22:17 +0000877 call void @llvm.dbg.declare(metadata !{i32 * %X}, metadata !0), !dbg !7
Devang Patel744950d2009-11-25 23:28:01 +0000878 store i32 21, i32* %X, !dbg !8
Dan Gohmanfe47aae2010-05-28 17:13:49 +0000879 %1 = bitcast i32* %Y to {}* ; &lt;{}*&gt; [#uses=1]
Devang Patel37280782011-02-03 00:22:17 +0000880 call void @llvm.dbg.declare(metadata !{i32 * %Y}, metadata !9), !dbg !10
Devang Patel744950d2009-11-25 23:28:01 +0000881 store i32 22, i32* %Y, !dbg !11
Dan Gohmanfe47aae2010-05-28 17:13:49 +0000882 %2 = bitcast i32* %Z to {}* ; &lt;{}*&gt; [#uses=1]
Devang Patel37280782011-02-03 00:22:17 +0000883 call void @llvm.dbg.declare(metadata !{i32 * %Z}, metadata !12), !dbg !14
Devang Patel744950d2009-11-25 23:28:01 +0000884 store i32 23, i32* %Z, !dbg !15
Bill Wendling02216ff2009-12-01 00:59:58 +0000885 %tmp = load i32* %X, !dbg !16 ; &lt;i32&gt; [#uses=1]
886 %tmp1 = load i32* %Y, !dbg !16 ; &lt;i32&gt; [#uses=1]
887 %add = add nsw i32 %tmp, %tmp1, !dbg !16 ; &lt;i32&gt; [#uses=1]
Devang Patel744950d2009-11-25 23:28:01 +0000888 store i32 %add, i32* %Z, !dbg !16
Bill Wendling02216ff2009-12-01 00:59:58 +0000889 %tmp2 = load i32* %Y, !dbg !17 ; &lt;i32&gt; [#uses=1]
Devang Patel744950d2009-11-25 23:28:01 +0000890 store i32 %tmp2, i32* %X, !dbg !17
891 ret void, !dbg !18
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000892}
Devang Patel744950d2009-11-25 23:28:01 +0000893
Devang Patel37280782011-02-03 00:22:17 +0000894declare void @llvm.dbg.declare(metadata, metadata) nounwind readnone
Devang Patel744950d2009-11-25 23:28:01 +0000895
896!0 = metadata !{i32 459008, metadata !1, metadata !"X",
897 metadata !3, i32 2, metadata !6}; [ DW_TAG_auto_variable ]
898!1 = metadata !{i32 458763, metadata !2}; [DW_TAG_lexical_block ]
899!2 = metadata !{i32 458798, i32 0, metadata !3, metadata !"foo", metadata !"foo",
900 metadata !"foo", metadata !3, i32 1, metadata !4,
901 i1 false, i1 true}; [DW_TAG_subprogram ]
902!3 = metadata !{i32 458769, i32 0, i32 12, metadata !"foo.c",
903 metadata !"/private/tmp", metadata !"clang 1.1", i1 true,
904 i1 false, metadata !"", i32 0}; [DW_TAG_compile_unit ]
905!4 = metadata !{i32 458773, metadata !3, metadata !"", null, i32 0, i64 0, i64 0,
906 i64 0, i32 0, null, metadata !5, i32 0}; [DW_TAG_subroutine_type ]
907!5 = metadata !{null}
908!6 = metadata !{i32 458788, metadata !3, metadata !"int", metadata !3, i32 0,
909 i64 32, i64 32, i64 0, i32 0, i32 5}; [DW_TAG_base_type ]
910!7 = metadata !{i32 2, i32 7, metadata !1, null}
911!8 = metadata !{i32 2, i32 3, metadata !1, null}
912!9 = metadata !{i32 459008, metadata !1, metadata !"Y", metadata !3, i32 3,
913 metadata !6}; [ DW_TAG_auto_variable ]
914!10 = metadata !{i32 3, i32 7, metadata !1, null}
915!11 = metadata !{i32 3, i32 3, metadata !1, null}
916!12 = metadata !{i32 459008, metadata !13, metadata !"Z", metadata !3, i32 5,
917 metadata !6}; [ DW_TAG_auto_variable ]
918!13 = metadata !{i32 458763, metadata !1}; [DW_TAG_lexical_block ]
919!14 = metadata !{i32 5, i32 9, metadata !13, null}
920!15 = metadata !{i32 5, i32 5, metadata !13, null}
921!16 = metadata !{i32 6, i32 5, metadata !13, null}
922!17 = metadata !{i32 8, i32 3, metadata !1, null}
923!18 = metadata !{i32 9, i32 1, metadata !2, null}
Misha Brukman82873732004-05-12 19:21:57 +0000924</pre>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000925</div>
926
Bill Wendlingcf493b82009-12-01 00:53:11 +0000927<p>This example illustrates a few important details about LLVM debugging
928 information. In particular, it shows how the <tt>llvm.dbg.declare</tt>
929 intrinsic and location information, which are attached to an instruction,
930 are applied together to allow a debugger to analyze the relationship between
931 statements, variable definitions, and the code used to implement the
932 function.</p>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000933
Bill Wendlingcf493b82009-12-01 00:53:11 +0000934<div class="doc_code">
Bill Wendling02216ff2009-12-01 00:59:58 +0000935<pre>
Devang Patel37280782011-02-03 00:22:17 +0000936call void @llvm.dbg.declare(metadata, metadata !0), !dbg !7
Bill Wendlingcf493b82009-12-01 00:53:11 +0000937</pre>
938</div>
939
940<p>The first intrinsic
Devang Patel744950d2009-11-25 23:28:01 +0000941 <tt>%<a href="#format_common_declare">llvm.dbg.declare</a></tt>
Bill Wendlingcf493b82009-12-01 00:53:11 +0000942 encodes debugging information for the variable <tt>X</tt>. The metadata
943 <tt>!dbg !7</tt> attached to the intrinsic provides scope information for the
944 variable <tt>X</tt>.</p>
Bill Wendling48839d92009-05-17 05:52:39 +0000945
Bill Wendlingcf493b82009-12-01 00:53:11 +0000946<div class="doc_code">
947<pre>
948!7 = metadata !{i32 2, i32 7, metadata !1, null}
949!1 = metadata !{i32 458763, metadata !2}; [DW_TAG_lexical_block ]
950!2 = metadata !{i32 458798, i32 0, metadata !3, metadata !"foo",
951 metadata !"foo", metadata !"foo", metadata !3, i32 1,
952 metadata !4, i1 false, i1 true}; [DW_TAG_subprogram ]
953</pre>
954</div>
955
956<p>Here <tt>!7</tt> is metadata providing location information. It has four
957 fields: line number, column number, scope, and original scope. The original
958 scope represents inline location if this instruction is inlined inside a
959 caller, and is null otherwise. In this example, scope is encoded by
Devang Patel744950d2009-11-25 23:28:01 +0000960 <tt>!1</tt>. <tt>!1</tt> represents a lexical block inside the scope
961 <tt>!2</tt>, where <tt>!2</tt> is a
Bill Wendlingcf493b82009-12-01 00:53:11 +0000962 <a href="#format_subprograms">subprogram descriptor</a>. This way the
963 location information attached to the intrinsics indicates that the
964 variable <tt>X</tt> is declared at line number 2 at a function level scope in
965 function <tt>foo</tt>.</p>
Bill Wendling48839d92009-05-17 05:52:39 +0000966
Devang Patel744950d2009-11-25 23:28:01 +0000967<p>Now lets take another example.</p>
Bill Wendling48839d92009-05-17 05:52:39 +0000968
Bill Wendlingcf493b82009-12-01 00:53:11 +0000969<div class="doc_code">
Bill Wendling02216ff2009-12-01 00:59:58 +0000970<pre>
Devang Patel37280782011-02-03 00:22:17 +0000971call void @llvm.dbg.declare(metadata, metadata !12), !dbg !14
Bill Wendlingcf493b82009-12-01 00:53:11 +0000972</pre>
973</div>
974
975<p>The second intrinsic
Devang Patel744950d2009-11-25 23:28:01 +0000976 <tt>%<a href="#format_common_declare">llvm.dbg.declare</a></tt>
Bill Wendlingcf493b82009-12-01 00:53:11 +0000977 encodes debugging information for variable <tt>Z</tt>. The metadata
978 <tt>!dbg !14</tt> attached to the intrinsic provides scope information for
979 the variable <tt>Z</tt>.</p>
Bill Wendling48839d92009-05-17 05:52:39 +0000980
Bill Wendlingcf493b82009-12-01 00:53:11 +0000981<div class="doc_code">
982<pre>
983!13 = metadata !{i32 458763, metadata !1}; [DW_TAG_lexical_block ]
984!14 = metadata !{i32 5, i32 9, metadata !13, null}
985</pre>
986</div>
Bill Wendling48839d92009-05-17 05:52:39 +0000987
John Criswellb34500f2010-03-17 15:01:50 +0000988<p>Here <tt>!14</tt> indicates that <tt>Z</tt> is declared at line number 5 and
Bill Wendlingcf493b82009-12-01 00:53:11 +0000989 column number 9 inside of lexical scope <tt>!13</tt>. The lexical scope
990 itself resides inside of lexical scope <tt>!1</tt> described above.</p>
991
992<p>The scope information attached with each instruction provides a
993 straightforward way to find instructions covered by a scope.</p>
994
Bill Wendling48839d92009-05-17 05:52:39 +0000995</div>
Chris Lattnerbdfb3392004-01-05 05:06:33 +0000996
997<!-- *********************************************************************** -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +0000998<h2>
Chris Lattner8ff75902004-01-06 05:31:32 +0000999 <a name="ccxx_frontend">C/C++ front-end specific debug information</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001000</h2>
Misha Brukman94218a72004-12-09 20:27:37 +00001001<!-- *********************************************************************** -->
Chris Lattnerbdfb3392004-01-05 05:06:33 +00001002
1003<div class="doc_text">
1004
Misha Brukman82873732004-05-12 19:21:57 +00001005<p>The C and C++ front-ends represent information about the program in a format
Bill Wendling48839d92009-05-17 05:52:39 +00001006 that is effectively identical
1007 to <a href="http://www.eagercon.com/dwarf/dwarf3std.htm">DWARF 3.0</a> in
1008 terms of information content. This allows code generators to trivially
1009 support native debuggers by generating standard dwarf information, and
1010 contains enough information for non-dwarf targets to translate it as
1011 needed.</p>
Chris Lattnerbdfb3392004-01-05 05:06:33 +00001012
Jim Laskeycec12a52006-03-14 18:08:46 +00001013<p>This section describes the forms used to represent C and C++ programs. Other
Bill Wendling48839d92009-05-17 05:52:39 +00001014 languages could pattern themselves after this (which itself is tuned to
1015 representing programs in the same way that DWARF 3 does), or they could
1016 choose to provide completely different forms if they don't fit into the DWARF
1017 model. As support for debugging information gets added to the various LLVM
1018 source-language front-ends, the information used should be documented
1019 here.</p>
Chris Lattnerbdfb3392004-01-05 05:06:33 +00001020
Jim Laskeycec12a52006-03-14 18:08:46 +00001021<p>The following sections provide examples of various C/C++ constructs and the
Bill Wendling48839d92009-05-17 05:52:39 +00001022 debug information that would best describe those constructs.</p>
Jim Laskeycec12a52006-03-14 18:08:46 +00001023
Chris Lattnerbdfb3392004-01-05 05:06:33 +00001024</div>
1025
1026<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001027<h3>
Jim Laskeycec12a52006-03-14 18:08:46 +00001028 <a name="ccxx_compile_units">C/C++ source file information</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001029</h3>
Chris Lattnerbdfb3392004-01-05 05:06:33 +00001030
1031<div class="doc_text">
Chris Lattnerbdfb3392004-01-05 05:06:33 +00001032
Bill Wendling48839d92009-05-17 05:52:39 +00001033<p>Given the source files <tt>MySource.cpp</tt> and <tt>MyHeader.h</tt> located
1034 in the directory <tt>/Users/mine/sources</tt>, the following code:</p>
Chris Lattner8ff75902004-01-06 05:31:32 +00001035
Bill Wendling48839d92009-05-17 05:52:39 +00001036<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001037<pre>
1038#include "MyHeader.h"
Chris Lattner8ff75902004-01-06 05:31:32 +00001039
Jim Laskeycec12a52006-03-14 18:08:46 +00001040int main(int argc, char *argv[]) {
1041 return 0;
1042}
1043</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001044</div>
Chris Lattner8ff75902004-01-06 05:31:32 +00001045
Misha Brukman96e00812008-12-16 02:54:22 +00001046<p>a C/C++ front-end would generate the following descriptors:</p>
Jim Laskeycec12a52006-03-14 18:08:46 +00001047
Bill Wendling48839d92009-05-17 05:52:39 +00001048<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001049<pre>
1050...
1051;;
Devang Patel4b945502010-03-09 00:44:10 +00001052;; Define the compile unit for the main source file "/Users/mine/sources/MySource.cpp".
Jim Laskeycec12a52006-03-14 18:08:46 +00001053;;
Devang Patel4b945502010-03-09 00:44:10 +00001054!2 = metadata !{
1055 i32 524305, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001056 i32 0, ;; Unused
1057 i32 4, ;; Language Id
1058 metadata !"MySource.cpp",
1059 metadata !"/Users/mine/sources",
1060 metadata !"4.2.1 (Based on Apple Inc. build 5649) (LLVM build 00)",
1061 i1 true, ;; Main Compile Unit
1062 i1 false, ;; Optimized compile unit
1063 metadata !"", ;; Compiler flags
1064 i32 0} ;; Runtime version
1065
Jim Laskeycec12a52006-03-14 18:08:46 +00001066;;
Devang Patel4b945502010-03-09 00:44:10 +00001067;; Define the file for the file "/Users/mine/sources/MySource.cpp".
Jim Laskeycec12a52006-03-14 18:08:46 +00001068;;
Devang Patele4b27562009-08-28 23:24:31 +00001069!1 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001070 i32 524329, ;; Tag
1071 metadata !"MySource.cpp",
Devang Patele4b27562009-08-28 23:24:31 +00001072 metadata !"/Users/mine/sources",
Devang Patel9fea9c22010-07-13 16:53:20 +00001073 metadata !2 ;; Compile unit
Devang Patel4b945502010-03-09 00:44:10 +00001074}
1075
1076;;
1077;; Define the file for the file "/Users/mine/sources/Myheader.h"
1078;;
1079!3 = metadata !{
1080 i32 524329, ;; Tag
1081 metadata !"Myheader.h"
1082 metadata !"/Users/mine/sources",
Devang Patel9fea9c22010-07-13 16:53:20 +00001083 metadata !2 ;; Compile unit
Devang Patel4b945502010-03-09 00:44:10 +00001084}
Jim Laskeycec12a52006-03-14 18:08:46 +00001085
Jim Laskeycec12a52006-03-14 18:08:46 +00001086...
1087</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001088</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001089
Devang Pateld98ec5f2010-03-26 19:08:36 +00001090<p>llvm::Instruction provides easy access to metadata attached with an
1091instruction. One can extract line number information encoded in LLVM IR
1092using <tt>Instruction::getMetadata()</tt> and
1093<tt>DILocation::getLineNumber()</tt>.
1094<pre>
1095 if (MDNode *N = I->getMetadata("dbg")) { // Here I is an LLVM instruction
1096 DILocation Loc(N); // DILocation is in DebugInfo.h
1097 unsigned Line = Loc.getLineNumber();
1098 StringRef File = Loc.getFilename();
1099 StringRef Dir = Loc.getDirectory();
1100 }
1101</pre>
Chris Lattner8ff75902004-01-06 05:31:32 +00001102</div>
1103
1104<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001105<h3>
Jim Laskeycec12a52006-03-14 18:08:46 +00001106 <a name="ccxx_global_variable">C/C++ global variable information</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001107</h3>
Chris Lattner8ff75902004-01-06 05:31:32 +00001108
1109<div class="doc_text">
Jim Laskeycec12a52006-03-14 18:08:46 +00001110
Misha Brukman96e00812008-12-16 02:54:22 +00001111<p>Given an integer global variable declared as follows:</p>
Jim Laskeycec12a52006-03-14 18:08:46 +00001112
Bill Wendling48839d92009-05-17 05:52:39 +00001113<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001114<pre>
1115int MyGlobal = 100;
1116</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001117</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001118
Misha Brukman96e00812008-12-16 02:54:22 +00001119<p>a C/C++ front-end would generate the following descriptors:</p>
Jim Laskeycec12a52006-03-14 18:08:46 +00001120
Bill Wendling48839d92009-05-17 05:52:39 +00001121<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001122<pre>
1123;;
Jim Laskeycec12a52006-03-14 18:08:46 +00001124;; Define the global itself.
1125;;
1126%MyGlobal = global int 100
1127...
1128;;
Devang Patele4b27562009-08-28 23:24:31 +00001129;; List of debug info of globals
Jim Laskeycec12a52006-03-14 18:08:46 +00001130;;
Devang Patele4b27562009-08-28 23:24:31 +00001131!llvm.dbg.gv = !{!0}
Jim Laskeycec12a52006-03-14 18:08:46 +00001132
1133;;
1134;; Define the global variable descriptor. Note the reference to the global
1135;; variable anchor and the global variable itself.
1136;;
Devang Patele4b27562009-08-28 23:24:31 +00001137!0 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001138 i32 524340, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001139 i32 0, ;; Unused
1140 metadata !1, ;; Context
1141 metadata !"MyGlobal", ;; Name
1142 metadata !"MyGlobal", ;; Display Name
1143 metadata !"MyGlobal", ;; Linkage Name
Devang Patel4b945502010-03-09 00:44:10 +00001144 metadata !3, ;; Compile Unit
Devang Patele4b27562009-08-28 23:24:31 +00001145 i32 1, ;; Line Number
Devang Patel4b945502010-03-09 00:44:10 +00001146 metadata !4, ;; Type
Devang Patele4b27562009-08-28 23:24:31 +00001147 i1 false, ;; Is a local variable
1148 i1 true, ;; Is this a definition
1149 i32* @MyGlobal ;; The global variable
1150}
1151
Jim Laskeycec12a52006-03-14 18:08:46 +00001152;;
1153;; Define the basic type of 32 bit signed integer. Note that since int is an
1154;; intrinsic type the source file is NULL and line 0.
1155;;
Devang Patel4b945502010-03-09 00:44:10 +00001156!4 = metadata !{
1157 i32 524324, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001158 metadata !1, ;; Context
1159 metadata !"int", ;; Name
Devang Patel4b945502010-03-09 00:44:10 +00001160 metadata !1, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001161 i32 0, ;; Line number
1162 i64 32, ;; Size in Bits
1163 i64 32, ;; Align in Bits
1164 i64 0, ;; Offset in Bits
1165 i32 0, ;; Flags
1166 i32 5 ;; Encoding
1167}
Jim Laskeycec12a52006-03-14 18:08:46 +00001168
Jim Laskeycec12a52006-03-14 18:08:46 +00001169</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001170</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001171
Chris Lattner8ff75902004-01-06 05:31:32 +00001172</div>
Chris Lattnerbdfb3392004-01-05 05:06:33 +00001173
Jim Laskeycec12a52006-03-14 18:08:46 +00001174<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001175<h3>
Jim Laskeycec12a52006-03-14 18:08:46 +00001176 <a name="ccxx_subprogram">C/C++ function information</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001177</h3>
Jim Laskeycec12a52006-03-14 18:08:46 +00001178
1179<div class="doc_text">
1180
Misha Brukman96e00812008-12-16 02:54:22 +00001181<p>Given a function declared as follows:</p>
Jim Laskeycec12a52006-03-14 18:08:46 +00001182
Bill Wendling48839d92009-05-17 05:52:39 +00001183<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001184<pre>
1185int main(int argc, char *argv[]) {
1186 return 0;
1187}
1188</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001189</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001190
Misha Brukman96e00812008-12-16 02:54:22 +00001191<p>a C/C++ front-end would generate the following descriptors:</p>
Jim Laskeycec12a52006-03-14 18:08:46 +00001192
Bill Wendling48839d92009-05-17 05:52:39 +00001193<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001194<pre>
1195;;
Jim Laskeycec12a52006-03-14 18:08:46 +00001196;; Define the anchor for subprograms. Note that the second field of the
1197;; anchor is 46, which is the same as the tag for subprograms
1198;; (46 = DW_TAG_subprogram.)
1199;;
Devang Patel4b945502010-03-09 00:44:10 +00001200!6 = metadata !{
1201 i32 524334, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001202 i32 0, ;; Unused
1203 metadata !1, ;; Context
1204 metadata !"main", ;; Name
1205 metadata !"main", ;; Display name
1206 metadata !"main", ;; Linkage name
Devang Patel4b945502010-03-09 00:44:10 +00001207 metadata !1, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001208 i32 1, ;; Line number
Devang Patel4b945502010-03-09 00:44:10 +00001209 metadata !4, ;; Type
Devang Patele4b27562009-08-28 23:24:31 +00001210 i1 false, ;; Is local
Devang Patelda194752011-04-05 22:52:06 +00001211 i1 true, ;; Is definition
1212 i32 0, ;; Virtuality attribute, e.g. pure virtual function
1213 i32 0, ;; Index into virtual table for C++ methods
1214 i32 0, ;; Type that holds virtual table.
1215 i32 0, ;; Flags
1216 i1 false, ;; True if this function is optimized
1217 Function *, ;; Pointer to llvm::Function
1218 null ;; Function template parameters
Devang Patele4b27562009-08-28 23:24:31 +00001219}
Jim Laskeycec12a52006-03-14 18:08:46 +00001220;;
1221;; Define the subprogram itself.
1222;;
Devang Patele4b27562009-08-28 23:24:31 +00001223define i32 @main(i32 %argc, i8** %argv) {
Jim Laskeycec12a52006-03-14 18:08:46 +00001224...
1225}
1226</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001227</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001228
1229</div>
1230
1231<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001232<h3>
Jim Laskeycec12a52006-03-14 18:08:46 +00001233 <a name="ccxx_basic_types">C/C++ basic types</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001234</h3>
Jim Laskeycec12a52006-03-14 18:08:46 +00001235
1236<div class="doc_text">
1237
Misha Brukman96e00812008-12-16 02:54:22 +00001238<p>The following are the basic type descriptors for C/C++ core types:</p>
Jim Laskeycec12a52006-03-14 18:08:46 +00001239
1240</div>
1241
1242<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001243<h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001244 <a name="ccxx_basic_type_bool">bool</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001245</h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001246
1247<div class="doc_text">
1248
Bill Wendling48839d92009-05-17 05:52:39 +00001249<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001250<pre>
Devang Patele4b27562009-08-28 23:24:31 +00001251!2 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001252 i32 524324, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001253 metadata !1, ;; Context
1254 metadata !"bool", ;; Name
Devang Patel4b945502010-03-09 00:44:10 +00001255 metadata !1, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001256 i32 0, ;; Line number
1257 i64 8, ;; Size in Bits
1258 i64 8, ;; Align in Bits
1259 i64 0, ;; Offset in Bits
1260 i32 0, ;; Flags
1261 i32 2 ;; Encoding
1262}
Jim Laskeycec12a52006-03-14 18:08:46 +00001263</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001264</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001265
1266</div>
1267
1268<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001269<h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001270 <a name="ccxx_basic_char">char</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001271</h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001272
1273<div class="doc_text">
1274
Bill Wendling48839d92009-05-17 05:52:39 +00001275<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001276<pre>
Devang Patele4b27562009-08-28 23:24:31 +00001277!2 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001278 i32 524324, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001279 metadata !1, ;; Context
1280 metadata !"char", ;; Name
Devang Patel4b945502010-03-09 00:44:10 +00001281 metadata !1, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001282 i32 0, ;; Line number
1283 i64 8, ;; Size in Bits
1284 i64 8, ;; Align in Bits
1285 i64 0, ;; Offset in Bits
1286 i32 0, ;; Flags
1287 i32 6 ;; Encoding
1288}
Jim Laskeycec12a52006-03-14 18:08:46 +00001289</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001290</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001291
1292</div>
1293
1294<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001295<h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001296 <a name="ccxx_basic_unsigned_char">unsigned char</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001297</h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001298
1299<div class="doc_text">
1300
Bill Wendling48839d92009-05-17 05:52:39 +00001301<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001302<pre>
Devang Patele4b27562009-08-28 23:24:31 +00001303!2 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001304 i32 524324, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001305 metadata !1, ;; Context
1306 metadata !"unsigned char",
Devang Patel4b945502010-03-09 00:44:10 +00001307 metadata !1, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001308 i32 0, ;; Line number
1309 i64 8, ;; Size in Bits
1310 i64 8, ;; Align in Bits
1311 i64 0, ;; Offset in Bits
1312 i32 0, ;; Flags
1313 i32 8 ;; Encoding
1314}
Jim Laskeycec12a52006-03-14 18:08:46 +00001315</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001316</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001317
1318</div>
1319
1320<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001321<h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001322 <a name="ccxx_basic_short">short</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001323</h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001324
1325<div class="doc_text">
1326
Bill Wendling48839d92009-05-17 05:52:39 +00001327<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001328<pre>
Devang Patele4b27562009-08-28 23:24:31 +00001329!2 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001330 i32 524324, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001331 metadata !1, ;; Context
1332 metadata !"short int",
Devang Patel4b945502010-03-09 00:44:10 +00001333 metadata !1, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001334 i32 0, ;; Line number
1335 i64 16, ;; Size in Bits
1336 i64 16, ;; Align in Bits
1337 i64 0, ;; Offset in Bits
1338 i32 0, ;; Flags
1339 i32 5 ;; Encoding
1340}
Jim Laskeycec12a52006-03-14 18:08:46 +00001341</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001342</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001343
1344</div>
1345
1346<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001347<h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001348 <a name="ccxx_basic_unsigned_short">unsigned short</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001349</h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001350
1351<div class="doc_text">
1352
Bill Wendling48839d92009-05-17 05:52:39 +00001353<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001354<pre>
Devang Patele4b27562009-08-28 23:24:31 +00001355!2 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001356 i32 524324, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001357 metadata !1, ;; Context
1358 metadata !"short unsigned int",
Devang Patel4b945502010-03-09 00:44:10 +00001359 metadata !1, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001360 i32 0, ;; Line number
1361 i64 16, ;; Size in Bits
1362 i64 16, ;; Align in Bits
1363 i64 0, ;; Offset in Bits
1364 i32 0, ;; Flags
1365 i32 7 ;; Encoding
1366}
Jim Laskeycec12a52006-03-14 18:08:46 +00001367</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001368</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001369
1370</div>
1371
1372<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001373<h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001374 <a name="ccxx_basic_int">int</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001375</h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001376
1377<div class="doc_text">
1378
Bill Wendling48839d92009-05-17 05:52:39 +00001379<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001380<pre>
Devang Patele4b27562009-08-28 23:24:31 +00001381!2 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001382 i32 524324, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001383 metadata !1, ;; Context
1384 metadata !"int", ;; Name
Devang Patel4b945502010-03-09 00:44:10 +00001385 metadata !1, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001386 i32 0, ;; Line number
1387 i64 32, ;; Size in Bits
1388 i64 32, ;; Align in Bits
1389 i64 0, ;; Offset in Bits
1390 i32 0, ;; Flags
1391 i32 5 ;; Encoding
1392}
Bill Wendling48839d92009-05-17 05:52:39 +00001393</pre></div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001394
1395</div>
1396
1397<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001398<h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001399 <a name="ccxx_basic_unsigned_int">unsigned int</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001400</h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001401
1402<div class="doc_text">
1403
Bill Wendling48839d92009-05-17 05:52:39 +00001404<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001405<pre>
Devang Patele4b27562009-08-28 23:24:31 +00001406!2 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001407 i32 524324, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001408 metadata !1, ;; Context
1409 metadata !"unsigned int",
Devang Patel4b945502010-03-09 00:44:10 +00001410 metadata !1, ;; File
Devang Patele4b27562009-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 7 ;; Encoding
1417}
Jim Laskeycec12a52006-03-14 18:08:46 +00001418</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001419</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001420
1421</div>
1422
1423<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001424<h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001425 <a name="ccxx_basic_long_long">long long</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001426</h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001427
1428<div class="doc_text">
1429
Bill Wendling48839d92009-05-17 05:52:39 +00001430<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001431<pre>
Devang Patele4b27562009-08-28 23:24:31 +00001432!2 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001433 i32 524324, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001434 metadata !1, ;; Context
1435 metadata !"long long int",
Devang Patel4b945502010-03-09 00:44:10 +00001436 metadata !1, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001437 i32 0, ;; Line number
1438 i64 64, ;; Size in Bits
1439 i64 64, ;; Align in Bits
1440 i64 0, ;; Offset in Bits
1441 i32 0, ;; Flags
1442 i32 5 ;; Encoding
1443}
Jim Laskeycec12a52006-03-14 18:08:46 +00001444</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001445</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001446
1447</div>
1448
1449<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001450<h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001451 <a name="ccxx_basic_unsigned_long_long">unsigned long long</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001452</h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001453
1454<div class="doc_text">
1455
Bill Wendling48839d92009-05-17 05:52:39 +00001456<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001457<pre>
Devang Patele4b27562009-08-28 23:24:31 +00001458!2 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001459 i32 524324, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001460 metadata !1, ;; Context
1461 metadata !"long long unsigned int",
Devang Patel4b945502010-03-09 00:44:10 +00001462 metadata !1, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001463 i32 0, ;; Line number
1464 i64 64, ;; Size in Bits
1465 i64 64, ;; Align in Bits
1466 i64 0, ;; Offset in Bits
1467 i32 0, ;; Flags
1468 i32 7 ;; Encoding
1469}
Jim Laskeycec12a52006-03-14 18:08:46 +00001470</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001471</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001472
1473</div>
1474
1475<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001476<h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001477 <a name="ccxx_basic_float">float</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001478</h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001479
1480<div class="doc_text">
1481
Bill Wendling48839d92009-05-17 05:52:39 +00001482<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001483<pre>
Devang Patele4b27562009-08-28 23:24:31 +00001484!2 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001485 i32 524324, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001486 metadata !1, ;; Context
1487 metadata !"float",
Devang Patel4b945502010-03-09 00:44:10 +00001488 metadata !1, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001489 i32 0, ;; Line number
1490 i64 32, ;; Size in Bits
1491 i64 32, ;; Align in Bits
1492 i64 0, ;; Offset in Bits
1493 i32 0, ;; Flags
1494 i32 4 ;; Encoding
1495}
Jim Laskeycec12a52006-03-14 18:08:46 +00001496</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001497</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001498
1499</div>
1500
1501<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001502<h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001503 <a name="ccxx_basic_double">double</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001504</h4>
Jim Laskeycec12a52006-03-14 18:08:46 +00001505
1506<div class="doc_text">
1507
Bill Wendling48839d92009-05-17 05:52:39 +00001508<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001509<pre>
Devang Patele4b27562009-08-28 23:24:31 +00001510!2 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001511 i32 524324, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001512 metadata !1, ;; Context
1513 metadata !"double",;; Name
Devang Patel4b945502010-03-09 00:44:10 +00001514 metadata !1, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001515 i32 0, ;; Line number
1516 i64 64, ;; Size in Bits
1517 i64 64, ;; Align in Bits
1518 i64 0, ;; Offset in Bits
1519 i32 0, ;; Flags
1520 i32 4 ;; Encoding
1521}
Jim Laskeycec12a52006-03-14 18:08:46 +00001522</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001523</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001524
1525</div>
1526
1527<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001528<h3>
Jim Laskeycec12a52006-03-14 18:08:46 +00001529 <a name="ccxx_derived_types">C/C++ derived types</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001530</h3>
Jim Laskeycec12a52006-03-14 18:08:46 +00001531
1532<div class="doc_text">
1533
Misha Brukman96e00812008-12-16 02:54:22 +00001534<p>Given the following as an example of C/C++ derived type:</p>
Jim Laskeycec12a52006-03-14 18:08:46 +00001535
Bill Wendling48839d92009-05-17 05:52:39 +00001536<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001537<pre>
1538typedef const int *IntPtr;
1539</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001540</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001541
Misha Brukman96e00812008-12-16 02:54:22 +00001542<p>a C/C++ front-end would generate the following descriptors:</p>
Jim Laskeycec12a52006-03-14 18:08:46 +00001543
Bill Wendling48839d92009-05-17 05:52:39 +00001544<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001545<pre>
1546;;
1547;; Define the typedef "IntPtr".
1548;;
Devang Patele4b27562009-08-28 23:24:31 +00001549!2 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001550 i32 524310, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001551 metadata !1, ;; Context
1552 metadata !"IntPtr", ;; Name
Devang Patel4b945502010-03-09 00:44:10 +00001553 metadata !3, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001554 i32 0, ;; Line number
1555 i64 0, ;; Size in bits
1556 i64 0, ;; Align in bits
1557 i64 0, ;; Offset in bits
1558 i32 0, ;; Flags
1559 metadata !4 ;; Derived From type
1560}
Jim Laskeycec12a52006-03-14 18:08:46 +00001561
1562;;
1563;; Define the pointer type.
1564;;
Devang Patele4b27562009-08-28 23:24:31 +00001565!4 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001566 i32 524303, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001567 metadata !1, ;; Context
1568 metadata !"", ;; Name
Devang Patel4b945502010-03-09 00:44:10 +00001569 metadata !1, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001570 i32 0, ;; Line number
1571 i64 64, ;; Size in bits
1572 i64 64, ;; Align in bits
1573 i64 0, ;; Offset in bits
1574 i32 0, ;; Flags
1575 metadata !5 ;; Derived From type
1576}
Jim Laskeycec12a52006-03-14 18:08:46 +00001577;;
1578;; Define the const type.
1579;;
Devang Patele4b27562009-08-28 23:24:31 +00001580!5 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001581 i32 524326, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001582 metadata !1, ;; Context
1583 metadata !"", ;; Name
Devang Patel4b945502010-03-09 00:44:10 +00001584 metadata !1, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001585 i32 0, ;; Line number
1586 i64 32, ;; Size in bits
1587 i64 32, ;; Align in bits
1588 i64 0, ;; Offset in bits
1589 i32 0, ;; Flags
1590 metadata !6 ;; Derived From type
1591}
Jim Laskeycec12a52006-03-14 18:08:46 +00001592;;
1593;; Define the int type.
1594;;
Devang Patele4b27562009-08-28 23:24:31 +00001595!6 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001596 i32 524324, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001597 metadata !1, ;; Context
1598 metadata !"int", ;; Name
Devang Patel4b945502010-03-09 00:44:10 +00001599 metadata !1, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001600 i32 0, ;; Line number
1601 i64 32, ;; Size in bits
1602 i64 32, ;; Align in bits
1603 i64 0, ;; Offset in bits
1604 i32 0, ;; Flags
1605 5 ;; Encoding
1606}
Jim Laskeycec12a52006-03-14 18:08:46 +00001607</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001608</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001609
1610</div>
1611
1612<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001613<h3>
Jim Laskeycec12a52006-03-14 18:08:46 +00001614 <a name="ccxx_composite_types">C/C++ struct/union types</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001615</h3>
Jim Laskeycec12a52006-03-14 18:08:46 +00001616
1617<div class="doc_text">
1618
Misha Brukman96e00812008-12-16 02:54:22 +00001619<p>Given the following as an example of C/C++ struct type:</p>
Jim Laskeycec12a52006-03-14 18:08:46 +00001620
Bill Wendling48839d92009-05-17 05:52:39 +00001621<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001622<pre>
1623struct Color {
1624 unsigned Red;
1625 unsigned Green;
1626 unsigned Blue;
1627};
1628</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001629</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001630
Misha Brukman96e00812008-12-16 02:54:22 +00001631<p>a C/C++ front-end would generate the following descriptors:</p>
Jim Laskeycec12a52006-03-14 18:08:46 +00001632
Bill Wendling48839d92009-05-17 05:52:39 +00001633<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001634<pre>
1635;;
1636;; Define basic type for unsigned int.
1637;;
Devang Patele4b27562009-08-28 23:24:31 +00001638!5 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001639 i32 524324, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001640 metadata !1, ;; Context
1641 metadata !"unsigned int",
Devang Patel4b945502010-03-09 00:44:10 +00001642 metadata !1, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001643 i32 0, ;; Line number
1644 i64 32, ;; Size in Bits
1645 i64 32, ;; Align in Bits
1646 i64 0, ;; Offset in Bits
1647 i32 0, ;; Flags
1648 i32 7 ;; Encoding
1649}
Jim Laskeycec12a52006-03-14 18:08:46 +00001650;;
1651;; Define composite type for struct Color.
1652;;
Devang Patele4b27562009-08-28 23:24:31 +00001653!2 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001654 i32 524307, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001655 metadata !1, ;; Context
1656 metadata !"Color", ;; Name
1657 metadata !1, ;; Compile unit
1658 i32 1, ;; Line number
1659 i64 96, ;; Size in bits
1660 i64 32, ;; Align in bits
1661 i64 0, ;; Offset in bits
1662 i32 0, ;; Flags
1663 null, ;; Derived From
1664 metadata !3, ;; Elements
1665 i32 0 ;; Runtime Language
1666}
Jim Laskeycec12a52006-03-14 18:08:46 +00001667
1668;;
1669;; Define the Red field.
1670;;
Devang Patele4b27562009-08-28 23:24:31 +00001671!4 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001672 i32 524301, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001673 metadata !1, ;; Context
1674 metadata !"Red", ;; Name
Devang Patel4b945502010-03-09 00:44:10 +00001675 metadata !1, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001676 i32 2, ;; Line number
1677 i64 32, ;; Size in bits
1678 i64 32, ;; Align in bits
1679 i64 0, ;; Offset in bits
1680 i32 0, ;; Flags
1681 metadata !5 ;; Derived From type
1682}
Jim Laskeycec12a52006-03-14 18:08:46 +00001683
1684;;
1685;; Define the Green field.
1686;;
Devang Patele4b27562009-08-28 23:24:31 +00001687!6 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001688 i32 524301, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001689 metadata !1, ;; Context
1690 metadata !"Green", ;; Name
Devang Patel4b945502010-03-09 00:44:10 +00001691 metadata !1, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001692 i32 3, ;; Line number
1693 i64 32, ;; Size in bits
1694 i64 32, ;; Align in bits
1695 i64 32, ;; Offset in bits
1696 i32 0, ;; Flags
1697 metadata !5 ;; Derived From type
1698}
Jim Laskeycec12a52006-03-14 18:08:46 +00001699
1700;;
1701;; Define the Blue field.
1702;;
Devang Patele4b27562009-08-28 23:24:31 +00001703!7 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001704 i32 524301, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001705 metadata !1, ;; Context
1706 metadata !"Blue", ;; Name
Devang Patel4b945502010-03-09 00:44:10 +00001707 metadata !1, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001708 i32 4, ;; Line number
1709 i64 32, ;; Size in bits
1710 i64 32, ;; Align in bits
1711 i64 64, ;; Offset in bits
1712 i32 0, ;; Flags
1713 metadata !5 ;; Derived From type
1714}
Jim Laskeycec12a52006-03-14 18:08:46 +00001715
1716;;
1717;; Define the array of fields used by the composite type Color.
1718;;
Devang Patele4b27562009-08-28 23:24:31 +00001719!3 = metadata !{metadata !4, metadata !6, metadata !7}
Jim Laskeycec12a52006-03-14 18:08:46 +00001720</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001721</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001722
1723</div>
1724
1725<!-- ======================================================================= -->
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001726<h3>
Jim Laskeycec12a52006-03-14 18:08:46 +00001727 <a name="ccxx_enumeration_types">C/C++ enumeration types</a>
NAKAMURA Takumi05d02652011-04-18 23:59:50 +00001728</h3>
Jim Laskeycec12a52006-03-14 18:08:46 +00001729
1730<div class="doc_text">
1731
Misha Brukman96e00812008-12-16 02:54:22 +00001732<p>Given the following as an example of C/C++ enumeration type:</p>
Jim Laskeycec12a52006-03-14 18:08:46 +00001733
Bill Wendling48839d92009-05-17 05:52:39 +00001734<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001735<pre>
1736enum Trees {
1737 Spruce = 100,
1738 Oak = 200,
1739 Maple = 300
1740};
1741</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001742</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001743
Misha Brukman96e00812008-12-16 02:54:22 +00001744<p>a C/C++ front-end would generate the following descriptors:</p>
Jim Laskeycec12a52006-03-14 18:08:46 +00001745
Bill Wendling48839d92009-05-17 05:52:39 +00001746<div class="doc_code">
Jim Laskeycec12a52006-03-14 18:08:46 +00001747<pre>
1748;;
1749;; Define composite type for enum Trees
1750;;
Devang Patele4b27562009-08-28 23:24:31 +00001751!2 = metadata !{
Devang Patel4b945502010-03-09 00:44:10 +00001752 i32 524292, ;; Tag
Devang Patele4b27562009-08-28 23:24:31 +00001753 metadata !1, ;; Context
1754 metadata !"Trees", ;; Name
Devang Patel4b945502010-03-09 00:44:10 +00001755 metadata !1, ;; File
Devang Patele4b27562009-08-28 23:24:31 +00001756 i32 1, ;; Line number
1757 i64 32, ;; Size in bits
1758 i64 32, ;; Align in bits
1759 i64 0, ;; Offset in bits
1760 i32 0, ;; Flags
1761 null, ;; Derived From type
1762 metadata !3, ;; Elements
1763 i32 0 ;; Runtime language
1764}
Devang Patel2a610c72009-08-25 05:24:07 +00001765
Devang Patel82459882009-08-26 05:01:18 +00001766;;
1767;; Define the array of enumerators used by composite type Trees.
1768;;
Devang Patele4b27562009-08-28 23:24:31 +00001769!3 = metadata !{metadata !4, metadata !5, metadata !6}
1770
1771;;
1772;; Define Spruce enumerator.
1773;;
Devang Patel4b945502010-03-09 00:44:10 +00001774!4 = metadata !{i32 524328, metadata !"Spruce", i64 100}
Devang Patele4b27562009-08-28 23:24:31 +00001775
1776;;
1777;; Define Oak enumerator.
1778;;
Devang Patel4b945502010-03-09 00:44:10 +00001779!5 = metadata !{i32 524328, metadata !"Oak", i64 200}
Devang Patele4b27562009-08-28 23:24:31 +00001780
1781;;
1782;; Define Maple enumerator.
1783;;
Devang Patel4b945502010-03-09 00:44:10 +00001784!6 = metadata !{i32 524328, metadata !"Maple", i64 300}
Devang Patele4b27562009-08-28 23:24:31 +00001785
Jim Laskeycec12a52006-03-14 18:08:46 +00001786</pre>
Bill Wendling48839d92009-05-17 05:52:39 +00001787</div>
Jim Laskeycec12a52006-03-14 18:08:46 +00001788
1789</div>
Chris Lattnerbdfb3392004-01-05 05:06:33 +00001790
1791<!-- *********************************************************************** -->
Misha Brukman82873732004-05-12 19:21:57 +00001792
Chris Lattnerbdfb3392004-01-05 05:06:33 +00001793<hr>
Misha Brukman82873732004-05-12 19:21:57 +00001794<address>
1795 <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
Misha Brukman44408702008-12-11 17:34:48 +00001796 src="http://jigsaw.w3.org/css-validator/images/vcss-blue" alt="Valid CSS"></a>
Misha Brukman82873732004-05-12 19:21:57 +00001797 <a href="http://validator.w3.org/check/referer"><img
Misha Brukman44408702008-12-11 17:34:48 +00001798 src="http://www.w3.org/Icons/valid-html401-blue" alt="Valid HTML 4.01"></a>
Misha Brukman82873732004-05-12 19:21:57 +00001799
1800 <a href="mailto:sabre@nondot.org">Chris Lattner</a><br>
NAKAMURA Takumib9a33632011-04-09 02:13:37 +00001801 <a href="http://llvm.org/">LLVM Compiler Infrastructure</a><br>
Chris Lattnerbdfb3392004-01-05 05:06:33 +00001802 Last modified: $Date$
Misha Brukman82873732004-05-12 19:21:57 +00001803</address>
Chris Lattnerbdfb3392004-01-05 05:06:33 +00001804
1805</body>
1806</html>