summaryrefslogtreecommitdiff
path: root/tests/src/JIT/CodeGenBringUpTests/FPConvI2F.cs
blob: 76f4df3134a091a71d9fd58096d1719deadfe836 (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
// 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.CompilerServices;
public class BringUpTest
{
    const int Pass = 100;
    const int Fail = -1;

    [MethodImplAttribute(MethodImplOptions.NoInlining)]
    public static float FPConvI2F(int x) { return (float) x; }

    [MethodImplAttribute(MethodImplOptions.NoInlining)]
    public static double FPConvI2F(UInt32 x) { return (double) x; }

    [MethodImplAttribute(MethodImplOptions.NoInlining)]
    public static double FPConvI2F(long x) { return (double)x; }

    [MethodImplAttribute(MethodImplOptions.NoInlining)]
    public static double FPConvI2F(UInt64 x) { return (double)x; }

    [MethodImplAttribute(MethodImplOptions.NoInlining)]
    public static float FPConvI2F(byte x) { return (float)x; }

    [MethodImplAttribute(MethodImplOptions.NoInlining)]
    public static float FPConvI2F(Int16 x) { return (float)x; }

    public static int Main()
    {
        int result = Fail;
        float x = FPConvI2F((int)3);
        Console.WriteLine(x);
        if (Math.Abs(x-3f) <= Single.Epsilon) result = Pass;
        
        int result2 = Fail;
        double y = FPConvI2F((UInt32)5);
        Console.WriteLine(y);
        if (Math.Abs(y-5d) <= Double.Epsilon) result2 = Pass;

        int result3 = Fail;
        y = FPConvI2F(12345L);
        Console.WriteLine(y);
        if (Math.Abs(y - 12345d) <= Double.Epsilon) result3 = Pass;

        int result4 = Fail;
        x = FPConvI2F((byte)3);
        Console.WriteLine(x);
        if (Math.Abs(x - 3f) <= Single.Epsilon) result4 = Pass;

        int result5 = Fail;
        x = FPConvI2F((Int16)3);
        Console.WriteLine(x);
        if (Math.Abs(x - 3f) <= Single.Epsilon) result5 = Pass;

        int result6 = Fail;
        y = FPConvI2F(12345UL);
        Console.WriteLine(y);
        if (Math.Abs(y - 12345d) <= Double.Epsilon) result6 = Pass;

        if (result == Pass && result2 == Pass && result3 == Pass && result4 == Pass && result5 == Pass && result6 == Pass) return Pass;
        return Fail;

    }
}