Fix comment typo.
[oota-llvm.git] / docs / SourceLevelDebugging.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2                       "http://www.w3.org/TR/html4/strict.dtd">
3 <html>
4 <head>
5   <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6   <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>
27       <li><a href="#format_compile_units">Compile unit descriptors</a></li>
28       <li><a href="#format_files">File descriptors</a></li>
29       <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>
41       <li><a href="#format_common_declare">llvm.dbg.declare</a></li>
42       <li><a href="#format_common_value">llvm.dbg.value</a></li>
43     </ul></li>
44   </ol></li>
45   <li><a href="#format_common_lifetime">Object lifetimes and scoping</a></li>
46   <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"
60 height="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
77    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.
80    Further, this document provides specific examples of what debug information
81    for C/C++.</p>
82
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
93    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>
96
97 <ul>
98   <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>
101
102   <li>LLVM optimizations should interact in <a href="#debugopt">well-defined and
103       easily described ways</a> with the debugging information.</li>
104
105   <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>
108
109   <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>
112
113   <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>
117 </ul>
118
119 <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
122    description of the source-level program is maintained in LLVM metadata
123    in an <a href="#ccxx_frontend">implementation-defined format</a>
124    (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>
127
128 <p>When a program is being debugged, a debugger interacts with the user and
129    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>
132
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">
141
142 <p>The role of debug information is to provide meta information normally
143    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>
146
147 <p>Currently, debug information is consumed by the DwarfWriter to produce dwarf
148    information used by the gdb debugger.  Other targets could use the same
149    information to produce stabs or other debug forms.</p>
150
151 <p>It would also be reasonable to use debug information to feed profiling tools
152    for analysis of generated code, or, tools for reconstructing the original
153    source from generated code.</p>
154
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
167    interact well with optimizations and analysis.  In particular, the LLVM debug
168    information provides the following guarantees:</p>
169
170 <ul>
171   <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>
178
179   <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>
184
185   <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>
190
191   <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>
195
196   <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>
200 </ul>
201
202 <p>Basically, the debug information allows you to compile a program with
203    "<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>
210
211 <p><a href="TestingGuide.html#quicktestsuite">LLVM test suite</a> provides a
212    framework to test optimizer's handling of debugging information. It can be
213    run like this:</p>
214
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
222 <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>
226
227 </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
238    for the optimizer to optimize the program and debugging information without
239    necessarily having to know anything about debugging information.  In
240    particular, the use of metadata avoids duplicated debugging 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>
244
245 <p>To do this, most of the debugging information (descriptors for types,
246    variables, functions, source files, etc) is inserted by the language
247    front-end in the form of LLVM metadata. </p>
248
249 <p>Debug information is designed to be agnostic about the target debugger and
250    debugging information representation (e.g. DWARF/Stabs/etc).  It uses a
251    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>
255
256 <p>To provide basic functionality, the LLVM debugger does have to make some
257    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
259    exist are <a href="#format_files">source files</a>,
260    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>
263
264 <p>This section of the documentation first describes the representation aspects
265    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>
267
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">
276
277 <p>In consideration of the complexity and volume of debug information, LLVM
278    provides a specification for well formed debug descriptors. </p>
279
280 <p>Consumers of LLVM debug information expect the descriptors for program
281    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
288    the range 0x1000 through 0x2000 (there is a defined enum DW_TAG_user_base =
289    0x1000.)</p>
290
291 <p>The fields of debug descriptors used internally by LLVM 
292    are restricted to only the simple data types <tt>int</tt>, <tt>uint</tt>,
293    <tt>bool</tt>, <tt>float</tt>, <tt>double</tt>, <tt>mdstring</tt> and
294    <tt>mdnode</tt>. </p>
295
296 <div class="doc_code">
297 <pre>
298 !1 = metadata !{
299   uint,   ;; A tag
300   ...
301 }
302 </pre>
303 </div>
304
305 <p><a name="LLVMDebugVersion">The first field of a descriptor is always an
306    <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
311    with the current debug version (LLVMDebugVersion = 8 << 16 or 0x80000 or
312    524288.)</a></p>
313
314 <p>The details of the various descriptors follow.</p>  
315
316 </div>
317
318 <!-- ======================================================================= -->
319 <div class="doc_subsubsection">
320   <a name="format_compile_units">Compile unit descriptors</a>
321 </div>
322
323 <div class="doc_text">
324
325 <div class="doc_code">
326 <pre>
327 !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
339 }
340 </pre>
341 </div>
342
343 <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>
348
349 <p>Compile unit descriptors provide the root context for objects declared in a
350    specific compilation unit. File descriptors are defined using this context.</p>
351
352 </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 information 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>
380
381 </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
390 <div class="doc_code">
391 <pre>
392 !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++)
400   metadata, ;; Reference to file where defined
401   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
406 }
407 </pre>
408 </div>
409
410 <p>These descriptors provide debug information about globals variables.  The
411 provide 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
422 <div class="doc_code">
423 <pre>
424 !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++)
432   metadata, ;; Reference to file where defined
433   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)
437 }
438 </pre>
439 </div>
440
441 <p>These descriptors provide debug information about functions, methods and
442    subprograms.  They provide details such as name, return types and the source
443    location where the subprogram is defined.</p>
444
445 </div>
446
447 <!-- ======================================================================= -->
448 <div class="doc_subsubsection">
449   <a name="format_blocks">Block descriptors</a>
450 </div>
451
452 <div class="doc_text">
453
454 <div class="doc_code">
455 <pre>
456 !3 = metadata !{
457   i32,     ;; Tag = 13 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a> (DW_TAG_lexical_block)
458   metadata ;; Reference to context descriptor
459 }
460 </pre>
461 </div>
462
463 <p>These descriptors provide debug information about nested blocks within a
464    subprogram.  The array of member descriptors is used to define local
465    variables and deeper nested blocks.</p>
466
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
476 <div class="doc_code">
477 <pre>
478 !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)
483   metadata, ;; Reference to file where defined (may be NULL)
484   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
490 }
491 </pre>
492 </div>
493
494 <p>These descriptors define primitive types used in the code. Example int, bool
495    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>
503
504 <p>The type encoding provides the details of the type.  The values are typically
505    one of the following:</p>
506
507 <div class="doc_code">
508 <pre>
509 DW_ATE_address       = 1
510 DW_ATE_boolean       = 2
511 DW_ATE_float         = 4
512 DW_ATE_signed        = 5
513 DW_ATE_signed_char   = 6
514 DW_ATE_unsigned      = 7
515 DW_ATE_unsigned_char = 8
516 </pre>
517 </div>
518
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
528 <div class="doc_code">
529 <pre>
530 !5 = metadata !{
531   i32,      ;; Tag (see below)
532   metadata, ;; Reference to context
533   metadata, ;; Name (may be "" for anonymous types)
534   metadata, ;; Reference to file where defined (may be NULL)
535   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
540 }
541 </pre>
542 </div>
543
544 <p>These descriptors are used to define types derived from other types.  The
545 value of the tag varies depending on the meaning.  The following are possible
546 tag values:</p>
547
548 <div class="doc_code">
549 <pre>
550 DW_TAG_formal_parameter = 5
551 DW_TAG_member           = 13
552 DW_TAG_pointer_type     = 15
553 DW_TAG_reference_type   = 16
554 DW_TAG_typedef          = 22
555 DW_TAG_const_type       = 38
556 DW_TAG_volatile_type    = 53
557 DW_TAG_restrict_type    = 55
558 </pre>
559 </div>
560
561 <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>
567
568 <p><tt>DW_TAG_typedef</tt> is used to provide a name for the derived type.</p>
569
570 <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>
574
575 <p><a href="#format_derived_type">Derived type</a> location can be determined
576    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>
582
583 <p>Note that the <tt>void *</tt> type is expressed as a
584    <tt>llvm.dbg.derivedtype.type</tt> with tag of <tt>DW_TAG_pointer_type</tt>
585    and <tt>NULL</tt> derived type.</p>
586
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
596 <div class="doc_code">
597 <pre>
598 !6 = metadata !{
599   i32,      ;; Tag (see below)
600   metadata, ;; Reference to context
601   metadata, ;; Name (may be "" for anonymous types)
602   metadata, ;; Reference to file where defined (may be NULL)
603   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
611 }
612 </pre>
613 </div>
614
615 <p>These descriptors are used to define types that are composed of 0 or more
616 elements.  The value of the tag varies depending on the meaning.  The following
617 are possible tag values:</p>
618
619 <div class="doc_code">
620 <pre>
621 DW_TAG_array_type       = 1
622 DW_TAG_enumeration_type = 4
623 DW_TAG_structure_type   = 19
624 DW_TAG_union_type       = 23
625 DW_TAG_vector_type      = 259
626 DW_TAG_subroutine_type  = 21
627 DW_TAG_inheritance      = 28
628 </pre>
629 </div>
630
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
634    (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>
637
638 <p>The members of enumeration types (tag = <tt>DW_TAG_enumeration_type</tt>) are
639    <a href="#format_enumeration">enumerator descriptors</a>, each representing
640    the definition of enumeration value for the set.</p>
641
642 <p>The members of structure (tag = <tt>DW_TAG_structure_type</tt>) or union (tag
643    = <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>
648
649 <p>For C++ classes (tag = <tt>DW_TAG_structure_type</tt>), member descriptors
650    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>
660
661 <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>
664
665 <p><a href="#format_composite_type">Composite type</a> location can be
666    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>
672
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
682 <div class="doc_code">
683 <pre>
684 %<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 }
689 </pre>
690 </div>
691
692 <p>These descriptors are used to define ranges of array subscripts for an array
693    <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>
697
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
707 <div class="doc_code">
708 <pre>
709 !6 = metadata !{
710   i32,      ;; Tag = 40 + <a href="#LLVMDebugVersion">LLVMDebugVersion</a> 
711             ;; (DW_TAG_enumerator)
712   metadata, ;; Name
713   i64       ;; Value
714 }
715 </pre>
716 </div>
717
718 <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>
721
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">
730
731 <div class="doc_code">
732 <pre>
733 !7 = metadata !{
734   i32,      ;; Tag (see below)
735   metadata, ;; Context
736   metadata, ;; Name
737   metadata, ;; Reference to file where defined
738   i32,      ;; Line number where defined
739   metadata  ;; Type descriptor
740 }
741 </pre>
742 </div>
743
744 <p>These descriptors are used to define variables local to a sub program.  The
745    value of the tag depends on the usage of the variable:</p>
746
747 <div class="doc_code">
748 <pre>
749 DW_TAG_auto_variable   = 256
750 DW_TAG_arg_variable    = 257
751 DW_TAG_return_variable = 258
752 </pre>
753 </div>
754
755 <p>An auto variable is any variable declared in the body of the function.  An
756    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>
759
760 <p>The context is either the subprogram or block where the variable is defined.
761    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>
764
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
775    provide debug information at various points in generated code.</p>
776
777 </div>
778
779 <!-- ======================================================================= -->
780 <div class="doc_subsubsection">
781   <a name="format_common_declare">llvm.dbg.declare</a>
782 </div>
783
784 <div class="doc_text">
785 <pre>
786   void %<a href="#format_common_declare">llvm.dbg.declare</a>( { } *, metadata )
787 </pre>
788
789 <p>This intrinsic provides information about a local element (ex. variable.) The
790    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
793    the description of the variable. </p>
794
795 </div>
796
797 <!-- ======================================================================= -->
798 <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 <!-- ======================================================================= -->
817 <div class="doc_subsection">
818   <a name="format_common_lifetime">Object lifetimes and scoping</a>
819 </div>
820
821 <div class="doc_text">
822 <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,
824    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
827    concept, it is non-trivial to model in LLVM, because it has no notion of
828    scoping in this sense, and does not want to be tied to a language's scoping
829    rules.</p>
830
831 <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>
834
835 <div class="doc_code">
836 <pre>
837 1.  void foo() {
838 2.    int X = 21;
839 3.    int Y = 22;
840 4.    {
841 5.      int Z = 23;
842 6.      Z = X;
843 7.    }
844 8.    X = Y;
845 9.  }
846 </pre>
847 </div>
848
849 <p>Compiled to LLVM, this function would be represented like this:</p>
850
851 <div class="doc_code">
852 <pre>
853 define void @foo() nounwind ssp {
854 entry:
855   %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]
859   call void @llvm.dbg.declare({ }* %0, metadata !0), !dbg !7
860   store i32 21, i32* %X, !dbg !8
861   %1 = bitcast i32* %Y to { }*                    ; &lt;{ }*&gt; [#uses=1]
862   call void @llvm.dbg.declare({ }* %1, metadata !9), !dbg !10
863   store i32 22, i32* %Y, !dbg !11
864   %2 = bitcast i32* %Z to { }*                    ; &lt;{ }*&gt; [#uses=1]
865   call void @llvm.dbg.declare({ }* %2, metadata !12), !dbg !14
866   store i32 23, i32* %Z, !dbg !15
867   %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]
870   store i32 %add, i32* %Z, !dbg !16
871   %tmp2 = load i32* %Y, !dbg !17                  ; &lt;i32&gt; [#uses=1]
872   store i32 %tmp2, i32* %X, !dbg !17
873   ret void, !dbg !18
874 }
875
876 declare 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}
906 </pre>
907 </div>
908
909 <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>
915
916 <div class="doc_code">
917 <pre>
918 call void @llvm.dbg.declare({ }* %0, metadata !0), !dbg !7   
919 </pre>
920 </div>
921
922 <p>The first intrinsic
923    <tt>%<a href="#format_common_declare">llvm.dbg.declare</a></tt>
924    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>
927
928 <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
942    <tt>!1</tt>. <tt>!1</tt> represents a lexical block inside the scope
943    <tt>!2</tt>, where <tt>!2</tt> is a
944    <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>
948
949 <p>Now lets take another example.</p>
950
951 <div class="doc_code">
952 <pre>
953 call void @llvm.dbg.declare({ }* %2, metadata !12), !dbg !14
954 </pre>
955 </div>
956
957 <p>The second intrinsic
958    <tt>%<a href="#format_common_declare">llvm.dbg.declare</a></tt>
959    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>
962
963 <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>
969
970 <p>Here <tt>!14</tt> indicates that <tt>Z</tt> is declared 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
977 </div>
978
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
988    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>
994
995 <p>This section describes the forms used to represent C and C++ programs. Other
996    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>
1002
1003 <p>The following sections provide examples of various C/C++ constructs and the
1004    debug information that would best describe those constructs.</p>
1005
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
1015 <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>
1017
1018 <div class="doc_code">
1019 <pre>
1020 #include "MyHeader.h"
1021
1022 int main(int argc, char *argv[]) {
1023   return 0;
1024 }
1025 </pre>
1026 </div>
1027
1028 <p>a C/C++ front-end would generate the following descriptors:</p>
1029
1030 <div class="doc_code">
1031 <pre>
1032 ...
1033 ;;
1034 ;; Define the compile unit for the main source file "/Users/mine/sources/MySource.cpp".
1035 ;;
1036 !2 = metadata !{
1037   i32 524305,    ;; Tag
1038   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
1048 ;;
1049 ;; Define the file for the file "/Users/mine/sources/MySource.cpp".
1050 ;;
1051 !1 = metadata !{
1052   i32 524329,    ;; Tag
1053   metadata !"MySource.cpp", 
1054   metadata !"/Users/mine/sources", 
1055   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 }
1067
1068 ...
1069 </pre>
1070 </div>
1071
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
1081 <p>Given an integer global variable declared as follows:</p>
1082
1083 <div class="doc_code">
1084 <pre>
1085 int MyGlobal = 100;
1086 </pre>
1087 </div>
1088
1089 <p>a C/C++ front-end would generate the following descriptors:</p>
1090
1091 <div class="doc_code">
1092 <pre>
1093 ;;
1094 ;; Define the global itself.
1095 ;;
1096 %MyGlobal = global int 100
1097 ...
1098 ;;
1099 ;; List of debug info of globals
1100 ;;
1101 !llvm.dbg.gv = !{!0}
1102
1103 ;;
1104 ;; Define the global variable descriptor.  Note the reference to the global
1105 ;; variable anchor and the global variable itself.
1106 ;;
1107 !0 = metadata !{
1108   i32 524340,              ;; Tag
1109   i32 0,                   ;; Unused
1110   metadata !1,             ;; Context
1111   metadata !"MyGlobal",    ;; Name
1112   metadata !"MyGlobal",    ;; Display Name
1113   metadata !"MyGlobal",    ;; Linkage Name
1114   metadata !3,             ;; Compile Unit
1115   i32 1,                   ;; Line Number
1116   metadata !4,             ;; Type
1117   i1 false,                ;; Is a local variable
1118   i1 true,                 ;; Is this a definition
1119   i32* @MyGlobal           ;; The global variable
1120 }
1121
1122 ;;
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 ;;    
1126 !4 = metadata !{
1127   i32 524324,              ;; Tag
1128   metadata !1,             ;; Context
1129   metadata !"int",         ;; Name
1130   metadata !1,             ;; File
1131   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 }
1138
1139 </pre>
1140 </div>
1141
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
1151 <p>Given a function declared as follows:</p>
1152
1153 <div class="doc_code">
1154 <pre>
1155 int main(int argc, char *argv[]) {
1156   return 0;
1157 }
1158 </pre>
1159 </div>
1160
1161 <p>a C/C++ front-end would generate the following descriptors:</p>
1162
1163 <div class="doc_code">
1164 <pre>
1165 ;;
1166 ;; 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 ;;
1170 !6 = metadata !{
1171   i32 524334,        ;; Tag
1172   i32 0,             ;; Unused
1173   metadata !1,       ;; Context
1174   metadata !"main",  ;; Name
1175   metadata !"main",  ;; Display name
1176   metadata !"main",  ;; Linkage name
1177   metadata !1,       ;; File
1178   i32 1,             ;; Line number
1179   metadata !4,       ;; Type
1180   i1 false,          ;; Is local 
1181   i1 true            ;; Is definition
1182 }
1183 ;;
1184 ;; Define the subprogram itself.
1185 ;;
1186 define i32 @main(i32 %argc, i8** %argv) {
1187 ...
1188 }
1189 </pre>
1190 </div>
1191
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
1201 <p>The following are the basic type descriptors for C/C++ core types:</p>
1202
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
1212 <div class="doc_code">
1213 <pre>
1214 !2 = metadata !{
1215   i32 524324,        ;; Tag
1216   metadata !1,       ;; Context
1217   metadata !"bool",  ;; Name
1218   metadata !1,       ;; File
1219   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 }
1226 </pre>
1227 </div>
1228
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
1238 <div class="doc_code">
1239 <pre>
1240 !2 = metadata !{
1241   i32 524324,        ;; Tag
1242   metadata !1,       ;; Context
1243   metadata !"char",  ;; Name
1244   metadata !1,       ;; File
1245   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 }
1252 </pre>
1253 </div>
1254
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
1264 <div class="doc_code">
1265 <pre>
1266 !2 = metadata !{
1267   i32 524324,        ;; Tag
1268   metadata !1,       ;; Context
1269   metadata !"unsigned char", 
1270   metadata !1,       ;; File
1271   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 }
1278 </pre>
1279 </div>
1280
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
1290 <div class="doc_code">
1291 <pre>
1292 !2 = metadata !{
1293   i32 524324,        ;; Tag
1294   metadata !1,       ;; Context
1295   metadata !"short int",
1296   metadata !1,       ;; File
1297   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 }
1304 </pre>
1305 </div>
1306
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
1316 <div class="doc_code">
1317 <pre>
1318 !2 = metadata !{
1319   i32 524324,        ;; Tag
1320   metadata !1,       ;; Context
1321   metadata !"short unsigned int",
1322   metadata !1,       ;; File
1323   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 }
1330 </pre>
1331 </div>
1332
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
1342 <div class="doc_code">
1343 <pre>
1344 !2 = metadata !{
1345   i32 524324,        ;; Tag
1346   metadata !1,       ;; Context
1347   metadata !"int",   ;; Name
1348   metadata !1,       ;; File
1349   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 }
1356 </pre></div>
1357
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
1367 <div class="doc_code">
1368 <pre>
1369 !2 = metadata !{
1370   i32 524324,        ;; Tag
1371   metadata !1,       ;; Context
1372   metadata !"unsigned int",
1373   metadata !1,       ;; File
1374   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 }
1381 </pre>
1382 </div>
1383
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
1393 <div class="doc_code">
1394 <pre>
1395 !2 = metadata !{
1396   i32 524324,        ;; Tag
1397   metadata !1,       ;; Context
1398   metadata !"long long int",
1399   metadata !1,       ;; File
1400   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 }
1407 </pre>
1408 </div>
1409
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
1419 <div class="doc_code">
1420 <pre>
1421 !2 = metadata !{
1422   i32 524324,        ;; Tag
1423   metadata !1,       ;; Context
1424   metadata !"long long unsigned int",
1425   metadata !1,       ;; File
1426   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 }
1433 </pre>
1434 </div>
1435
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
1445 <div class="doc_code">
1446 <pre>
1447 !2 = metadata !{
1448   i32 524324,        ;; Tag
1449   metadata !1,       ;; Context
1450   metadata !"float",
1451   metadata !1,       ;; File
1452   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 }
1459 </pre>
1460 </div>
1461
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
1471 <div class="doc_code">
1472 <pre>
1473 !2 = metadata !{
1474   i32 524324,        ;; Tag
1475   metadata !1,       ;; Context
1476   metadata !"double",;; Name
1477   metadata !1,       ;; File
1478   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 }
1485 </pre>
1486 </div>
1487
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
1497 <p>Given the following as an example of C/C++ derived type:</p>
1498
1499 <div class="doc_code">
1500 <pre>
1501 typedef const int *IntPtr;
1502 </pre>
1503 </div>
1504
1505 <p>a C/C++ front-end would generate the following descriptors:</p>
1506
1507 <div class="doc_code">
1508 <pre>
1509 ;;
1510 ;; Define the typedef "IntPtr".
1511 ;;
1512 !2 = metadata !{
1513   i32 524310,          ;; Tag
1514   metadata !1,         ;; Context
1515   metadata !"IntPtr",  ;; Name
1516   metadata !3,         ;; File
1517   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 }
1524
1525 ;;
1526 ;; Define the pointer type.
1527 ;;
1528 !4 = metadata !{
1529   i32 524303,          ;; Tag
1530   metadata !1,         ;; Context
1531   metadata !"",        ;; Name
1532   metadata !1,         ;; File
1533   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 }
1540 ;;
1541 ;; Define the const type.
1542 ;;
1543 !5 = metadata !{
1544   i32 524326,          ;; Tag
1545   metadata !1,         ;; Context
1546   metadata !"",        ;; Name
1547   metadata !1,         ;; File
1548   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 }
1555 ;;
1556 ;; Define the int type.
1557 ;;
1558 !6 = metadata !{
1559   i32 524324,          ;; Tag
1560   metadata !1,         ;; Context
1561   metadata !"int",     ;; Name
1562   metadata !1,         ;; File
1563   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 }
1570 </pre>
1571 </div>
1572
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
1582 <p>Given the following as an example of C/C++ struct type:</p>
1583
1584 <div class="doc_code">
1585 <pre>
1586 struct Color {
1587   unsigned Red;
1588   unsigned Green;
1589   unsigned Blue;
1590 };
1591 </pre>
1592 </div>
1593
1594 <p>a C/C++ front-end would generate the following descriptors:</p>
1595
1596 <div class="doc_code">
1597 <pre>
1598 ;;
1599 ;; Define basic type for unsigned int.
1600 ;;
1601 !5 = metadata !{
1602   i32 524324,        ;; Tag
1603   metadata !1,       ;; Context
1604   metadata !"unsigned int",
1605   metadata !1,       ;; File
1606   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 }
1613 ;;
1614 ;; Define composite type for struct Color.
1615 ;;
1616 !2 = metadata !{
1617   i32 524307,        ;; Tag
1618   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 }
1630
1631 ;;
1632 ;; Define the Red field.
1633 ;;
1634 !4 = metadata !{
1635   i32 524301,        ;; Tag
1636   metadata !1,       ;; Context
1637   metadata !"Red",   ;; Name
1638   metadata !1,       ;; File
1639   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 }
1646
1647 ;;
1648 ;; Define the Green field.
1649 ;;
1650 !6 = metadata !{
1651   i32 524301,        ;; Tag
1652   metadata !1,       ;; Context
1653   metadata !"Green", ;; Name
1654   metadata !1,       ;; File
1655   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 }
1662
1663 ;;
1664 ;; Define the Blue field.
1665 ;;
1666 !7 = metadata !{
1667   i32 524301,        ;; Tag
1668   metadata !1,       ;; Context
1669   metadata !"Blue",  ;; Name
1670   metadata !1,       ;; File
1671   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 }
1678
1679 ;;
1680 ;; Define the array of fields used by the composite type Color.
1681 ;;
1682 !3 = metadata !{metadata !4, metadata !6, metadata !7}
1683 </pre>
1684 </div>
1685
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
1695 <p>Given the following as an example of C/C++ enumeration type:</p>
1696
1697 <div class="doc_code">
1698 <pre>
1699 enum Trees {
1700   Spruce = 100,
1701   Oak = 200,
1702   Maple = 300
1703 };
1704 </pre>
1705 </div>
1706
1707 <p>a C/C++ front-end would generate the following descriptors:</p>
1708
1709 <div class="doc_code">
1710 <pre>
1711 ;;
1712 ;; Define composite type for enum Trees
1713 ;;
1714 !2 = metadata !{
1715   i32 524292,        ;; Tag
1716   metadata !1,       ;; Context
1717   metadata !"Trees", ;; Name
1718   metadata !1,       ;; File
1719   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 }
1728
1729 ;;
1730 ;; Define the array of enumerators used by composite type Trees.
1731 ;;
1732 !3 = metadata !{metadata !4, metadata !5, metadata !6}
1733
1734 ;;
1735 ;; Define Spruce enumerator.
1736 ;;
1737 !4 = metadata !{i32 524328, metadata !"Spruce", i64 100}
1738
1739 ;;
1740 ;; Define Oak enumerator.
1741 ;;
1742 !5 = metadata !{i32 524328, metadata !"Oak", i64 200}
1743
1744 ;;
1745 ;; Define Maple enumerator.
1746 ;;
1747 !6 = metadata !{i32 524328, metadata !"Maple", i64 300}
1748
1749 </pre>
1750 </div>
1751
1752 </div>
1753
1754 <!-- *********************************************************************** -->
1755
1756 <hr>
1757 <address>
1758   <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
1759   src="http://jigsaw.w3.org/css-validator/images/vcss-blue" alt="Valid CSS"></a>
1760   <a href="http://validator.w3.org/check/referer"><img
1761   src="http://www.w3.org/Icons/valid-html401-blue" alt="Valid HTML 4.01"></a>
1762
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>