summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/JitBlue/DevDiv_359734/DevDiv_359734.il
blob: 43f55b6e81ec8a7baaddfc1126e9ebdb9d816af3 (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
// 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.

// The original bug for this test was an assertion after the following sequence of events:
// - Assertion propagation constant propagated away the ldlocs, or, and shl in the IL at label "expr"
// - After constant propagation, the resulting expression--`(mod tmp0 cns)`--was remorphed, which
//   replaced the modulus with `(sub tmp0 (mul (div tmp0 cns) cns))` and unset the "exception" flag.
//   Critically, this transformation added a new use of `tmp0` without updating the ref count for `tmp0`.
// - After morphing, the resulting expression was both unsused and side-effect-free, and was removed
// - While removing the lclVar ref count for `tmp0` fell to `0`
// - Later, liveness found a reference to `tmp0` despite the `0` lclVar count and asserted.
//
// The fix was to bump lclVar ref counts after remorphing but before attempting to remove the expression.

.assembly extern mscorlib{}
.assembly ILGEN_MODULE{}
.class ILGEN_CLASS
{
    .method static char ILGEN_METHOD(bool, char, int16, int32)
    {
        .maxstack  65535
        .locals init (int32, int16, int64, int16, unsigned int8, float32, unsigned int8)

        ldc.i8 0x80BBE1AB
        ldc.i8 0x866D9EF3
        or
        ldarg 0x1
        shl
        ldc.i8 0xC09C2177
        sub.ovf.un
        conv.ovf.u8.un
        ldc.i8 0x82B1C678
        or
        ldc.r8 -0.000000
        ldloc 0x5
        ckfinite
        ldloc 0x5
        neg
        neg
        add
        add
        ldc.r8 0.000000
        clt
        stloc.s 0x4
        ldc.i8 0xACB4FC40

    expr:
        ldloc.s 0x3
        ldloc.s 0x0
        or
        shl
        rem

        conv.ovf.i8
        ldloc.s 0x4
        conv.ovf.u
        neg
        brtrue IL_0089
        ldarg 0x0
        conv.ovf.i8
        conv.i8
        ldc.i8 0x2ECADED8
        ldloc 0x2
        shr
        clt
        pop
        ldloc.s 0x1
        conv.ovf.u1.un
        conv.ovf.u.un
        starg 0x0

    IL_0089:
        ldarg.s 0x3
        conv.u8
        bgt IL_0094
        ldloc.s 0x5
        pop

    IL_0094:
        ldc.r8 0.000000
        neg
        conv.i
        ldloc 0x5
        ckfinite
        ldc.i8 0x8BD98F2C
        conv.r4
        ckfinite
        clt
        pop
        neg
        ret
    }

    .method static int32 Main()
    {
        .entrypoint

        .try
        {
            ldc.i4 0
            dup
            dup
            dup
            call char ILGEN_CLASS::ILGEN_METHOD(bool, char, int16, int32)
            pop
            leave.s done
        }
        catch [mscorlib]System.Exception
        {
            leave.s done
        }

    done:
        ldc.i4 100
        ret
    }
}