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 | da6eed3cfea3a6468f3dc9076611438bf981256f (patch) | |
tree | b1528d763b8ed52b39aaf78ca326ab9b9fe9fc4b | |
parent | 3f782f4d7586a4e644850ad4d05ef6a027aabc04 (diff) | |
download | external_llvm-da6eed3cfea3a6468f3dc9076611438bf981256f.zip external_llvm-da6eed3cfea3a6468f3dc9076611438bf981256f.tar.gz external_llvm-da6eed3cfea3a6468f3dc9076611438bf981256f.tar.bz2 |
Document llvm.dbg.sp, llvm.dbg.gv and llvm.dbg.enum
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128466 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/SourceLevelDebugging.html | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/docs/SourceLevelDebugging.html b/docs/SourceLevelDebugging.html index f1e1cd0..c786a7d 100644 --- a/docs/SourceLevelDebugging.html +++ b/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 |