diff options
author | Victor Hernandez <vhernandez@apple.com> | 2010-01-11 22:53:48 +0000 |
---|---|---|
committer | Victor Hernandez <vhernandez@apple.com> | 2010-01-11 22:53:48 +0000 |
commit | 67a1a54195706f48170ddc42b1eaba799274718a (patch) | |
tree | d04286037198c11fbdd8aeabb708cf0e7aa30ba2 /docs/SourceLevelDebugging.html | |
parent | 53af2d13e763c2d6e8ea1baf29644d954edb999d (diff) | |
download | external_llvm-67a1a54195706f48170ddc42b1eaba799274718a.zip external_llvm-67a1a54195706f48170ddc42b1eaba799274718a.tar.gz external_llvm-67a1a54195706f48170ddc42b1eaba799274718a.tar.bz2 |
Add documentation for llvm.dbg.value intrinsic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93203 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/SourceLevelDebugging.html')
-rw-r--r-- | docs/SourceLevelDebugging.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/SourceLevelDebugging.html b/docs/SourceLevelDebugging.html index 05a99e3..b028ee6 100644 --- a/docs/SourceLevelDebugging.html +++ b/docs/SourceLevelDebugging.html @@ -38,6 +38,7 @@ <li><a href="#format_common_intrinsics">Debugger intrinsic functions</a> <ul> <li><a href="#format_common_declare">llvm.dbg.declare</a></li> + <li><a href="#format_common_value">llvm.dbg.value</a></li> </ul></li> </ol></li> <li><a href="#format_common_lifetime">Object lifetimes and scoping</a></li> @@ -775,6 +776,25 @@ DW_TAG_return_variable = 258 </div> <!-- ======================================================================= --> +<div class="doc_subsubsection"> + <a name="format_common_value">llvm.dbg.value</a> +</div> + +<div class="doc_text"> +<pre> + void %<a href="#format_common_value">llvm.dbg.value</a>( metadata, i64, metadata ) +</pre> + +<p>This intrinsic provides information when a user source variable is set to a + new value. The first argument is the new value (wrapped as metadata). The + second argument is the offset in the user source variable where the new value + is written. The third argument is + the <tt>%<a href="#format_variables">llvm.dbg.variable</a></tt> containing + the description of the user source variable. </p> + +</div> + +<!-- ======================================================================= --> <div class="doc_subsection"> <a name="format_common_lifetime">Object lifetimes and scoping</a> </div> |