summaryrefslogtreecommitdiff
path: root/tests/src/performance/perflab/ThreadingPerf.cs
blob: 13d6ba071fb21eb63b7bc74deb0406fca3eef525 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// 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;
using System;
using System.Threading;

namespace PerfLabTests
{
    public class JITIntrinsics
    {
        private static int s_i;
        private static string s_s;

        [Benchmark(InnerIterationCount = 100000)]
        public static void CompareExchangeIntNoMatch()
        {
            s_i = 0;
            foreach (var iteration in Benchmark.Iterations)
                using (iteration.StartMeasurement())
                    for (int i = 0; i < Benchmark.InnerIterationCount; i++)
                        Interlocked.CompareExchange(ref s_i, 5, -1);
        }

        [Benchmark(InnerIterationCount = 100000)]
        public static void CompareExchangeIntMatch()
        {
            foreach (var iteration in Benchmark.Iterations)
            {
                s_i = 1;
                using (iteration.StartMeasurement())
                    for (int i = 0; i < Benchmark.InnerIterationCount; i++)
                        Interlocked.CompareExchange(ref s_i, 5, 1);
            }
        }

        [Benchmark(InnerIterationCount = 100000)]
        public static void CompareExchangeObjNoMatch()
        {
            s_s = "Hello";
            foreach (var iteration in Benchmark.Iterations)
                using (iteration.StartMeasurement())
                    for (int i = 0; i < Benchmark.InnerIterationCount; i++)
                        Interlocked.CompareExchange(ref s_s, "World", "What?");
        }

        [Benchmark(InnerIterationCount = 100000)]
        public static void CompareExchangeObjMatch()
        {
            foreach (var iteration in Benchmark.Iterations)
            {
                s_s = "What?";
                using (iteration.StartMeasurement())
                    for (int i = 0; i < Benchmark.InnerIterationCount; i++)
                        Interlocked.CompareExchange(ref s_s, "World", "What?");
            }
        }

        [Benchmark(InnerIterationCount = 100000)]
        public static void InterlockedIncrement()
        {
            foreach (var iteration in Benchmark.Iterations)
                using (iteration.StartMeasurement())
                    for (int i = 0; i < Benchmark.InnerIterationCount; i++)
                        Interlocked.Increment(ref s_i);
        }

        [Benchmark(InnerIterationCount = 100000)]
        public static void InterlockedDecrement()
        {
            foreach (var iteration in Benchmark.Iterations)
                using (iteration.StartMeasurement())
                    for (int i = 0; i < Benchmark.InnerIterationCount; i++)
                        Interlocked.Decrement(ref s_i);
        }
    }
}