[llvm-commits] CVS: llvm/docs/LangRef.html
Reid Spencer
reid at x10sys.com
Mon Apr 9 19:51:48 PDT 2007
Changes in directory llvm/docs:
LangRef.html updated: 1.227 -> 1.228
---
Log message:
Fix name of an intrinsic: bit.part_select -> part.select
---
Diffs of the changes: (+11 -11)
LangRef.html | 22 +++++++++++-----------
1 files changed, 11 insertions(+), 11 deletions(-)
Index: llvm/docs/LangRef.html
diff -u llvm/docs/LangRef.html:1.227 llvm/docs/LangRef.html:1.228
--- llvm/docs/LangRef.html:1.227 Wed Apr 4 14:15:59 2007
+++ llvm/docs/LangRef.html Mon Apr 9 21:51:31 2007
@@ -184,7 +184,7 @@
<li><a href="#int_ctpop">'<tt>llvm.ctpop.*</tt>' Intrinsic </a></li>
<li><a href="#int_ctlz">'<tt>llvm.ctlz.*</tt>' Intrinsic </a></li>
<li><a href="#int_cttz">'<tt>llvm.cttz.*</tt>' Intrinsic </a></li>
- <li><a href="#int_bit_part_select">'<tt>llvm.bit.part_select.*</tt>' Intrinsic </a></li>
+ <li><a href="#int_part_select">'<tt>llvm.part_select.*</tt>' Intrinsic </a></li>
</ol>
</li>
<li><a href="#int_debugger">Debugger intrinsics</a></li>
@@ -4590,21 +4590,21 @@
<!-- _______________________________________________________________________ -->
<div class="doc_subsubsection">
- <a name="int_bit_part_select">'<tt>llvm.bit.part_select.*</tt>' Intrinsic</a>
+ <a name="int_part_select">'<tt>llvm.part.select.*</tt>' Intrinsic</a>
</div>
<div class="doc_text">
<h5>Syntax:</h5>
-<p>This is an overloaded intrinsic. You can use <tt>llvm.bit.part_select</tt>
+<p>This is an overloaded intrinsic. You can use <tt>llvm.part.select</tt>
on any integer bit width.
<pre>
- declare i17 @llvm.bit.part_select.i17.i17 (i17 %val, i32 %loBit, i32 %hiBit)
- declare i29 @llvm.bit.part_select.i29.i29 (i29 %val, i32 %loBit, i32 %hiBit)
+ declare i17 @llvm.part.select.i17.i17 (i17 %val, i32 %loBit, i32 %hiBit)
+ declare i29 @llvm.part.select.i29.i29 (i29 %val, i32 %loBit, i32 %hiBit)
</pre>
<h5>Overview:</h5>
-<p>The '<tt>llvm.bit.part_select</tt>' family of intrinsic functions selects a
+<p>The '<tt>llvm.part.select</tt>' family of intrinsic functions selects a
range of bits from an integer value and returns them in the same bit width as
the original value.</p>
@@ -4614,7 +4614,7 @@
arguments must be <tt>i32</tt> type since they specify only a bit index.</p>
<h5>Semantics:</h5>
-<p>The operation of the '<tt>llvm.bit.part_select</tt>' intrinsic has two modes
+<p>The operation of the '<tt>llvm.part.select</tt>' intrinsic has two modes
of operation: forwards and reverse. If <tt>%loBit</tt> is greater than
<tt>%hiBits</tt> then the intrinsic operates in reverse mode. Otherwise it
operates in forward mode.</p>
@@ -4632,11 +4632,11 @@
<p>In reverse mode, a similar computation is made except that:</p>
<ol>
<li>The bits selected wrap around to include both the highest and lowest bits.
- For example, part_select(i16 X, 4, 7) selects bits from X with a mask of
- 0x00F0 (forwards case) while part_select(i16 X, 8, 3) selects bits from X
+ For example, part.select(i16 X, 4, 7) selects bits from X with a mask of
+ 0x00F0 (forwards case) while part.select(i16 X, 8, 3) selects bits from X
with a mask of 0xFF0F.</li>
<li>The bits returned in the reverse case are reversed. So, if X has the value
- 0x6ACF and we apply part_select(i16 X, 8, 3) to it, we get back the value
+ 0x6ACF and we apply part.select(i16 X, 8, 3) to it, we get back the value
0x0A6F.</li>
</ol>
</div>
@@ -4679,7 +4679,7 @@
<a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
<a href="http://llvm.org">The LLVM Compiler Infrastructure</a><br>
- Last modified: $Date: 2007/04/04 19:15:59 $
+ Last modified: $Date: 2007/04/10 02:51:31 $
</address>
</body>
</html>
More information about the llvm-commits
mailing list