|
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <!-- Copyright (C) 1988-2020 Free Software Foundation, Inc.
-
- Permission is granted to copy, distribute and/or modify this document
- under the terms of the GNU Free Documentation License, Version 1.3 or
- any later version published by the Free Software Foundation; with the
- Invariant Sections being "Funding Free Software", the Front-Cover
- Texts being (a) (see below), and with the Back-Cover Texts being (b)
- (see below). A copy of the license is included in the section entitled
- "GNU Free Documentation License".
-
- (a) The FSF's Front-Cover Text is:
-
- A GNU Manual
-
- (b) The FSF's Back-Cover Text is:
-
- You have freedom to copy and modify this GNU Manual, like GNU
- software. Copies published by the Free Software Foundation raise
- funds for GNU development. -->
- <!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>PowerPC AltiVec/VSX Built-in Functions (Using the GNU Compiler Collection (GCC))</title>
-
- <meta name="description" content="PowerPC AltiVec/VSX Built-in Functions (Using the GNU Compiler Collection (GCC))">
- <meta name="keywords" content="PowerPC AltiVec/VSX Built-in Functions (Using the GNU Compiler Collection (GCC))">
- <meta name="resource-type" content="document">
- <meta name="distribution" content="global">
- <meta name="Generator" content="makeinfo">
- <link href="index.html#Top" rel="start" title="Top">
- <link href="Option-Index.html#Option-Index" rel="index" title="Option Index">
- <link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
- <link href="Target-Builtins.html#Target-Builtins" rel="up" title="Target Builtins">
- <link href="PowerPC-AltiVec-Built_002din-Functions-on-ISA-2_002e05.html#PowerPC-AltiVec-Built_002din-Functions-on-ISA-2_002e05" rel="next" title="PowerPC AltiVec Built-in Functions on ISA 2.05">
- <link href="Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0.html#Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0" rel="prev" title="Basic PowerPC Built-in Functions Available on ISA 3.0">
- <style type="text/css">
- <!--
- a.summary-letter {text-decoration: none}
- blockquote.indentedblock {margin-right: 0em}
- blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
- blockquote.smallquotation {font-size: smaller}
- div.display {margin-left: 3.2em}
- div.example {margin-left: 3.2em}
- div.lisp {margin-left: 3.2em}
- div.smalldisplay {margin-left: 3.2em}
- div.smallexample {margin-left: 3.2em}
- div.smalllisp {margin-left: 3.2em}
- kbd {font-style: oblique}
- pre.display {font-family: inherit}
- pre.format {font-family: inherit}
- pre.menu-comment {font-family: serif}
- pre.menu-preformatted {font-family: serif}
- pre.smalldisplay {font-family: inherit; font-size: smaller}
- pre.smallexample {font-size: smaller}
- pre.smallformat {font-family: inherit; font-size: smaller}
- pre.smalllisp {font-size: smaller}
- span.nolinebreak {white-space: nowrap}
- span.roman {font-family: initial; font-weight: normal}
- span.sansserif {font-family: sans-serif; font-weight: normal}
- ul.no-bullet {list-style: none}
- -->
- </style>
-
-
- </head>
-
- <body lang="en">
- <a name="PowerPC-AltiVec_002fVSX-Built_002din-Functions"></a>
- <div class="header">
- <p>
- Next: <a href="PowerPC-Hardware-Transactional-Memory-Built_002din-Functions.html#PowerPC-Hardware-Transactional-Memory-Built_002din-Functions" accesskey="n" rel="next">PowerPC Hardware Transactional Memory Built-in Functions</a>, Previous: <a href="Basic-PowerPC-Built_002din-Functions.html#Basic-PowerPC-Built_002din-Functions" accesskey="p" rel="prev">Basic PowerPC Built-in Functions</a>, Up: <a href="Target-Builtins.html#Target-Builtins" accesskey="u" rel="up">Target Builtins</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Option-Index.html#Option-Index" title="Index" rel="index">Index</a>]</p>
- </div>
- <hr>
- <a name="PowerPC-AltiVec_002fVSX-Built_002din-Functions-1"></a>
- <h4 class="subsection">6.60.23 PowerPC AltiVec/VSX Built-in Functions</h4>
-
- <p>GCC provides an interface for the PowerPC family of processors to access
- the AltiVec operations described in Motorola’s AltiVec Programming
- Interface Manual. The interface is made available by including
- <code><altivec.h></code> and using <samp>-maltivec</samp> and
- <samp>-mabi=altivec</samp>. The interface supports the following vector
- types.
- </p>
- <div class="smallexample">
- <pre class="smallexample">vector unsigned char
- vector signed char
- vector bool char
-
- vector unsigned short
- vector signed short
- vector bool short
- vector pixel
-
- vector unsigned int
- vector signed int
- vector bool int
- vector float
- </pre></div>
-
- <p>GCC’s implementation of the high-level language interface available from
- C and C++ code differs from Motorola’s documentation in several ways.
- </p>
- <ul>
- <li> A vector constant is a list of constant expressions within curly braces.
-
- </li><li> A vector initializer requires no cast if the vector constant is of the
- same type as the variable it is initializing.
-
- </li><li> If <code>signed</code> or <code>unsigned</code> is omitted, the signedness of the
- vector type is the default signedness of the base type. The default
- varies depending on the operating system, so a portable program should
- always specify the signedness.
-
- </li><li> Compiling with <samp>-maltivec</samp> adds keywords <code>__vector</code>,
- <code>vector</code>, <code>__pixel</code>, <code>pixel</code>, <code>__bool</code> and
- <code>bool</code>. When compiling ISO C, the context-sensitive substitution
- of the keywords <code>vector</code>, <code>pixel</code> and <code>bool</code> is
- disabled. To use them, you must include <code><altivec.h></code> instead.
-
- </li><li> GCC allows using a <code>typedef</code> name as the type specifier for a
- vector type, but only under the following circumstances:
-
- <ul>
- <li> When using <code>__vector</code> instead of <code>vector</code>; for example,
-
- <div class="smallexample">
- <pre class="smallexample">typedef signed short int16;
- __vector int16 data;
- </pre></div>
-
- </li><li> When using <code>vector</code> in keyword-and-predefine mode; for example,
-
- <div class="smallexample">
- <pre class="smallexample">typedef signed short int16;
- vector int16 data;
- </pre></div>
-
- <p>Note that keyword-and-predefine mode is enabled by disabling GNU
- extensions (e.g., by using <code>-std=c11</code>) and including
- <code><altivec.h></code>.
- </p></li></ul>
-
- </li><li> For C, overloaded functions are implemented with macros so the following
- does not work:
-
- <div class="smallexample">
- <pre class="smallexample"> vec_add ((vector signed int){1, 2, 3, 4}, foo);
- </pre></div>
-
- <p>Since <code>vec_add</code> is a macro, the vector constant in the example
- is treated as four separate arguments. Wrap the entire argument in
- parentheses for this to work.
- </p></li></ul>
-
- <p><em>Note:</em> Only the <code><altivec.h></code> interface is supported.
- Internally, GCC uses built-in functions to achieve the functionality in
- the aforementioned header file, but they are not supported and are
- subject to change without notice.
- </p>
- <p>GCC complies with the OpenPOWER 64-Bit ELF V2 ABI Specification,
- which may be found at
- <a href="https://openpowerfoundation.org/?resource_lib=64-bit-elf-v2-abi-specification-power-architecture">https://openpowerfoundation.org/?resource_lib=64-bit-elf-v2-abi-specification-power-architecture</a>.
- Appendix A of this document lists the vector API interfaces that must be
- provided by compliant compilers. Programmers should preferentially use
- the interfaces described therein. However, historically GCC has provided
- additional interfaces for access to vector instructions. These are
- briefly described below.
- </p>
- <table class="menu" border="0" cellspacing="0">
- <tr><td align="left" valign="top">• <a href="PowerPC-AltiVec-Built_002din-Functions-on-ISA-2_002e05.html#PowerPC-AltiVec-Built_002din-Functions-on-ISA-2_002e05" accesskey="1">PowerPC AltiVec Built-in Functions on ISA 2.05</a>:</td><td> </td><td align="left" valign="top">
- </td></tr>
- <tr><td align="left" valign="top">• <a href="PowerPC-AltiVec-Built_002din-Functions-Available-on-ISA-2_002e06.html#PowerPC-AltiVec-Built_002din-Functions-Available-on-ISA-2_002e06" accesskey="2">PowerPC AltiVec Built-in Functions Available on ISA 2.06</a>:</td><td> </td><td align="left" valign="top">
- </td></tr>
- <tr><td align="left" valign="top">• <a href="PowerPC-AltiVec-Built_002din-Functions-Available-on-ISA-2_002e07.html#PowerPC-AltiVec-Built_002din-Functions-Available-on-ISA-2_002e07" accesskey="3">PowerPC AltiVec Built-in Functions Available on ISA 2.07</a>:</td><td> </td><td align="left" valign="top">
- </td></tr>
- <tr><td align="left" valign="top">• <a href="PowerPC-AltiVec-Built_002din-Functions-Available-on-ISA-3_002e0.html#PowerPC-AltiVec-Built_002din-Functions-Available-on-ISA-3_002e0" accesskey="4">PowerPC AltiVec Built-in Functions Available on ISA 3.0</a>:</td><td> </td><td align="left" valign="top">
- </td></tr>
- </table>
-
- <hr>
- <div class="header">
- <p>
- Next: <a href="PowerPC-Hardware-Transactional-Memory-Built_002din-Functions.html#PowerPC-Hardware-Transactional-Memory-Built_002din-Functions" accesskey="n" rel="next">PowerPC Hardware Transactional Memory Built-in Functions</a>, Previous: <a href="Basic-PowerPC-Built_002din-Functions.html#Basic-PowerPC-Built_002din-Functions" accesskey="p" rel="prev">Basic PowerPC Built-in Functions</a>, Up: <a href="Target-Builtins.html#Target-Builtins" accesskey="u" rel="up">Target Builtins</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Option-Index.html#Option-Index" title="Index" rel="index">Index</a>]</p>
- </div>
-
-
-
- </body>
- </html>
|