blob: 005eb13039629320fecbad8087cb5044188df1e2 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3<html>
4<head>
Bill Wendlingde024832009-05-17 05:52:39 +00005 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006 <title>Source Level Debugging with LLVM</title>
7 <link rel="stylesheet" href="llvm.css" type="text/css">
8</head>
9<body>
10
11<div class="doc_title">Source Level Debugging with LLVM</div>
12
13<table class="layout" style="width:100%">
14 <tr class="layout">
15 <td class="left">
16<ul>
17 <li><a href="#introduction">Introduction</a>
18 <ol>
19 <li><a href="#phil">Philosophy behind LLVM debugging information</a></li>
20 <li><a href="#consumers">Debug information consumers</a></li>
21 <li><a href="#debugopt">Debugging optimized code</a></li>
22 </ol></li>
23 <li><a href="#format">Debugging information format</a>
24 <ol>
25 <li><a href="#debug_info_descriptors">Debug information descriptors</a>
26 <ul>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027 <li><a href="#format_compile_units">Compile unit descriptors</a></li>
Devang Patel1a951462010-03-09 00:44:10 +000028 <li><a href="#format_files">File descriptors</a></li>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029 <li><a href="#format_global_variables">Global variable descriptors</a></li>
30 <li><a href="#format_subprograms">Subprogram descriptors</a></li>
31 <li><a href="#format_blocks">Block descriptors</a></li>
32 <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>
37 <li><a href="#format_variables">Local variables</a></li>
38 </ul></li>
39 <li><a href="#format_common_intrinsics">Debugger intrinsic functions</a>
40 <ul>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000041 <li><a href="#format_common_declare">llvm.dbg.declare</a></li>
Victor Hernandez128bf422010-01-11 22:53:48 +000042 <li><a href="#format_common_value">llvm.dbg.value</a></li>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000043 </ul></li>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000044 </ol></li>
Devang Patelcacef072009-11-25 23:28:01 +000045 <li><a href="#format_common_lifetime">Object lifetimes and scoping</a></li>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000046 <li><a href="#ccxx_frontend">C/C++ front-end specific debug information</a>
47 <ol>
48 <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>
55 </ol></li>
56</ul>
57</td>
58<td class="right">
59<img src="img/venusflytrap.jpg" alt="A leafy and green bug eater" width="247"
60height="369">
61</td>
62</tr></table>
63
64<div class="doc_author">
65 <p>Written by <a href="mailto:sabre@nondot.org">Chris Lattner</a>
66 and <a href="mailto:jlaskey@mac.com">Jim Laskey</a></p>
67</div>
68
69
70<!-- *********************************************************************** -->
71<div class="doc_section"><a name="introduction">Introduction</a></div>
72<!-- *********************************************************************** -->
73
74<div class="doc_text">
75
76<p>This document is the central repository for all information pertaining to
Bill Wendlingde024832009-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 Lattner990e7652009-07-18 21:47:15 +000080 Further, this document provides specific examples of what debug information
Bill Wendlingde024832009-05-17 05:52:39 +000081 for C/C++.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000082
83</div>
84
85<!-- ======================================================================= -->
86<div class="doc_subsection">
87 <a name="phil">Philosophy behind LLVM debugging information</a>
88</div>
89
90<div class="doc_text">
91
92<p>The idea of the LLVM debugging information is to capture how the important
Bill Wendlingde024832009-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>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000096
97<ul>
Bill Wendlingde024832009-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>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000101
Bill Wendlingde024832009-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>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000104
Bill Wendlingde024832009-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>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000108
Bill Wendlingde024832009-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>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000112
Bill Wendlingde024832009-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>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000117</ul>
118
Bill Wendlingde024832009-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 Patel15e723d2009-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 Wendlingde024832009-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>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000127
128<p>When a program is being debugged, a debugger interacts with the user and
Bill Wendlingde024832009-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>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000132
133</div>
134
135<!-- ======================================================================= -->
136<div class="doc_subsection">
137 <a name="consumers">Debug information consumers</a>
138</div>
139
140<div class="doc_text">
Bill Wendlingde024832009-05-17 05:52:39 +0000141
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000142<p>The role of debug information is to provide meta information normally
Bill Wendlingde024832009-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>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000146
147<p>Currently, debug information is consumed by the DwarfWriter to produce dwarf
Bill Wendlingde024832009-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>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000150
151<p>It would also be reasonable to use debug information to feed profiling tools
Bill Wendlingde024832009-05-17 05:52:39 +0000152 for analysis of generated code, or, tools for reconstructing the original
153 source from generated code.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000154
155<p>TODO - expound a bit more.</p>
156
157</div>
158
159<!-- ======================================================================= -->
160<div class="doc_subsection">
161 <a name="debugopt">Debugging optimized code</a>
162</div>
163
164<div class="doc_text">
165
166<p>An extremely high priority of LLVM debugging information is to make it
Bill Wendlingde024832009-05-17 05:52:39 +0000167 interact well with optimizations and analysis. In particular, the LLVM debug
168 information provides the following guarantees:</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000169
170<ul>
Bill Wendlingde024832009-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>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178
Bill Wendlingde024832009-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>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000184
Bill Wendlingde024832009-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>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190
Bill Wendlingde024832009-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>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000195
Bill Wendlingde024832009-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>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000200</ul>
201
202<p>Basically, the debug information allows you to compile a program with
Bill Wendlingde024832009-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>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000210
Misha Brukmane5b22d42008-12-16 02:54:22 +0000211<p><a href="TestingGuide.html#quicktestsuite">LLVM test suite</a> provides a
Bill Wendlingde024832009-05-17 05:52:39 +0000212 framework to test optimizer's handling of debugging information. It can be
213 run like this:</p>
Devang Patel7717e542008-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 Wendlingde024832009-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 Patel7717e542008-11-21 19:35:57 +0000226
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000227</div>
228
229<!-- *********************************************************************** -->
230<div class="doc_section">
231 <a name="format">Debugging information format</a>
232</div>
233<!-- *********************************************************************** -->
234
235<div class="doc_text">
236
237<p>LLVM debugging information has been carefully designed to make it possible
Bill Wendlingde024832009-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
Devang Patel15e723d2009-08-28 23:24:31 +0000240 particular, te use of metadadta avoids duplicated dubgging information from
241 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>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000244
245<p>To do this, most of the debugging information (descriptors for types,
Bill Wendlingde024832009-05-17 05:52:39 +0000246 variables, functions, source files, etc) is inserted by the language
Devang Patel15e723d2009-08-28 23:24:31 +0000247 front-end in the form of LLVM metadata. </p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000248
249<p>Debug information is designed to be agnostic about the target debugger and
Bill Wendlingde024832009-05-17 05:52:39 +0000250 debugging information representation (e.g. DWARF/Stabs/etc). It uses a
Devang Patel15e723d2009-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>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000255
256<p>To provide basic functionality, the LLVM debugger does have to make some
Bill Wendlingde024832009-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 Patel1a951462010-03-09 00:44:10 +0000259 exist are <a href="#format_files">source files</a>,
Bill Wendlingde024832009-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>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000263
264<p>This section of the documentation first describes the representation aspects
Bill Wendlingde024832009-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>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000267
268</div>
269
270<!-- ======================================================================= -->
271<div class="doc_subsection">
272 <a name="debug_info_descriptors">Debug information descriptors</a>
273</div>
274
275<div class="doc_text">
Bill Wendlingde024832009-05-17 05:52:39 +0000276
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000277<p>In consideration of the complexity and volume of debug information, LLVM
Devang Patel15e723d2009-08-28 23:24:31 +0000278 provides a specification for well formed debug descriptors. </p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000279
280<p>Consumers of LLVM debug information expect the descriptors for program
Bill Wendlingde024832009-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 Kramer5fb9d7e2009-10-12 14:46:08 +0000288 the range 0x1000 through 0x2000 (there is a defined enum DW_TAG_user_base =
Bill Wendlingde024832009-05-17 05:52:39 +0000289 0x1000.)</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000290
Devang Patel15e723d2009-08-28 23:24:31 +0000291<p>The fields of debug descriptors used internally by LLVM
Bill Wendlingde024832009-05-17 05:52:39 +0000292 are restricted to only the simple data types <tt>int</tt>, <tt>uint</tt>,
Devang Patel15e723d2009-08-28 23:24:31 +0000293 <tt>bool</tt>, <tt>float</tt>, <tt>double</tt>, <tt>mdstring</tt> and
294 <tt>mdnode</tt>. </p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000295
Bill Wendlingde024832009-05-17 05:52:39 +0000296<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000297<pre>
Devang Patel15e723d2009-08-28 23:24:31 +0000298!1 = metadata !{
Bill Wendlingde024832009-05-17 05:52:39 +0000299 uint, ;; A tag
300 ...
301}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000302</pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000303</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000304
305<p><a name="LLVMDebugVersion">The first field of a descriptor is always an
Bill Wendlingde024832009-05-17 05:52:39 +0000306 <tt>uint</tt> containing a tag value identifying the content of the
307 descriptor. The remaining fields are specific to the descriptor. The values
308 of tags are loosely bound to the tag values of DWARF information entries.
309 However, that does not restrict the use of the information supplied to DWARF
310 targets. To facilitate versioning of debug information, the tag is augmented
Devang Patel1a951462010-03-09 00:44:10 +0000311 with the current debug version (LLVMDebugVersion = 8 << 16 or 0x80000 or
312 524288.)</a></p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000313
314<p>The details of the various descriptors follow.</p>
315
316</div>
317
318<!-- ======================================================================= -->
319<div class="doc_subsubsection">
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000320 <a name="format_compile_units">Compile unit descriptors</a>
321</div>
322
323<div class="doc_text">
324
Bill Wendlingde024832009-05-17 05:52:39 +0000325<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000326<pre>
Devang Patel15e723d2009-08-28 23:24:31 +0000327!0 = metadata !{
328 i32, ;; Tag = 17 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a>
329 ;; (DW_TAG_compile_unit)
330 i32, ;; Unused field.
331 i32, ;; DWARF language identifier (ex. DW_LANG_C89)
332 metadata, ;; Source file name
333 metadata, ;; Source file directory (includes trailing slash)
334 metadata ;; Producer (ex. "4.0.1 LLVM (LLVM research group)")
335 i1, ;; True if this is a main compile unit.
336 i1, ;; True if this is optimized.
337 metadata, ;; Flags
338 i32 ;; Runtime version
Bill Wendlingde024832009-05-17 05:52:39 +0000339}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000340</pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000341</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000342
Bill Wendlingde024832009-05-17 05:52:39 +0000343<p>These descriptors contain a source language ID for the file (we use the DWARF
344 3.0 ID numbers, such as <tt>DW_LANG_C89</tt>, <tt>DW_LANG_C_plus_plus</tt>,
345 <tt>DW_LANG_Cobol74</tt>, etc), three strings describing the filename,
346 working directory of the compiler, and an identifier string for the compiler
347 that produced it.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000348
Bill Wendlingde024832009-05-17 05:52:39 +0000349<p>Compile unit descriptors provide the root context for objects declared in a
Devang Patel1a951462010-03-09 00:44:10 +0000350 specific compilation unit. File descriptors are defined using this context.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000351
Devang Patel1a951462010-03-09 00:44:10 +0000352</div>
353
354<!-- ======================================================================= -->
355<div class="doc_subsubsection">
356 <a name="format_files">File descriptors</a>
357</div>
358
359<div class="doc_text">
360
361<div class="doc_code">
362<pre>
363!0 = metadata !{
364 i32, ;; Tag = 41 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a>
365 ;; (DW_TAG_file_type)
366 metadata, ;; Source file name
367 metadata, ;; Source file directory (includes trailing slash)
368 metadata ;; Reference to compile unit where defined
369}
370</pre>
371</div>
372
373<p>These descriptors contain informations for a file. Global variables and top
374 level functions would be defined using this context.k File descriptors also
375 provide context for source line correspondence. </p>
376
377<p>Each input file is encoded as a separate file descriptor in LLVM debugging
378 information output. Each file descriptor would be defined using a
379 compile unit. </p>
Bill Wendlingde024832009-05-17 05:52:39 +0000380
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000381</div>
382
383<!-- ======================================================================= -->
384<div class="doc_subsubsection">
385 <a name="format_global_variables">Global variable descriptors</a>
386</div>
387
388<div class="doc_text">
389
Bill Wendlingde024832009-05-17 05:52:39 +0000390<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000391<pre>
Devang Patel15e723d2009-08-28 23:24:31 +0000392!1 = metadata !{
393 i32, ;; Tag = 52 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a>
394 ;; (DW_TAG_variable)
395 i32, ;; Unused field.
396 metadata, ;; Reference to context descriptor
397 metadata, ;; Name
398 metadata, ;; Display name (fully qualified C++ name)
399 metadata, ;; MIPS linkage name (for C++)
Devang Patel1a951462010-03-09 00:44:10 +0000400 metadata, ;; Reference to file where defined
Devang Patel15e723d2009-08-28 23:24:31 +0000401 i32, ;; Line number where defined
402 metadata, ;; Reference to type descriptor
403 i1, ;; True if the global is local to compile unit (static)
404 i1, ;; True if the global is defined in the compile unit (not extern)
405 { }* ;; Reference to the global variable
Bill Wendlingde024832009-05-17 05:52:39 +0000406}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000407</pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000408</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000409
410<p>These descriptors provide debug information about globals variables. The
411provide details such as name, type and where the variable is defined.</p>
412
413</div>
414
415<!-- ======================================================================= -->
416<div class="doc_subsubsection">
417 <a name="format_subprograms">Subprogram descriptors</a>
418</div>
419
420<div class="doc_text">
421
Bill Wendlingde024832009-05-17 05:52:39 +0000422<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000423<pre>
Devang Patel15e723d2009-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 Patel1a951462010-03-09 00:44:10 +0000432 metadata, ;; Reference to file where defined
Devang Patel15e723d2009-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)
436 i1 ;; True if the global is defined in the compile unit (not extern)
Bill Wendlingde024832009-05-17 05:52:39 +0000437}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000438</pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000439</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000440
441<p>These descriptors provide debug information about functions, methods and
Bill Wendlingde024832009-05-17 05:52:39 +0000442 subprograms. They provide details such as name, return types and the source
443 location where the subprogram is defined.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000444
445</div>
Bill Wendlingde024832009-05-17 05:52:39 +0000446
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000447<!-- ======================================================================= -->
448<div class="doc_subsubsection">
449 <a name="format_blocks">Block descriptors</a>
450</div>
451
452<div class="doc_text">
453
Bill Wendlingde024832009-05-17 05:52:39 +0000454<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000455<pre>
Devang Patel15e723d2009-08-28 23:24:31 +0000456!3 = metadata !{
457 i32, ;; Tag = 13 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a> (DW_TAG_lexical_block)
458 metadata ;; Reference to context descriptor
Bill Wendlingde024832009-05-17 05:52:39 +0000459}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000460</pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000461</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000462
463<p>These descriptors provide debug information about nested blocks within a
Bill Wendlingde024832009-05-17 05:52:39 +0000464 subprogram. The array of member descriptors is used to define local
465 variables and deeper nested blocks.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000466
467</div>
468
469<!-- ======================================================================= -->
470<div class="doc_subsubsection">
471 <a name="format_basic_type">Basic type descriptors</a>
472</div>
473
474<div class="doc_text">
475
Bill Wendlingde024832009-05-17 05:52:39 +0000476<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000477<pre>
Devang Patel15e723d2009-08-28 23:24:31 +0000478!4 = metadata !{
479 i32, ;; Tag = 36 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a>
480 ;; (DW_TAG_base_type)
481 metadata, ;; Reference to context (typically a compile unit)
482 metadata, ;; Name (may be "" for anonymous types)
Devang Patel1a951462010-03-09 00:44:10 +0000483 metadata, ;; Reference to file where defined (may be NULL)
Devang Patel15e723d2009-08-28 23:24:31 +0000484 i32, ;; Line number where defined (may be 0)
485 i64, ;; Size in bits
486 i64, ;; Alignment in bits
487 i64, ;; Offset in bits
488 i32, ;; Flags
489 i32 ;; DWARF type encoding
Bill Wendlingde024832009-05-17 05:52:39 +0000490}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000491</pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000492</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493
494<p>These descriptors define primitive types used in the code. Example int, bool
Bill Wendlingde024832009-05-17 05:52:39 +0000495 and float. The context provides the scope of the type, which is usually the
496 top level. Since basic types are not usually user defined the compile unit
497 and line number can be left as NULL and 0. The size, alignment and offset
498 are expressed in bits and can be 64 bit values. The alignment is used to
499 round the offset when embedded in a
500 <a href="#format_composite_type">composite type</a> (example to keep float
501 doubles on 64 bit boundaries.) The offset is the bit offset if embedded in
502 a <a href="#format_composite_type">composite type</a>.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000503
504<p>The type encoding provides the details of the type. The values are typically
Bill Wendlingde024832009-05-17 05:52:39 +0000505 one of the following:</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000506
Bill Wendlingde024832009-05-17 05:52:39 +0000507<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000508<pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000509DW_ATE_address = 1
510DW_ATE_boolean = 2
511DW_ATE_float = 4
512DW_ATE_signed = 5
513DW_ATE_signed_char = 6
514DW_ATE_unsigned = 7
515DW_ATE_unsigned_char = 8
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000516</pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000517</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000518
519</div>
520
521<!-- ======================================================================= -->
522<div class="doc_subsubsection">
523 <a name="format_derived_type">Derived type descriptors</a>
524</div>
525
526<div class="doc_text">
527
Bill Wendlingde024832009-05-17 05:52:39 +0000528<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000529<pre>
Devang Patel15e723d2009-08-28 23:24:31 +0000530!5 = metadata !{
531 i32, ;; Tag (see below)
532 metadata, ;; Reference to context
533 metadata, ;; Name (may be "" for anonymous types)
Devang Patel1a951462010-03-09 00:44:10 +0000534 metadata, ;; Reference to file where defined (may be NULL)
Devang Patel15e723d2009-08-28 23:24:31 +0000535 i32, ;; Line number where defined (may be 0)
536 i32, ;; Size in bits
537 i32, ;; Alignment in bits
538 i32, ;; Offset in bits
539 metadata ;; Reference to type derived from
Bill Wendlingde024832009-05-17 05:52:39 +0000540}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000541</pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000542</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000543
544<p>These descriptors are used to define types derived from other types. The
545value of the tag varies depending on the meaning. The following are possible
Misha Brukmane5b22d42008-12-16 02:54:22 +0000546tag values:</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000547
Bill Wendlingde024832009-05-17 05:52:39 +0000548<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000549<pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000550DW_TAG_formal_parameter = 5
551DW_TAG_member = 13
552DW_TAG_pointer_type = 15
553DW_TAG_reference_type = 16
554DW_TAG_typedef = 22
555DW_TAG_const_type = 38
556DW_TAG_volatile_type = 53
557DW_TAG_restrict_type = 55
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000558</pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000559</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000560
Bill Wendlingde024832009-05-17 05:52:39 +0000561<p><tt>DW_TAG_member</tt> is used to define a member of
562 a <a href="#format_composite_type">composite type</a>
563 or <a href="#format_subprograms">subprogram</a>. The type of the member is
564 the <a href="#format_derived_type">derived
565 type</a>. <tt>DW_TAG_formal_parameter</tt> is used to define a member which
566 is a formal argument of a subprogram.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000567
Bill Wendlingde024832009-05-17 05:52:39 +0000568<p><tt>DW_TAG_typedef</tt> is used to provide a name for the derived type.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000569
Bill Wendlingde024832009-05-17 05:52:39 +0000570<p><tt>DW_TAG_pointer_type</tt>,<tt>DW_TAG_reference_type</tt>,
571 <tt>DW_TAG_const_type</tt>, <tt>DW_TAG_volatile_type</tt>
572 and <tt>DW_TAG_restrict_type</tt> are used to qualify
573 the <a href="#format_derived_type">derived type</a>. </p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000574
575<p><a href="#format_derived_type">Derived type</a> location can be determined
Bill Wendlingde024832009-05-17 05:52:39 +0000576 from the compile unit and line number. The size, alignment and offset are
577 expressed in bits and can be 64 bit values. The alignment is used to round
578 the offset when embedded in a <a href="#format_composite_type">composite
579 type</a> (example to keep float doubles on 64 bit boundaries.) The offset is
580 the bit offset if embedded in a <a href="#format_composite_type">composite
581 type</a>.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000582
583<p>Note that the <tt>void *</tt> type is expressed as a
Bill Wendlingde024832009-05-17 05:52:39 +0000584 <tt>llvm.dbg.derivedtype.type</tt> with tag of <tt>DW_TAG_pointer_type</tt>
585 and <tt>NULL</tt> derived type.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000586
587</div>
588
589<!-- ======================================================================= -->
590<div class="doc_subsubsection">
591 <a name="format_composite_type">Composite type descriptors</a>
592</div>
593
594<div class="doc_text">
595
Bill Wendlingde024832009-05-17 05:52:39 +0000596<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000597<pre>
Devang Patel15e723d2009-08-28 23:24:31 +0000598!6 = metadata !{
599 i32, ;; Tag (see below)
600 metadata, ;; Reference to context
601 metadata, ;; Name (may be "" for anonymous types)
Devang Patel1a951462010-03-09 00:44:10 +0000602 metadata, ;; Reference to file where defined (may be NULL)
Devang Patel15e723d2009-08-28 23:24:31 +0000603 i32, ;; Line number where defined (may be 0)
604 i64, ;; Size in bits
605 i64, ;; Alignment in bits
606 i64, ;; Offset in bits
607 i32, ;; Flags
608 metadata, ;; Reference to type derived from
609 metadata, ;; Reference to array of member descriptors
610 i32 ;; Runtime languages
Bill Wendlingde024832009-05-17 05:52:39 +0000611}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000612</pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000613</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000614
615<p>These descriptors are used to define types that are composed of 0 or more
616elements. The value of the tag varies depending on the meaning. The following
Misha Brukmane5b22d42008-12-16 02:54:22 +0000617are possible tag values:</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000618
Bill Wendlingde024832009-05-17 05:52:39 +0000619<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000620<pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000621DW_TAG_array_type = 1
622DW_TAG_enumeration_type = 4
623DW_TAG_structure_type = 19
624DW_TAG_union_type = 23
625DW_TAG_vector_type = 259
Bruno Cardoso Lopes7ad46092009-05-29 17:08:57 +0000626DW_TAG_subroutine_type = 21
627DW_TAG_inheritance = 28
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000628</pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000629</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000630
631<p>The vector flag indicates that an array type is a native packed vector.</p>
632
633<p>The members of array types (tag = <tt>DW_TAG_array_type</tt>) or vector types
Bill Wendlingde024832009-05-17 05:52:39 +0000634 (tag = <tt>DW_TAG_vector_type</tt>) are <a href="#format_subrange">subrange
635 descriptors</a>, each representing the range of subscripts at that level of
636 indexing.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000637
638<p>The members of enumeration types (tag = <tt>DW_TAG_enumeration_type</tt>) are
Bill Wendlingde024832009-05-17 05:52:39 +0000639 <a href="#format_enumeration">enumerator descriptors</a>, each representing
640 the definition of enumeration value for the set.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000641
642<p>The members of structure (tag = <tt>DW_TAG_structure_type</tt>) or union (tag
Bill Wendlingde024832009-05-17 05:52:39 +0000643 = <tt>DW_TAG_union_type</tt>) types are any one of
644 the <a href="#format_basic_type">basic</a>,
645 <a href="#format_derived_type">derived</a>
646 or <a href="#format_composite_type">composite</a> type descriptors, each
647 representing a field member of the structure or union.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000648
649<p>For C++ classes (tag = <tt>DW_TAG_structure_type</tt>), member descriptors
Bill Wendlingde024832009-05-17 05:52:39 +0000650 provide information about base classes, static members and member
651 functions. If a member is a <a href="#format_derived_type">derived type
652 descriptor</a> and has a tag of <tt>DW_TAG_inheritance</tt>, then the type
653 represents a base class. If the member of is
654 a <a href="#format_global_variables">global variable descriptor</a> then it
655 represents a static member. And, if the member is
656 a <a href="#format_subprograms">subprogram descriptor</a> then it represents
657 a member function. For static members and member
658 functions, <tt>getName()</tt> returns the members link or the C++ mangled
659 name. <tt>getDisplayName()</tt> the simplied version of the name.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000660
Bill Wendlingde024832009-05-17 05:52:39 +0000661<p>The first member of subroutine (tag = <tt>DW_TAG_subroutine_type</tt>) type
662 elements is the return type for the subroutine. The remaining elements are
663 the formal arguments to the subroutine.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000664
665<p><a href="#format_composite_type">Composite type</a> location can be
Bill Wendlingde024832009-05-17 05:52:39 +0000666 determined from the compile unit and line number. The size, alignment and
667 offset are expressed in bits and can be 64 bit values. The alignment is used
668 to round the offset when embedded in
669 a <a href="#format_composite_type">composite type</a> (as an example, to keep
670 float doubles on 64 bit boundaries.) The offset is the bit offset if embedded
671 in a <a href="#format_composite_type">composite type</a>.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000672
673</div>
674
675<!-- ======================================================================= -->
676<div class="doc_subsubsection">
677 <a name="format_subrange">Subrange descriptors</a>
678</div>
679
680<div class="doc_text">
681
Bill Wendlingde024832009-05-17 05:52:39 +0000682<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000683<pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000684%<a href="#format_subrange">llvm.dbg.subrange.type</a> = type {
685 i32, ;; Tag = 33 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a> (DW_TAG_subrange_type)
686 i64, ;; Low value
687 i64 ;; High value
688}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000689</pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000690</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000691
692<p>These descriptors are used to define ranges of array subscripts for an array
Bill Wendlingde024832009-05-17 05:52:39 +0000693 <a href="#format_composite_type">composite type</a>. The low value defines
694 the lower bounds typically zero for C/C++. The high value is the upper
695 bounds. Values are 64 bit. High - low + 1 is the size of the array. If low
696 == high the array will be unbounded.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000697
698</div>
699
700<!-- ======================================================================= -->
701<div class="doc_subsubsection">
702 <a name="format_enumeration">Enumerator descriptors</a>
703</div>
704
705<div class="doc_text">
706
Bill Wendlingde024832009-05-17 05:52:39 +0000707<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000708<pre>
Devang Patel15e723d2009-08-28 23:24:31 +0000709!6 = metadata !{
710 i32, ;; Tag = 40 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a>
711 ;; (DW_TAG_enumerator)
712 metadata, ;; Name
713 i64 ;; Value
Bill Wendlingde024832009-05-17 05:52:39 +0000714}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000715</pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000716</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000717
Bill Wendlingde024832009-05-17 05:52:39 +0000718<p>These descriptors are used to define members of an
719 enumeration <a href="#format_composite_type">composite type</a>, it
720 associates the name to the value.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000721
722</div>
723
724<!-- ======================================================================= -->
725<div class="doc_subsubsection">
726 <a name="format_variables">Local variables</a>
727</div>
728
729<div class="doc_text">
Bill Wendlingde024832009-05-17 05:52:39 +0000730
731<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000732<pre>
Devang Patel15e723d2009-08-28 23:24:31 +0000733!7 = metadata !{
734 i32, ;; Tag (see below)
735 metadata, ;; Context
736 metadata, ;; Name
Devang Patel1a951462010-03-09 00:44:10 +0000737 metadata, ;; Reference to file where defined
Devang Patel15e723d2009-08-28 23:24:31 +0000738 i32, ;; Line number where defined
739 metadata ;; Type descriptor
Bill Wendlingde024832009-05-17 05:52:39 +0000740}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000741</pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000742</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000743
744<p>These descriptors are used to define variables local to a sub program. The
Bill Wendlingde024832009-05-17 05:52:39 +0000745 value of the tag depends on the usage of the variable:</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000746
Bill Wendlingde024832009-05-17 05:52:39 +0000747<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000748<pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000749DW_TAG_auto_variable = 256
750DW_TAG_arg_variable = 257
751DW_TAG_return_variable = 258
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000752</pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000753</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000754
755<p>An auto variable is any variable declared in the body of the function. An
Bill Wendlingde024832009-05-17 05:52:39 +0000756 argument variable is any variable that appears as a formal argument to the
757 function. A return variable is used to track the result of a function and
758 has no source correspondent.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000759
760<p>The context is either the subprogram or block where the variable is defined.
Bill Wendlingde024832009-05-17 05:52:39 +0000761 Name the source variable name. Compile unit and line indicate where the
762 variable was defined. Type descriptor defines the declared type of the
763 variable.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000764
765</div>
766
767<!-- ======================================================================= -->
768<div class="doc_subsection">
769 <a name="format_common_intrinsics">Debugger intrinsic functions</a>
770</div>
771
772<div class="doc_text">
773
774<p>LLVM uses several intrinsic functions (name prefixed with "llvm.dbg") to
Bill Wendlingde024832009-05-17 05:52:39 +0000775 provide debug information at various points in generated code.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000776
777</div>
778
779<!-- ======================================================================= -->
780<div class="doc_subsubsection">
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000781 <a name="format_common_declare">llvm.dbg.declare</a>
782</div>
783
784<div class="doc_text">
785<pre>
Devang Patel15e723d2009-08-28 23:24:31 +0000786 void %<a href="#format_common_declare">llvm.dbg.declare</a>( { } *, metadata )
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000787</pre>
788
789<p>This intrinsic provides information about a local element (ex. variable.) The
Bill Wendlingde024832009-05-17 05:52:39 +0000790 first argument is the alloca for the variable, cast to a <tt>{ }*</tt>. The
791 second argument is
792 the <tt>%<a href="#format_variables">llvm.dbg.variable</a></tt> containing
Devang Patel15e723d2009-08-28 23:24:31 +0000793 the description of the variable. </p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000794
795</div>
796
797<!-- ======================================================================= -->
Victor Hernandez128bf422010-01-11 22:53:48 +0000798<div class="doc_subsubsection">
799 <a name="format_common_value">llvm.dbg.value</a>
800</div>
801
802<div class="doc_text">
803<pre>
804 void %<a href="#format_common_value">llvm.dbg.value</a>( metadata, i64, metadata )
805</pre>
806
807<p>This intrinsic provides information when a user source variable is set to a
808 new value. The first argument is the new value (wrapped as metadata). The
809 second argument is the offset in the user source variable where the new value
810 is written. The third argument is
811 the <tt>%<a href="#format_variables">llvm.dbg.variable</a></tt> containing
812 the description of the user source variable. </p>
813
814</div>
815
816<!-- ======================================================================= -->
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000817<div class="doc_subsection">
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000818 <a name="format_common_lifetime">Object lifetimes and scoping</a>
819</div>
820
821<div class="doc_text">
Bill Wendlingd90060e2009-12-01 00:53:11 +0000822<p>In many languages, the local variables in functions can have their lifetimes
823 or scopes limited to a subset of a function. In the C family of languages,
Bill Wendlingde024832009-05-17 05:52:39 +0000824 for example, variables are only live (readable and writable) within the
825 source block that they are defined in. In functional languages, values are
826 only readable after they have been defined. Though this is a very obvious
Bill Wendlingd90060e2009-12-01 00:53:11 +0000827 concept, it is non-trivial to model in LLVM, because it has no notion of
Bill Wendlingde024832009-05-17 05:52:39 +0000828 scoping in this sense, and does not want to be tied to a language's scoping
829 rules.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000830
Bill Wendlingd90060e2009-12-01 00:53:11 +0000831<p>In order to handle this, the LLVM debug format uses the metadata attached to
832 llvm instructions to encode line nuber and scoping information. Consider the
833 following C fragment, for example:</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000834
Bill Wendlingde024832009-05-17 05:52:39 +0000835<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000836<pre>
8371. void foo() {
Devang Patelcacef072009-11-25 23:28:01 +00008382. int X = 21;
8393. int Y = 22;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008404. {
Devang Patelcacef072009-11-25 23:28:01 +00008415. int Z = 23;
8426. Z = X;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008437. }
Devang Patelcacef072009-11-25 23:28:01 +00008448. X = Y;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008459. }
846</pre>
Bill Wendlingde024832009-05-17 05:52:39 +0000847</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000848
849<p>Compiled to LLVM, this function would be represented like this:</p>
850
Bill Wendlingde024832009-05-17 05:52:39 +0000851<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000852<pre>
Bill Wendlingd90060e2009-12-01 00:53:11 +0000853define void @foo() nounwind ssp {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000854entry:
Bill Wendling05837cd2009-12-01 00:59:58 +0000855 %X = alloca i32, align 4 ; &lt;i32*&gt; [#uses=4]
856 %Y = alloca i32, align 4 ; &lt;i32*&gt; [#uses=4]
857 %Z = alloca i32, align 4 ; &lt;i32*&gt; [#uses=3]
858 %0 = bitcast i32* %X to { }* ; &lt;{ }*&gt; [#uses=1]
Devang Patelcacef072009-11-25 23:28:01 +0000859 call void @llvm.dbg.declare({ }* %0, metadata !0), !dbg !7
860 store i32 21, i32* %X, !dbg !8
Bill Wendling05837cd2009-12-01 00:59:58 +0000861 %1 = bitcast i32* %Y to { }* ; &lt;{ }*&gt; [#uses=1]
Devang Patelcacef072009-11-25 23:28:01 +0000862 call void @llvm.dbg.declare({ }* %1, metadata !9), !dbg !10
863 store i32 22, i32* %Y, !dbg !11
Bill Wendling05837cd2009-12-01 00:59:58 +0000864 %2 = bitcast i32* %Z to { }* ; &lt;{ }*&gt; [#uses=1]
Devang Patelcacef072009-11-25 23:28:01 +0000865 call void @llvm.dbg.declare({ }* %2, metadata !12), !dbg !14
866 store i32 23, i32* %Z, !dbg !15
Bill Wendling05837cd2009-12-01 00:59:58 +0000867 %tmp = load i32* %X, !dbg !16 ; &lt;i32&gt; [#uses=1]
868 %tmp1 = load i32* %Y, !dbg !16 ; &lt;i32&gt; [#uses=1]
869 %add = add nsw i32 %tmp, %tmp1, !dbg !16 ; &lt;i32&gt; [#uses=1]
Devang Patelcacef072009-11-25 23:28:01 +0000870 store i32 %add, i32* %Z, !dbg !16
Bill Wendling05837cd2009-12-01 00:59:58 +0000871 %tmp2 = load i32* %Y, !dbg !17 ; &lt;i32&gt; [#uses=1]
Devang Patelcacef072009-11-25 23:28:01 +0000872 store i32 %tmp2, i32* %X, !dbg !17
873 ret void, !dbg !18
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000874}
Devang Patelcacef072009-11-25 23:28:01 +0000875
876declare void @llvm.dbg.declare({ }*, metadata) nounwind readnone
877
878!0 = metadata !{i32 459008, metadata !1, metadata !"X",
879 metadata !3, i32 2, metadata !6}; [ DW_TAG_auto_variable ]
880!1 = metadata !{i32 458763, metadata !2}; [DW_TAG_lexical_block ]
881!2 = metadata !{i32 458798, i32 0, metadata !3, metadata !"foo", metadata !"foo",
882 metadata !"foo", metadata !3, i32 1, metadata !4,
883 i1 false, i1 true}; [DW_TAG_subprogram ]
884!3 = metadata !{i32 458769, i32 0, i32 12, metadata !"foo.c",
885 metadata !"/private/tmp", metadata !"clang 1.1", i1 true,
886 i1 false, metadata !"", i32 0}; [DW_TAG_compile_unit ]
887!4 = metadata !{i32 458773, metadata !3, metadata !"", null, i32 0, i64 0, i64 0,
888 i64 0, i32 0, null, metadata !5, i32 0}; [DW_TAG_subroutine_type ]
889!5 = metadata !{null}
890!6 = metadata !{i32 458788, metadata !3, metadata !"int", metadata !3, i32 0,
891 i64 32, i64 32, i64 0, i32 0, i32 5}; [DW_TAG_base_type ]
892!7 = metadata !{i32 2, i32 7, metadata !1, null}
893!8 = metadata !{i32 2, i32 3, metadata !1, null}
894!9 = metadata !{i32 459008, metadata !1, metadata !"Y", metadata !3, i32 3,
895 metadata !6}; [ DW_TAG_auto_variable ]
896!10 = metadata !{i32 3, i32 7, metadata !1, null}
897!11 = metadata !{i32 3, i32 3, metadata !1, null}
898!12 = metadata !{i32 459008, metadata !13, metadata !"Z", metadata !3, i32 5,
899 metadata !6}; [ DW_TAG_auto_variable ]
900!13 = metadata !{i32 458763, metadata !1}; [DW_TAG_lexical_block ]
901!14 = metadata !{i32 5, i32 9, metadata !13, null}
902!15 = metadata !{i32 5, i32 5, metadata !13, null}
903!16 = metadata !{i32 6, i32 5, metadata !13, null}
904!17 = metadata !{i32 8, i32 3, metadata !1, null}
905!18 = metadata !{i32 9, i32 1, metadata !2, null}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000906</pre>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000907</div>
908
Bill Wendlingd90060e2009-12-01 00:53:11 +0000909<p>This example illustrates a few important details about LLVM debugging
910 information. In particular, it shows how the <tt>llvm.dbg.declare</tt>
911 intrinsic and location information, which are attached to an instruction,
912 are applied together to allow a debugger to analyze the relationship between
913 statements, variable definitions, and the code used to implement the
914 function.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000915
Bill Wendlingd90060e2009-12-01 00:53:11 +0000916<div class="doc_code">
Bill Wendling05837cd2009-12-01 00:59:58 +0000917<pre>
Bill Wendlingd90060e2009-12-01 00:53:11 +0000918call void @llvm.dbg.declare({ }* %0, metadata !0), !dbg !7
919</pre>
920</div>
921
922<p>The first intrinsic
Devang Patelcacef072009-11-25 23:28:01 +0000923 <tt>%<a href="#format_common_declare">llvm.dbg.declare</a></tt>
Bill Wendlingd90060e2009-12-01 00:53:11 +0000924 encodes debugging information for the variable <tt>X</tt>. The metadata
925 <tt>!dbg !7</tt> attached to the intrinsic provides scope information for the
926 variable <tt>X</tt>.</p>
Bill Wendlingde024832009-05-17 05:52:39 +0000927
Bill Wendlingd90060e2009-12-01 00:53:11 +0000928<div class="doc_code">
929<pre>
930!7 = metadata !{i32 2, i32 7, metadata !1, null}
931!1 = metadata !{i32 458763, metadata !2}; [DW_TAG_lexical_block ]
932!2 = metadata !{i32 458798, i32 0, metadata !3, metadata !"foo",
933 metadata !"foo", metadata !"foo", metadata !3, i32 1,
934 metadata !4, i1 false, i1 true}; [DW_TAG_subprogram ]
935</pre>
936</div>
937
938<p>Here <tt>!7</tt> is metadata providing location information. It has four
939 fields: line number, column number, scope, and original scope. The original
940 scope represents inline location if this instruction is inlined inside a
941 caller, and is null otherwise. In this example, scope is encoded by
Devang Patelcacef072009-11-25 23:28:01 +0000942 <tt>!1</tt>. <tt>!1</tt> represents a lexical block inside the scope
943 <tt>!2</tt>, where <tt>!2</tt> is a
Bill Wendlingd90060e2009-12-01 00:53:11 +0000944 <a href="#format_subprograms">subprogram descriptor</a>. This way the
945 location information attached to the intrinsics indicates that the
946 variable <tt>X</tt> is declared at line number 2 at a function level scope in
947 function <tt>foo</tt>.</p>
Bill Wendlingde024832009-05-17 05:52:39 +0000948
Devang Patelcacef072009-11-25 23:28:01 +0000949<p>Now lets take another example.</p>
Bill Wendlingde024832009-05-17 05:52:39 +0000950
Bill Wendlingd90060e2009-12-01 00:53:11 +0000951<div class="doc_code">
Bill Wendling05837cd2009-12-01 00:59:58 +0000952<pre>
Bill Wendlingd90060e2009-12-01 00:53:11 +0000953call void @llvm.dbg.declare({ }* %2, metadata !12), !dbg !14
954</pre>
955</div>
956
957<p>The second intrinsic
Devang Patelcacef072009-11-25 23:28:01 +0000958 <tt>%<a href="#format_common_declare">llvm.dbg.declare</a></tt>
Bill Wendlingd90060e2009-12-01 00:53:11 +0000959 encodes debugging information for variable <tt>Z</tt>. The metadata
960 <tt>!dbg !14</tt> attached to the intrinsic provides scope information for
961 the variable <tt>Z</tt>.</p>
Bill Wendlingde024832009-05-17 05:52:39 +0000962
Bill Wendlingd90060e2009-12-01 00:53:11 +0000963<div class="doc_code">
964<pre>
965!13 = metadata !{i32 458763, metadata !1}; [DW_TAG_lexical_block ]
966!14 = metadata !{i32 5, i32 9, metadata !13, null}
967</pre>
968</div>
Bill Wendlingde024832009-05-17 05:52:39 +0000969
Bill Wendlingd90060e2009-12-01 00:53:11 +0000970<p>Here <tt>!14</tt> indicates that <tt>Z</tt> is declaread at line number 5 and
971 column number 9 inside of lexical scope <tt>!13</tt>. The lexical scope
972 itself resides inside of lexical scope <tt>!1</tt> described above.</p>
973
974<p>The scope information attached with each instruction provides a
975 straightforward way to find instructions covered by a scope.</p>
976
Bill Wendlingde024832009-05-17 05:52:39 +0000977</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000978
979<!-- *********************************************************************** -->
980<div class="doc_section">
981 <a name="ccxx_frontend">C/C++ front-end specific debug information</a>
982</div>
983<!-- *********************************************************************** -->
984
985<div class="doc_text">
986
987<p>The C and C++ front-ends represent information about the program in a format
Bill Wendlingde024832009-05-17 05:52:39 +0000988 that is effectively identical
989 to <a href="http://www.eagercon.com/dwarf/dwarf3std.htm">DWARF 3.0</a> in
990 terms of information content. This allows code generators to trivially
991 support native debuggers by generating standard dwarf information, and
992 contains enough information for non-dwarf targets to translate it as
993 needed.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000994
995<p>This section describes the forms used to represent C and C++ programs. Other
Bill Wendlingde024832009-05-17 05:52:39 +0000996 languages could pattern themselves after this (which itself is tuned to
997 representing programs in the same way that DWARF 3 does), or they could
998 choose to provide completely different forms if they don't fit into the DWARF
999 model. As support for debugging information gets added to the various LLVM
1000 source-language front-ends, the information used should be documented
1001 here.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001002
1003<p>The following sections provide examples of various C/C++ constructs and the
Bill Wendlingde024832009-05-17 05:52:39 +00001004 debug information that would best describe those constructs.</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001005
1006</div>
1007
1008<!-- ======================================================================= -->
1009<div class="doc_subsection">
1010 <a name="ccxx_compile_units">C/C++ source file information</a>
1011</div>
1012
1013<div class="doc_text">
1014
Bill Wendlingde024832009-05-17 05:52:39 +00001015<p>Given the source files <tt>MySource.cpp</tt> and <tt>MyHeader.h</tt> located
1016 in the directory <tt>/Users/mine/sources</tt>, the following code:</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001017
Bill Wendlingde024832009-05-17 05:52:39 +00001018<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001019<pre>
1020#include "MyHeader.h"
1021
1022int main(int argc, char *argv[]) {
1023 return 0;
1024}
1025</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001026</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001027
Misha Brukmane5b22d42008-12-16 02:54:22 +00001028<p>a C/C++ front-end would generate the following descriptors:</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001029
Bill Wendlingde024832009-05-17 05:52:39 +00001030<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001031<pre>
1032...
1033;;
Devang Patel1a951462010-03-09 00:44:10 +00001034;; Define the compile unit for the main source file "/Users/mine/sources/MySource.cpp".
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001035;;
Devang Patel1a951462010-03-09 00:44:10 +00001036!2 = metadata !{
1037 i32 524305, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001038 i32 0, ;; Unused
1039 i32 4, ;; Language Id
1040 metadata !"MySource.cpp",
1041 metadata !"/Users/mine/sources",
1042 metadata !"4.2.1 (Based on Apple Inc. build 5649) (LLVM build 00)",
1043 i1 true, ;; Main Compile Unit
1044 i1 false, ;; Optimized compile unit
1045 metadata !"", ;; Compiler flags
1046 i32 0} ;; Runtime version
1047
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001048;;
Devang Patel1a951462010-03-09 00:44:10 +00001049;; Define the file for the file "/Users/mine/sources/MySource.cpp".
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001050;;
Devang Patel15e723d2009-08-28 23:24:31 +00001051!1 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001052 i32 524329, ;; Tag
1053 metadata !"MySource.cpp",
Devang Patel15e723d2009-08-28 23:24:31 +00001054 metadata !"/Users/mine/sources",
Devang Patel1a951462010-03-09 00:44:10 +00001055 metadata !3 ;; Compile unit
1056}
1057
1058;;
1059;; Define the file for the file "/Users/mine/sources/Myheader.h"
1060;;
1061!3 = metadata !{
1062 i32 524329, ;; Tag
1063 metadata !"Myheader.h"
1064 metadata !"/Users/mine/sources",
1065 metadata !3 ;; Compile unit
1066}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001067
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001068...
1069</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001070</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001071
1072</div>
1073
1074<!-- ======================================================================= -->
1075<div class="doc_subsection">
1076 <a name="ccxx_global_variable">C/C++ global variable information</a>
1077</div>
1078
1079<div class="doc_text">
1080
Misha Brukmane5b22d42008-12-16 02:54:22 +00001081<p>Given an integer global variable declared as follows:</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001082
Bill Wendlingde024832009-05-17 05:52:39 +00001083<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001084<pre>
1085int MyGlobal = 100;
1086</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001087</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001088
Misha Brukmane5b22d42008-12-16 02:54:22 +00001089<p>a C/C++ front-end would generate the following descriptors:</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001090
Bill Wendlingde024832009-05-17 05:52:39 +00001091<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001092<pre>
1093;;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001094;; Define the global itself.
1095;;
1096%MyGlobal = global int 100
1097...
1098;;
Devang Patel15e723d2009-08-28 23:24:31 +00001099;; List of debug info of globals
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001100;;
Devang Patel15e723d2009-08-28 23:24:31 +00001101!llvm.dbg.gv = !{!0}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001102
1103;;
1104;; Define the global variable descriptor. Note the reference to the global
1105;; variable anchor and the global variable itself.
1106;;
Devang Patel15e723d2009-08-28 23:24:31 +00001107!0 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001108 i32 524340, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001109 i32 0, ;; Unused
1110 metadata !1, ;; Context
1111 metadata !"MyGlobal", ;; Name
1112 metadata !"MyGlobal", ;; Display Name
1113 metadata !"MyGlobal", ;; Linkage Name
Devang Patel1a951462010-03-09 00:44:10 +00001114 metadata !3, ;; Compile Unit
Devang Patel15e723d2009-08-28 23:24:31 +00001115 i32 1, ;; Line Number
Devang Patel1a951462010-03-09 00:44:10 +00001116 metadata !4, ;; Type
Devang Patel15e723d2009-08-28 23:24:31 +00001117 i1 false, ;; Is a local variable
1118 i1 true, ;; Is this a definition
1119 i32* @MyGlobal ;; The global variable
1120}
1121
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001122;;
1123;; Define the basic type of 32 bit signed integer. Note that since int is an
1124;; intrinsic type the source file is NULL and line 0.
1125;;
Devang Patel1a951462010-03-09 00:44:10 +00001126!4 = metadata !{
1127 i32 524324, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001128 metadata !1, ;; Context
1129 metadata !"int", ;; Name
Devang Patel1a951462010-03-09 00:44:10 +00001130 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001131 i32 0, ;; Line number
1132 i64 32, ;; Size in Bits
1133 i64 32, ;; Align in Bits
1134 i64 0, ;; Offset in Bits
1135 i32 0, ;; Flags
1136 i32 5 ;; Encoding
1137}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001138
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001139</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001140</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001141
1142</div>
1143
1144<!-- ======================================================================= -->
1145<div class="doc_subsection">
1146 <a name="ccxx_subprogram">C/C++ function information</a>
1147</div>
1148
1149<div class="doc_text">
1150
Misha Brukmane5b22d42008-12-16 02:54:22 +00001151<p>Given a function declared as follows:</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001152
Bill Wendlingde024832009-05-17 05:52:39 +00001153<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001154<pre>
1155int main(int argc, char *argv[]) {
1156 return 0;
1157}
1158</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001159</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001160
Misha Brukmane5b22d42008-12-16 02:54:22 +00001161<p>a C/C++ front-end would generate the following descriptors:</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001162
Bill Wendlingde024832009-05-17 05:52:39 +00001163<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001164<pre>
1165;;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001166;; Define the anchor for subprograms. Note that the second field of the
1167;; anchor is 46, which is the same as the tag for subprograms
1168;; (46 = DW_TAG_subprogram.)
1169;;
Devang Patel1a951462010-03-09 00:44:10 +00001170!6 = metadata !{
1171 i32 524334, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001172 i32 0, ;; Unused
1173 metadata !1, ;; Context
1174 metadata !"main", ;; Name
1175 metadata !"main", ;; Display name
1176 metadata !"main", ;; Linkage name
Devang Patel1a951462010-03-09 00:44:10 +00001177 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001178 i32 1, ;; Line number
Devang Patel1a951462010-03-09 00:44:10 +00001179 metadata !4, ;; Type
Devang Patel15e723d2009-08-28 23:24:31 +00001180 i1 false, ;; Is local
1181 i1 true ;; Is definition
1182}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001183;;
1184;; Define the subprogram itself.
1185;;
Devang Patel15e723d2009-08-28 23:24:31 +00001186define i32 @main(i32 %argc, i8** %argv) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001187...
1188}
1189</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001190</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001191
1192</div>
1193
1194<!-- ======================================================================= -->
1195<div class="doc_subsection">
1196 <a name="ccxx_basic_types">C/C++ basic types</a>
1197</div>
1198
1199<div class="doc_text">
1200
Misha Brukmane5b22d42008-12-16 02:54:22 +00001201<p>The following are the basic type descriptors for C/C++ core types:</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001202
1203</div>
1204
1205<!-- ======================================================================= -->
1206<div class="doc_subsubsection">
1207 <a name="ccxx_basic_type_bool">bool</a>
1208</div>
1209
1210<div class="doc_text">
1211
Bill Wendlingde024832009-05-17 05:52:39 +00001212<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001213<pre>
Devang Patel15e723d2009-08-28 23:24:31 +00001214!2 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001215 i32 524324, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001216 metadata !1, ;; Context
1217 metadata !"bool", ;; Name
Devang Patel1a951462010-03-09 00:44:10 +00001218 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001219 i32 0, ;; Line number
1220 i64 8, ;; Size in Bits
1221 i64 8, ;; Align in Bits
1222 i64 0, ;; Offset in Bits
1223 i32 0, ;; Flags
1224 i32 2 ;; Encoding
1225}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001226</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001227</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001228
1229</div>
1230
1231<!-- ======================================================================= -->
1232<div class="doc_subsubsection">
1233 <a name="ccxx_basic_char">char</a>
1234</div>
1235
1236<div class="doc_text">
1237
Bill Wendlingde024832009-05-17 05:52:39 +00001238<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001239<pre>
Devang Patel15e723d2009-08-28 23:24:31 +00001240!2 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001241 i32 524324, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001242 metadata !1, ;; Context
1243 metadata !"char", ;; Name
Devang Patel1a951462010-03-09 00:44:10 +00001244 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001245 i32 0, ;; Line number
1246 i64 8, ;; Size in Bits
1247 i64 8, ;; Align in Bits
1248 i64 0, ;; Offset in Bits
1249 i32 0, ;; Flags
1250 i32 6 ;; Encoding
1251}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001252</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001253</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001254
1255</div>
1256
1257<!-- ======================================================================= -->
1258<div class="doc_subsubsection">
1259 <a name="ccxx_basic_unsigned_char">unsigned char</a>
1260</div>
1261
1262<div class="doc_text">
1263
Bill Wendlingde024832009-05-17 05:52:39 +00001264<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001265<pre>
Devang Patel15e723d2009-08-28 23:24:31 +00001266!2 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001267 i32 524324, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001268 metadata !1, ;; Context
1269 metadata !"unsigned char",
Devang Patel1a951462010-03-09 00:44:10 +00001270 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001271 i32 0, ;; Line number
1272 i64 8, ;; Size in Bits
1273 i64 8, ;; Align in Bits
1274 i64 0, ;; Offset in Bits
1275 i32 0, ;; Flags
1276 i32 8 ;; Encoding
1277}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001278</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001279</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001280
1281</div>
1282
1283<!-- ======================================================================= -->
1284<div class="doc_subsubsection">
1285 <a name="ccxx_basic_short">short</a>
1286</div>
1287
1288<div class="doc_text">
1289
Bill Wendlingde024832009-05-17 05:52:39 +00001290<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001291<pre>
Devang Patel15e723d2009-08-28 23:24:31 +00001292!2 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001293 i32 524324, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001294 metadata !1, ;; Context
1295 metadata !"short int",
Devang Patel1a951462010-03-09 00:44:10 +00001296 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001297 i32 0, ;; Line number
1298 i64 16, ;; Size in Bits
1299 i64 16, ;; Align in Bits
1300 i64 0, ;; Offset in Bits
1301 i32 0, ;; Flags
1302 i32 5 ;; Encoding
1303}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001304</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001305</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001306
1307</div>
1308
1309<!-- ======================================================================= -->
1310<div class="doc_subsubsection">
1311 <a name="ccxx_basic_unsigned_short">unsigned short</a>
1312</div>
1313
1314<div class="doc_text">
1315
Bill Wendlingde024832009-05-17 05:52:39 +00001316<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001317<pre>
Devang Patel15e723d2009-08-28 23:24:31 +00001318!2 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001319 i32 524324, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001320 metadata !1, ;; Context
1321 metadata !"short unsigned int",
Devang Patel1a951462010-03-09 00:44:10 +00001322 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001323 i32 0, ;; Line number
1324 i64 16, ;; Size in Bits
1325 i64 16, ;; Align in Bits
1326 i64 0, ;; Offset in Bits
1327 i32 0, ;; Flags
1328 i32 7 ;; Encoding
1329}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001330</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001331</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001332
1333</div>
1334
1335<!-- ======================================================================= -->
1336<div class="doc_subsubsection">
1337 <a name="ccxx_basic_int">int</a>
1338</div>
1339
1340<div class="doc_text">
1341
Bill Wendlingde024832009-05-17 05:52:39 +00001342<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001343<pre>
Devang Patel15e723d2009-08-28 23:24:31 +00001344!2 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001345 i32 524324, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001346 metadata !1, ;; Context
1347 metadata !"int", ;; Name
Devang Patel1a951462010-03-09 00:44:10 +00001348 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001349 i32 0, ;; Line number
1350 i64 32, ;; Size in Bits
1351 i64 32, ;; Align in Bits
1352 i64 0, ;; Offset in Bits
1353 i32 0, ;; Flags
1354 i32 5 ;; Encoding
1355}
Bill Wendlingde024832009-05-17 05:52:39 +00001356</pre></div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001357
1358</div>
1359
1360<!-- ======================================================================= -->
1361<div class="doc_subsubsection">
1362 <a name="ccxx_basic_unsigned_int">unsigned int</a>
1363</div>
1364
1365<div class="doc_text">
1366
Bill Wendlingde024832009-05-17 05:52:39 +00001367<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001368<pre>
Devang Patel15e723d2009-08-28 23:24:31 +00001369!2 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001370 i32 524324, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001371 metadata !1, ;; Context
1372 metadata !"unsigned int",
Devang Patel1a951462010-03-09 00:44:10 +00001373 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001374 i32 0, ;; Line number
1375 i64 32, ;; Size in Bits
1376 i64 32, ;; Align in Bits
1377 i64 0, ;; Offset in Bits
1378 i32 0, ;; Flags
1379 i32 7 ;; Encoding
1380}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001381</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001382</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001383
1384</div>
1385
1386<!-- ======================================================================= -->
1387<div class="doc_subsubsection">
1388 <a name="ccxx_basic_long_long">long long</a>
1389</div>
1390
1391<div class="doc_text">
1392
Bill Wendlingde024832009-05-17 05:52:39 +00001393<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001394<pre>
Devang Patel15e723d2009-08-28 23:24:31 +00001395!2 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001396 i32 524324, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001397 metadata !1, ;; Context
1398 metadata !"long long int",
Devang Patel1a951462010-03-09 00:44:10 +00001399 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001400 i32 0, ;; Line number
1401 i64 64, ;; Size in Bits
1402 i64 64, ;; Align in Bits
1403 i64 0, ;; Offset in Bits
1404 i32 0, ;; Flags
1405 i32 5 ;; Encoding
1406}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001407</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001408</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001409
1410</div>
1411
1412<!-- ======================================================================= -->
1413<div class="doc_subsubsection">
1414 <a name="ccxx_basic_unsigned_long_long">unsigned long long</a>
1415</div>
1416
1417<div class="doc_text">
1418
Bill Wendlingde024832009-05-17 05:52:39 +00001419<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001420<pre>
Devang Patel15e723d2009-08-28 23:24:31 +00001421!2 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001422 i32 524324, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001423 metadata !1, ;; Context
1424 metadata !"long long unsigned int",
Devang Patel1a951462010-03-09 00:44:10 +00001425 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001426 i32 0, ;; Line number
1427 i64 64, ;; Size in Bits
1428 i64 64, ;; Align in Bits
1429 i64 0, ;; Offset in Bits
1430 i32 0, ;; Flags
1431 i32 7 ;; Encoding
1432}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001433</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001434</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001435
1436</div>
1437
1438<!-- ======================================================================= -->
1439<div class="doc_subsubsection">
1440 <a name="ccxx_basic_float">float</a>
1441</div>
1442
1443<div class="doc_text">
1444
Bill Wendlingde024832009-05-17 05:52:39 +00001445<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001446<pre>
Devang Patel15e723d2009-08-28 23:24:31 +00001447!2 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001448 i32 524324, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001449 metadata !1, ;; Context
1450 metadata !"float",
Devang Patel1a951462010-03-09 00:44:10 +00001451 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001452 i32 0, ;; Line number
1453 i64 32, ;; Size in Bits
1454 i64 32, ;; Align in Bits
1455 i64 0, ;; Offset in Bits
1456 i32 0, ;; Flags
1457 i32 4 ;; Encoding
1458}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001459</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001460</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001461
1462</div>
1463
1464<!-- ======================================================================= -->
1465<div class="doc_subsubsection">
1466 <a name="ccxx_basic_double">double</a>
1467</div>
1468
1469<div class="doc_text">
1470
Bill Wendlingde024832009-05-17 05:52:39 +00001471<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001472<pre>
Devang Patel15e723d2009-08-28 23:24:31 +00001473!2 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001474 i32 524324, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001475 metadata !1, ;; Context
1476 metadata !"double",;; Name
Devang Patel1a951462010-03-09 00:44:10 +00001477 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001478 i32 0, ;; Line number
1479 i64 64, ;; Size in Bits
1480 i64 64, ;; Align in Bits
1481 i64 0, ;; Offset in Bits
1482 i32 0, ;; Flags
1483 i32 4 ;; Encoding
1484}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001485</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001486</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001487
1488</div>
1489
1490<!-- ======================================================================= -->
1491<div class="doc_subsection">
1492 <a name="ccxx_derived_types">C/C++ derived types</a>
1493</div>
1494
1495<div class="doc_text">
1496
Misha Brukmane5b22d42008-12-16 02:54:22 +00001497<p>Given the following as an example of C/C++ derived type:</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001498
Bill Wendlingde024832009-05-17 05:52:39 +00001499<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001500<pre>
1501typedef const int *IntPtr;
1502</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001503</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001504
Misha Brukmane5b22d42008-12-16 02:54:22 +00001505<p>a C/C++ front-end would generate the following descriptors:</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001506
Bill Wendlingde024832009-05-17 05:52:39 +00001507<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001508<pre>
1509;;
1510;; Define the typedef "IntPtr".
1511;;
Devang Patel15e723d2009-08-28 23:24:31 +00001512!2 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001513 i32 524310, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001514 metadata !1, ;; Context
1515 metadata !"IntPtr", ;; Name
Devang Patel1a951462010-03-09 00:44:10 +00001516 metadata !3, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001517 i32 0, ;; Line number
1518 i64 0, ;; Size in bits
1519 i64 0, ;; Align in bits
1520 i64 0, ;; Offset in bits
1521 i32 0, ;; Flags
1522 metadata !4 ;; Derived From type
1523}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001524
1525;;
1526;; Define the pointer type.
1527;;
Devang Patel15e723d2009-08-28 23:24:31 +00001528!4 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001529 i32 524303, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001530 metadata !1, ;; Context
1531 metadata !"", ;; Name
Devang Patel1a951462010-03-09 00:44:10 +00001532 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001533 i32 0, ;; Line number
1534 i64 64, ;; Size in bits
1535 i64 64, ;; Align in bits
1536 i64 0, ;; Offset in bits
1537 i32 0, ;; Flags
1538 metadata !5 ;; Derived From type
1539}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001540;;
1541;; Define the const type.
1542;;
Devang Patel15e723d2009-08-28 23:24:31 +00001543!5 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001544 i32 524326, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001545 metadata !1, ;; Context
1546 metadata !"", ;; Name
Devang Patel1a951462010-03-09 00:44:10 +00001547 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001548 i32 0, ;; Line number
1549 i64 32, ;; Size in bits
1550 i64 32, ;; Align in bits
1551 i64 0, ;; Offset in bits
1552 i32 0, ;; Flags
1553 metadata !6 ;; Derived From type
1554}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001555;;
1556;; Define the int type.
1557;;
Devang Patel15e723d2009-08-28 23:24:31 +00001558!6 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001559 i32 524324, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001560 metadata !1, ;; Context
1561 metadata !"int", ;; Name
Devang Patel1a951462010-03-09 00:44:10 +00001562 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001563 i32 0, ;; Line number
1564 i64 32, ;; Size in bits
1565 i64 32, ;; Align in bits
1566 i64 0, ;; Offset in bits
1567 i32 0, ;; Flags
1568 5 ;; Encoding
1569}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001570</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001571</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001572
1573</div>
1574
1575<!-- ======================================================================= -->
1576<div class="doc_subsection">
1577 <a name="ccxx_composite_types">C/C++ struct/union types</a>
1578</div>
1579
1580<div class="doc_text">
1581
Misha Brukmane5b22d42008-12-16 02:54:22 +00001582<p>Given the following as an example of C/C++ struct type:</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001583
Bill Wendlingde024832009-05-17 05:52:39 +00001584<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001585<pre>
1586struct Color {
1587 unsigned Red;
1588 unsigned Green;
1589 unsigned Blue;
1590};
1591</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001592</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001593
Misha Brukmane5b22d42008-12-16 02:54:22 +00001594<p>a C/C++ front-end would generate the following descriptors:</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001595
Bill Wendlingde024832009-05-17 05:52:39 +00001596<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001597<pre>
1598;;
1599;; Define basic type for unsigned int.
1600;;
Devang Patel15e723d2009-08-28 23:24:31 +00001601!5 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001602 i32 524324, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001603 metadata !1, ;; Context
1604 metadata !"unsigned int",
Devang Patel1a951462010-03-09 00:44:10 +00001605 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001606 i32 0, ;; Line number
1607 i64 32, ;; Size in Bits
1608 i64 32, ;; Align in Bits
1609 i64 0, ;; Offset in Bits
1610 i32 0, ;; Flags
1611 i32 7 ;; Encoding
1612}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001613;;
1614;; Define composite type for struct Color.
1615;;
Devang Patel15e723d2009-08-28 23:24:31 +00001616!2 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001617 i32 524307, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001618 metadata !1, ;; Context
1619 metadata !"Color", ;; Name
1620 metadata !1, ;; Compile unit
1621 i32 1, ;; Line number
1622 i64 96, ;; Size in bits
1623 i64 32, ;; Align in bits
1624 i64 0, ;; Offset in bits
1625 i32 0, ;; Flags
1626 null, ;; Derived From
1627 metadata !3, ;; Elements
1628 i32 0 ;; Runtime Language
1629}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001630
1631;;
1632;; Define the Red field.
1633;;
Devang Patel15e723d2009-08-28 23:24:31 +00001634!4 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001635 i32 524301, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001636 metadata !1, ;; Context
1637 metadata !"Red", ;; Name
Devang Patel1a951462010-03-09 00:44:10 +00001638 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001639 i32 2, ;; Line number
1640 i64 32, ;; Size in bits
1641 i64 32, ;; Align in bits
1642 i64 0, ;; Offset in bits
1643 i32 0, ;; Flags
1644 metadata !5 ;; Derived From type
1645}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001646
1647;;
1648;; Define the Green field.
1649;;
Devang Patel15e723d2009-08-28 23:24:31 +00001650!6 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001651 i32 524301, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001652 metadata !1, ;; Context
1653 metadata !"Green", ;; Name
Devang Patel1a951462010-03-09 00:44:10 +00001654 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001655 i32 3, ;; Line number
1656 i64 32, ;; Size in bits
1657 i64 32, ;; Align in bits
1658 i64 32, ;; Offset in bits
1659 i32 0, ;; Flags
1660 metadata !5 ;; Derived From type
1661}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001662
1663;;
1664;; Define the Blue field.
1665;;
Devang Patel15e723d2009-08-28 23:24:31 +00001666!7 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001667 i32 524301, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001668 metadata !1, ;; Context
1669 metadata !"Blue", ;; Name
Devang Patel1a951462010-03-09 00:44:10 +00001670 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001671 i32 4, ;; Line number
1672 i64 32, ;; Size in bits
1673 i64 32, ;; Align in bits
1674 i64 64, ;; Offset in bits
1675 i32 0, ;; Flags
1676 metadata !5 ;; Derived From type
1677}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001678
1679;;
1680;; Define the array of fields used by the composite type Color.
1681;;
Devang Patel15e723d2009-08-28 23:24:31 +00001682!3 = metadata !{metadata !4, metadata !6, metadata !7}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001683</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001684</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001685
1686</div>
1687
1688<!-- ======================================================================= -->
1689<div class="doc_subsection">
1690 <a name="ccxx_enumeration_types">C/C++ enumeration types</a>
1691</div>
1692
1693<div class="doc_text">
1694
Misha Brukmane5b22d42008-12-16 02:54:22 +00001695<p>Given the following as an example of C/C++ enumeration type:</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001696
Bill Wendlingde024832009-05-17 05:52:39 +00001697<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001698<pre>
1699enum Trees {
1700 Spruce = 100,
1701 Oak = 200,
1702 Maple = 300
1703};
1704</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001705</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001706
Misha Brukmane5b22d42008-12-16 02:54:22 +00001707<p>a C/C++ front-end would generate the following descriptors:</p>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001708
Bill Wendlingde024832009-05-17 05:52:39 +00001709<div class="doc_code">
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001710<pre>
1711;;
1712;; Define composite type for enum Trees
1713;;
Devang Patel15e723d2009-08-28 23:24:31 +00001714!2 = metadata !{
Devang Patel1a951462010-03-09 00:44:10 +00001715 i32 524292, ;; Tag
Devang Patel15e723d2009-08-28 23:24:31 +00001716 metadata !1, ;; Context
1717 metadata !"Trees", ;; Name
Devang Patel1a951462010-03-09 00:44:10 +00001718 metadata !1, ;; File
Devang Patel15e723d2009-08-28 23:24:31 +00001719 i32 1, ;; Line number
1720 i64 32, ;; Size in bits
1721 i64 32, ;; Align in bits
1722 i64 0, ;; Offset in bits
1723 i32 0, ;; Flags
1724 null, ;; Derived From type
1725 metadata !3, ;; Elements
1726 i32 0 ;; Runtime language
1727}
Devang Patel57b83c72009-08-25 05:24:07 +00001728
Devang Patel94060422009-08-26 05:01:18 +00001729;;
1730;; Define the array of enumerators used by composite type Trees.
1731;;
Devang Patel15e723d2009-08-28 23:24:31 +00001732!3 = metadata !{metadata !4, metadata !5, metadata !6}
1733
1734;;
1735;; Define Spruce enumerator.
1736;;
Devang Patel1a951462010-03-09 00:44:10 +00001737!4 = metadata !{i32 524328, metadata !"Spruce", i64 100}
Devang Patel15e723d2009-08-28 23:24:31 +00001738
1739;;
1740;; Define Oak enumerator.
1741;;
Devang Patel1a951462010-03-09 00:44:10 +00001742!5 = metadata !{i32 524328, metadata !"Oak", i64 200}
Devang Patel15e723d2009-08-28 23:24:31 +00001743
1744;;
1745;; Define Maple enumerator.
1746;;
Devang Patel1a951462010-03-09 00:44:10 +00001747!6 = metadata !{i32 524328, metadata !"Maple", i64 300}
Devang Patel15e723d2009-08-28 23:24:31 +00001748
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001749</pre>
Bill Wendlingde024832009-05-17 05:52:39 +00001750</div>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001751
1752</div>
1753
1754<!-- *********************************************************************** -->
1755
1756<hr>
1757<address>
1758 <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
Misha Brukman947321d2008-12-11 17:34:48 +00001759 src="http://jigsaw.w3.org/css-validator/images/vcss-blue" alt="Valid CSS"></a>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001760 <a href="http://validator.w3.org/check/referer"><img
Misha Brukman947321d2008-12-11 17:34:48 +00001761 src="http://www.w3.org/Icons/valid-html401-blue" alt="Valid HTML 4.01"></a>
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001762
1763 <a href="mailto:sabre@nondot.org">Chris Lattner</a><br>
1764 <a href="http://llvm.org">LLVM Compiler Infrastructure</a><br>
1765 Last modified: $Date$
1766</address>
1767
1768</body>
1769</html>