summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Methodical/explicit/basic/refloc_o2.il
blob: e4c8a6d20f3577eefd1e574452359e8f9b7ee2ce (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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
// 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.



.assembly extern mscorlib { }
.assembly extern System.Console
{
  .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
  .ver 4:0:0:0
}
.assembly 'refloc_o'// as "refloc_o"
{

  //  .custom instance void ['mscorlib']System.Diagnostics.DebuggableAttribute::.ctor(bool,
  //                                                                                  bool) = ( 01 00 00 01 00 00 ) 
  
  
}
.module 'refloc_o.exe'
// MVID: {3CF0A869-1266-4091-97CF-DEFA0C36E038}
.namespace Test
{
  .class private auto ansi AA extends ['mscorlib']System.Object
  {
    .field public class Test.AA m_aa
    .field public int32 m_nn
    .field public static bool finalizerCalled
    .method public hidebysig specialname rtspecialname 
            instance void  .ctor(int32 nn) il managed
    {
      // Code size       21 (0x15)
      .maxstack  8
      IL_0000:  ldarg.0
      IL_0001:  call       instance void ['mscorlib']System.Object::.ctor()
      IL_0006:  ldarg.0
      IL_0007:  ldnull
      IL_0008:  stfld      class Test.AA Test.AA::m_aa
      IL_000d:  ldarg.0
      IL_000e:  ldarg.1
      IL_000f:  stfld      int32 Test.AA::m_nn
      IL_0014:  ret
    } // end of method 'AA::.ctor'

    .method public hidebysig specialname rtspecialname 
            instance void  .ctor(class Test.AA aa) il managed
    {
      // Code size       21 (0x15)
      .maxstack  8
      IL_0000:  ldarg.0
      IL_0001:  call       instance void ['mscorlib']System.Object::.ctor()
      IL_0006:  ldarg.0
      IL_0007:  ldarg.1
      IL_0008:  stfld      class Test.AA Test.AA::m_aa
      IL_000d:  ldarg.0
      IL_000e:  ldc.i4.0
      IL_000f:  stfld      int32 Test.AA::m_nn
      IL_0014:  ret
    } // end of method 'AA::.ctor'

    .method family hidebysig virtual instance void
            Finalize() il managed
    {
      // Code size       60 (0x3c)
      .maxstack  3
      .locals (class Test.AA V_0)
      IL_0000:  ldstr      "finalizer called."
      IL_0005:  call       void [System.Console]System.Console::WriteLine(class System.String)
      
      all_done: ldc.i4.1
      
      IL_0036:  stsfld     bool Test.AA::finalizerCalled
      IL_003b:  ret
    } // end of method 'AA::Finalize'

    .method public hidebysig specialname rtspecialname static 
            void .cctor() il managed
    {
      // Code size       7 (0x7)
      .maxstack  8
      IL_0000:  ldc.i4.0
      IL_0001:  stsfld     bool Test.AA::finalizerCalled
      IL_0006:  ret
    } // end of method 'AA::.cctor'

  } // end of class 'AA'

  .class private auto ansi App extends ['mscorlib']System.Object
  {
    .field private static class Test.AA s_aa
    .method private hidebysig static void
            Litter() il managed
    {
      // Code size       43 (0x2b)
      .maxstack  2
      .locals (int32 V_0,
               int32[] V_1)
      IL_0000:  call       void ['mscorlib']System.GC::Collect()
      IL_0005:  ldc.i4.0
      IL_0006:  stloc.0
      IL_0007:  br.s       IL_0018

      IL_0009:  ldc.i4     0x3e8
      IL_000e:  newarr     ['mscorlib']System.Int32
      IL_0013:  stloc.1
      IL_0014:  ldloc.0
      IL_0015:  ldc.i4.1
      IL_0016:  add
      IL_0017:  stloc.0
      IL_0018:  ldloc.0
      IL_0019:  ldc.i4     0x3e8
      IL_001e:  blt.s      IL_0009

      IL_0020:  call       void ['mscorlib']System.GC::Collect()
      IL_0025:  call       void ['mscorlib']System.GC::WaitForPendingFinalizers()
      IL_002a:  ret
    } // end of method 'App::Litter'

    .method private hidebysig static int32
            Main() il managed
    {
      .entrypoint
      // Code size       72 (0x48)
      .maxstack  2
      .locals (class Test.AA & V_0,
               int32 V_1)
      IL_0000:  ldsfld     class Test.AA Test.App::s_aa
      IL_0005:  ldflda      class Test.AA Test.AA::m_aa
      IL_000a:  stloc.0
      IL_000b:  ldnull
      IL_000c:  stsfld     class Test.AA Test.App::s_aa
      IL_0011:  call       void Test.App::Litter()
      IL_0016:  ldsfld     bool Test.AA::finalizerCalled
      IL_001b:  brtrue.s   IL_002a

      IL_001d:  ldloc.0
      			ldind.ref
      IL_001e:  ldfld      int32 Test.AA::m_nn
      IL_0023:  ldc.i4     0x6819
      IL_0028:  beq.s      IL_0038

      			ldloc.0
      			ldc.i4		0x9186
      			newobj     instance void Test.AA::.ctor(int32)
      			stind.ref
      			
      			call       void Test.App::Litter()
      			
      IL_002a:  ldstr      "*** failed ***"
      IL_002f:  call       void [System.Console]System.Console::WriteLine(class System.String)
      IL_0034:  ldc.i4.1
      IL_0035:  stloc.1
      IL_0036:  br.s       IL_0046

      IL_0038:  ldstr      "*** passed ***"
      IL_003d:  call       void [System.Console]System.Console::WriteLine(class System.String)
      IL_0042:  ldc.i4    0x64
      IL_0043:  stloc.1
      IL_0044:  br.s       IL_0046

      IL_0046:  ldloc.1
      IL_0047:  ret
    } // end of method 'App::Main'

    .method public hidebysig specialname rtspecialname static 
            void .cctor() il managed
    {
      // Code size       21 (0x15)
      .maxstack  8
      IL_0000:  ldc.i4     0x6819
      IL_0005:  newobj     instance void Test.AA::.ctor(int32)
      IL_000a:  newobj     instance void Test.AA::.ctor(class Test.AA)
      IL_000f:  stsfld     class Test.AA Test.App::s_aa
      IL_0014:  ret
    } // end of method 'App::.cctor'

    .method public hidebysig specialname rtspecialname 
            instance void .ctor() il managed
    {
      // Code size       7 (0x7)
      .maxstack  8
      IL_0000:  ldarg.0
      IL_0001:  call       instance void ['mscorlib']System.Object::.ctor()
      IL_0006:  ret
    } // end of method 'App::.ctor'

  } // end of class 'App'

} // end of namespace 'Test'

//*********** DISASSEMBLY COMPLETE ***********************