Welcome to mirror list, hosted at ThFree Co, Russian Federation.

generics-d.il « tests « ilasm « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4186938bd8eabb79033e88a9066a1a6bf3c5b337 (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
//
// Test a generic type type param field
//

.assembly extern mscorlib { }


.namespace Mono.ILASM.Tests {

           .class public Set<T> extends [mscorlib]System.Object {

                  .field public !0 val

		.method public instance void .ctor (!0 arg) {
			ldarg.0
			ldarg.1
			stfld !0 class Mono.ILASM.Tests.Set::val
			ret
		}

		.method public instance !0 access () {
                        .locals init (!0)
			ldarg.0
			ldfld !0 class Mono.ILASM.Tests.Set::val
			// just to make sure locals work, too
			stloc.0
			ldloc.0
			ret
		}
           }

           .class public Driver extends [mscorlib]System.Object {

                  .method public static void Main ()
                  {
                        .entrypoint
                        .locals init ( class Mono.ILASM.Tests.Set<int32>,
				class Mono.ILASM.Tests.Set<float64>)

			ldc.i4.4
                        newobj instance void class Mono.ILASM.Tests.Set<int32>::.ctor (int32)
                        stloc.0
                        
                        ldloc.0
                        call instance int32 class Mono.ILASM.Tests.Set<int32>::access ()
                        call void [mscorlib]System.Console::WriteLine (int32)

			ldc.r8 35.6
                        newobj instance void class Mono.ILASM.Tests.Set<float64>::.ctor (float64)
                        stloc.1
                        
                        ldloc.1
                        call instance float64 class Mono.ILASM.Tests.Set<float64>::access ()
                        call void [mscorlib]System.Console::WriteLine (float64)                        ret
                  }

           }
}