SIMD tests
authorSergey Andreenko <AC-93@MAIL.RU>
Tue, 18 Aug 2015 00:48:22 +0000 (17:48 -0700)
committerSergey Andreenko <AC-93@MAIL.RU>
Thu, 27 Aug 2015 16:19:34 +0000 (09:19 -0700)
commitaa359e6de83f20fb065a59aa4842069f573d7c0e
tree262c5354b30f5347e61ce01329c25bb6df0bd194
parent0c071823c3887eb51d6fa956813145eeb56f5e1c
SIMD tests

Commit includes SIMD tests of two types:
1) Intrinsic tests, that call functions from RyuJIT SIMD intrinsic list.
2) Bytecode tests, which generate different bytecodes in IL with SIMD
struct.

Commit migrated from https://github.com/dotnet/coreclr/commit/5621bf61bc3012c45845f9dd081500da0f07c4d8
33 files changed:
src/coreclr/tests/src/JIT/SIMD/AbsGeneric.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/AbsGeneric2.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/AbsSqrt.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/Add.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/BitwiseOperations.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/BoxUnbox.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/CircleInConvex.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/Constr1.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/CreateGeneric.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/CreateGeneric2.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/Ctors.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/CurrTest.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/DivSignedUnsignedTest.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/Dup.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/GenerCtrFromArray.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/Haar-likeFfeaturesGeneric.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/InitFromArray.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/Ldfld.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/Ldind.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/MinMax.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/Mul.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/Ret100.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/SIMD.csproj [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/Simple.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/SqrtGeneric.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/Sums.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/Vector3.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/Vector4.cs [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/app.config [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/cs_template.csproj [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/project.json [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/project.lock.json [new file with mode: 0644]
src/coreclr/tests/src/JIT/SIMD/stelem.cs [new file with mode: 0644]