| 123456789101112131415161718192021222324252627 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- #include "RuntimeLanguagePch.h"
- #if _M_IX86 || _M_AMD64
- namespace Js
- {
- SIMDValue SIMDBool8x16Operation::OpBool8x16(bool b[])
- {
- X86SIMDValue x86Result;
- x86Result.m128i_value = _mm_set_epi8(b[15] * -1, b[14] * -1, b[13] * -1, b[12] * -1, b[11] * -1, b[10] * -1, b[9] * -1, b[8] * -1, \
- b[7] * -1, b[6] * -1, b[5] * -1, b[4] * -1, b[3] * -1, b[2] * -1, b[1] * -1, b[0] * -1);
- return X86SIMDValue::ToSIMDValue(x86Result);
- }
- SIMDValue SIMDBool8x16Operation::OpBool8x16(const SIMDValue& v)
- {
- // overload function with input parameter as SIMDValue for completeness
- SIMDValue result;
- result = v;
- return result;
- }
- }
- #endif
|