nss: upgrade to release 3.73
[LibreOffice.git] / tools / qa / cppunit / test_cpu_runtime_detection_SSE2_check.cxx
blob14bcc78717d836ece34450f2fc8717206fefb780
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #include <sal/types.h>
11 #include <tools/simdsupport.hxx>
13 #include <cppunit/TestAssert.h>
14 #include <cppunit/TestFixture.h>
15 #include <cppunit/extensions/HelperMacros.h>
16 #include <cppunit/plugin/TestPlugIn.h>
18 #include <tools/cpuid.hxx>
20 #include "test_cpu_runtime_detection_x86_checks.hxx"
22 void CpuRuntimeDetectionX86Checks::checkSSE2()
24 #ifdef LO_SSE2_AVAILABLE
25 // Try some SSE2 intrinsics calculation
26 __m128i a = _mm_set1_epi32(15);
27 __m128i b = _mm_set1_epi32(15);
28 __m128i c = _mm_xor_si128(a, b);
30 // Check zero
31 CPPUNIT_ASSERT_EQUAL(0xFFFF, _mm_movemask_epi8(_mm_cmpeq_epi32(c, _mm_setzero_si128())));
32 #endif
35 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */