From 82ba818ff456bcd6d56a06226e3f27e98fbb55c3 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 14 Aug 2025 22:58:58 -0500 Subject: removing all downloaded devdocs files --- devdocs/gcc~13/mips-paired-single-support.html | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 devdocs/gcc~13/mips-paired-single-support.html (limited to 'devdocs/gcc~13/mips-paired-single-support.html') diff --git a/devdocs/gcc~13/mips-paired-single-support.html b/devdocs/gcc~13/mips-paired-single-support.html deleted file mode 100644 index cba9dda2..00000000 --- a/devdocs/gcc~13/mips-paired-single-support.html +++ /dev/null @@ -1,11 +0,0 @@ -

6.60.16 MIPS Paired-Single Support

The MIPS64 architecture includes a number of instructions that operate on pairs of single-precision floating-point values. Each pair is packed into a 64-bit floating-point register, with one element being designated the “upper half” and the other being designated the “lower half”.

GCC supports paired-single operations using both the generic vector extensions (see Using Vector Instructions through Built-in Functions) and a collection of MIPS-specific built-in functions. Both kinds of support are enabled by the -mpaired-single command-line option.

The vector type associated with paired-single values is usually called v2sf. It can be defined in C as follows:

typedef float v2sf __attribute__ ((vector_size (8)));
-

v2sf values are initialized in the same way as aggregates. For example:

v2sf a = {1.5, 9.1};
-v2sf b;
-float e, f;
-b = (v2sf) {e, f};
-

Note: The CPU’s endianness determines which value is stored in the upper half of a register and which value is stored in the lower half. On little-endian targets, the first value is the lower one and the second value is the upper one. The opposite order applies to big-endian targets. For example, the code above sets the lower half of a to 1.5 on little-endian targets and 9.1 on big-endian targets.

-

- © Free Software Foundation
Licensed under the GNU Free Documentation License, Version 1.3.
- https://gcc.gnu.org/onlinedocs/gcc-13.1.0/gcc/MIPS-Paired-Single-Support.html -

-
-- cgit v1.2.3