mirror of
https://github.com/n64dev/cen64.git
synced 2025-04-02 10:31:54 -04:00
26 lines
607 B
C
26 lines
607 B
C
//
|
|
// arch/x86_64/fpu/neg_64.h
|
|
//
|
|
// This file is subject to the terms and conditions defined in
|
|
// 'LICENSE', which is part of this source code package.
|
|
//
|
|
|
|
#include "common.h"
|
|
#include <emmintrin.h>
|
|
#include <string.h>
|
|
|
|
static inline void fpu_neg_64(const uint64_t *fs, uint64_t *fd) {
|
|
double fs_double, fd_double;
|
|
__m128d fs_reg, fd_reg;
|
|
|
|
// Prevent aliasing.
|
|
memcpy(&fs_double, fs, sizeof(fs_double));
|
|
|
|
fs_reg = _mm_set_sd(fs_double);
|
|
fd_reg = _mm_xor_pd(_mm_set_sd(-0.0), fs_reg);
|
|
fd_double = _mm_cvtsd_f64(fd_reg);
|
|
|
|
// Prevent aliasing.
|
|
memcpy(fd, &fd_double, sizeof(fd_double));
|
|
}
|
|
|