diff options
author | Devang Patel <dpatel@apple.com> | 2011-03-29 17:27:08 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-03-29 17:27:08 +0000 |
commit | 1c6b6814139807755f0613959823c9f51a2d367c (patch) | |
tree | c0a02aeab47d5d75f07a2ed8ba67a87cf9108313 /llvm/docs/SourceLevelDebugging.html | |
parent | dd1cf3279efd26ce5906f314dacf978e82d441b8 (diff) | |
download | bcm5719-llvm-1c6b6814139807755f0613959823c9f51a2d367c.tar.gz bcm5719-llvm-1c6b6814139807755f0613959823c9f51a2d367c.zip |
Document llvm.dbg.sp, llvm.dbg.gv and llvm.dbg.enum
llvm-svn: 128466
Diffstat (limited to 'llvm/docs/SourceLevelDebugging.html')
-rw-r--r-- | llvm/docs/SourceLevelDebugging.html | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/llvm/docs/SourceLevelDebugging.html b/llvm/docs/SourceLevelDebugging.html index f1e1cd0285d..c786a7d0a81 100644 --- a/llvm/docs/SourceLevelDebugging.html +++ b/llvm/docs/SourceLevelDebugging.html @@ -407,7 +407,8 @@ height="369"> </div> <p>These descriptors provide debug information about globals variables. The -provide details such as name, type and where the variable is defined.</p> +provide details such as name, type and where the variable is defined. All +global variables are collected by named metadata <tt>!llvm.dbg.gv</tt>.</p> </div> @@ -446,7 +447,10 @@ provide details such as name, type and where the variable is defined.</p> <p>These descriptors provide debug information about functions, methods and subprograms. They provide details such as name, return types and the source - location where the subprogram is defined.</p> + location where the subprogram is defined. + All subprogram descriptors are collected by a named metadata + <tt>!llvm.dbg.sp</tt>. +</p> </div> @@ -646,7 +650,8 @@ DW_TAG_inheritance = 28 <p>The members of enumeration types (tag = <tt>DW_TAG_enumeration_type</tt>) are <a href="#format_enumeration">enumerator descriptors</a>, each representing - the definition of enumeration value for the set.</p> + the definition of enumeration value for the set. All enumeration type + descriptors are collected by named metadata <tt>!llvm.dbg.enum</tt>.</p> <p>The members of structure (tag = <tt>DW_TAG_structure_type</tt>) or union (tag = <tt>DW_TAG_union_type</tt>) types are any one of |