Exemple #1
0
        public void RunClassLclFldScenario()
        {
            TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario));

            var test = new StoreBinaryOpTest__StorePair_Vector64_SByte();

            AdvSimd.Arm64.StorePair((SByte *)_dataTable.outArrayPtr, test._fld1, test._fld2);

            ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
        }
Exemple #2
0
            public void RunStructFldScenario_Load(StoreBinaryOpTest__StorePair_Vector64_SByte testClass)
            {
                fixed(Vector64 <SByte> *pFld1 = &_fld1)
                fixed(Vector64 <SByte> *pFld2 = &_fld2)
                {
                    AdvSimd.Arm64.StorePair(
                        (SByte *)testClass._dataTable.outArrayPtr,
                        AdvSimd.LoadVector64((SByte *)(pFld1)),
                        AdvSimd.LoadVector64((SByte *)(pFld2))
                        );

                    testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr);
                }
            }
Exemple #3
0
        public void RunClassLclFldScenario_Load()
        {
            TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario_Load));

            var test = new StoreBinaryOpTest__StorePair_Vector64_SByte();

            fixed(Vector64 <SByte> *pFld1 = &test._fld1)
            fixed(Vector64 <SByte> *pFld2 = &test._fld2)
            {
                AdvSimd.Arm64.StorePair(
                    (SByte *)_dataTable.outArrayPtr,
                    AdvSimd.LoadVector64((SByte *)(pFld1)),
                    AdvSimd.LoadVector64((SByte *)(pFld2))
                    );

                ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
            }
        }
Exemple #4
0
        private static void StorePair_Vector64_SByte()
        {
            var test = new StoreBinaryOpTest__StorePair_Vector64_SByte();

            if (test.IsSupported)
            {
                // Validates basic functionality works, using Unsafe.Read
                test.RunBasicScenario_UnsafeRead();

                if (AdvSimd.IsSupported)
                {
                    // Validates basic functionality works, using Load
                    test.RunBasicScenario_Load();
                }

                // Validates calling via reflection works, using Unsafe.Read
                test.RunReflectionScenario_UnsafeRead();

                if (AdvSimd.IsSupported)
                {
                    // Validates calling via reflection works, using Load
                    test.RunReflectionScenario_Load();
                }

                // Validates passing a static member works
                test.RunClsVarScenario();

                if (AdvSimd.IsSupported)
                {
                    // Validates passing a static member works, using pinning and Load
                    test.RunClsVarScenario_Load();
                }

                // Validates passing a local works, using Unsafe.Read
                test.RunLclVarScenario_UnsafeRead();

                if (AdvSimd.IsSupported)
                {
                    // Validates passing a local works, using Load
                    test.RunLclVarScenario_Load();
                }

                // Validates passing the field of a local class works
                test.RunClassLclFldScenario();

                if (AdvSimd.IsSupported)
                {
                    // Validates passing the field of a local class works, using pinning and Load
                    test.RunClassLclFldScenario_Load();
                }

                // Validates passing an instance member of a class works
                test.RunClassFldScenario();

                if (AdvSimd.IsSupported)
                {
                    // Validates passing an instance member of a class works, using pinning and Load
                    test.RunClassFldScenario_Load();
                }

                // Validates passing the field of a local struct works
                test.RunStructLclFldScenario();

                if (AdvSimd.IsSupported)
                {
                    // Validates passing the field of a local struct works, using pinning and Load
                    test.RunStructLclFldScenario_Load();
                }

                // Validates passing an instance member of a struct works
                test.RunStructFldScenario();

                if (AdvSimd.IsSupported)
                {
                    // Validates passing an instance member of a struct works, using pinning and Load
                    test.RunStructFldScenario_Load();
                }
            }
            else
            {
                // Validates we throw on unsupported hardware
                test.RunUnsupportedScenario();
            }

            if (!test.Succeeded)
            {
                throw new Exception("One or more scenarios did not complete as expected.");
            }
        }
Exemple #5
0
            public void RunStructFldScenario(StoreBinaryOpTest__StorePair_Vector64_SByte testClass)
            {
                AdvSimd.Arm64.StorePair((SByte *)testClass._dataTable.outArrayPtr, _fld1, _fld2);

                testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr);
            }