summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/CLR-x86-JIT/V1.2-Beta1/b103058/b103058.cs
blob: c9639cc96e4eaa17625019fec23a42becb336b81 (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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using System;
using System.Runtime.InteropServices;

internal struct VT
{
    public float m1;
    public bool m2;
    public double m3;
    public double m3_1;
    public double m3_2;
    public double m3_3;
    public char m4;
}

internal unsafe class test
{
    private static unsafe bool CheckDoubleAlignment1(VT* p)
    {
        Console.WriteLine("Address {0}", (IntPtr)p);
        if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows) || (RuntimeInformation.ProcessArchitecture != Architecture.X86))
        {
            if ((int)(long)p % sizeof(double) != 0)
            {
                Console.WriteLine("not double aligned");
                return false;
            }
            else
            {
                return true;
            }
        }
        else
        {
            // Current JIT implementation doesn't use double alignment stack optimization for Linux/x86
            return true;
        }
    }

    public static int Main()
    {
        VT vt1 = new VT();
        VT vt2 = new VT();
        bool retVal;

        retVal = CheckDoubleAlignment1(&vt1);

        VT vt3 = new VT();
        retVal = CheckDoubleAlignment1(&vt2) && retVal;
        retVal = CheckDoubleAlignment1(&vt3) && retVal;

        if (retVal)
        {
            Console.WriteLine("PASS");
            return 100;
        }
        else
        {
            Console.WriteLine("FAIL");
            return 0;
        }
    }
}