summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Methodical/explicit/rotate/rotarg_double.il
blob: 98f87b1eec832a3c82ec2220318d12e9ed7afa13 (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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.



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

  //  .custom instance void ['mscorlib']System.Diagnostics.DebuggableAttribute::.ctor(bool,
  //                                                                                  bool) = ( 01 00 00 01 00 00 ) 
  
  
}
.module 'rotarg_double.exe'
// MVID: {645882BF-F31B-417A-A923-D4914C5C82B7}
.namespace Rotate
{
  .class private auto ansi App extends ['mscorlib']System.Object
  {
    .class auto ansi nested private App$Node extends ['mscorlib']System.Object
    {
      .field public float64 m_weight
      .field public class Rotate.App/App$Node m_leftChild
      .field public class Rotate.App/App$Node m_rightChild
      .method public hidebysig specialname rtspecialname 
              instance void .ctor() il managed
      {
        // Code size       39 (0x27)
        .maxstack  8
        IL_0000:  ldarg.0
        IL_0001:  call       instance void ['mscorlib']System.Object::.ctor()
        IL_0006:  ldsfld     int32 Rotate.App::s_objCount
        IL_000b:  ldc.i4.1
        IL_000c:  add
        IL_000d:  stsfld     int32 Rotate.App::s_objCount
        IL_0012:  ldarg.0
        IL_0013:  ldsfld     int32 Rotate.App::s_weightCount
        IL_0018:  dup
        IL_0019:  ldc.i4.1
        IL_001a:  add
        IL_001b:  stsfld     int32 Rotate.App::s_weightCount
        IL_0020:  conv.r8
        IL_0021:  stfld      float64 Rotate.App/App$Node::m_weight
        IL_0026:  ret
      } // end of method 'App$Node::.ctor'

      .method family hidebysig virtual instance void
              Finalize() il managed
      {
        // Code size       13 (0xd)
        .maxstack  8
        IL_0000:  ldsfld     int32 Rotate.App::s_objCount
        IL_0005:  ldc.i4.1
        IL_0006:  sub
        IL_0007:  stsfld     int32 Rotate.App::s_objCount
        IL_000c:  ret
      } // end of method 'App$Node::Finalize'

      .method public hidebysig instance void 
              growTree(int32 maxHeight,
                       class System.String indent) il managed
      {
        // Code size       95 (0x5f)
        .maxstack  4
        .locals (class Rotate.App/App$Node V_0)
        IL_0000:  ldarg.1
        IL_0001:  ldc.i4.0
        IL_0002:  ble.s      IL_004e

        IL_0004:  ldarg.0
        IL_0005:  newobj     instance void Rotate.App/App$Node::.ctor()
        IL_000a:  stfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_000f:  ldarg.0
        IL_0010:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_0015:  ldarg.1
        IL_0016:  ldc.i4.1
        IL_0017:  sub
        IL_0018:  ldarg.2
        IL_0019:  ldstr      " "
        IL_001e:  call       class System.String ['mscorlib']System.String::Concat(class System.String,
                                                                                   class System.String)
        IL_0023:  call       instance void Rotate.App/App$Node::growTree(int32,
                                                                         class System.String)
        IL_0028:  ldarg.0
        IL_0029:  newobj     instance void Rotate.App/App$Node::.ctor()
        IL_002e:  stfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_0033:  ldarg.0
        IL_0034:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_0039:  ldarg.1
        IL_003a:  ldc.i4.1
        IL_003b:  sub
        IL_003c:  ldarg.2
        IL_003d:  ldstr      " "
        IL_0042:  call       class System.String ['mscorlib']System.String::Concat(class System.String,
                                                                                   class System.String)
        IL_0047:  call       instance void Rotate.App/App$Node::growTree(int32,
                                                                         class System.String)
        IL_004c:  br.s       IL_005e

        IL_004e:  ldarg.0
        IL_004f:  ldarg.0
        IL_0050:  ldnull
        IL_0051:  dup
        IL_0052:  stloc.0
        IL_0053:  stfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_0058:  ldloc.0
        IL_0059:  stfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_005e:  ret
      } // end of method 'App$Node::growTree'

      .method public hidebysig instance void 
              rotateTree(float64& leftWeight,
                         float64& rightWeight) il managed
      {
        // Code size       474 (0x1da)
        .maxstack  3
        .locals (class Rotate.App/App$Node V_0,
                 class Rotate.App/App$Node V_1,
                 int32 V_2,
                 int32 V_3,
                 int32[] V_4,
                 float64 V_5,
                 float64 V_6)
        IL_0000:  ldnull
        IL_0001:  stloc.0
        IL_0002:  ldnull
        IL_0003:  stloc.1
        IL_0004:  ldsfld     int32 Rotate.App::s_objCount
        IL_0009:  stloc.2
        IL_000a:  ldarg.0
        IL_000b:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_0010:  brfalse.s  IL_004f

        IL_0012:  newobj     instance void Rotate.App/App$Node::.ctor()
        IL_0017:  stloc.1
        IL_0018:  ldloc.2
        IL_0019:  ldc.i4.1
        IL_001a:  add
        IL_001b:  stloc.2
        IL_001c:  ldloc.1
        IL_001d:  ldarg.0
        IL_001e:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_0023:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_0028:  stfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_002d:  ldloc.1
        IL_002e:  ldarg.0
        IL_002f:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_0034:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_0039:  stfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_003e:  ldloc.1
        IL_003f:  ldarg.0
        IL_0040:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_0045:  ldfld      float64 Rotate.App/App$Node::m_weight
        IL_004a:  stfld      float64 Rotate.App/App$Node::m_weight
        IL_004f:  ldarg.0
        IL_0050:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_0055:  brfalse.s  IL_0094

        IL_0057:  newobj     instance void Rotate.App/App$Node::.ctor()
        IL_005c:  stloc.0
        IL_005d:  ldloc.2
        IL_005e:  ldc.i4.1
        IL_005f:  add
        IL_0060:  stloc.2
        IL_0061:  ldloc.0
        IL_0062:  ldarg.0
        IL_0063:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_0068:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_006d:  stfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_0072:  ldloc.0
        IL_0073:  ldarg.0
        IL_0074:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_0079:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_007e:  stfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_0083:  ldloc.0
        IL_0084:  ldarg.0
        IL_0085:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_008a:  ldfld      float64 Rotate.App/App$Node::m_weight
        IL_008f:  stfld      float64 Rotate.App/App$Node::m_weight
        IL_0094:  ldarg.0
        IL_0095:  ldloc.0
        IL_0096:  stfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_009b:  ldarg.0
        IL_009c:  ldloc.1
        IL_009d:  stfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_00a2:  ldc.i4.0
        IL_00a3:  stloc.3
        IL_00a4:  br.s       IL_00b6

        IL_00a6:  ldc.i4     0x400
        IL_00ab:  newarr     ['mscorlib']System.Int32
        IL_00b0:  stloc.s    V_4
        IL_00b2:  ldloc.3
        IL_00b3:  ldc.i4.1
        IL_00b4:  add
        IL_00b5:  stloc.3
        IL_00b6:  ldloc.3
        IL_00b7:  ldc.i4     0x400
        IL_00bc:  blt.s      IL_00a6

        IL_00be:  call       void ['mscorlib']System.GC::Collect()
        IL_00c3:  ldarg.0
        IL_00c4:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_00c9:  brfalse    IL_014e

        IL_00ce:  ldarg.0
        IL_00cf:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_00d4:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_00d9:  brfalse.s  IL_0115

        IL_00db:  ldarg.0
        IL_00dc:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_00e1:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_00e6:  brfalse.s  IL_0115

        IL_00e8:  ldarg.0
        IL_00e9:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_00ee:  ldarg.0
        IL_00ef:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_00f4:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_00f9:  ldflda     float64 Rotate.App/App$Node::m_weight
        IL_00fe:  ldarg.0
        IL_00ff:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_0104:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_0109:  ldflda     float64 Rotate.App/App$Node::m_weight
        IL_010e:  call       instance void Rotate.App/App$Node::rotateTree(float64&,
                                                                           float64&)
        IL_0113:  br.s       IL_012f

        IL_0115:  ldc.r8     -1.
        IL_011e:  stloc.s    V_5
        IL_0120:  ldarg.0
        IL_0121:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_0126:  ldloca.s   V_5
        IL_0128:  ldloca.s   V_5
        IL_012a:  call       instance void Rotate.App/App$Node::rotateTree(float64&,
                                                                           float64&)
        IL_012f:  ldarg.1
        IL_0130:  ldind.r8
        IL_0131:  ldarg.0
        IL_0132:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_0137:  ldfld      float64 Rotate.App/App$Node::m_weight
        IL_013c:  beq.s      IL_014e

        IL_013e:  ldstr      "left weight do not match."
        IL_0143:  call       void [System.Console]System.Console::WriteLine(class System.String)
        IL_0148:  newobj     instance void ['mscorlib']System.Exception::.ctor()
        IL_014d:  throw

        IL_014e:  ldarg.0
        IL_014f:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_0154:  brfalse    IL_01d9

        IL_0159:  ldarg.0
        IL_015a:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_015f:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_0164:  brfalse.s  IL_01a0

        IL_0166:  ldarg.0
        IL_0167:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_016c:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_0171:  brfalse.s  IL_01a0

        IL_0173:  ldarg.0
        IL_0174:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_0179:  ldarg.0
        IL_017a:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_017f:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_0184:  ldflda     float64 Rotate.App/App$Node::m_weight
        IL_0189:  ldarg.0
        IL_018a:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_018f:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
        IL_0194:  ldflda     float64 Rotate.App/App$Node::m_weight
        IL_0199:  call       instance void Rotate.App/App$Node::rotateTree(float64&,
                                                                           float64&)
        IL_019e:  br.s       IL_01ba

        IL_01a0:  ldc.r8     -1.
        IL_01a9:  stloc.s    V_6
        IL_01ab:  ldarg.0
        IL_01ac:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_01b1:  ldloca.s   V_6
        IL_01b3:  ldloca.s   V_6
        IL_01b5:  call       instance void Rotate.App/App$Node::rotateTree(float64&,
                                                                           float64&)
        IL_01ba:  ldarg.2
        IL_01bb:  ldind.r8
        IL_01bc:  ldarg.0
        IL_01bd:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
        IL_01c2:  ldfld      float64 Rotate.App/App$Node::m_weight
        IL_01c7:  beq.s      IL_01d9

        IL_01c9:  ldstr      "right weight do not match."
        IL_01ce:  call       void [System.Console]System.Console::WriteLine(class System.String)
        IL_01d3:  newobj     instance void ['mscorlib']System.Exception::.ctor()
        IL_01d8:  throw

        IL_01d9:  ret
      } // end of method 'App$Node::rotateTree'

    } // end of class 'App$Node'

    .field public static int32 s_weightCount
    .field public static int32 s_objCount
    .method private hidebysig static int32
            Main() il managed
    {
      .entrypoint
      // Code size       47 (0x2f)
      .maxstack  3
      .locals (class Rotate.App/App$Node V_0)
      IL_0000:  newobj     instance void Rotate.App/App$Node::.ctor()
      IL_0005:  stloc.0
      IL_0006:  ldloc.0
      IL_0007:  ldc.i4.4
      IL_0008:  ldnull
      IL_000d:  call       instance void Rotate.App/App$Node::growTree(int32,
                                                                       class System.String)
      IL_0012:  ldloc.0
      IL_0013:  ldloc.0
      IL_0014:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_leftChild
      IL_0019:  ldflda     float64 Rotate.App/App$Node::m_weight
      IL_001e:  ldloc.0
      IL_001f:  ldfld      class Rotate.App/App$Node Rotate.App/App$Node::m_rightChild
      IL_0024:  ldflda     float64 Rotate.App/App$Node::m_weight
      IL_0029:  call       instance void Rotate.App/App$Node::rotateTree(float64&,
                                                                         float64&)
      IL_002e:  ldc.i4    0x64
      IL_0033:  ret
    } // end of method 'App::Main'

    .method public hidebysig specialname rtspecialname static 
            void .cctor() il managed
    {
      // Code size       13 (0xd)
      .maxstack  8
      IL_0000:  ldc.i4.1
      IL_0001:  stsfld     int32 Rotate.App::s_weightCount
      IL_0006:  ldc.i4.0
      IL_0007:  stsfld     int32 Rotate.App::s_objCount
      IL_000c:  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 'Rotate'

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