Skip to main content

SseRcppsEmitter

Trait SseRcppsEmitter 

Source
pub trait SseRcppsEmitter<A, B> {
    // Required method
    fn sse_rcpps(&mut self, op0: A, op1: B);
}
Expand description

SSE_RCPPS (RCPPS). Performs a SIMD computation of the approximate reciprocals of the four packed single precision floating-point values in the source operand (second operand) stores the packed single precision floating-point results in the destination operand. The source operand can be an XMM register or a 128-bit memory location. The destination operand is an XMM register. See Figure 10-5 in the Intel® 64 and IA-32 Architectures Software Developer’s Manual, Volume 1, for an illustration of a SIMD single precision floating-point operation.

For more details, see the Intel manual.

Supported operand variants:

+---+----------+
| # | Operands |
+---+----------+
| 1 | Xmm, Mem |
| 2 | Xmm, Xmm |
+---+----------+

Required Methods§

Source

fn sse_rcpps(&mut self, op0: A, op1: B)

Implementors§