summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Directed/coverage/importer/calli2.il
blob: ed0d61980e185745e73e211722401da59e8fd441 (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
// 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 legacy library mscorlib {}
.assembly extern System.Console
{
  .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )
  .ver 4:0:0:0
}
.assembly legacy library calli2 {}
.class private auto ansi beforefieldinit calli2
       extends [mscorlib]System.Object
{
  .field private static int32 a
  .field private static int32 b
  .method public static int32 f1()
  {
    ldsfld     int32 calli2::a
    ret
  }
  .method public static int32 f2()
  {
    ldsfld     int32 calli2::b
    ret
  }
  .method public hidebysig static int32  Main() cil managed
  {
    .entrypoint
    // Code size       31 (0x1f)
    .maxstack  2
    .locals init (int32 V_0,
             int32 V_1)
    IL_0000:  ldftn int32 calli2::f1()
	      calli int32 ()
    IL_0005:  ldftn int32 calli2::f2()
	      calli int32 ()	
    IL_000a:  beq.s      IL_0013

    IL_000c:  ldftn int32 calli2::f1()
	      calli int32 ()
    IL_0011:  br.s       IL_0018

    IL_0013:  ldftn int32 calli2::f2()
	      calli int32 ()
    IL_0018:  stloc.0
    IL_0019:  ldloc.0
    IL_001a:  stloc.1
    IL_001b:  br.s       IL_001d

    IL_001d:  ldloc.1
		ldc.i4 100
		add
    IL_001e:  ret
  }
}