summaryrefslogtreecommitdiff
path: root/devdocs/gcc~13/paired-single-arithmetic.html
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-08-14 22:58:58 -0500
committerCraig Jennings <c@cjennings.net>2025-08-14 22:58:58 -0500
commit82ba818ff456bcd6d56a06226e3f27e98fbb55c3 (patch)
tree158cfc17b2f644a10f063cb546752cfaae12c97f /devdocs/gcc~13/paired-single-arithmetic.html
parent9278ddd4ea1a8b1a4c1edaa8894516e3f48d245b (diff)
downloaddotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.tar.gz
dotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.zip
removing all downloaded devdocs files
Diffstat (limited to 'devdocs/gcc~13/paired-single-arithmetic.html')
-rw-r--r--devdocs/gcc~13/paired-single-arithmetic.html39
1 files changed, 0 insertions, 39 deletions
diff --git a/devdocs/gcc~13/paired-single-arithmetic.html b/devdocs/gcc~13/paired-single-arithmetic.html
deleted file mode 100644
index 2d4ca99c..00000000
--- a/devdocs/gcc~13/paired-single-arithmetic.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<div class="subsubsection-level-extent" id="Paired-Single-Arithmetic"> <div class="nav-panel"> <p> Next: <a href="paired-single-built-in-functions" accesskey="n" rel="next">Paired-Single Built-in Functions</a>, Up: <a href="mips-loongson-built-in-functions" accesskey="u" rel="up">MIPS Loongson Built-in Functions</a> [<a href="index#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="indices" title="Index" rel="index">Index</a>]</p> </div> <h1 class="subsubsection" id="Paired-Single-Arithmetic-1"><span>6.60.17.1 Paired-Single Arithmetic<a class="copiable-link" href="#Paired-Single-Arithmetic-1"> ΒΆ</a></span></h1> <p>The table below lists the <code class="code">v2sf</code> operations for which hardware support exists. <code class="code">a</code>, <code class="code">b</code> and <code class="code">c</code> are <code class="code">v2sf</code> values and <code class="code">x</code> is an integral value. </p> <table class="multitable"> <thead><tr>
-<th width="50%">C code</th>
-<th width="50%">MIPS instruction</th>
-</tr></thead> <tbody>
-<tr>
-<td width="50%"><code class="code">a + b</code></td>
-<td width="50%"><code class="code">add.ps</code></td>
-</tr> <tr>
-<td width="50%"><code class="code">a - b</code></td>
-<td width="50%"><code class="code">sub.ps</code></td>
-</tr> <tr>
-<td width="50%"><code class="code">-a</code></td>
-<td width="50%"><code class="code">neg.ps</code></td>
-</tr> <tr>
-<td width="50%"><code class="code">a * b</code></td>
-<td width="50%"><code class="code">mul.ps</code></td>
-</tr> <tr>
-<td width="50%"><code class="code">a * b + c</code></td>
-<td width="50%"><code class="code">madd.ps</code></td>
-</tr> <tr>
-<td width="50%"><code class="code">a * b - c</code></td>
-<td width="50%"><code class="code">msub.ps</code></td>
-</tr> <tr>
-<td width="50%"><code class="code">-(a * b + c)</code></td>
-<td width="50%"><code class="code">nmadd.ps</code></td>
-</tr> <tr>
-<td width="50%"><code class="code">-(a * b - c)</code></td>
-<td width="50%"><code class="code">nmsub.ps</code></td>
-</tr> <tr>
-<td width="50%"><code class="code">x ? a : b</code></td>
-<td width="50%">
-<code class="code">movn.ps</code>/<code class="code">movz.ps</code>
-</td>
-</tr> </tbody> </table> <p>Note that the multiply-accumulate instructions can be disabled using the command-line option <code class="code">-mno-fused-madd</code>. </p> </div><div class="_attribution">
- <p class="_attribution-p">
- &copy; Free Software Foundation<br>Licensed under the GNU Free Documentation License, Version 1.3.<br>
- <a href="https://gcc.gnu.org/onlinedocs/gcc-13.1.0/gcc/Paired-Single-Arithmetic.html" class="_attribution-link">https://gcc.gnu.org/onlinedocs/gcc-13.1.0/gcc/Paired-Single-Arithmetic.html</a>
- </p>
-</div>