Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Perf.IntPtr.cs « Performance « tests « System.Runtime « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 256d5753bad16bd45bde9633f2f5b6be35315a50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using Microsoft.Xunit.Performance;

namespace System.Runtime.Tests
{
    public class Perf_IntPtr
    {
        [Benchmark]
        public void ctor_int32()
        {
            foreach (var iteration in Benchmark.Iterations)
                using (iteration.StartMeasurement())
                {
                    new IntPtr(0); new IntPtr(0); new IntPtr(0);
                    new IntPtr(0); new IntPtr(0); new IntPtr(0);
                    new IntPtr(0); new IntPtr(0); new IntPtr(0);
                }
        }

        [Benchmark]
        public void op_Equality_IntPtr_IntPtr()
        {
            bool res;
            IntPtr ptr1 = new IntPtr(0);
            IntPtr ptr2 = new IntPtr(0);
            foreach (var iteration in Benchmark.Iterations)
                using (iteration.StartMeasurement())
                {
                    res = ptr1 == ptr2; res = ptr1 == ptr2; res = ptr1 == ptr2;
                    res = ptr1 == ptr2; res = ptr1 == ptr2; res = ptr1 == ptr2;
                    res = ptr1 == ptr2; res = ptr1 == ptr2; res = ptr1 == ptr2;
                }
        }
    }
}