public void RunClassLclFldScenario()
        {
            var test   = new ScalarUnaryOpTest__TrailingZeroCountUInt64();
            var result = Bmi1.TrailingZeroCount(test._fld);

            ValidateResult(test._fld, result);
        }
Exemplo n.º 2
0
        private static void TrailingZeroCountUInt64()
        {
            var test = new ScalarUnaryOpTest__TrailingZeroCountUInt64();

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

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

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

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

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

                // Validates passing an instance member works
                test.RunFldScenario();
            }
            else
            {
                // Validates we throw on unsupported hardware
                test.RunUnsupportedScenario();
            }

            if (!test.Succeeded)
            {
                throw new Exception("One or more scenarios did not complete as expected.");
            }
        }
        public void RunClassLclFldScenario()
        {
            TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario));

            var test   = new ScalarUnaryOpTest__TrailingZeroCountUInt64();
            var result = Bmi1.TrailingZeroCount(test._fld);

            ValidateResult(test._fld, result);
        }
            public void RunStructFldScenario(ScalarUnaryOpTest__TrailingZeroCountUInt64 testClass)
            {
                var result = Bmi1.TrailingZeroCount(_fld);

                testClass.ValidateResult(_fld, result);
            }