repo_name
stringclasses
6 values
pr_number
int64
512
78.9k
pr_title
stringlengths
3
144
pr_description
stringlengths
0
30.3k
author
stringlengths
2
21
date_created
timestamp[ns, tz=UTC]
date_merged
timestamp[ns, tz=UTC]
previous_commit
stringlengths
40
40
pr_commit
stringlengths
40
40
query
stringlengths
17
30.4k
filepath
stringlengths
9
210
before_content
stringlengths
0
112M
after_content
stringlengths
0
112M
label
int64
-1
1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/jit64/regress/vsw/373472/test.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly extern xunit.core {} // Metadata version: v4.0.amd64ret .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) // .z\V.4.. .ver 4:0:0:0 } .assembly test { .custom instance void [mscorlib]System.Runtime.CompilerServices.CompilationRelaxationsAttribute::.ctor(int32) = ( 01 00 08 00 00 00 00 00 ) .custom instance void [mscorlib]System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::.ctor() = ( 01 00 01 00 54 02 16 57 72 61 70 4E 6F 6E 45 78 // ....T..WrapNonEx 63 65 70 74 69 6F 6E 54 68 72 6F 77 73 01 ) // ceptionThrows. .hash algorithm 0x00008004 .ver 0:0:0:0 } // MVID: {D7D039EB-2FFD-4888-8BC9-782CC0C93C1E} .imagebase 0x10000000 .file alignment 0x00000200 .stackreserve 0x00100000 .subsystem 0x0003 // WINDOWS_CUI .corflags 0x00000001 // ILONLY // Image base: 0x0000000000310000 // =============== CLASS MEMBERS DECLARATION =================== .class public auto ansi beforefieldinit StrideTest extends [mscorlib]System.Object { .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint // Code size 40 (0x28) .maxstack 2 .locals init (bool V_0, int32 V_1) IL_0000: nop IL_0001: ldc.i4.1 IL_0002: stloc.0 IL_0003: ldloc.0 IL_0004: call bool StrideTest::Test1() IL_0009: and IL_000a: stloc.0 IL_000b: ldloc.0 IL_000c: call bool StrideTest::Test2() IL_0011: and IL_0012: stloc.0 IL_0013: ldloc.0 IL_0014: call bool StrideTest::Test3() IL_0019: and IL_001a: stloc.0 IL_001b: ldloc.0 IL_001c: brtrue.s IL_0021 IL_001e: ldc.i4.1 IL_001f: br.s IL_0023 IL_0021: ldc.i4.s 100 IL_0023: stloc.1 IL_0024: br.s IL_0026 IL_0026: ldloc.1 IL_0027: ret } // end of method StrideTest::Main .method public hidebysig static bool Test1() cil managed { // Code size 89 (0x59) .maxstack 3 .locals init (uint32[] V_0, uint32 V_1, class [mscorlib]System.Exception V_2, bool V_3, bool V_4) IL_0000: nop .try { IL_0001: nop IL_0002: ldc.i4 0x8ffffff IL_0007: newarr [mscorlib]System.UInt32 IL_000c: stloc.0 IL_000d: ldc.i4 0x8fffffe IL_0012: stloc.1 IL_0013: br.s IL_0025 IL_0015: nop IL_0016: ldloc.0 IL_0017: ldloc.1 IL_0018: conv.u IL_0019: ldc.i4.s 40 IL_001b: stelem.i4 IL_001c: nop IL_001d: ldloc.1 IL_001e: ldc.i4 0xa0000001 IL_0023: sub IL_0024: stloc.1 IL_0025: ldc.i4.1 IL_0026: stloc.s V_4 IL_0028: br.s IL_0015 } // end .try catch [mscorlib]System.IndexOutOfRangeException { IL_002a: pop IL_002b: nop IL_002c: ldc.i4.1 IL_002d: stloc.3 IL_002e: leave.s IL_0056 } // end handler catch [mscorlib]System.Exception { IL_0030: stloc.2 IL_0031: nop IL_0032: ldstr "test1 exception: {0}" IL_0037: ldloc.2 IL_0038: callvirt instance string [mscorlib]System.Object::ToString() IL_003d: call void [System.Console]System.Console::WriteLine(string, object) IL_0042: nop IL_0043: nop IL_0044: leave.s IL_0046 } // end handler IL_0046: nop IL_0047: ldstr "Test1 failed" IL_004c: call void [System.Console]System.Console::WriteLine(string) IL_0051: nop IL_0052: ldc.i4.0 IL_0053: stloc.3 IL_0054: br.s IL_0056 IL_0056: nop IL_0057: ldloc.3 IL_0058: ret } // end of method StrideTest::Test1 .method public hidebysig static bool Test2() cil managed { // Code size 84 (0x54) .maxstack 3 .locals init (uint32[] V_0, uint32 V_1, class [mscorlib]System.Exception V_2, bool V_3, bool V_4) IL_0000: nop .try { IL_0001: nop IL_0002: ldc.i4 0x8ffffff IL_0007: newarr [mscorlib]System.UInt32 IL_000c: stloc.0 IL_000d: ldc.i4.0 IL_000e: stloc.1 IL_000f: br.s IL_0020 IL_0011: nop IL_0012: ldloc.0 IL_0013: ldloc.1 IL_0014: conv.u IL_0015: ldloc.1 IL_0016: stelem.i4 IL_0017: nop IL_0018: ldloc.1 IL_0019: ldc.i4 0xa0a0a0a0 IL_001e: sub IL_001f: stloc.1 IL_0020: ldc.i4.1 IL_0021: stloc.s V_4 IL_0023: br.s IL_0011 } // end .try catch [mscorlib]System.IndexOutOfRangeException { IL_0025: pop IL_0026: nop IL_0027: ldc.i4.1 IL_0028: stloc.3 IL_0029: leave.s IL_0051 } // end handler catch [mscorlib]System.Exception { IL_002b: stloc.2 IL_002c: nop IL_002d: ldstr "test2 exception: {0}" IL_0032: ldloc.2 IL_0033: callvirt instance string [mscorlib]System.Object::ToString() IL_0038: call void [System.Console]System.Console::WriteLine(string, object) IL_003d: nop IL_003e: nop IL_003f: leave.s IL_0041 } // end handler IL_0041: nop IL_0042: ldstr "Test2 failed" IL_0047: call void [System.Console]System.Console::WriteLine(string) IL_004c: nop IL_004d: ldc.i4.0 IL_004e: stloc.3 IL_004f: br.s IL_0051 IL_0051: nop IL_0052: ldloc.3 IL_0053: ret } // end of method StrideTest::Test2 .method public hidebysig static bool Test3() cil managed { // Code size 113 (0x71) .maxstack 3 .locals init (int32[] V_0, int64 V_1, class [mscorlib]System.Exception V_2, bool V_3, bool V_4) IL_0000: nop .try { IL_0001: nop IL_0002: ldc.i4 0x8ffffff IL_0007: newarr [mscorlib]System.Int32 IL_000c: stloc.0 IL_000d: ldc.i4 0x8fffffe IL_0012: conv.i8 IL_0013: stloc.1 IL_0014: br.s IL_0027 IL_0016: nop IL_0017: ldloc.0 IL_0018: ldloc.1 IL_0019: conv.ovf.i IL_001a: ldloc.1 IL_001b: conv.i4 IL_001c: stelem.i4 IL_001d: nop IL_001e: ldloc.1 IL_001f: ldc.i4 0xa0a0a0a0 IL_0024: conv.u8 IL_0025: sub IL_0026: stloc.1 IL_0027: ldloc.1 IL_0028: ldc.i8 0xffffffff685f5b77 IL_0031: cgt IL_0033: stloc.s V_4 IL_0035: ldloc.s V_4 IL_0037: brtrue.s IL_0016 IL_0039: nop IL_003a: leave.s IL_005e } // end .try catch [mscorlib]System.IndexOutOfRangeException { IL_003c: pop IL_003d: nop IL_003e: ldc.i4.1 IL_003f: stloc.3 IL_0040: leave.s IL_006e } // end handler catch [mscorlib]System.OverflowException { IL_0042: pop IL_0043: nop IL_0044: ldc.i4.1 IL_0045: stloc.3 IL_0046: leave.s IL_006e } // end handler catch [mscorlib]System.Exception { IL_0048: stloc.2 IL_0049: nop IL_004a: ldstr "test3 exception: {0}" IL_004f: ldloc.2 IL_0050: callvirt instance string [mscorlib]System.Object::ToString() IL_0055: call void [System.Console]System.Console::WriteLine(string, object) IL_005a: nop IL_005b: nop IL_005c: leave.s IL_005e } // end handler IL_005e: nop IL_005f: ldstr "Test3 failed" IL_0064: call void [System.Console]System.Console::WriteLine(string) IL_0069: nop IL_006a: ldc.i4.0 IL_006b: stloc.3 IL_006c: br.s IL_006e IL_006e: nop IL_006f: ldloc.3 IL_0070: ret } // end of method StrideTest::Test3 .method public hidebysig static bool Test4() cil managed { // Code size 78 (0x4e) .maxstack 3 .locals init (uint64[] V_0, uint64 V_1, bool V_2, bool V_3) IL_0000: nop .try { IL_0001: nop IL_0002: ldc.i4 0xfffffff IL_0007: newarr [mscorlib]System.UInt64 IL_000c: stloc.0 IL_000d: ldc.i8 0xa000000000000002 IL_0016: stloc.1 IL_0017: br.s IL_002c IL_0019: nop IL_001a: ldloc.1 IL_001b: ldc.i8 0xa000000000000001 IL_0024: sub IL_0025: stloc.1 IL_0026: ldloc.0 IL_0027: ldloc.1 IL_0028: conv.ovf.i.un IL_0029: ldloc.1 IL_002a: stelem.i8 IL_002b: nop IL_002c: ldc.i4.1 IL_002d: stloc.3 IL_002e: br.s IL_0019 } // end .try catch [mscorlib]System.IndexOutOfRangeException { IL_0030: pop IL_0031: nop IL_0032: ldc.i4.1 IL_0033: stloc.2 IL_0034: leave.s IL_004b } // end handler catch [mscorlib]System.Exception { IL_0036: pop IL_0037: nop IL_0038: nop IL_0039: leave.s IL_003b } // end handler IL_003b: nop IL_003c: ldstr "Test4 failed" IL_0041: call void [System.Console]System.Console::WriteLine(string) IL_0046: nop IL_0047: ldc.i4.0 IL_0048: stloc.2 IL_0049: br.s IL_004b IL_004b: nop IL_004c: ldloc.2 IL_004d: ret } // end of method StrideTest::Test4 .method public hidebysig static bool Test5() cil managed { // Code size 104 (0x68) .maxstack 3 .locals init (uint64[] V_0, uint64 V_1, bool V_2, bool V_3) IL_0000: nop .try { IL_0001: nop IL_0002: ldc.i4 0xfffffff IL_0007: newarr [mscorlib]System.UInt64 IL_000c: stloc.0 IL_000d: ldc.i8 0xa000000000000010 IL_0016: stloc.1 IL_0017: br.s IL_0046 IL_0019: nop IL_001a: ldloc.1 IL_001b: ldc.i8 0xa000000000000001 IL_0024: sub IL_0025: stloc.1 IL_0026: br.s IL_0034 IL_0028: nop IL_0029: ldloc.0 IL_002a: ldloc.1 IL_002b: conv.ovf.i.un IL_002c: ldloc.1 IL_002d: stelem.i8 IL_002e: ldloc.1 IL_002f: ldc.i4.1 IL_0030: conv.i8 IL_0031: sub IL_0032: stloc.1 IL_0033: nop IL_0034: ldloc.1 IL_0035: ldc.i4.0 IL_0036: conv.i8 IL_0037: clt.un IL_0039: ldc.i4.0 IL_003a: ceq IL_003c: stloc.3 IL_003d: ldloc.3 IL_003e: brtrue.s IL_0028 IL_0040: ldloc.0 IL_0041: ldloc.1 IL_0042: conv.ovf.i.un IL_0043: ldloc.1 IL_0044: stelem.i8 IL_0045: nop IL_0046: ldc.i4.1 IL_0047: stloc.3 IL_0048: br.s IL_0019 } // end .try catch [mscorlib]System.IndexOutOfRangeException { IL_004a: pop IL_004b: nop IL_004c: ldc.i4.1 IL_004d: stloc.2 IL_004e: leave.s IL_0065 } // end handler catch [mscorlib]System.Exception { IL_0050: pop IL_0051: nop IL_0052: nop IL_0053: leave.s IL_0055 } // end handler IL_0055: nop IL_0056: ldstr "Test5 failed" IL_005b: call void [System.Console]System.Console::WriteLine(string) IL_0060: nop IL_0061: ldc.i4.0 IL_0062: stloc.2 IL_0063: br.s IL_0065 IL_0065: nop IL_0066: ldloc.2 IL_0067: ret } // end of method StrideTest::Test5 .method public hidebysig specialname rtspecialname instance void .ctor() cil 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 StrideTest::.ctor } // end of class StrideTest // ============================================================= // *********** DISASSEMBLY COMPLETE *********************** // WARNING: Created Win32 resource file t.res
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly extern xunit.core {} // Metadata version: v4.0.amd64ret .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) // .z\V.4.. .ver 4:0:0:0 } .assembly test { .custom instance void [mscorlib]System.Runtime.CompilerServices.CompilationRelaxationsAttribute::.ctor(int32) = ( 01 00 08 00 00 00 00 00 ) .custom instance void [mscorlib]System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::.ctor() = ( 01 00 01 00 54 02 16 57 72 61 70 4E 6F 6E 45 78 // ....T..WrapNonEx 63 65 70 74 69 6F 6E 54 68 72 6F 77 73 01 ) // ceptionThrows. .hash algorithm 0x00008004 .ver 0:0:0:0 } // MVID: {D7D039EB-2FFD-4888-8BC9-782CC0C93C1E} .imagebase 0x10000000 .file alignment 0x00000200 .stackreserve 0x00100000 .subsystem 0x0003 // WINDOWS_CUI .corflags 0x00000001 // ILONLY // Image base: 0x0000000000310000 // =============== CLASS MEMBERS DECLARATION =================== .class public auto ansi beforefieldinit StrideTest extends [mscorlib]System.Object { .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint // Code size 40 (0x28) .maxstack 2 .locals init (bool V_0, int32 V_1) IL_0000: nop IL_0001: ldc.i4.1 IL_0002: stloc.0 IL_0003: ldloc.0 IL_0004: call bool StrideTest::Test1() IL_0009: and IL_000a: stloc.0 IL_000b: ldloc.0 IL_000c: call bool StrideTest::Test2() IL_0011: and IL_0012: stloc.0 IL_0013: ldloc.0 IL_0014: call bool StrideTest::Test3() IL_0019: and IL_001a: stloc.0 IL_001b: ldloc.0 IL_001c: brtrue.s IL_0021 IL_001e: ldc.i4.1 IL_001f: br.s IL_0023 IL_0021: ldc.i4.s 100 IL_0023: stloc.1 IL_0024: br.s IL_0026 IL_0026: ldloc.1 IL_0027: ret } // end of method StrideTest::Main .method public hidebysig static bool Test1() cil managed { // Code size 89 (0x59) .maxstack 3 .locals init (uint32[] V_0, uint32 V_1, class [mscorlib]System.Exception V_2, bool V_3, bool V_4) IL_0000: nop .try { IL_0001: nop IL_0002: ldc.i4 0x8ffffff IL_0007: newarr [mscorlib]System.UInt32 IL_000c: stloc.0 IL_000d: ldc.i4 0x8fffffe IL_0012: stloc.1 IL_0013: br.s IL_0025 IL_0015: nop IL_0016: ldloc.0 IL_0017: ldloc.1 IL_0018: conv.u IL_0019: ldc.i4.s 40 IL_001b: stelem.i4 IL_001c: nop IL_001d: ldloc.1 IL_001e: ldc.i4 0xa0000001 IL_0023: sub IL_0024: stloc.1 IL_0025: ldc.i4.1 IL_0026: stloc.s V_4 IL_0028: br.s IL_0015 } // end .try catch [mscorlib]System.IndexOutOfRangeException { IL_002a: pop IL_002b: nop IL_002c: ldc.i4.1 IL_002d: stloc.3 IL_002e: leave.s IL_0056 } // end handler catch [mscorlib]System.Exception { IL_0030: stloc.2 IL_0031: nop IL_0032: ldstr "test1 exception: {0}" IL_0037: ldloc.2 IL_0038: callvirt instance string [mscorlib]System.Object::ToString() IL_003d: call void [System.Console]System.Console::WriteLine(string, object) IL_0042: nop IL_0043: nop IL_0044: leave.s IL_0046 } // end handler IL_0046: nop IL_0047: ldstr "Test1 failed" IL_004c: call void [System.Console]System.Console::WriteLine(string) IL_0051: nop IL_0052: ldc.i4.0 IL_0053: stloc.3 IL_0054: br.s IL_0056 IL_0056: nop IL_0057: ldloc.3 IL_0058: ret } // end of method StrideTest::Test1 .method public hidebysig static bool Test2() cil managed { // Code size 84 (0x54) .maxstack 3 .locals init (uint32[] V_0, uint32 V_1, class [mscorlib]System.Exception V_2, bool V_3, bool V_4) IL_0000: nop .try { IL_0001: nop IL_0002: ldc.i4 0x8ffffff IL_0007: newarr [mscorlib]System.UInt32 IL_000c: stloc.0 IL_000d: ldc.i4.0 IL_000e: stloc.1 IL_000f: br.s IL_0020 IL_0011: nop IL_0012: ldloc.0 IL_0013: ldloc.1 IL_0014: conv.u IL_0015: ldloc.1 IL_0016: stelem.i4 IL_0017: nop IL_0018: ldloc.1 IL_0019: ldc.i4 0xa0a0a0a0 IL_001e: sub IL_001f: stloc.1 IL_0020: ldc.i4.1 IL_0021: stloc.s V_4 IL_0023: br.s IL_0011 } // end .try catch [mscorlib]System.IndexOutOfRangeException { IL_0025: pop IL_0026: nop IL_0027: ldc.i4.1 IL_0028: stloc.3 IL_0029: leave.s IL_0051 } // end handler catch [mscorlib]System.Exception { IL_002b: stloc.2 IL_002c: nop IL_002d: ldstr "test2 exception: {0}" IL_0032: ldloc.2 IL_0033: callvirt instance string [mscorlib]System.Object::ToString() IL_0038: call void [System.Console]System.Console::WriteLine(string, object) IL_003d: nop IL_003e: nop IL_003f: leave.s IL_0041 } // end handler IL_0041: nop IL_0042: ldstr "Test2 failed" IL_0047: call void [System.Console]System.Console::WriteLine(string) IL_004c: nop IL_004d: ldc.i4.0 IL_004e: stloc.3 IL_004f: br.s IL_0051 IL_0051: nop IL_0052: ldloc.3 IL_0053: ret } // end of method StrideTest::Test2 .method public hidebysig static bool Test3() cil managed { // Code size 113 (0x71) .maxstack 3 .locals init (int32[] V_0, int64 V_1, class [mscorlib]System.Exception V_2, bool V_3, bool V_4) IL_0000: nop .try { IL_0001: nop IL_0002: ldc.i4 0x8ffffff IL_0007: newarr [mscorlib]System.Int32 IL_000c: stloc.0 IL_000d: ldc.i4 0x8fffffe IL_0012: conv.i8 IL_0013: stloc.1 IL_0014: br.s IL_0027 IL_0016: nop IL_0017: ldloc.0 IL_0018: ldloc.1 IL_0019: conv.ovf.i IL_001a: ldloc.1 IL_001b: conv.i4 IL_001c: stelem.i4 IL_001d: nop IL_001e: ldloc.1 IL_001f: ldc.i4 0xa0a0a0a0 IL_0024: conv.u8 IL_0025: sub IL_0026: stloc.1 IL_0027: ldloc.1 IL_0028: ldc.i8 0xffffffff685f5b77 IL_0031: cgt IL_0033: stloc.s V_4 IL_0035: ldloc.s V_4 IL_0037: brtrue.s IL_0016 IL_0039: nop IL_003a: leave.s IL_005e } // end .try catch [mscorlib]System.IndexOutOfRangeException { IL_003c: pop IL_003d: nop IL_003e: ldc.i4.1 IL_003f: stloc.3 IL_0040: leave.s IL_006e } // end handler catch [mscorlib]System.OverflowException { IL_0042: pop IL_0043: nop IL_0044: ldc.i4.1 IL_0045: stloc.3 IL_0046: leave.s IL_006e } // end handler catch [mscorlib]System.Exception { IL_0048: stloc.2 IL_0049: nop IL_004a: ldstr "test3 exception: {0}" IL_004f: ldloc.2 IL_0050: callvirt instance string [mscorlib]System.Object::ToString() IL_0055: call void [System.Console]System.Console::WriteLine(string, object) IL_005a: nop IL_005b: nop IL_005c: leave.s IL_005e } // end handler IL_005e: nop IL_005f: ldstr "Test3 failed" IL_0064: call void [System.Console]System.Console::WriteLine(string) IL_0069: nop IL_006a: ldc.i4.0 IL_006b: stloc.3 IL_006c: br.s IL_006e IL_006e: nop IL_006f: ldloc.3 IL_0070: ret } // end of method StrideTest::Test3 .method public hidebysig static bool Test4() cil managed { // Code size 78 (0x4e) .maxstack 3 .locals init (uint64[] V_0, uint64 V_1, bool V_2, bool V_3) IL_0000: nop .try { IL_0001: nop IL_0002: ldc.i4 0xfffffff IL_0007: newarr [mscorlib]System.UInt64 IL_000c: stloc.0 IL_000d: ldc.i8 0xa000000000000002 IL_0016: stloc.1 IL_0017: br.s IL_002c IL_0019: nop IL_001a: ldloc.1 IL_001b: ldc.i8 0xa000000000000001 IL_0024: sub IL_0025: stloc.1 IL_0026: ldloc.0 IL_0027: ldloc.1 IL_0028: conv.ovf.i.un IL_0029: ldloc.1 IL_002a: stelem.i8 IL_002b: nop IL_002c: ldc.i4.1 IL_002d: stloc.3 IL_002e: br.s IL_0019 } // end .try catch [mscorlib]System.IndexOutOfRangeException { IL_0030: pop IL_0031: nop IL_0032: ldc.i4.1 IL_0033: stloc.2 IL_0034: leave.s IL_004b } // end handler catch [mscorlib]System.Exception { IL_0036: pop IL_0037: nop IL_0038: nop IL_0039: leave.s IL_003b } // end handler IL_003b: nop IL_003c: ldstr "Test4 failed" IL_0041: call void [System.Console]System.Console::WriteLine(string) IL_0046: nop IL_0047: ldc.i4.0 IL_0048: stloc.2 IL_0049: br.s IL_004b IL_004b: nop IL_004c: ldloc.2 IL_004d: ret } // end of method StrideTest::Test4 .method public hidebysig static bool Test5() cil managed { // Code size 104 (0x68) .maxstack 3 .locals init (uint64[] V_0, uint64 V_1, bool V_2, bool V_3) IL_0000: nop .try { IL_0001: nop IL_0002: ldc.i4 0xfffffff IL_0007: newarr [mscorlib]System.UInt64 IL_000c: stloc.0 IL_000d: ldc.i8 0xa000000000000010 IL_0016: stloc.1 IL_0017: br.s IL_0046 IL_0019: nop IL_001a: ldloc.1 IL_001b: ldc.i8 0xa000000000000001 IL_0024: sub IL_0025: stloc.1 IL_0026: br.s IL_0034 IL_0028: nop IL_0029: ldloc.0 IL_002a: ldloc.1 IL_002b: conv.ovf.i.un IL_002c: ldloc.1 IL_002d: stelem.i8 IL_002e: ldloc.1 IL_002f: ldc.i4.1 IL_0030: conv.i8 IL_0031: sub IL_0032: stloc.1 IL_0033: nop IL_0034: ldloc.1 IL_0035: ldc.i4.0 IL_0036: conv.i8 IL_0037: clt.un IL_0039: ldc.i4.0 IL_003a: ceq IL_003c: stloc.3 IL_003d: ldloc.3 IL_003e: brtrue.s IL_0028 IL_0040: ldloc.0 IL_0041: ldloc.1 IL_0042: conv.ovf.i.un IL_0043: ldloc.1 IL_0044: stelem.i8 IL_0045: nop IL_0046: ldc.i4.1 IL_0047: stloc.3 IL_0048: br.s IL_0019 } // end .try catch [mscorlib]System.IndexOutOfRangeException { IL_004a: pop IL_004b: nop IL_004c: ldc.i4.1 IL_004d: stloc.2 IL_004e: leave.s IL_0065 } // end handler catch [mscorlib]System.Exception { IL_0050: pop IL_0051: nop IL_0052: nop IL_0053: leave.s IL_0055 } // end handler IL_0055: nop IL_0056: ldstr "Test5 failed" IL_005b: call void [System.Console]System.Console::WriteLine(string) IL_0060: nop IL_0061: ldc.i4.0 IL_0062: stloc.2 IL_0063: br.s IL_0065 IL_0065: nop IL_0066: ldloc.2 IL_0067: ret } // end of method StrideTest::Test5 .method public hidebysig specialname rtspecialname instance void .ctor() cil 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 StrideTest::.ctor } // end of class StrideTest // ============================================================= // *********** DISASSEMBLY COMPLETE *********************** // WARNING: Created Win32 resource file t.res
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/IL_Conformance/Old/Conformance_Base/ldc_mul_ovf_i4.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } // //====================================== //---- CLASS ---------------- .class public ldc_mul_ovf_i4 { //---- GLOBAL DATA ---------- //---- METHODS -------------- .method public static int32 i4_0(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x80000000 ldc.i4 0x80000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_1(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x80000000 ldc.i4 0xFFFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_2(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x80000000 ldc.i4 0x00000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_3(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x80000000 ldc.i4 0x00000001 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_4(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x80000000 ldc.i4 0x7FFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_5(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x80000000 ldc.i4 0x55555555 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_6(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x80000000 ldc.i4 0xAAAAAAAA mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_7(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xFFFFFFFF ldc.i4 0x80000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_8(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xFFFFFFFF ldc.i4 0xFFFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_9(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xFFFFFFFF ldc.i4 0x00000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_10(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xFFFFFFFF ldc.i4 0x00000001 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_11(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xFFFFFFFF ldc.i4 0x7FFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_12(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xFFFFFFFF ldc.i4 0x55555555 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_13(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xFFFFFFFF ldc.i4 0xAAAAAAAA mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_14(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000000 ldc.i4 0x80000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_15(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000000 ldc.i4 0xFFFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_16(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000000 ldc.i4 0x00000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_17(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000000 ldc.i4 0x00000001 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_18(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000000 ldc.i4 0x7FFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_19(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000000 ldc.i4 0x55555555 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_20(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000000 ldc.i4 0xAAAAAAAA mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_21(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000001 ldc.i4 0x80000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_22(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000001 ldc.i4 0xFFFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_23(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000001 ldc.i4 0x00000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_24(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000001 ldc.i4 0x00000001 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_25(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000001 ldc.i4 0x7FFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_26(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000001 ldc.i4 0x55555555 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_27(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000001 ldc.i4 0xAAAAAAAA mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_28(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x7FFFFFFF ldc.i4 0x80000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_29(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x7FFFFFFF ldc.i4 0xFFFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_30(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x7FFFFFFF ldc.i4 0x00000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_31(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x7FFFFFFF ldc.i4 0x00000001 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_32(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x7FFFFFFF ldc.i4 0x7FFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_33(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x7FFFFFFF ldc.i4 0x55555555 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_34(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x7FFFFFFF ldc.i4 0xAAAAAAAA mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_35(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x55555555 ldc.i4 0x80000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_36(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x55555555 ldc.i4 0xFFFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_37(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x55555555 ldc.i4 0x00000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_38(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x55555555 ldc.i4 0x00000001 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_39(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x55555555 ldc.i4 0x7FFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_40(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x55555555 ldc.i4 0x55555555 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_41(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x55555555 ldc.i4 0xAAAAAAAA mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_42(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xAAAAAAAA ldc.i4 0x80000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_43(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xAAAAAAAA ldc.i4 0xFFFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_44(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xAAAAAAAA ldc.i4 0x00000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_45(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xAAAAAAAA ldc.i4 0x00000001 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_46(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xAAAAAAAA ldc.i4 0x7FFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_47(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xAAAAAAAA ldc.i4 0x55555555 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_48(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xAAAAAAAA ldc.i4 0xAAAAAAAA mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } //---- CONSTRUCTOR ---------- .method public void ldc_mul_ovf_i4() { .maxstack 0 ret } //---- MAIN ----------------- .method public static int32 main(class [mscorlib]System.String[]) { .entrypoint .maxstack 5 //====== begin testing ====== // -- Min * Min should overflow ldc.i4 0x80000000 ldc.i4 0x80000000 call int32 ldc_mul_ovf_i4::i4_0(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Min * -1 ldc.i4 0x80000000 ldc.i4 0xFFFFFFFF call int32 ldc_mul_ovf_i4::i4_1(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Min * 0 ldc.i4 0x80000000 ldc.i4 0x00000000 call int32 ldc_mul_ovf_i4::i4_2(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- Min * 1 ldc.i4 0x80000000 ldc.i4 0x00000001 call int32 ldc_mul_ovf_i4::i4_3(int32,int32) ldc.i4 0x80000000 ceq brfalse FAIL // -- Min * Max ldc.i4 0x80000000 ldc.i4 0x7FFFFFFF call int32 ldc_mul_ovf_i4::i4_4(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Min * Odd ldc.i4 0x80000000 ldc.i4 0x55555555 call int32 ldc_mul_ovf_i4::i4_5(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Min * Even ldc.i4 0x80000000 ldc.i4 0xAAAAAAAA call int32 ldc_mul_ovf_i4::i4_6(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL //---------------------------------------------------------- // -- -1 * Min ldc.i4 0xFFFFFFFF ldc.i4 0x80000000 call int32 ldc_mul_ovf_i4::i4_7(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- -1 * -1 ldc.i4 0xFFFFFFFF ldc.i4 0xFFFFFFFF call int32 ldc_mul_ovf_i4::i4_8(int32,int32) ldc.i4 0x00000001 ceq brfalse FAIL // -- -1 * 0 ldc.i4 0xFFFFFFFF ldc.i4 0x00000000 call int32 ldc_mul_ovf_i4::i4_9(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- -1 * 1 ldc.i4 0xFFFFFFFF ldc.i4 0x00000001 call int32 ldc_mul_ovf_i4::i4_10(int32,int32) ldc.i4 0xFFFFFFFF ceq brfalse FAIL // -- -1 * Max ldc.i4 0xFFFFFFFF ldc.i4 0x7FFFFFFF call int32 ldc_mul_ovf_i4::i4_11(int32,int32) ldc.i4 0x80000001 ceq brfalse FAIL // -- -1 * Odd ldc.i4 0xFFFFFFFF ldc.i4 0x55555555 call int32 ldc_mul_ovf_i4::i4_12(int32,int32) ldc.i4 0xAAAAAAAB ceq brfalse FAIL // -- -1 * Even ldc.i4 0xFFFFFFFF ldc.i4 0xAAAAAAAA call int32 ldc_mul_ovf_i4::i4_13(int32,int32) ldc.i4 0x55555556 ceq brfalse FAIL //---------------------------------------------------------- // -- 0 * Min ldc.i4 0x00000000 ldc.i4 0x80000000 call int32 ldc_mul_ovf_i4::i4_14(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- 0 * -1 ldc.i4 0x00000000 ldc.i4 0xFFFFFFFF call int32 ldc_mul_ovf_i4::i4_15(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- 0 * 0 ldc.i4 0x00000000 ldc.i4 0x00000000 call int32 ldc_mul_ovf_i4::i4_16(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- 0 * 1 ldc.i4 0x00000000 ldc.i4 0x00000001 call int32 ldc_mul_ovf_i4::i4_17(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- 0 * Max ldc.i4 0x00000000 ldc.i4 0x7FFFFFFF call int32 ldc_mul_ovf_i4::i4_18(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- 0 * Odd ldc.i4 0x00000000 ldc.i4 0x55555555 call int32 ldc_mul_ovf_i4::i4_19(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- 0 * Even ldc.i4 0x00000000 ldc.i4 0xAAAAAAAA call int32 ldc_mul_ovf_i4::i4_20(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL //---------------------------------------------------------- // -- 1 * Min ldc.i4 0x00000001 ldc.i4 0x80000000 call int32 ldc_mul_ovf_i4::i4_21(int32,int32) ldc.i4 0x80000000 ceq brfalse FAIL // -- 1 * -1 ldc.i4 0x00000001 ldc.i4 0xFFFFFFFF call int32 ldc_mul_ovf_i4::i4_22(int32,int32) ldc.i4 0xFFFFFFFF ceq brfalse FAIL // -- 1 * 0 ldc.i4 0x00000001 ldc.i4 0x00000000 call int32 ldc_mul_ovf_i4::i4_23(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- 1 * 1 ldc.i4 0x00000001 ldc.i4 0x00000001 call int32 ldc_mul_ovf_i4::i4_24(int32,int32) ldc.i4 0x00000001 ceq brfalse FAIL // -- 1 * Max ldc.i4 0x00000001 ldc.i4 0x7FFFFFFF call int32 ldc_mul_ovf_i4::i4_25(int32,int32) ldc.i4 0x7FFFFFFF ceq brfalse FAIL // -- 1 * Odd ldc.i4 0x00000001 ldc.i4 0x55555555 call int32 ldc_mul_ovf_i4::i4_26(int32,int32) ldc.i4 0x55555555 ceq brfalse FAIL // -- 1 * Even ldc.i4 0x00000001 ldc.i4 0xAAAAAAAA call int32 ldc_mul_ovf_i4::i4_27(int32,int32) ldc.i4 0xAAAAAAAA ceq brfalse FAIL //---------------------------------------------------------- // -- Max * Min ldc.i4 0x7FFFFFFF ldc.i4 0x80000000 call int32 ldc_mul_ovf_i4::i4_28(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Max * -1 ldc.i4 0x7FFFFFFF ldc.i4 0xFFFFFFFF call int32 ldc_mul_ovf_i4::i4_29(int32,int32) ldc.i4 0x80000001 ceq brfalse FAIL // -- Max * 0 ldc.i4 0x7FFFFFFF ldc.i4 0x00000000 call int32 ldc_mul_ovf_i4::i4_30(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- Max * 1 ldc.i4 0x7FFFFFFF ldc.i4 0x00000001 call int32 ldc_mul_ovf_i4::i4_31(int32,int32) ldc.i4 0x7FFFFFFF ceq brfalse FAIL // -- Max * Max ldc.i4 0x7FFFFFFF ldc.i4 0x7FFFFFFF call int32 ldc_mul_ovf_i4::i4_32(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Max * Odd ldc.i4 0x7FFFFFFF ldc.i4 0x55555555 call int32 ldc_mul_ovf_i4::i4_33(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Max * Even ldc.i4 0x7FFFFFFF ldc.i4 0xAAAAAAAA call int32 ldc_mul_ovf_i4::i4_34(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL //---------------------------------------------------------- // -- Odd * Min ldc.i4 0x55555555 ldc.i4 0x80000000 call int32 ldc_mul_ovf_i4::i4_35(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Odd * -1 ldc.i4 0x55555555 ldc.i4 0xFFFFFFFF call int32 ldc_mul_ovf_i4::i4_36(int32,int32) ldc.i4 0xAAAAAAAB ceq brfalse FAIL // -- Odd * 0 ldc.i4 0x55555555 ldc.i4 0x00000000 call int32 ldc_mul_ovf_i4::i4_37(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- Odd * 1 ldc.i4 0x55555555 ldc.i4 0x00000001 call int32 ldc_mul_ovf_i4::i4_38(int32,int32) ldc.i4 0x55555555 ceq brfalse FAIL // -- Odd * Max ldc.i4 0x55555555 ldc.i4 0x7FFFFFFF call int32 ldc_mul_ovf_i4::i4_39(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Odd * Odd ldc.i4 0x55555555 ldc.i4 0x55555555 call int32 ldc_mul_ovf_i4::i4_40(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Odd * Even ldc.i4 0x55555555 ldc.i4 0xAAAAAAAA call int32 ldc_mul_ovf_i4::i4_41(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL //---------------------------------------------------------- // -- Even * Min ldc.i4 0xAAAAAAAA ldc.i4 0x80000000 call int32 ldc_mul_ovf_i4::i4_42(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Even * -1 ldc.i4 0xAAAAAAAA ldc.i4 0xFFFFFFFF call int32 ldc_mul_ovf_i4::i4_43(int32,int32) ldc.i4 0x55555556 ceq brfalse FAIL // -- Even * 0 ldc.i4 0xAAAAAAAA ldc.i4 0x00000000 call int32 ldc_mul_ovf_i4::i4_44(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- Even * 1 ldc.i4 0xAAAAAAAA ldc.i4 0x00000001 call int32 ldc_mul_ovf_i4::i4_45(int32,int32) ldc.i4 0xAAAAAAAA ceq brfalse FAIL // -- Even * Max ldc.i4 0xAAAAAAAA ldc.i4 0x7FFFFFFF call int32 ldc_mul_ovf_i4::i4_46(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Even * Odd ldc.i4 0xAAAAAAAA ldc.i4 0x55555555 call int32 ldc_mul_ovf_i4::i4_47(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Even * Even ldc.i4 0xAAAAAAAA ldc.i4 0xAAAAAAAA call int32 ldc_mul_ovf_i4::i4_48(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL //====== end testing ======== //---- branch here on pass -- PASS: ldc.i4 100 br END //---- branch here on fail -- FAIL: ldc.i4 101 //---- return the result ---- END: ret //---- END OF METHOD -------- } //---- EOF ------------------ } .assembly ldc_mul_ovf_i4{}
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } // //====================================== //---- CLASS ---------------- .class public ldc_mul_ovf_i4 { //---- GLOBAL DATA ---------- //---- METHODS -------------- .method public static int32 i4_0(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x80000000 ldc.i4 0x80000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_1(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x80000000 ldc.i4 0xFFFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_2(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x80000000 ldc.i4 0x00000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_3(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x80000000 ldc.i4 0x00000001 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_4(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x80000000 ldc.i4 0x7FFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_5(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x80000000 ldc.i4 0x55555555 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_6(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x80000000 ldc.i4 0xAAAAAAAA mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_7(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xFFFFFFFF ldc.i4 0x80000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_8(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xFFFFFFFF ldc.i4 0xFFFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_9(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xFFFFFFFF ldc.i4 0x00000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_10(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xFFFFFFFF ldc.i4 0x00000001 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_11(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xFFFFFFFF ldc.i4 0x7FFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_12(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xFFFFFFFF ldc.i4 0x55555555 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_13(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xFFFFFFFF ldc.i4 0xAAAAAAAA mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_14(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000000 ldc.i4 0x80000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_15(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000000 ldc.i4 0xFFFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_16(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000000 ldc.i4 0x00000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_17(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000000 ldc.i4 0x00000001 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_18(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000000 ldc.i4 0x7FFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_19(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000000 ldc.i4 0x55555555 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_20(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000000 ldc.i4 0xAAAAAAAA mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_21(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000001 ldc.i4 0x80000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_22(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000001 ldc.i4 0xFFFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_23(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000001 ldc.i4 0x00000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_24(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000001 ldc.i4 0x00000001 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_25(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000001 ldc.i4 0x7FFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_26(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000001 ldc.i4 0x55555555 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_27(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x00000001 ldc.i4 0xAAAAAAAA mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_28(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x7FFFFFFF ldc.i4 0x80000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_29(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x7FFFFFFF ldc.i4 0xFFFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_30(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x7FFFFFFF ldc.i4 0x00000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_31(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x7FFFFFFF ldc.i4 0x00000001 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_32(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x7FFFFFFF ldc.i4 0x7FFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_33(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x7FFFFFFF ldc.i4 0x55555555 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_34(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x7FFFFFFF ldc.i4 0xAAAAAAAA mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_35(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x55555555 ldc.i4 0x80000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_36(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x55555555 ldc.i4 0xFFFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_37(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x55555555 ldc.i4 0x00000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_38(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x55555555 ldc.i4 0x00000001 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_39(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x55555555 ldc.i4 0x7FFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_40(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x55555555 ldc.i4 0x55555555 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_41(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0x55555555 ldc.i4 0xAAAAAAAA mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_42(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xAAAAAAAA ldc.i4 0x80000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_43(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xAAAAAAAA ldc.i4 0xFFFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_44(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xAAAAAAAA ldc.i4 0x00000000 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_45(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xAAAAAAAA ldc.i4 0x00000001 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_46(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xAAAAAAAA ldc.i4 0x7FFFFFFF mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_47(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xAAAAAAAA ldc.i4 0x55555555 mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } .method public static int32 i4_48(int32,int32) { .locals (class [mscorlib]System.OverflowException,int32) .maxstack 2 try_start: ldc.i4 0xAAAAAAAA ldc.i4 0xAAAAAAAA mul.ovf // conv.ovf.i4 stloc.1 leave.s try_end try_end: ldloc.1 br END aHandler: isinst [mscorlib]System.OverflowException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xAEAEAEAE br END FAIL: ldc.i4 0xEEEEEEEE END: ret .try try_start to try_end catch [mscorlib]System.OverflowException handler aHandler to HEnd } //---- CONSTRUCTOR ---------- .method public void ldc_mul_ovf_i4() { .maxstack 0 ret } //---- MAIN ----------------- .method public static int32 main(class [mscorlib]System.String[]) { .entrypoint .maxstack 5 //====== begin testing ====== // -- Min * Min should overflow ldc.i4 0x80000000 ldc.i4 0x80000000 call int32 ldc_mul_ovf_i4::i4_0(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Min * -1 ldc.i4 0x80000000 ldc.i4 0xFFFFFFFF call int32 ldc_mul_ovf_i4::i4_1(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Min * 0 ldc.i4 0x80000000 ldc.i4 0x00000000 call int32 ldc_mul_ovf_i4::i4_2(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- Min * 1 ldc.i4 0x80000000 ldc.i4 0x00000001 call int32 ldc_mul_ovf_i4::i4_3(int32,int32) ldc.i4 0x80000000 ceq brfalse FAIL // -- Min * Max ldc.i4 0x80000000 ldc.i4 0x7FFFFFFF call int32 ldc_mul_ovf_i4::i4_4(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Min * Odd ldc.i4 0x80000000 ldc.i4 0x55555555 call int32 ldc_mul_ovf_i4::i4_5(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Min * Even ldc.i4 0x80000000 ldc.i4 0xAAAAAAAA call int32 ldc_mul_ovf_i4::i4_6(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL //---------------------------------------------------------- // -- -1 * Min ldc.i4 0xFFFFFFFF ldc.i4 0x80000000 call int32 ldc_mul_ovf_i4::i4_7(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- -1 * -1 ldc.i4 0xFFFFFFFF ldc.i4 0xFFFFFFFF call int32 ldc_mul_ovf_i4::i4_8(int32,int32) ldc.i4 0x00000001 ceq brfalse FAIL // -- -1 * 0 ldc.i4 0xFFFFFFFF ldc.i4 0x00000000 call int32 ldc_mul_ovf_i4::i4_9(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- -1 * 1 ldc.i4 0xFFFFFFFF ldc.i4 0x00000001 call int32 ldc_mul_ovf_i4::i4_10(int32,int32) ldc.i4 0xFFFFFFFF ceq brfalse FAIL // -- -1 * Max ldc.i4 0xFFFFFFFF ldc.i4 0x7FFFFFFF call int32 ldc_mul_ovf_i4::i4_11(int32,int32) ldc.i4 0x80000001 ceq brfalse FAIL // -- -1 * Odd ldc.i4 0xFFFFFFFF ldc.i4 0x55555555 call int32 ldc_mul_ovf_i4::i4_12(int32,int32) ldc.i4 0xAAAAAAAB ceq brfalse FAIL // -- -1 * Even ldc.i4 0xFFFFFFFF ldc.i4 0xAAAAAAAA call int32 ldc_mul_ovf_i4::i4_13(int32,int32) ldc.i4 0x55555556 ceq brfalse FAIL //---------------------------------------------------------- // -- 0 * Min ldc.i4 0x00000000 ldc.i4 0x80000000 call int32 ldc_mul_ovf_i4::i4_14(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- 0 * -1 ldc.i4 0x00000000 ldc.i4 0xFFFFFFFF call int32 ldc_mul_ovf_i4::i4_15(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- 0 * 0 ldc.i4 0x00000000 ldc.i4 0x00000000 call int32 ldc_mul_ovf_i4::i4_16(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- 0 * 1 ldc.i4 0x00000000 ldc.i4 0x00000001 call int32 ldc_mul_ovf_i4::i4_17(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- 0 * Max ldc.i4 0x00000000 ldc.i4 0x7FFFFFFF call int32 ldc_mul_ovf_i4::i4_18(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- 0 * Odd ldc.i4 0x00000000 ldc.i4 0x55555555 call int32 ldc_mul_ovf_i4::i4_19(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- 0 * Even ldc.i4 0x00000000 ldc.i4 0xAAAAAAAA call int32 ldc_mul_ovf_i4::i4_20(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL //---------------------------------------------------------- // -- 1 * Min ldc.i4 0x00000001 ldc.i4 0x80000000 call int32 ldc_mul_ovf_i4::i4_21(int32,int32) ldc.i4 0x80000000 ceq brfalse FAIL // -- 1 * -1 ldc.i4 0x00000001 ldc.i4 0xFFFFFFFF call int32 ldc_mul_ovf_i4::i4_22(int32,int32) ldc.i4 0xFFFFFFFF ceq brfalse FAIL // -- 1 * 0 ldc.i4 0x00000001 ldc.i4 0x00000000 call int32 ldc_mul_ovf_i4::i4_23(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- 1 * 1 ldc.i4 0x00000001 ldc.i4 0x00000001 call int32 ldc_mul_ovf_i4::i4_24(int32,int32) ldc.i4 0x00000001 ceq brfalse FAIL // -- 1 * Max ldc.i4 0x00000001 ldc.i4 0x7FFFFFFF call int32 ldc_mul_ovf_i4::i4_25(int32,int32) ldc.i4 0x7FFFFFFF ceq brfalse FAIL // -- 1 * Odd ldc.i4 0x00000001 ldc.i4 0x55555555 call int32 ldc_mul_ovf_i4::i4_26(int32,int32) ldc.i4 0x55555555 ceq brfalse FAIL // -- 1 * Even ldc.i4 0x00000001 ldc.i4 0xAAAAAAAA call int32 ldc_mul_ovf_i4::i4_27(int32,int32) ldc.i4 0xAAAAAAAA ceq brfalse FAIL //---------------------------------------------------------- // -- Max * Min ldc.i4 0x7FFFFFFF ldc.i4 0x80000000 call int32 ldc_mul_ovf_i4::i4_28(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Max * -1 ldc.i4 0x7FFFFFFF ldc.i4 0xFFFFFFFF call int32 ldc_mul_ovf_i4::i4_29(int32,int32) ldc.i4 0x80000001 ceq brfalse FAIL // -- Max * 0 ldc.i4 0x7FFFFFFF ldc.i4 0x00000000 call int32 ldc_mul_ovf_i4::i4_30(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- Max * 1 ldc.i4 0x7FFFFFFF ldc.i4 0x00000001 call int32 ldc_mul_ovf_i4::i4_31(int32,int32) ldc.i4 0x7FFFFFFF ceq brfalse FAIL // -- Max * Max ldc.i4 0x7FFFFFFF ldc.i4 0x7FFFFFFF call int32 ldc_mul_ovf_i4::i4_32(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Max * Odd ldc.i4 0x7FFFFFFF ldc.i4 0x55555555 call int32 ldc_mul_ovf_i4::i4_33(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Max * Even ldc.i4 0x7FFFFFFF ldc.i4 0xAAAAAAAA call int32 ldc_mul_ovf_i4::i4_34(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL //---------------------------------------------------------- // -- Odd * Min ldc.i4 0x55555555 ldc.i4 0x80000000 call int32 ldc_mul_ovf_i4::i4_35(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Odd * -1 ldc.i4 0x55555555 ldc.i4 0xFFFFFFFF call int32 ldc_mul_ovf_i4::i4_36(int32,int32) ldc.i4 0xAAAAAAAB ceq brfalse FAIL // -- Odd * 0 ldc.i4 0x55555555 ldc.i4 0x00000000 call int32 ldc_mul_ovf_i4::i4_37(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- Odd * 1 ldc.i4 0x55555555 ldc.i4 0x00000001 call int32 ldc_mul_ovf_i4::i4_38(int32,int32) ldc.i4 0x55555555 ceq brfalse FAIL // -- Odd * Max ldc.i4 0x55555555 ldc.i4 0x7FFFFFFF call int32 ldc_mul_ovf_i4::i4_39(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Odd * Odd ldc.i4 0x55555555 ldc.i4 0x55555555 call int32 ldc_mul_ovf_i4::i4_40(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Odd * Even ldc.i4 0x55555555 ldc.i4 0xAAAAAAAA call int32 ldc_mul_ovf_i4::i4_41(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL //---------------------------------------------------------- // -- Even * Min ldc.i4 0xAAAAAAAA ldc.i4 0x80000000 call int32 ldc_mul_ovf_i4::i4_42(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Even * -1 ldc.i4 0xAAAAAAAA ldc.i4 0xFFFFFFFF call int32 ldc_mul_ovf_i4::i4_43(int32,int32) ldc.i4 0x55555556 ceq brfalse FAIL // -- Even * 0 ldc.i4 0xAAAAAAAA ldc.i4 0x00000000 call int32 ldc_mul_ovf_i4::i4_44(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL // -- Even * 1 ldc.i4 0xAAAAAAAA ldc.i4 0x00000001 call int32 ldc_mul_ovf_i4::i4_45(int32,int32) ldc.i4 0xAAAAAAAA ceq brfalse FAIL // -- Even * Max ldc.i4 0xAAAAAAAA ldc.i4 0x7FFFFFFF call int32 ldc_mul_ovf_i4::i4_46(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Even * Odd ldc.i4 0xAAAAAAAA ldc.i4 0x55555555 call int32 ldc_mul_ovf_i4::i4_47(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL // -- Even * Even ldc.i4 0xAAAAAAAA ldc.i4 0xAAAAAAAA call int32 ldc_mul_ovf_i4::i4_48(int32,int32) ldc.i4 0xAEAEAEAE ceq brfalse FAIL //====== end testing ======== //---- branch here on pass -- PASS: ldc.i4 100 br END //---- branch here on fail -- FAIL: ldc.i4 101 //---- return the result ---- END: ret //---- END OF METHOD -------- } //---- EOF ------------------ } .assembly ldc_mul_ovf_i4{}
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/Regression/CLR-x86-JIT/V1-M09.5-PDC/b30125/b30125.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly 'b30125' {} .assembly extern xunit.core {} .class ILGEN_0x5a59b03c { .method static int32 Method_0x1001() { .maxstack 3 .locals (unsigned int16 local_0x3) ldc.i4 0x74464a0b stloc local_0x3 ldloc local_0x3 conv.ovf.u2 ret } .method static int32 Main() { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 2 call int32 ILGEN_0x5a59b03c::Method_0x1001() ldc.i4 18955 sub ldc.i4 100 add ret } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly 'b30125' {} .assembly extern xunit.core {} .class ILGEN_0x5a59b03c { .method static int32 Method_0x1001() { .maxstack 3 .locals (unsigned int16 local_0x3) ldc.i4 0x74464a0b stloc local_0x3 ldloc local_0x3 conv.ovf.u2 ret } .method static int32 Main() { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 2 call int32 ILGEN_0x5a59b03c::Method_0x1001() ldc.i4 18955 sub ldc.i4 100 add ret } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/IL_Conformance/Old/Conformance_Base/bgt_un_r8.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} #define NEG_INF "float64(0xFFF0000000000000)" #define MIN "float64(0xFF7FFFFFFFFFFFFF)" #define MINUS_ONE "float64(0xBFF0000000000000)" #define MINUS_ZERO "float64(0x8000000000000000)" #define ZERO "float64(0x0000000000000000)" #define ONE "float64(0x3FF0000000000000)" #define MAX "float64(0x7FEFFFFFFFFFFFFF)" #define POS_INF "float64(0x7FF0000000000000)" #define NAN "float64(0x7FF8000000000000)" .class public bgt_un { .field public static float64 neg_inf .field public static float64 min .field public static float64 minus_one .field public static float64 minus_zero .field public static float64 zero .field public static float64 one .field public static float64 max .field public static float64 pos_inf .field public static float64 NaN .method public static void initialize() { .maxstack 10 ldc.r8 NEG_INF stsfld float64 bgt_un::neg_inf ldc.r8 MIN stsfld float64 bgt_un::min ldc.r8 MINUS_ONE stsfld float64 bgt_un::minus_one ldc.r8 MINUS_ZERO stsfld float64 bgt_un::minus_zero ldc.r8 ZERO stsfld float64 bgt_un::zero ldc.r8 ONE stsfld float64 bgt_un::one ldc.r8 MAX stsfld float64 bgt_un::max ldc.r8 POS_INF stsfld float64 bgt_un::pos_inf ldc.r8 NAN stsfld float64 bgt_un::NaN ret } .method public static int32 main(class [mscorlib]System.String[]) { .entrypoint .maxstack 10 call void bgt_un::initialize() ldsfld float64 bgt_un::neg_inf ldsfld float64 bgt_un::neg_inf bgt.un FAIL ldsfld float64 bgt_un::neg_inf ldsfld float64 bgt_un::min bgt.un FAIL ldsfld float64 bgt_un::neg_inf ldsfld float64 bgt_un::minus_one bgt.un FAIL ldsfld float64 bgt_un::neg_inf ldsfld float64 bgt_un::minus_zero bgt.un FAIL ldsfld float64 bgt_un::neg_inf ldsfld float64 bgt_un::zero bgt.un FAIL ldsfld float64 bgt_un::neg_inf ldsfld float64 bgt_un::one bgt.un FAIL ldsfld float64 bgt_un::neg_inf ldsfld float64 bgt_un::max bgt.un FAIL ldsfld float64 bgt_un::neg_inf ldsfld float64 bgt_un::pos_inf bgt.un FAIL ldsfld float64 bgt_un::neg_inf ldsfld float64 bgt_un::NaN bgt.un A br FAIL A: ldsfld float64 bgt_un::min ldsfld float64 bgt_un::neg_inf bgt.un B br FAIL B: ldsfld float64 bgt_un::min ldsfld float64 bgt_un::min bgt.un FAIL ldsfld float64 bgt_un::min ldsfld float64 bgt_un::minus_one bgt.un FAIL ldsfld float64 bgt_un::min ldsfld float64 bgt_un::minus_zero bgt.un FAIL ldsfld float64 bgt_un::min ldsfld float64 bgt_un::zero bgt.un FAIL ldsfld float64 bgt_un::min ldsfld float64 bgt_un::one bgt.un FAIL ldsfld float64 bgt_un::min ldsfld float64 bgt_un::max bgt.un FAIL ldsfld float64 bgt_un::min ldsfld float64 bgt_un::pos_inf bgt.un FAIL ldsfld float64 bgt_un::min ldsfld float64 bgt_un::NaN bgt.un C br FAIL C: ldsfld float64 bgt_un::minus_one ldsfld float64 bgt_un::neg_inf bgt.un D br FAIL D: ldsfld float64 bgt_un::minus_one ldsfld float64 bgt_un::min bgt.un E br FAIL E: ldsfld float64 bgt_un::minus_one ldsfld float64 bgt_un::minus_one bgt.un FAIL ldsfld float64 bgt_un::minus_one ldsfld float64 bgt_un::minus_zero bgt.un FAIL ldsfld float64 bgt_un::minus_one ldsfld float64 bgt_un::zero bgt.un FAIL ldsfld float64 bgt_un::minus_one ldsfld float64 bgt_un::one bgt.un FAIL ldsfld float64 bgt_un::minus_one ldsfld float64 bgt_un::max bgt.un FAIL ldsfld float64 bgt_un::minus_one ldsfld float64 bgt_un::pos_inf bgt.un FAIL ldsfld float64 bgt_un::minus_one ldsfld float64 bgt_un::NaN bgt.un F br FAIL F: ldsfld float64 bgt_un::minus_zero ldsfld float64 bgt_un::neg_inf bgt.un G br FAIL G: ldsfld float64 bgt_un::minus_zero ldsfld float64 bgt_un::min bgt.un H br FAIL H: ldsfld float64 bgt_un::minus_zero ldsfld float64 bgt_un::minus_one bgt.un I br FAIL I: ldsfld float64 bgt_un::minus_zero ldsfld float64 bgt_un::minus_zero bgt.un FAIL ldsfld float64 bgt_un::minus_zero ldsfld float64 bgt_un::zero bgt.un FAIL ldsfld float64 bgt_un::minus_zero ldsfld float64 bgt_un::one bgt.un FAIL ldsfld float64 bgt_un::minus_zero ldsfld float64 bgt_un::max bgt.un FAIL ldsfld float64 bgt_un::minus_zero ldsfld float64 bgt_un::pos_inf bgt.un FAIL ldsfld float64 bgt_un::minus_zero ldsfld float64 bgt_un::NaN bgt.un J br FAIL J: ldsfld float64 bgt_un::zero ldsfld float64 bgt_un::neg_inf bgt.un K br FAIL K: ldsfld float64 bgt_un::zero ldsfld float64 bgt_un::min bgt.un L br FAIL L: ldsfld float64 bgt_un::zero ldsfld float64 bgt_un::minus_one bgt.un M br FAIL M: ldsfld float64 bgt_un::zero ldsfld float64 bgt_un::minus_zero bgt.un FAIL ldsfld float64 bgt_un::zero ldsfld float64 bgt_un::zero bgt.un FAIL ldsfld float64 bgt_un::zero ldsfld float64 bgt_un::one bgt.un FAIL ldsfld float64 bgt_un::zero ldsfld float64 bgt_un::max bgt.un FAIL ldsfld float64 bgt_un::zero ldsfld float64 bgt_un::pos_inf bgt.un FAIL ldsfld float64 bgt_un::zero ldsfld float64 bgt_un::NaN bgt.un N br FAIL N: ldsfld float64 bgt_un::one ldsfld float64 bgt_un::neg_inf bgt.un O br FAIL O: ldsfld float64 bgt_un::one ldsfld float64 bgt_un::min bgt.un P br FAIL P: ldsfld float64 bgt_un::one ldsfld float64 bgt_un::minus_one bgt.un Q br FAIL Q: ldsfld float64 bgt_un::one ldsfld float64 bgt_un::minus_zero bgt.un R br FAIL R: ldsfld float64 bgt_un::one ldsfld float64 bgt_un::zero bgt.un S br FAIL S: ldsfld float64 bgt_un::one ldsfld float64 bgt_un::one bgt.un FAIL ldsfld float64 bgt_un::one ldsfld float64 bgt_un::max bgt.un FAIL ldsfld float64 bgt_un::one ldsfld float64 bgt_un::pos_inf bgt.un FAIL ldsfld float64 bgt_un::one ldsfld float64 bgt_un::NaN bgt.un T br FAIL T: ldsfld float64 bgt_un::max ldsfld float64 bgt_un::neg_inf bgt.un U br FAIL U: ldsfld float64 bgt_un::max ldsfld float64 bgt_un::min bgt.un V br FAIL V: ldsfld float64 bgt_un::max ldsfld float64 bgt_un::minus_one bgt.un W br FAIL W: ldsfld float64 bgt_un::max ldsfld float64 bgt_un::minus_zero bgt.un X br FAIL X: ldsfld float64 bgt_un::max ldsfld float64 bgt_un::zero bgt.un Y br FAIL Y: ldsfld float64 bgt_un::max ldsfld float64 bgt_un::one bgt.un Z br FAIL Z: ldsfld float64 bgt_un::max ldsfld float64 bgt_un::max bgt.un FAIL ldsfld float64 bgt_un::max ldsfld float64 bgt_un::pos_inf bgt.un FAIL ldsfld float64 bgt_un::max ldsfld float64 bgt_un::NaN bgt.un AA br FAIL AA: ldsfld float64 bgt_un::pos_inf ldsfld float64 bgt_un::neg_inf bgt.un BB br FAIL BB: ldsfld float64 bgt_un::pos_inf ldsfld float64 bgt_un::min bgt.un CC br FAIL CC: ldsfld float64 bgt_un::pos_inf ldsfld float64 bgt_un::minus_one bgt.un DD br FAIL DD: ldsfld float64 bgt_un::pos_inf ldsfld float64 bgt_un::minus_zero bgt.un EE br FAIL EE: ldsfld float64 bgt_un::pos_inf ldsfld float64 bgt_un::zero bgt.un FF br FAIL FF: ldsfld float64 bgt_un::pos_inf ldsfld float64 bgt_un::one bgt.un GG br FAIL GG: ldsfld float64 bgt_un::pos_inf ldsfld float64 bgt_un::max bgt.un HH br FAIL HH: ldsfld float64 bgt_un::pos_inf ldsfld float64 bgt_un::pos_inf bgt.un FAIL ldsfld float64 bgt_un::pos_inf ldsfld float64 bgt_un::NaN bgt.un II br FAIL II: ldsfld float64 bgt_un::NaN ldsfld float64 bgt_un::neg_inf bgt.un JJ br FAIL JJ: ldsfld float64 bgt_un::NaN ldsfld float64 bgt_un::min bgt.un KK br FAIL KK: ldsfld float64 bgt_un::NaN ldsfld float64 bgt_un::minus_one bgt.un LL br FAIL LL: ldsfld float64 bgt_un::NaN ldsfld float64 bgt_un::minus_zero bgt.un MM br FAIL MM: ldsfld float64 bgt_un::NaN ldsfld float64 bgt_un::zero bgt.un NN br FAIL NN: ldsfld float64 bgt_un::NaN ldsfld float64 bgt_un::one bgt.un OO br FAIL OO: ldsfld float64 bgt_un::NaN ldsfld float64 bgt_un::max bgt.un PP br FAIL PP: ldsfld float64 bgt_un::NaN ldsfld float64 bgt_un::pos_inf bgt.un QQ br FAIL QQ: ldsfld float64 bgt_un::NaN ldsfld float64 bgt_un::NaN bgt.un L0 br FAIL // Testing early folding logic L0: ldc.r8 NEG_INF ldc.r8 NEG_INF bgt.un FAIL ldc.r8 NEG_INF ldc.r8 MIN bgt.un FAIL ldc.r8 NEG_INF ldc.r8 MINUS_ONE bgt.un FAIL ldc.r8 NEG_INF ldc.r8 MINUS_ZERO bgt.un FAIL ldc.r8 NEG_INF ldc.r8 ZERO bgt.un FAIL ldc.r8 NEG_INF ldc.r8 ONE bgt.un FAIL ldc.r8 NEG_INF ldc.r8 MAX bgt.un FAIL ldc.r8 NEG_INF ldc.r8 POS_INF bgt.un FAIL ldc.r8 NEG_INF ldc.r8 NAN bgt.un L1 br FAIL L1: ldc.r8 MIN ldc.r8 NEG_INF bgt.un L2 br FAIL L2: ldc.r8 MIN ldc.r8 MIN bgt.un FAIL ldc.r8 MIN ldc.r8 MINUS_ONE bgt.un FAIL ldc.r8 MIN ldc.r8 MINUS_ZERO bgt.un FAIL ldc.r8 MIN ldc.r8 ZERO bgt.un FAIL ldc.r8 MIN ldc.r8 ONE bgt.un FAIL ldc.r8 MIN ldc.r8 MAX bgt.un FAIL ldc.r8 MIN ldc.r8 POS_INF bgt.un FAIL ldc.r8 MIN ldc.r8 NAN bgt.un L3 br FAIL L3: ldc.r8 MINUS_ONE ldc.r8 NEG_INF bgt.un L4 br FAIL L4: ldc.r8 MINUS_ONE ldc.r8 MIN bgt.un L5 br FAIL L5: ldc.r8 MINUS_ONE ldc.r8 MINUS_ONE bgt.un FAIL ldc.r8 MINUS_ONE ldc.r8 MINUS_ZERO bgt.un FAIL ldc.r8 MINUS_ONE ldc.r8 ZERO bgt.un FAIL ldc.r8 MINUS_ONE ldc.r8 ONE bgt.un FAIL ldc.r8 MINUS_ONE ldc.r8 MAX bgt.un FAIL ldc.r8 MINUS_ONE ldc.r8 POS_INF bgt.un FAIL ldc.r8 MINUS_ONE ldc.r8 NAN bgt.un L6 br FAIL L6: ldc.r8 MINUS_ZERO ldc.r8 NEG_INF bgt.un L7 br FAIL L7: ldc.r8 MINUS_ZERO ldc.r8 MIN bgt.un L8 br FAIL L8: ldc.r8 MINUS_ZERO ldc.r8 MINUS_ONE bgt.un L9 br FAIL L9: ldc.r8 MINUS_ZERO ldc.r8 MINUS_ZERO bgt.un FAIL ldc.r8 MINUS_ZERO ldc.r8 ZERO bgt.un FAIL ldc.r8 MINUS_ZERO ldc.r8 ONE bgt.un FAIL ldc.r8 MINUS_ZERO ldc.r8 MAX bgt.un FAIL ldc.r8 MINUS_ZERO ldc.r8 POS_INF bgt.un FAIL ldc.r8 MINUS_ZERO ldc.r8 NAN bgt.un L10 br FAIL L10: ldc.r8 ZERO ldc.r8 NEG_INF bgt.un L11 br FAIL L11: ldc.r8 ZERO ldc.r8 MIN bgt.un L12 br FAIL L12: ldc.r8 ZERO ldc.r8 MINUS_ONE bgt.un L13 br FAIL L13: ldc.r8 ZERO ldc.r8 MINUS_ZERO bgt.un FAIL ldc.r8 ZERO ldc.r8 ZERO bgt.un FAIL ldc.r8 ZERO ldc.r8 ONE bgt.un FAIL ldc.r8 ZERO ldc.r8 MAX bgt.un FAIL ldc.r8 ZERO ldc.r8 POS_INF bgt.un FAIL ldc.r8 ZERO ldc.r8 NAN bgt.un L14 br FAIL L14: ldc.r8 ONE ldc.r8 NEG_INF bgt.un L15 br FAIL L15: ldc.r8 ONE ldc.r8 MIN bgt.un L16 br FAIL L16: ldc.r8 ONE ldc.r8 MINUS_ONE bgt.un L17 br FAIL L17: ldc.r8 ONE ldc.r8 MINUS_ZERO bgt.un L18 br FAIL L18: ldc.r8 ONE ldc.r8 ZERO bgt.un L19 br FAIL L19: ldc.r8 ONE ldc.r8 ONE bgt.un FAIL ldc.r8 ONE ldc.r8 MAX bgt.un FAIL ldc.r8 ONE ldc.r8 POS_INF bgt.un FAIL ldc.r8 ONE ldc.r8 NAN bgt.un L20 br FAIL L20: ldc.r8 MAX ldc.r8 NEG_INF bgt.un L21 br FAIL L21: ldc.r8 MAX ldc.r8 MIN bgt.un L22 br FAIL L22: ldc.r8 MAX ldc.r8 MINUS_ONE bgt.un L23 br FAIL L23: ldc.r8 MAX ldc.r8 MINUS_ZERO bgt.un L24 br FAIL L24: ldc.r8 MAX ldc.r8 ZERO bgt.un L25 br FAIL L25: ldc.r8 MAX ldc.r8 ONE bgt.un L26 br FAIL L26: ldc.r8 MAX ldc.r8 MAX bgt.un FAIL ldc.r8 MAX ldc.r8 POS_INF bgt.un FAIL ldc.r8 MAX ldc.r8 NAN bgt.un L27 br FAIL L27: ldc.r8 POS_INF ldc.r8 NEG_INF bgt.un L28 br FAIL L28: ldc.r8 POS_INF ldc.r8 MIN bgt.un L29 br FAIL L29: ldc.r8 POS_INF ldc.r8 MINUS_ONE bgt.un L30 br FAIL L30: ldc.r8 POS_INF ldc.r8 MINUS_ZERO bgt.un L31 br FAIL L31: ldc.r8 POS_INF ldc.r8 ZERO bgt.un L32 br FAIL L32: ldc.r8 POS_INF ldc.r8 ONE bgt.un L33 br FAIL L33: ldc.r8 POS_INF ldc.r8 MAX bgt.un L34 br FAIL L34: ldc.r8 POS_INF ldc.r8 POS_INF bgt.un FAIL ldc.r8 POS_INF ldc.r8 NAN bgt.un L35 br FAIL L35: ldc.r8 NAN ldc.r8 NEG_INF bgt.un L36 br FAIL L36: ldc.r8 NAN ldc.r8 MIN bgt.un L37 br FAIL L37: ldc.r8 NAN ldc.r8 MINUS_ONE bgt.un L38 br FAIL L38: ldc.r8 NAN ldc.r8 MINUS_ZERO bgt.un L39 br FAIL L39: ldc.r8 NAN ldc.r8 ZERO bgt.un L40 br FAIL L40: ldc.r8 NAN ldc.r8 ONE bgt.un L41 br FAIL L41: ldc.r8 NAN ldc.r8 MAX bgt.un L42 br FAIL L42: ldc.r8 NAN ldc.r8 POS_INF bgt.un L43 br FAIL L43: ldc.r8 NAN ldc.r8 NAN bgt.un BACKCHECK br FAIL TOPASS: br PASS BACKCHECK: ldc.r8 0x1 ldc.r8 0x0 bgt.un TOPASS br FAIL PASS: ldc.i4 100 ret FAIL: ldc.i4 0x0 ret } } .assembly bgt_un_r8{}
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} #define NEG_INF "float64(0xFFF0000000000000)" #define MIN "float64(0xFF7FFFFFFFFFFFFF)" #define MINUS_ONE "float64(0xBFF0000000000000)" #define MINUS_ZERO "float64(0x8000000000000000)" #define ZERO "float64(0x0000000000000000)" #define ONE "float64(0x3FF0000000000000)" #define MAX "float64(0x7FEFFFFFFFFFFFFF)" #define POS_INF "float64(0x7FF0000000000000)" #define NAN "float64(0x7FF8000000000000)" .class public bgt_un { .field public static float64 neg_inf .field public static float64 min .field public static float64 minus_one .field public static float64 minus_zero .field public static float64 zero .field public static float64 one .field public static float64 max .field public static float64 pos_inf .field public static float64 NaN .method public static void initialize() { .maxstack 10 ldc.r8 NEG_INF stsfld float64 bgt_un::neg_inf ldc.r8 MIN stsfld float64 bgt_un::min ldc.r8 MINUS_ONE stsfld float64 bgt_un::minus_one ldc.r8 MINUS_ZERO stsfld float64 bgt_un::minus_zero ldc.r8 ZERO stsfld float64 bgt_un::zero ldc.r8 ONE stsfld float64 bgt_un::one ldc.r8 MAX stsfld float64 bgt_un::max ldc.r8 POS_INF stsfld float64 bgt_un::pos_inf ldc.r8 NAN stsfld float64 bgt_un::NaN ret } .method public static int32 main(class [mscorlib]System.String[]) { .entrypoint .maxstack 10 call void bgt_un::initialize() ldsfld float64 bgt_un::neg_inf ldsfld float64 bgt_un::neg_inf bgt.un FAIL ldsfld float64 bgt_un::neg_inf ldsfld float64 bgt_un::min bgt.un FAIL ldsfld float64 bgt_un::neg_inf ldsfld float64 bgt_un::minus_one bgt.un FAIL ldsfld float64 bgt_un::neg_inf ldsfld float64 bgt_un::minus_zero bgt.un FAIL ldsfld float64 bgt_un::neg_inf ldsfld float64 bgt_un::zero bgt.un FAIL ldsfld float64 bgt_un::neg_inf ldsfld float64 bgt_un::one bgt.un FAIL ldsfld float64 bgt_un::neg_inf ldsfld float64 bgt_un::max bgt.un FAIL ldsfld float64 bgt_un::neg_inf ldsfld float64 bgt_un::pos_inf bgt.un FAIL ldsfld float64 bgt_un::neg_inf ldsfld float64 bgt_un::NaN bgt.un A br FAIL A: ldsfld float64 bgt_un::min ldsfld float64 bgt_un::neg_inf bgt.un B br FAIL B: ldsfld float64 bgt_un::min ldsfld float64 bgt_un::min bgt.un FAIL ldsfld float64 bgt_un::min ldsfld float64 bgt_un::minus_one bgt.un FAIL ldsfld float64 bgt_un::min ldsfld float64 bgt_un::minus_zero bgt.un FAIL ldsfld float64 bgt_un::min ldsfld float64 bgt_un::zero bgt.un FAIL ldsfld float64 bgt_un::min ldsfld float64 bgt_un::one bgt.un FAIL ldsfld float64 bgt_un::min ldsfld float64 bgt_un::max bgt.un FAIL ldsfld float64 bgt_un::min ldsfld float64 bgt_un::pos_inf bgt.un FAIL ldsfld float64 bgt_un::min ldsfld float64 bgt_un::NaN bgt.un C br FAIL C: ldsfld float64 bgt_un::minus_one ldsfld float64 bgt_un::neg_inf bgt.un D br FAIL D: ldsfld float64 bgt_un::minus_one ldsfld float64 bgt_un::min bgt.un E br FAIL E: ldsfld float64 bgt_un::minus_one ldsfld float64 bgt_un::minus_one bgt.un FAIL ldsfld float64 bgt_un::minus_one ldsfld float64 bgt_un::minus_zero bgt.un FAIL ldsfld float64 bgt_un::minus_one ldsfld float64 bgt_un::zero bgt.un FAIL ldsfld float64 bgt_un::minus_one ldsfld float64 bgt_un::one bgt.un FAIL ldsfld float64 bgt_un::minus_one ldsfld float64 bgt_un::max bgt.un FAIL ldsfld float64 bgt_un::minus_one ldsfld float64 bgt_un::pos_inf bgt.un FAIL ldsfld float64 bgt_un::minus_one ldsfld float64 bgt_un::NaN bgt.un F br FAIL F: ldsfld float64 bgt_un::minus_zero ldsfld float64 bgt_un::neg_inf bgt.un G br FAIL G: ldsfld float64 bgt_un::minus_zero ldsfld float64 bgt_un::min bgt.un H br FAIL H: ldsfld float64 bgt_un::minus_zero ldsfld float64 bgt_un::minus_one bgt.un I br FAIL I: ldsfld float64 bgt_un::minus_zero ldsfld float64 bgt_un::minus_zero bgt.un FAIL ldsfld float64 bgt_un::minus_zero ldsfld float64 bgt_un::zero bgt.un FAIL ldsfld float64 bgt_un::minus_zero ldsfld float64 bgt_un::one bgt.un FAIL ldsfld float64 bgt_un::minus_zero ldsfld float64 bgt_un::max bgt.un FAIL ldsfld float64 bgt_un::minus_zero ldsfld float64 bgt_un::pos_inf bgt.un FAIL ldsfld float64 bgt_un::minus_zero ldsfld float64 bgt_un::NaN bgt.un J br FAIL J: ldsfld float64 bgt_un::zero ldsfld float64 bgt_un::neg_inf bgt.un K br FAIL K: ldsfld float64 bgt_un::zero ldsfld float64 bgt_un::min bgt.un L br FAIL L: ldsfld float64 bgt_un::zero ldsfld float64 bgt_un::minus_one bgt.un M br FAIL M: ldsfld float64 bgt_un::zero ldsfld float64 bgt_un::minus_zero bgt.un FAIL ldsfld float64 bgt_un::zero ldsfld float64 bgt_un::zero bgt.un FAIL ldsfld float64 bgt_un::zero ldsfld float64 bgt_un::one bgt.un FAIL ldsfld float64 bgt_un::zero ldsfld float64 bgt_un::max bgt.un FAIL ldsfld float64 bgt_un::zero ldsfld float64 bgt_un::pos_inf bgt.un FAIL ldsfld float64 bgt_un::zero ldsfld float64 bgt_un::NaN bgt.un N br FAIL N: ldsfld float64 bgt_un::one ldsfld float64 bgt_un::neg_inf bgt.un O br FAIL O: ldsfld float64 bgt_un::one ldsfld float64 bgt_un::min bgt.un P br FAIL P: ldsfld float64 bgt_un::one ldsfld float64 bgt_un::minus_one bgt.un Q br FAIL Q: ldsfld float64 bgt_un::one ldsfld float64 bgt_un::minus_zero bgt.un R br FAIL R: ldsfld float64 bgt_un::one ldsfld float64 bgt_un::zero bgt.un S br FAIL S: ldsfld float64 bgt_un::one ldsfld float64 bgt_un::one bgt.un FAIL ldsfld float64 bgt_un::one ldsfld float64 bgt_un::max bgt.un FAIL ldsfld float64 bgt_un::one ldsfld float64 bgt_un::pos_inf bgt.un FAIL ldsfld float64 bgt_un::one ldsfld float64 bgt_un::NaN bgt.un T br FAIL T: ldsfld float64 bgt_un::max ldsfld float64 bgt_un::neg_inf bgt.un U br FAIL U: ldsfld float64 bgt_un::max ldsfld float64 bgt_un::min bgt.un V br FAIL V: ldsfld float64 bgt_un::max ldsfld float64 bgt_un::minus_one bgt.un W br FAIL W: ldsfld float64 bgt_un::max ldsfld float64 bgt_un::minus_zero bgt.un X br FAIL X: ldsfld float64 bgt_un::max ldsfld float64 bgt_un::zero bgt.un Y br FAIL Y: ldsfld float64 bgt_un::max ldsfld float64 bgt_un::one bgt.un Z br FAIL Z: ldsfld float64 bgt_un::max ldsfld float64 bgt_un::max bgt.un FAIL ldsfld float64 bgt_un::max ldsfld float64 bgt_un::pos_inf bgt.un FAIL ldsfld float64 bgt_un::max ldsfld float64 bgt_un::NaN bgt.un AA br FAIL AA: ldsfld float64 bgt_un::pos_inf ldsfld float64 bgt_un::neg_inf bgt.un BB br FAIL BB: ldsfld float64 bgt_un::pos_inf ldsfld float64 bgt_un::min bgt.un CC br FAIL CC: ldsfld float64 bgt_un::pos_inf ldsfld float64 bgt_un::minus_one bgt.un DD br FAIL DD: ldsfld float64 bgt_un::pos_inf ldsfld float64 bgt_un::minus_zero bgt.un EE br FAIL EE: ldsfld float64 bgt_un::pos_inf ldsfld float64 bgt_un::zero bgt.un FF br FAIL FF: ldsfld float64 bgt_un::pos_inf ldsfld float64 bgt_un::one bgt.un GG br FAIL GG: ldsfld float64 bgt_un::pos_inf ldsfld float64 bgt_un::max bgt.un HH br FAIL HH: ldsfld float64 bgt_un::pos_inf ldsfld float64 bgt_un::pos_inf bgt.un FAIL ldsfld float64 bgt_un::pos_inf ldsfld float64 bgt_un::NaN bgt.un II br FAIL II: ldsfld float64 bgt_un::NaN ldsfld float64 bgt_un::neg_inf bgt.un JJ br FAIL JJ: ldsfld float64 bgt_un::NaN ldsfld float64 bgt_un::min bgt.un KK br FAIL KK: ldsfld float64 bgt_un::NaN ldsfld float64 bgt_un::minus_one bgt.un LL br FAIL LL: ldsfld float64 bgt_un::NaN ldsfld float64 bgt_un::minus_zero bgt.un MM br FAIL MM: ldsfld float64 bgt_un::NaN ldsfld float64 bgt_un::zero bgt.un NN br FAIL NN: ldsfld float64 bgt_un::NaN ldsfld float64 bgt_un::one bgt.un OO br FAIL OO: ldsfld float64 bgt_un::NaN ldsfld float64 bgt_un::max bgt.un PP br FAIL PP: ldsfld float64 bgt_un::NaN ldsfld float64 bgt_un::pos_inf bgt.un QQ br FAIL QQ: ldsfld float64 bgt_un::NaN ldsfld float64 bgt_un::NaN bgt.un L0 br FAIL // Testing early folding logic L0: ldc.r8 NEG_INF ldc.r8 NEG_INF bgt.un FAIL ldc.r8 NEG_INF ldc.r8 MIN bgt.un FAIL ldc.r8 NEG_INF ldc.r8 MINUS_ONE bgt.un FAIL ldc.r8 NEG_INF ldc.r8 MINUS_ZERO bgt.un FAIL ldc.r8 NEG_INF ldc.r8 ZERO bgt.un FAIL ldc.r8 NEG_INF ldc.r8 ONE bgt.un FAIL ldc.r8 NEG_INF ldc.r8 MAX bgt.un FAIL ldc.r8 NEG_INF ldc.r8 POS_INF bgt.un FAIL ldc.r8 NEG_INF ldc.r8 NAN bgt.un L1 br FAIL L1: ldc.r8 MIN ldc.r8 NEG_INF bgt.un L2 br FAIL L2: ldc.r8 MIN ldc.r8 MIN bgt.un FAIL ldc.r8 MIN ldc.r8 MINUS_ONE bgt.un FAIL ldc.r8 MIN ldc.r8 MINUS_ZERO bgt.un FAIL ldc.r8 MIN ldc.r8 ZERO bgt.un FAIL ldc.r8 MIN ldc.r8 ONE bgt.un FAIL ldc.r8 MIN ldc.r8 MAX bgt.un FAIL ldc.r8 MIN ldc.r8 POS_INF bgt.un FAIL ldc.r8 MIN ldc.r8 NAN bgt.un L3 br FAIL L3: ldc.r8 MINUS_ONE ldc.r8 NEG_INF bgt.un L4 br FAIL L4: ldc.r8 MINUS_ONE ldc.r8 MIN bgt.un L5 br FAIL L5: ldc.r8 MINUS_ONE ldc.r8 MINUS_ONE bgt.un FAIL ldc.r8 MINUS_ONE ldc.r8 MINUS_ZERO bgt.un FAIL ldc.r8 MINUS_ONE ldc.r8 ZERO bgt.un FAIL ldc.r8 MINUS_ONE ldc.r8 ONE bgt.un FAIL ldc.r8 MINUS_ONE ldc.r8 MAX bgt.un FAIL ldc.r8 MINUS_ONE ldc.r8 POS_INF bgt.un FAIL ldc.r8 MINUS_ONE ldc.r8 NAN bgt.un L6 br FAIL L6: ldc.r8 MINUS_ZERO ldc.r8 NEG_INF bgt.un L7 br FAIL L7: ldc.r8 MINUS_ZERO ldc.r8 MIN bgt.un L8 br FAIL L8: ldc.r8 MINUS_ZERO ldc.r8 MINUS_ONE bgt.un L9 br FAIL L9: ldc.r8 MINUS_ZERO ldc.r8 MINUS_ZERO bgt.un FAIL ldc.r8 MINUS_ZERO ldc.r8 ZERO bgt.un FAIL ldc.r8 MINUS_ZERO ldc.r8 ONE bgt.un FAIL ldc.r8 MINUS_ZERO ldc.r8 MAX bgt.un FAIL ldc.r8 MINUS_ZERO ldc.r8 POS_INF bgt.un FAIL ldc.r8 MINUS_ZERO ldc.r8 NAN bgt.un L10 br FAIL L10: ldc.r8 ZERO ldc.r8 NEG_INF bgt.un L11 br FAIL L11: ldc.r8 ZERO ldc.r8 MIN bgt.un L12 br FAIL L12: ldc.r8 ZERO ldc.r8 MINUS_ONE bgt.un L13 br FAIL L13: ldc.r8 ZERO ldc.r8 MINUS_ZERO bgt.un FAIL ldc.r8 ZERO ldc.r8 ZERO bgt.un FAIL ldc.r8 ZERO ldc.r8 ONE bgt.un FAIL ldc.r8 ZERO ldc.r8 MAX bgt.un FAIL ldc.r8 ZERO ldc.r8 POS_INF bgt.un FAIL ldc.r8 ZERO ldc.r8 NAN bgt.un L14 br FAIL L14: ldc.r8 ONE ldc.r8 NEG_INF bgt.un L15 br FAIL L15: ldc.r8 ONE ldc.r8 MIN bgt.un L16 br FAIL L16: ldc.r8 ONE ldc.r8 MINUS_ONE bgt.un L17 br FAIL L17: ldc.r8 ONE ldc.r8 MINUS_ZERO bgt.un L18 br FAIL L18: ldc.r8 ONE ldc.r8 ZERO bgt.un L19 br FAIL L19: ldc.r8 ONE ldc.r8 ONE bgt.un FAIL ldc.r8 ONE ldc.r8 MAX bgt.un FAIL ldc.r8 ONE ldc.r8 POS_INF bgt.un FAIL ldc.r8 ONE ldc.r8 NAN bgt.un L20 br FAIL L20: ldc.r8 MAX ldc.r8 NEG_INF bgt.un L21 br FAIL L21: ldc.r8 MAX ldc.r8 MIN bgt.un L22 br FAIL L22: ldc.r8 MAX ldc.r8 MINUS_ONE bgt.un L23 br FAIL L23: ldc.r8 MAX ldc.r8 MINUS_ZERO bgt.un L24 br FAIL L24: ldc.r8 MAX ldc.r8 ZERO bgt.un L25 br FAIL L25: ldc.r8 MAX ldc.r8 ONE bgt.un L26 br FAIL L26: ldc.r8 MAX ldc.r8 MAX bgt.un FAIL ldc.r8 MAX ldc.r8 POS_INF bgt.un FAIL ldc.r8 MAX ldc.r8 NAN bgt.un L27 br FAIL L27: ldc.r8 POS_INF ldc.r8 NEG_INF bgt.un L28 br FAIL L28: ldc.r8 POS_INF ldc.r8 MIN bgt.un L29 br FAIL L29: ldc.r8 POS_INF ldc.r8 MINUS_ONE bgt.un L30 br FAIL L30: ldc.r8 POS_INF ldc.r8 MINUS_ZERO bgt.un L31 br FAIL L31: ldc.r8 POS_INF ldc.r8 ZERO bgt.un L32 br FAIL L32: ldc.r8 POS_INF ldc.r8 ONE bgt.un L33 br FAIL L33: ldc.r8 POS_INF ldc.r8 MAX bgt.un L34 br FAIL L34: ldc.r8 POS_INF ldc.r8 POS_INF bgt.un FAIL ldc.r8 POS_INF ldc.r8 NAN bgt.un L35 br FAIL L35: ldc.r8 NAN ldc.r8 NEG_INF bgt.un L36 br FAIL L36: ldc.r8 NAN ldc.r8 MIN bgt.un L37 br FAIL L37: ldc.r8 NAN ldc.r8 MINUS_ONE bgt.un L38 br FAIL L38: ldc.r8 NAN ldc.r8 MINUS_ZERO bgt.un L39 br FAIL L39: ldc.r8 NAN ldc.r8 ZERO bgt.un L40 br FAIL L40: ldc.r8 NAN ldc.r8 ONE bgt.un L41 br FAIL L41: ldc.r8 NAN ldc.r8 MAX bgt.un L42 br FAIL L42: ldc.r8 NAN ldc.r8 POS_INF bgt.un L43 br FAIL L43: ldc.r8 NAN ldc.r8 NAN bgt.un BACKCHECK br FAIL TOPASS: br PASS BACKCHECK: ldc.r8 0x1 ldc.r8 0x0 bgt.un TOPASS br FAIL PASS: ldc.i4 100 ret FAIL: ldc.i4 0x0 ret } } .assembly bgt_un_r8{}
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/IL_Conformance/Old/Conformance_Base/ret.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib {} .assembly 'ret'{} .class public _ret { .method public static void ret_test() { .maxstack 0 ret } .method public void _ret() { .maxstack 0 ret } .method public static int32 main(class [mscorlib]System.String[]) { .entrypoint .maxstack 5 ldc.i4 0xFEFE call void _ret::ret_test() call void _ret::ret_test() call void _ret::ret_test() call void _ret::ret_test() call void _ret::ret_test() call void _ret::ret_test() call void _ret::ret_test() ldc.i4 0xFEFE ceq brfalse FAIL PASS: ldc.i4 100 br END FAIL: ldc.i4 0x00000000 END: ret } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib {} .assembly 'ret'{} .class public _ret { .method public static void ret_test() { .maxstack 0 ret } .method public void _ret() { .maxstack 0 ret } .method public static int32 main(class [mscorlib]System.String[]) { .entrypoint .maxstack 5 ldc.i4 0xFEFE call void _ret::ret_test() call void _ret::ret_test() call void _ret::ret_test() call void _ret::ret_test() call void _ret::ret_test() call void _ret::ret_test() call void _ret::ret_test() ldc.i4 0xFEFE ceq brfalse FAIL PASS: ldc.i4 100 br END FAIL: ldc.i4 0x00000000 END: ret } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/Regression/CLR-x86-JIT/V1-M10/b04639/b04639.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly b04639 { } .class _simple { .method static int32 main(class System.String[]) { .entrypoint .maxstack 100 .locals (int32, int32, int32, int32) ldc.i4 1 ldc.i4 1 ldc.i4 1 ldc.i4 1 stloc.0 stloc.1 stloc.2 stloc.3 ldc.i4 45 ldc.i4 34001 ldloc.3 conv.u8 ldloc.2 conv.i8 add ldloc.0 ldc.i4.s 9 stloc.0 conv.u1 ldloc.3 stloc.2 conv.u8 add ldc.i8 0xb8231398c4fc06c ldc.i8 0x46dda8c4674e147f ldc.i8 14002 conv.i8 add conv.i8 add ldc.r8 3.400000e+001 conv.r4 ldc.r4 1.650000e+002 add conv.i8 add add conv.u1 add conv.u2 stloc.0 ldc.i4 45 sub ldc.i4 100 add ret } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly b04639 { } .class _simple { .method static int32 main(class System.String[]) { .entrypoint .maxstack 100 .locals (int32, int32, int32, int32) ldc.i4 1 ldc.i4 1 ldc.i4 1 ldc.i4 1 stloc.0 stloc.1 stloc.2 stloc.3 ldc.i4 45 ldc.i4 34001 ldloc.3 conv.u8 ldloc.2 conv.i8 add ldloc.0 ldc.i4.s 9 stloc.0 conv.u1 ldloc.3 stloc.2 conv.u8 add ldc.i8 0xb8231398c4fc06c ldc.i8 0x46dda8c4674e147f ldc.i8 14002 conv.i8 add conv.i8 add ldc.r8 3.400000e+001 conv.r4 ldc.r4 1.650000e+002 add conv.i8 add add conv.u1 add conv.u2 stloc.0 ldc.i4 45 sub ldc.i4 100 add ret } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b41149/b41149.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly 'b41149' {} .assembly extern xunit.core {} .class ILGEN_0x243bc9d5 { .method static int32 Method_0xab68837a(unsigned int64 Arg_0x1) { .maxstack 13 .locals (int64 local_0x0) ldc.i4 55 ldc.i4 0x9 ble Branch_0x0 ldc.i4.4 ldc.i4.3 bne.un Branch_0x8 ldc.i4.4 br Branch_0x9 Branch_0x8: ldc.i4.7 Branch_0x9: conv.ovf.u2 br Branch_0x1 Branch_0x0: ldc.i4 0x7 Branch_0x1: Start_Orphan_3: ldarg Arg_0x1 stloc local_0x0 End_Orphan_3: ret } .method static int32 Main() { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 20 ldc.i8 0x432d7dff7e4e94b56adbd9362d85e958 call int32 ILGEN_0x243bc9d5::Method_0xab68837a(unsigned int64 Arg_0x1) ldc.i4.7 sub ldc.i4 100 add ret } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly 'b41149' {} .assembly extern xunit.core {} .class ILGEN_0x243bc9d5 { .method static int32 Method_0xab68837a(unsigned int64 Arg_0x1) { .maxstack 13 .locals (int64 local_0x0) ldc.i4 55 ldc.i4 0x9 ble Branch_0x0 ldc.i4.4 ldc.i4.3 bne.un Branch_0x8 ldc.i4.4 br Branch_0x9 Branch_0x8: ldc.i4.7 Branch_0x9: conv.ovf.u2 br Branch_0x1 Branch_0x0: ldc.i4 0x7 Branch_0x1: Start_Orphan_3: ldarg Arg_0x1 stloc local_0x0 End_Orphan_3: ret } .method static int32 Main() { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 20 ldc.i8 0x432d7dff7e4e94b56adbd9362d85e958 call int32 ILGEN_0x243bc9d5::Method_0xab68837a(unsigned int64 Arg_0x1) ldc.i4.7 sub ldc.i4 100 add ret } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/Methodical/VT/identity/volatile.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { } .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly 'volatile' // // as "bug" { } .assembly extern xunit.core {} // MVID: {A29CDE84-6701-43B3-B56A-DE8480CE7421} .namespace JitTest { .class value private auto ansi sealed VT extends [mscorlib]System.ValueType { .field public int32 m_n .method private hidebysig static int32 Main() il managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 8 .locals (value class JitTest.VT src, value class JitTest.VT dst) ldloca src initobj JitTest.VT ldloc src ldloca src ldc.i4 1000 stfld int32 JitTest.VT::m_n stloc dst ldloca dst ldfld int32 JitTest.VT::m_n dup call void [System.Console]System.Console::WriteLine(int32) ldc.i4 100 add ret } // end of method VT::Main } // end of class VT } // end of namespace JitTest //*********** DISASSEMBLY COMPLETE ***********************
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { } .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly 'volatile' // // as "bug" { } .assembly extern xunit.core {} // MVID: {A29CDE84-6701-43B3-B56A-DE8480CE7421} .namespace JitTest { .class value private auto ansi sealed VT extends [mscorlib]System.ValueType { .field public int32 m_n .method private hidebysig static int32 Main() il managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 8 .locals (value class JitTest.VT src, value class JitTest.VT dst) ldloca src initobj JitTest.VT ldloc src ldloca src ldc.i4 1000 stfld int32 JitTest.VT::m_n stloc dst ldloca dst ldfld int32 JitTest.VT::m_n dup call void [System.Console]System.Console::WriteLine(int32) ldc.i4 100 add ret } // end of method VT::Main } // end of class VT } // end of namespace JitTest //*********** DISASSEMBLY COMPLETE ***********************
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest917/Generated917.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 } .assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) } //TYPES IN FORWARDER ASSEMBLIES: //TEST ASSEMBLY: .assembly Generated917 { .hash algorithm 0x00008004 } .assembly extern xunit.core {} .class public BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class public BaseClass1 extends BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void BaseClass0::.ctor() ret } } .class public G3_C1389`1<T0> extends class G2_C417`2<!T0,!T0> { .method public hidebysig newslot virtual instance string ClassMethod4171() cil managed noinlining { ldstr "G3_C1389::ClassMethod4171.15923()" ret } .method public hidebysig newslot virtual instance string ClassMethod4172() cil managed noinlining { ldstr "G3_C1389::ClassMethod4172.15924()" ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G2_C417`2<!T0,!T0>::.ctor() ret } } .class public abstract G2_C417`2<T0, T1> extends class G1_C8`2<class BaseClass0,!T1> implements class IBase2`2<!T0,!T1>, class IBase1`1<!T0> { .method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining { ldstr "G2_C417::Method7.8737<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<T0,T1>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<!T0,!T1>::Method7<[1]>() ldstr "G2_C417::Method7.MI.8738<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string Method4() cil managed noinlining { ldstr "G2_C417::Method4.8739()" ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method4'() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method4() ldstr "G2_C417::Method4.MI.8740()" ret } .method public hidebysig virtual instance string Method5() cil managed noinlining { ldstr "G2_C417::Method5.8741()" ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method5'() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method5() ldstr "G2_C417::Method5.MI.8742()" ret } .method public hidebysig virtual instance string Method6<M0>() cil managed noinlining { ldstr "G2_C417::Method6.8743<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'G1_C8<class BaseClass0,T1>.ClassMethod1333'() cil managed noinlining { .override method instance string class G1_C8`2<class BaseClass0,!T1>::ClassMethod1333() ldstr "G2_C417::ClassMethod1333.MI.8744()" ret } .method public hidebysig newslot virtual instance string 'G1_C8<class BaseClass0,T1>.ClassMethod1335'<M0>() cil managed noinlining { .override method instance string class G1_C8`2<class BaseClass0,!T1>::ClassMethod1335<[1]>() ldstr "G2_C417::ClassMethod1335.MI.8745<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G1_C8`2<class BaseClass0,!T1>::.ctor() ret } } .class public G1_C8`2<T0, T1> implements class IBase2`2<!T0,!T1>, IBase0 { .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G1_C8::Method7.4821<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<T0,T1>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<!T0,!T1>::Method7<[1]>() ldstr "G1_C8::Method7.MI.4822<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string Method0() cil managed noinlining { ldstr "G1_C8::Method0.4823()" ret } .method public hidebysig newslot virtual instance string 'IBase0.Method0'() cil managed noinlining { .override method instance string IBase0::Method0() ldstr "G1_C8::Method0.MI.4824()" ret } .method public hidebysig virtual instance string Method1() cil managed noinlining { ldstr "G1_C8::Method1.4825()" ret } .method public hidebysig newslot virtual instance string Method2<M0>() cil managed noinlining { ldstr "G1_C8::Method2.4826<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase0.Method2'<M0>() cil managed noinlining { .override method instance string IBase0::Method2<[1]>() ldstr "G1_C8::Method2.MI.4827<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string Method3<M0>() cil managed noinlining { ldstr "G1_C8::Method3.4828<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1332() cil managed noinlining { ldstr "G1_C8::ClassMethod1332.4829()" ret } .method public hidebysig newslot virtual instance string ClassMethod1333() cil managed noinlining { ldstr "G1_C8::ClassMethod1333.4830()" ret } .method public hidebysig newslot virtual instance string ClassMethod1334<M0>() cil managed noinlining { ldstr "G1_C8::ClassMethod1334.4831<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1335<M0>() cil managed noinlining { ldstr "G1_C8::ClassMethod1335.4832<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class interface public abstract IBase2`2<+T0, -T1> { .method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { } } .class interface public abstract IBase1`1<+T0> { .method public hidebysig newslot abstract virtual instance string Method4() cil managed { } .method public hidebysig newslot abstract virtual instance string Method5() cil managed { } .method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { } } .class interface public abstract IBase0 { .method public hidebysig newslot abstract virtual instance string Method0() cil managed { } .method public hidebysig newslot abstract virtual instance string Method1() cil managed { } .method public hidebysig newslot abstract virtual instance string Method2<M0>() cil managed { } .method public hidebysig newslot abstract virtual instance string Method3<M0>() cil managed { } } .class public auto ansi beforefieldinit Generated917 { .method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1389.T<T0,(class G3_C1389`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 19 .locals init (string[] actualResults) ldc.i4.s 14 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1389.T<T0,(class G3_C1389`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 14 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::ClassMethod4171() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::ClassMethod4172() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1389.A<(class G3_C1389`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 19 .locals init (string[] actualResults) ldc.i4.s 14 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1389.A<(class G3_C1389`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 14 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod4171() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod4172() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1389.B<(class G3_C1389`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 19 .locals init (string[] actualResults) ldc.i4.s 14 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1389.B<(class G3_C1389`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 14 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod4171() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod4172() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C417.T.T<T0,T1,(class G2_C417`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C417.T.T<T0,T1,(class G2_C417`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C417.A.T<T1,(class G2_C417`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C417.A.T<T1,(class G2_C417`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C417.A.A<(class G2_C417`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C417.A.A<(class G2_C417`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C417.A.B<(class G2_C417`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C417.A.B<(class G2_C417`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C417.B.T<T1,(class G2_C417`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C417.B.T<T1,(class G2_C417`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C417.B.A<(class G2_C417`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C417.B.A<(class G2_C417`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C417.B.B<(class G2_C417`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C417.B.B<(class G2_C417`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C8.T.T<T0,T1,(class G1_C8`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C8.T.T<T0,T1,(class G1_C8`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<!!T0,!!T1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<!!T0,!!T1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<!!T0,!!T1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<!!T0,!!T1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<!!T0,!!T1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<!!T0,!!T1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<!!T0,!!T1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<!!T0,!!T1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C8.A.T<T1,(class G1_C8`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C8.A.T<T1,(class G1_C8`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C8.A.A<(class G1_C8`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C8.A.A<(class G1_C8`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C8.A.B<(class G1_C8`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C8.A.B<(class G1_C8`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C8.B.T<T1,(class G1_C8`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C8.B.T<T1,(class G1_C8`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C8.B.A<(class G1_C8`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C8.B.A<(class G1_C8`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C8.B.B<(class G1_C8`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C8.B.B<(class G1_C8`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase0<(IBase0)W>(!!W inst, string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase0<(IBase0)W>(!!W inst, string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method3<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method public hidebysig static void MethodCallingTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calling Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1389`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>() ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>() ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1333() ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1332() ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method2<object>() ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method1() ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method0() ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C417::Method7.MI.8738<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string IBase0::Method0() ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method1() ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method2<object>() ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C417::Method7.MI.8738<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C417::Method5.8741()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G2_C417::Method4.8739()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C417::Method7.8737<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>() ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>() ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1333() ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1332() ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method2<object>() ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method1() ldstr "G1_C8::Method1.4825()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method0() ldstr "G1_C8::Method0.4823()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C417::Method4.MI.8740()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C417::Method5.MI.8742()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod4172() ldstr "G3_C1389::ClassMethod4172.15924()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod4171() ldstr "G3_C1389::ClassMethod4171.15923()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::Method6<object>() ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::Method5() ldstr "G2_C417::Method5.8741()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::Method4() ldstr "G2_C417::Method4.8739()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::Method7<object>() ldstr "G2_C417::Method7.8737<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod1335<object>() ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod1334<object>() ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod1333() ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod1332() ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::Method2<object>() ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::Method1() ldstr "G1_C8::Method1.4825()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::Method0() ldstr "G1_C8::Method0.4823()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G3_C1389`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>() ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>() ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1333() ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1332() ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method2<object>() ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method1() ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method0() ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C417::Method7.MI.8738<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string IBase0::Method0() ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method1() ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method2<object>() ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G2_C417::Method5.8741()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G2_C417::Method4.8739()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C417::Method7.8737<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>() ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>() ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1333() ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1332() ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method2<object>() ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method1() ldstr "G1_C8::Method1.4825()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method0() ldstr "G1_C8::Method0.4823()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C417::Method7.MI.8738<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C417::Method4.MI.8740()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C417::Method5.MI.8742()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C417::Method4.MI.8740()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C417::Method5.MI.8742()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod4172() ldstr "G3_C1389::ClassMethod4172.15924()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod4171() ldstr "G3_C1389::ClassMethod4171.15923()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::Method6<object>() ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::Method5() ldstr "G2_C417::Method5.8741()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::Method4() ldstr "G2_C417::Method4.8739()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::Method7<object>() ldstr "G2_C417::Method7.8737<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod1335<object>() ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod1334<object>() ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod1333() ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod1332() ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::Method2<object>() ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::Method1() ldstr "G1_C8::Method1.4825()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::Method0() ldstr "G1_C8::Method0.4823()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C8`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>() ldstr "G1_C8::ClassMethod1335.4832<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>() ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1333() ldstr "G1_C8::ClassMethod1333.4830()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1332() ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method2<object>() ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method1() ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method0() ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string IBase0::Method0() ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method1() ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method2<object>() ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C8`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>() ldstr "G1_C8::ClassMethod1335.4832<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>() ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1333() ldstr "G1_C8::ClassMethod1333.4830()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1332() ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method2<object>() ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method1() ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method0() ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string IBase0::Method0() ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method1() ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method2<object>() ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C8`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C8`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>() ldstr "G1_C8::ClassMethod1335.4832<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>() ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1333() ldstr "G1_C8::ClassMethod1333.4830()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1332() ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method2<object>() ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method1() ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method0() ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string IBase0::Method0() ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method1() ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method2<object>() ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C8`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C8`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>() ldstr "G1_C8::ClassMethod1335.4832<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>() ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333() ldstr "G1_C8::ClassMethod1333.4830()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332() ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>() ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1() ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0() ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string IBase0::Method0() ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method1() ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method2<object>() ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void ConstrainedCallsTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Constrained Calls Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1389`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.T.T<class BaseClass0,class BaseClass0,class G3_C1389`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.A.T<class BaseClass0,class G3_C1389`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.A.A<class G3_C1389`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1389`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.A.T<class BaseClass0,class G3_C1389`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.A.A<class G3_C1389`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#" call void Generated917::M.IBase0<class G3_C1389`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1389`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.A.T<class BaseClass1,class G3_C1389`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.A.B<class G3_C1389`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C417::Method4.8739()#G2_C417::Method5.8741()#G2_C417::Method6.8743<System.Object>()#G2_C417::Method7.8737<System.Object>()#" call void Generated917::M.G2_C417.T.T<class BaseClass0,class BaseClass0,class G3_C1389`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C417::Method4.8739()#G2_C417::Method5.8741()#G2_C417::Method6.8743<System.Object>()#G2_C417::Method7.8737<System.Object>()#" call void Generated917::M.G2_C417.A.T<class BaseClass0,class G3_C1389`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C417::Method4.8739()#G2_C417::Method5.8741()#G2_C417::Method6.8743<System.Object>()#G2_C417::Method7.8737<System.Object>()#" call void Generated917::M.G2_C417.A.A<class G3_C1389`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C417::Method4.MI.8740()#G2_C417::Method5.MI.8742()#G2_C417::Method6.8743<System.Object>()#" call void Generated917::M.IBase1.T<class BaseClass0,class G3_C1389`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C417::Method4.MI.8740()#G2_C417::Method5.MI.8742()#G2_C417::Method6.8743<System.Object>()#" call void Generated917::M.IBase1.A<class G3_C1389`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G3_C1389::ClassMethod4171.15923()#G3_C1389::ClassMethod4172.15924()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C417::Method4.8739()#G2_C417::Method5.8741()#G2_C417::Method6.8743<System.Object>()#G2_C417::Method7.8737<System.Object>()#" call void Generated917::M.G3_C1389.T<class BaseClass0,class G3_C1389`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G3_C1389::ClassMethod4171.15923()#G3_C1389::ClassMethod4172.15924()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C417::Method4.8739()#G2_C417::Method5.8741()#G2_C417::Method6.8743<System.Object>()#G2_C417::Method7.8737<System.Object>()#" call void Generated917::M.G3_C1389.A<class G3_C1389`1<class BaseClass0>>(!!0,string) newobj instance void class G3_C1389`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.T.T<class BaseClass0,class BaseClass1,class G3_C1389`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.A.T<class BaseClass1,class G3_C1389`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.A.B<class G3_C1389`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1389`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.A.T<class BaseClass1,class G3_C1389`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.A.B<class G3_C1389`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#" call void Generated917::M.IBase0<class G3_C1389`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C417::Method4.8739()#G2_C417::Method5.8741()#G2_C417::Method6.8743<System.Object>()#G2_C417::Method7.8737<System.Object>()#" call void Generated917::M.G2_C417.T.T<class BaseClass1,class BaseClass1,class G3_C1389`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C417::Method4.8739()#G2_C417::Method5.8741()#G2_C417::Method6.8743<System.Object>()#G2_C417::Method7.8737<System.Object>()#" call void Generated917::M.G2_C417.B.T<class BaseClass1,class G3_C1389`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C417::Method4.8739()#G2_C417::Method5.8741()#G2_C417::Method6.8743<System.Object>()#G2_C417::Method7.8737<System.Object>()#" call void Generated917::M.G2_C417.B.B<class G3_C1389`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1389`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.B.T<class BaseClass1,class G3_C1389`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.B.B<class G3_C1389`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C417::Method4.MI.8740()#G2_C417::Method5.MI.8742()#G2_C417::Method6.8743<System.Object>()#" call void Generated917::M.IBase1.T<class BaseClass1,class G3_C1389`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C417::Method4.MI.8740()#G2_C417::Method5.MI.8742()#G2_C417::Method6.8743<System.Object>()#" call void Generated917::M.IBase1.B<class G3_C1389`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C417::Method4.MI.8740()#G2_C417::Method5.MI.8742()#G2_C417::Method6.8743<System.Object>()#" call void Generated917::M.IBase1.T<class BaseClass0,class G3_C1389`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C417::Method4.MI.8740()#G2_C417::Method5.MI.8742()#G2_C417::Method6.8743<System.Object>()#" call void Generated917::M.IBase1.A<class G3_C1389`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G3_C1389::ClassMethod4171.15923()#G3_C1389::ClassMethod4172.15924()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C417::Method4.8739()#G2_C417::Method5.8741()#G2_C417::Method6.8743<System.Object>()#G2_C417::Method7.8737<System.Object>()#" call void Generated917::M.G3_C1389.T<class BaseClass1,class G3_C1389`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G3_C1389::ClassMethod4171.15923()#G3_C1389::ClassMethod4172.15924()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C417::Method4.8739()#G2_C417::Method5.8741()#G2_C417::Method6.8743<System.Object>()#G2_C417::Method7.8737<System.Object>()#" call void Generated917::M.G3_C1389.B<class G3_C1389`1<class BaseClass1>>(!!0,string) newobj instance void class G1_C8`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.T.T<class BaseClass0,class BaseClass0,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.A.T<class BaseClass0,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.A.A<class G1_C8`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.T<class BaseClass0,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.A<class G1_C8`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#" call void Generated917::M.IBase0<class G1_C8`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.T<class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.B<class G1_C8`2<class BaseClass0,class BaseClass0>>(!!0,string) newobj instance void class G1_C8`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.T.T<class BaseClass0,class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.A.T<class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.A.B<class G1_C8`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.T<class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.B<class G1_C8`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#" call void Generated917::M.IBase0<class G1_C8`2<class BaseClass0,class BaseClass1>>(!!0,string) newobj instance void class G1_C8`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.T.T<class BaseClass1,class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.B.T<class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.B.A<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.B.T<class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.B.A<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#" call void Generated917::M.IBase0<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.T<class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.A<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.T<class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.B<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.B.T<class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.B.B<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string) newobj instance void class G1_C8`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.T.T<class BaseClass1,class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.B.T<class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.B.B<class G1_C8`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.B.T<class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.B.B<class G1_C8`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#" call void Generated917::M.IBase0<class G1_C8`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.T<class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.B<class G1_C8`2<class BaseClass1,class BaseClass1>>(!!0,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed { .maxstack 10 ldstr "===================== Struct Constrained Interface Calls Test =====================" call void [mscorlib]System.Console::WriteLine(string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void CalliTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calli Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1389`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1333() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1332() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method3<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method2<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method1() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method0() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method7.MI.8738<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method0() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method1() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method2<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method3<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method7.MI.8738<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method5.8741()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method4.8739()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method7.8737<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1333() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1332() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method3<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method2<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method1() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method1.4825()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method0() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method0.4823()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method4.MI.8740()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method5.MI.8742()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::ClassMethod4172() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G3_C1389::ClassMethod4172.15924()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::ClassMethod4171() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G3_C1389::ClassMethod4171.15923()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::Method5() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method5.8741()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::Method4() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method4.8739()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::Method7<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method7.8737<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::ClassMethod1335<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::ClassMethod1334<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::ClassMethod1333() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::ClassMethod1332() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::Method3<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::Method2<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::Method1() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method1.4825()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::Method0() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method0.4823()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G3_C1389`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1333() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1332() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method3<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method2<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method1() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method0() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method7.MI.8738<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method0() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method1() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method2<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method3<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method5.8741()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method4.8739()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method7.8737<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1333() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1332() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method3<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method2<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method1() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method1.4825()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method0() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method0.4823()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method7.MI.8738<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method4.MI.8740()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method5.MI.8742()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method4.MI.8740()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method5.MI.8742()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::ClassMethod4172() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G3_C1389::ClassMethod4172.15924()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::ClassMethod4171() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G3_C1389::ClassMethod4171.15923()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::Method5() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method5.8741()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::Method4() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method4.8739()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::Method7<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method7.8737<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::ClassMethod1335<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::ClassMethod1334<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::ClassMethod1333() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::ClassMethod1332() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::Method3<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::Method2<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::Method1() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method1.4825()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::Method0() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method0.4823()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C8`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::ClassMethod1335.4832<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1333() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::ClassMethod1333.4830()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1332() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method3<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method2<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method1() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method0() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method0() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method1() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method2<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method3<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C8`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::ClassMethod1335.4832<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1333() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::ClassMethod1333.4830()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1332() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method3<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method2<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method1() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method0() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method0() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method1() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method2<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method3<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C8`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::ClassMethod1335.4832<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1333() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::ClassMethod1333.4830()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1332() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method3<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method2<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method1() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method0() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method0() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method1() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method2<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method3<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C8`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::ClassMethod1335.4832<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::ClassMethod1333.4830()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method0() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method1() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method2<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method3<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 10 call void Generated917::MethodCallingTest() call void Generated917::ConstrainedCallsTest() call void Generated917::StructConstrainedInterfaceCallsTest() call void Generated917::CalliTest() ldc.i4 100 ret } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 } .assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) } //TYPES IN FORWARDER ASSEMBLIES: //TEST ASSEMBLY: .assembly Generated917 { .hash algorithm 0x00008004 } .assembly extern xunit.core {} .class public BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class public BaseClass1 extends BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void BaseClass0::.ctor() ret } } .class public G3_C1389`1<T0> extends class G2_C417`2<!T0,!T0> { .method public hidebysig newslot virtual instance string ClassMethod4171() cil managed noinlining { ldstr "G3_C1389::ClassMethod4171.15923()" ret } .method public hidebysig newslot virtual instance string ClassMethod4172() cil managed noinlining { ldstr "G3_C1389::ClassMethod4172.15924()" ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G2_C417`2<!T0,!T0>::.ctor() ret } } .class public abstract G2_C417`2<T0, T1> extends class G1_C8`2<class BaseClass0,!T1> implements class IBase2`2<!T0,!T1>, class IBase1`1<!T0> { .method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining { ldstr "G2_C417::Method7.8737<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<T0,T1>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<!T0,!T1>::Method7<[1]>() ldstr "G2_C417::Method7.MI.8738<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string Method4() cil managed noinlining { ldstr "G2_C417::Method4.8739()" ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method4'() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method4() ldstr "G2_C417::Method4.MI.8740()" ret } .method public hidebysig virtual instance string Method5() cil managed noinlining { ldstr "G2_C417::Method5.8741()" ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method5'() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method5() ldstr "G2_C417::Method5.MI.8742()" ret } .method public hidebysig virtual instance string Method6<M0>() cil managed noinlining { ldstr "G2_C417::Method6.8743<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'G1_C8<class BaseClass0,T1>.ClassMethod1333'() cil managed noinlining { .override method instance string class G1_C8`2<class BaseClass0,!T1>::ClassMethod1333() ldstr "G2_C417::ClassMethod1333.MI.8744()" ret } .method public hidebysig newslot virtual instance string 'G1_C8<class BaseClass0,T1>.ClassMethod1335'<M0>() cil managed noinlining { .override method instance string class G1_C8`2<class BaseClass0,!T1>::ClassMethod1335<[1]>() ldstr "G2_C417::ClassMethod1335.MI.8745<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G1_C8`2<class BaseClass0,!T1>::.ctor() ret } } .class public G1_C8`2<T0, T1> implements class IBase2`2<!T0,!T1>, IBase0 { .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G1_C8::Method7.4821<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<T0,T1>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<!T0,!T1>::Method7<[1]>() ldstr "G1_C8::Method7.MI.4822<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string Method0() cil managed noinlining { ldstr "G1_C8::Method0.4823()" ret } .method public hidebysig newslot virtual instance string 'IBase0.Method0'() cil managed noinlining { .override method instance string IBase0::Method0() ldstr "G1_C8::Method0.MI.4824()" ret } .method public hidebysig virtual instance string Method1() cil managed noinlining { ldstr "G1_C8::Method1.4825()" ret } .method public hidebysig newslot virtual instance string Method2<M0>() cil managed noinlining { ldstr "G1_C8::Method2.4826<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase0.Method2'<M0>() cil managed noinlining { .override method instance string IBase0::Method2<[1]>() ldstr "G1_C8::Method2.MI.4827<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string Method3<M0>() cil managed noinlining { ldstr "G1_C8::Method3.4828<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1332() cil managed noinlining { ldstr "G1_C8::ClassMethod1332.4829()" ret } .method public hidebysig newslot virtual instance string ClassMethod1333() cil managed noinlining { ldstr "G1_C8::ClassMethod1333.4830()" ret } .method public hidebysig newslot virtual instance string ClassMethod1334<M0>() cil managed noinlining { ldstr "G1_C8::ClassMethod1334.4831<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1335<M0>() cil managed noinlining { ldstr "G1_C8::ClassMethod1335.4832<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class interface public abstract IBase2`2<+T0, -T1> { .method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { } } .class interface public abstract IBase1`1<+T0> { .method public hidebysig newslot abstract virtual instance string Method4() cil managed { } .method public hidebysig newslot abstract virtual instance string Method5() cil managed { } .method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { } } .class interface public abstract IBase0 { .method public hidebysig newslot abstract virtual instance string Method0() cil managed { } .method public hidebysig newslot abstract virtual instance string Method1() cil managed { } .method public hidebysig newslot abstract virtual instance string Method2<M0>() cil managed { } .method public hidebysig newslot abstract virtual instance string Method3<M0>() cil managed { } } .class public auto ansi beforefieldinit Generated917 { .method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1389.T<T0,(class G3_C1389`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 19 .locals init (string[] actualResults) ldc.i4.s 14 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1389.T<T0,(class G3_C1389`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 14 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::ClassMethod4171() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::ClassMethod4172() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<!!T0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1389.A<(class G3_C1389`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 19 .locals init (string[] actualResults) ldc.i4.s 14 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1389.A<(class G3_C1389`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 14 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod4171() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod4172() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1389.B<(class G3_C1389`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 19 .locals init (string[] actualResults) ldc.i4.s 14 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1389.B<(class G3_C1389`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 14 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod4171() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod4172() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1389`1<class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C417.T.T<T0,T1,(class G2_C417`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C417.T.T<T0,T1,(class G2_C417`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C417.A.T<T1,(class G2_C417`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C417.A.T<T1,(class G2_C417`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C417.A.A<(class G2_C417`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C417.A.A<(class G2_C417`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C417.A.B<(class G2_C417`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C417.A.B<(class G2_C417`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C417.B.T<T1,(class G2_C417`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C417.B.T<T1,(class G2_C417`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C417.B.A<(class G2_C417`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C417.B.A<(class G2_C417`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C417.B.B<(class G2_C417`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C417.B.B<(class G2_C417`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C8.T.T<T0,T1,(class G1_C8`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C8.T.T<T0,T1,(class G1_C8`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<!!T0,!!T1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<!!T0,!!T1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<!!T0,!!T1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<!!T0,!!T1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<!!T0,!!T1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<!!T0,!!T1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<!!T0,!!T1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<!!T0,!!T1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C8.A.T<T1,(class G1_C8`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C8.A.T<T1,(class G1_C8`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C8.A.A<(class G1_C8`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C8.A.A<(class G1_C8`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C8.A.B<(class G1_C8`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C8.A.B<(class G1_C8`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C8.B.T<T1,(class G1_C8`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C8.B.T<T1,(class G1_C8`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C8.B.A<(class G1_C8`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C8.B.A<(class G1_C8`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C8.B.B<(class G1_C8`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C8.B.B<(class G1_C8`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase0<(IBase0)W>(!!W inst, string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase0<(IBase0)W>(!!W inst, string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method3<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method public hidebysig static void MethodCallingTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calling Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1389`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>() ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>() ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1333() ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1332() ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method2<object>() ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method1() ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method0() ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C417::Method7.MI.8738<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string IBase0::Method0() ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method1() ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method2<object>() ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C417::Method7.MI.8738<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C417::Method5.8741()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G2_C417::Method4.8739()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C417::Method7.8737<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>() ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>() ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1333() ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1332() ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method2<object>() ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method1() ldstr "G1_C8::Method1.4825()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method0() ldstr "G1_C8::Method0.4823()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C417::Method4.MI.8740()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C417::Method5.MI.8742()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod4172() ldstr "G3_C1389::ClassMethod4172.15924()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod4171() ldstr "G3_C1389::ClassMethod4171.15923()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::Method6<object>() ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::Method5() ldstr "G2_C417::Method5.8741()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::Method4() ldstr "G2_C417::Method4.8739()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::Method7<object>() ldstr "G2_C417::Method7.8737<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod1335<object>() ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod1334<object>() ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod1333() ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::ClassMethod1332() ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::Method2<object>() ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::Method1() ldstr "G1_C8::Method1.4825()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass0> callvirt instance string class G3_C1389`1<class BaseClass0>::Method0() ldstr "G1_C8::Method0.4823()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G3_C1389`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>() ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>() ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1333() ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1332() ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method2<object>() ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method1() ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method0() ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C417::Method7.MI.8738<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string IBase0::Method0() ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method1() ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method2<object>() ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G2_C417::Method5.8741()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G2_C417::Method4.8739()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C417::Method7.8737<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>() ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>() ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1333() ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1332() ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method2<object>() ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method1() ldstr "G1_C8::Method1.4825()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C417`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method0() ldstr "G1_C8::Method0.4823()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C417::Method7.MI.8738<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C417::Method4.MI.8740()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C417::Method5.MI.8742()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C417::Method4.MI.8740()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C417::Method5.MI.8742()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod4172() ldstr "G3_C1389::ClassMethod4172.15924()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod4171() ldstr "G3_C1389::ClassMethod4171.15923()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::Method6<object>() ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::Method5() ldstr "G2_C417::Method5.8741()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::Method4() ldstr "G2_C417::Method4.8739()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::Method7<object>() ldstr "G2_C417::Method7.8737<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod1335<object>() ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod1334<object>() ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod1333() ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::ClassMethod1332() ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::Method2<object>() ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::Method1() ldstr "G1_C8::Method1.4825()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1389`1<class BaseClass1> callvirt instance string class G3_C1389`1<class BaseClass1>::Method0() ldstr "G1_C8::Method0.4823()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C8`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>() ldstr "G1_C8::ClassMethod1335.4832<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>() ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1333() ldstr "G1_C8::ClassMethod1333.4830()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1332() ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method2<object>() ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method1() ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method0() ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string IBase0::Method0() ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method1() ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method2<object>() ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C8`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>() ldstr "G1_C8::ClassMethod1335.4832<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>() ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1333() ldstr "G1_C8::ClassMethod1333.4830()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1332() ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method2<object>() ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method1() ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method0() ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string IBase0::Method0() ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method1() ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method2<object>() ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C8`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C8`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>() ldstr "G1_C8::ClassMethod1335.4832<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>() ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1333() ldstr "G1_C8::ClassMethod1333.4830()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1332() ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method2<object>() ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method1() ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method0() ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string IBase0::Method0() ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method1() ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method2<object>() ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C8`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C8`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>() ldstr "G1_C8::ClassMethod1335.4832<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>() ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333() ldstr "G1_C8::ClassMethod1333.4830()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332() ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>() ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1() ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0() ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C8`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string IBase0::Method0() ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method1() ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method2<object>() ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method3<object>() ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void ConstrainedCallsTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Constrained Calls Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1389`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.T.T<class BaseClass0,class BaseClass0,class G3_C1389`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.A.T<class BaseClass0,class G3_C1389`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.A.A<class G3_C1389`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1389`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.A.T<class BaseClass0,class G3_C1389`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.A.A<class G3_C1389`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#" call void Generated917::M.IBase0<class G3_C1389`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1389`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.A.T<class BaseClass1,class G3_C1389`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.A.B<class G3_C1389`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C417::Method4.8739()#G2_C417::Method5.8741()#G2_C417::Method6.8743<System.Object>()#G2_C417::Method7.8737<System.Object>()#" call void Generated917::M.G2_C417.T.T<class BaseClass0,class BaseClass0,class G3_C1389`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C417::Method4.8739()#G2_C417::Method5.8741()#G2_C417::Method6.8743<System.Object>()#G2_C417::Method7.8737<System.Object>()#" call void Generated917::M.G2_C417.A.T<class BaseClass0,class G3_C1389`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C417::Method4.8739()#G2_C417::Method5.8741()#G2_C417::Method6.8743<System.Object>()#G2_C417::Method7.8737<System.Object>()#" call void Generated917::M.G2_C417.A.A<class G3_C1389`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C417::Method4.MI.8740()#G2_C417::Method5.MI.8742()#G2_C417::Method6.8743<System.Object>()#" call void Generated917::M.IBase1.T<class BaseClass0,class G3_C1389`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C417::Method4.MI.8740()#G2_C417::Method5.MI.8742()#G2_C417::Method6.8743<System.Object>()#" call void Generated917::M.IBase1.A<class G3_C1389`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G3_C1389::ClassMethod4171.15923()#G3_C1389::ClassMethod4172.15924()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C417::Method4.8739()#G2_C417::Method5.8741()#G2_C417::Method6.8743<System.Object>()#G2_C417::Method7.8737<System.Object>()#" call void Generated917::M.G3_C1389.T<class BaseClass0,class G3_C1389`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G3_C1389::ClassMethod4171.15923()#G3_C1389::ClassMethod4172.15924()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C417::Method4.8739()#G2_C417::Method5.8741()#G2_C417::Method6.8743<System.Object>()#G2_C417::Method7.8737<System.Object>()#" call void Generated917::M.G3_C1389.A<class G3_C1389`1<class BaseClass0>>(!!0,string) newobj instance void class G3_C1389`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.T.T<class BaseClass0,class BaseClass1,class G3_C1389`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.A.T<class BaseClass1,class G3_C1389`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.A.B<class G3_C1389`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1389`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.A.T<class BaseClass1,class G3_C1389`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.A.B<class G3_C1389`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#" call void Generated917::M.IBase0<class G3_C1389`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C417::Method4.8739()#G2_C417::Method5.8741()#G2_C417::Method6.8743<System.Object>()#G2_C417::Method7.8737<System.Object>()#" call void Generated917::M.G2_C417.T.T<class BaseClass1,class BaseClass1,class G3_C1389`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C417::Method4.8739()#G2_C417::Method5.8741()#G2_C417::Method6.8743<System.Object>()#G2_C417::Method7.8737<System.Object>()#" call void Generated917::M.G2_C417.B.T<class BaseClass1,class G3_C1389`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C417::Method4.8739()#G2_C417::Method5.8741()#G2_C417::Method6.8743<System.Object>()#G2_C417::Method7.8737<System.Object>()#" call void Generated917::M.G2_C417.B.B<class G3_C1389`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1389`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.B.T<class BaseClass1,class G3_C1389`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C417::Method7.MI.8738<System.Object>()#" call void Generated917::M.IBase2.B.B<class G3_C1389`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C417::Method4.MI.8740()#G2_C417::Method5.MI.8742()#G2_C417::Method6.8743<System.Object>()#" call void Generated917::M.IBase1.T<class BaseClass1,class G3_C1389`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C417::Method4.MI.8740()#G2_C417::Method5.MI.8742()#G2_C417::Method6.8743<System.Object>()#" call void Generated917::M.IBase1.B<class G3_C1389`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C417::Method4.MI.8740()#G2_C417::Method5.MI.8742()#G2_C417::Method6.8743<System.Object>()#" call void Generated917::M.IBase1.T<class BaseClass0,class G3_C1389`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C417::Method4.MI.8740()#G2_C417::Method5.MI.8742()#G2_C417::Method6.8743<System.Object>()#" call void Generated917::M.IBase1.A<class G3_C1389`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G3_C1389::ClassMethod4171.15923()#G3_C1389::ClassMethod4172.15924()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C417::Method4.8739()#G2_C417::Method5.8741()#G2_C417::Method6.8743<System.Object>()#G2_C417::Method7.8737<System.Object>()#" call void Generated917::M.G3_C1389.T<class BaseClass1,class G3_C1389`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G2_C417::ClassMethod1333.MI.8744()#G1_C8::ClassMethod1334.4831<System.Object>()#G2_C417::ClassMethod1335.MI.8745<System.Object>()#G3_C1389::ClassMethod4171.15923()#G3_C1389::ClassMethod4172.15924()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G2_C417::Method4.8739()#G2_C417::Method5.8741()#G2_C417::Method6.8743<System.Object>()#G2_C417::Method7.8737<System.Object>()#" call void Generated917::M.G3_C1389.B<class G3_C1389`1<class BaseClass1>>(!!0,string) newobj instance void class G1_C8`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.T.T<class BaseClass0,class BaseClass0,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.A.T<class BaseClass0,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.A.A<class G1_C8`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.T<class BaseClass0,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.A<class G1_C8`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#" call void Generated917::M.IBase0<class G1_C8`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.T<class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.B<class G1_C8`2<class BaseClass0,class BaseClass0>>(!!0,string) newobj instance void class G1_C8`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.T.T<class BaseClass0,class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.A.T<class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.A.B<class G1_C8`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.T<class BaseClass1,class G1_C8`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.B<class G1_C8`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#" call void Generated917::M.IBase0<class G1_C8`2<class BaseClass0,class BaseClass1>>(!!0,string) newobj instance void class G1_C8`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.T.T<class BaseClass1,class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.B.T<class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.B.A<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.B.T<class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.B.A<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#" call void Generated917::M.IBase0<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.T<class BaseClass0,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.A<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.T<class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.B<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.B.T<class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.B.B<class G1_C8`2<class BaseClass1,class BaseClass0>>(!!0,string) newobj instance void class G1_C8`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.T.T<class BaseClass1,class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.B.T<class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C8::ClassMethod1332.4829()#G1_C8::ClassMethod1333.4830()#G1_C8::ClassMethod1334.4831<System.Object>()#G1_C8::ClassMethod1335.4832<System.Object>()#G1_C8::Method0.4823()#G1_C8::Method1.4825()#G1_C8::Method2.4826<System.Object>()#G1_C8::Method3.4828<System.Object>()#G1_C8::Method7.4821<System.Object>()#" call void Generated917::M.G1_C8.B.B<class G1_C8`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.B.T<class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.B.B<class G1_C8`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C8::Method0.MI.4824()#G1_C8::Method1.4825()#G1_C8::Method2.MI.4827<System.Object>()#G1_C8::Method3.4828<System.Object>()#" call void Generated917::M.IBase0<class G1_C8`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.T<class BaseClass1,class G1_C8`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C8::Method7.MI.4822<System.Object>()#" call void Generated917::M.IBase2.A.B<class G1_C8`2<class BaseClass1,class BaseClass1>>(!!0,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed { .maxstack 10 ldstr "===================== Struct Constrained Interface Calls Test =====================" call void [mscorlib]System.Console::WriteLine(string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void CalliTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calli Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1389`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1333() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1332() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method3<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method2<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method1() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method0() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method7.MI.8738<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method0() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method1() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method2<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method3<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method7.MI.8738<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method5.8741()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method4.8739()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method7.8737<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1333() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::ClassMethod1332() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method3<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method2<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method1() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method1.4825()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass0,class BaseClass0>::Method0() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method0.4823()" ldstr "class G2_C417`2<class BaseClass0,class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method4.MI.8740()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method5.MI.8742()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::ClassMethod4172() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G3_C1389::ClassMethod4172.15924()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::ClassMethod4171() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G3_C1389::ClassMethod4171.15923()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::Method5() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method5.8741()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::Method4() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method4.8739()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::Method7<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::Method7.8737<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::ClassMethod1335<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::ClassMethod1334<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::ClassMethod1333() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::ClassMethod1332() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::Method3<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::Method2<object>() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::Method1() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method1.4825()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass0>::Method0() calli default string(class G3_C1389`1<class BaseClass0>) ldstr "G1_C8::Method0.4823()" ldstr "class G3_C1389`1<class BaseClass0> on type class G3_C1389`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G3_C1389`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1333() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1332() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method3<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method2<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method1() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method0() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method7.MI.8738<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method0() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method1() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method2<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method3<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method5.8741()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method4.8739()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method7.8737<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1333() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::ClassMethod1332() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method3<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method2<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method1() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method1.4825()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C417`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C417`2<class BaseClass1,class BaseClass1>::Method0() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method0.4823()" ldstr "class G2_C417`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method7.MI.8738<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method4.MI.8740()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method5.MI.8742()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method4.MI.8740()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method5.MI.8742()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::ClassMethod4172() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G3_C1389::ClassMethod4172.15924()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::ClassMethod4171() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G3_C1389::ClassMethod4171.15923()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method6.8743<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::Method5() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method5.8741()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::Method4() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method4.8739()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::Method7<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::Method7.8737<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::ClassMethod1335<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::ClassMethod1335.MI.8745<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::ClassMethod1334<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::ClassMethod1333() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G2_C417::ClassMethod1333.MI.8744()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::ClassMethod1332() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::Method3<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::Method2<object>() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::Method1() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method1.4825()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1389`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1389`1<class BaseClass1>::Method0() calli default string(class G3_C1389`1<class BaseClass1>) ldstr "G1_C8::Method0.4823()" ldstr "class G3_C1389`1<class BaseClass1> on type class G3_C1389`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C8`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1335<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::ClassMethod1335.4832<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1334<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1333() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::ClassMethod1333.4830()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::ClassMethod1332() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method3<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method2<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method1() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method0() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method0() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method1() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method2<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method3<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass0>) ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C8`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1335<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::ClassMethod1335.4832<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1334<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1333() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::ClassMethod1333.4830()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::ClassMethod1332() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method3<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method2<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method1() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method0() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method0() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method1() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method2<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method3<object>() calli default string(class G1_C8`2<class BaseClass0,class BaseClass1>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C8`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1335<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::ClassMethod1335.4832<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1334<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1333() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::ClassMethod1333.4830()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::ClassMethod1332() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method3<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method2<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method1() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method0() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method0() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method1() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method2<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method3<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass0>) ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C8`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1335<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::ClassMethod1335.4832<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1334<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::ClassMethod1334.4831<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1333() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::ClassMethod1333.4830()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::ClassMethod1332() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::ClassMethod1332.4829()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method3<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method2<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method2.4826<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method1() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method1.4825()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method0() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method0.4823()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C8`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C8`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method7.4821<System.Object>()" ldstr "class G1_C8`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method0() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method0.MI.4824()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method1() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method1.4825()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method2<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method2.MI.4827<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method3<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method3.4828<System.Object>()" ldstr "IBase0 on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C8`2<class BaseClass1,class BaseClass1>) ldstr "G1_C8::Method7.MI.4822<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C8`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 10 call void Generated917::MethodCallingTest() call void Generated917::ConstrainedCallsTest() call void Generated917::StructConstrainedInterfaceCallsTest() call void Generated917::CalliTest() ldc.i4 100 ret } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/jit64/localloc/unwind/unwind05_small.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // Unwind from Filter block. .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly extern xunit.core {} .assembly extern mscorlib{} .assembly extern localloc_common{} .assembly 'unwind05_small'{} .class private auto ansi beforefieldinit LocallocTest extends [mscorlib]System.Object { .field private static int32 locallocSize .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 4 .locals (unsigned int64 local1, unsigned int64 local2, int32* intArray1, int32 retValue) IL_0000: ldc.i8 0xfedcba9876543210 IL_0009: stloc.0 IL_000a: ldloc.0 IL_000b: ldc.i4.1 IL_000c: conv.i8 IL_000d: add IL_000e: stloc.1 IL_000f: ldc.i4.4 IL_0016: localloc IL_0018: stloc.2 IL_0019: ldc.i4.1 IL_001e: stsfld int32 LocallocTest::locallocSize .try { IL_0023: ldloc.2 IL_0024: ldsfld int32 LocallocTest::locallocSize IL_0029: ldc.i4 1000 IL_002e: call void [localloc_common]LocallocTesting.Global::initializeStack(int32*, int32, int32) IL_0033: call void LocallocTest::unwindTest1() IL_0038: ldc.i4.1 IL_0039: stloc.3 IL_003a: leave.s IL_009d } catch [mscorlib]System.Object { IL_003c: pop IL_003d: leave.s IL_003f } IL_003f: ldstr "intArray1" IL_0044: ldloc.2 IL_0045: ldsfld int32 LocallocTest::locallocSize IL_004a: ldc.i4 1000 IL_004f: call bool [localloc_common]LocallocTesting.Global::verifyStack(string, int32*, int32, int32) IL_0054: brtrue.s IL_005a IL_0056: ldc.i4.1 IL_0057: stloc.3 IL_0058: br.s IL_009d IL_005a: ldstr "local1" IL_005f: ldloc.0 IL_0060: ldc.i8 0xfedcba9876543210 IL_0069: call bool [localloc_common]LocallocTesting.Global::verifyLocal(string, unsigned int64, unsigned int64) IL_006e: brtrue.s IL_0074 IL_0070: ldc.i4.1 IL_0071: stloc.3 IL_0072: br.s IL_009d IL_0074: ldstr "local2" IL_0079: ldloc.1 IL_007a: ldc.i8 0xfedcba9876543211 IL_0083: call bool [localloc_common]LocallocTesting.Global::verifyLocal(string, unsigned int64, unsigned int64) IL_0088: brtrue.s IL_008e IL_008a: ldc.i4.1 IL_008b: stloc.3 IL_008c: br.s IL_009d IL_008e: ldstr "Passed\n" IL_0093: call void [System.Console]System.Console::WriteLine(string) IL_0098: ldc.i4.s 100 IL_009a: stloc.3 IL_009b: br.s IL_009d IL_009d: ldloc.3 IL_009e: ret } .method public hidebysig static void unwindTest1() cil managed { .maxstack 10 .locals (int32* intArray2, class LocallocTest testObj) IL_0000: ldc.i4.4 IL_0007: localloc IL_0009: stloc.0 IL_000a: ldloc.0 IL_000b: ldsfld int32 LocallocTest::locallocSize IL_0010: ldc.i4 2000 IL_0015: call void [localloc_common]LocallocTesting.Global::initializeStack(int32*, int32, int32) .try { IL_001a: newobj instance void LocallocTest::.ctor() IL_001f: stloc.1 IL_0020: ldloc.1 IL_0021: ldc.i4.1 IL_0022: ldc.i4.2 IL_0023: ldc.i4.3 IL_0024: ldc.i4.4 IL_0025: ldc.i4.5 IL_0026: ldc.i4.6 IL_0027: ldc.i4.7 IL_0028: ldc.i4.8 IL_0029: ldc.i4.s 9 IL_002b: callvirt instance void LocallocTest::unwindTest2(int32, int32, int32, int32, int32, int32, int32, int32, int32) IL_0030: leave.s IL_0058 } filter { IL_0032: pop IL_0033: ldstr "Filter block in unwindTest1.\n" IL_0038: call void [System.Console]System.Console::WriteLine(string) IL_003d: ldstr "intArray2" IL_0042: ldloc.0 IL_0043: ldsfld int32 LocallocTest::locallocSize IL_0048: ldc.i4 2000 IL_004d: call bool [localloc_common]LocallocTesting.Global::verifyStack(string, int32*, int32, int32) IL_0052: brfalse.s L_FAILED ldc.i4.0 br.s L_ENDFILTER L_FAILED: ldc.i4.1 L_ENDFILTER: endfilter } { pop IL_0056: leave.s IL_0058 } IL_0058: br.s IL_005a IL_005a: ret } .method private hidebysig instance void unwindTest2(int32 i1, int32 i2, int32 i3, int32 i4, int32 i5, int32 i6, int32 i7, int32 i8, int32 i9) cil managed { .maxstack 4 .locals (int32* intArray3) IL_0000: ldc.i4.4 IL_0007: localloc IL_0009: stloc.0 IL_000a: ldloc.0 IL_000b: ldsfld int32 LocallocTest::locallocSize IL_0010: ldc.i4 3000 IL_0015: call void [localloc_common]LocallocTesting.Global::initializeStack(int32*, int32, int32) .try { IL_001a: ldstr "Test Exception" IL_001f: newobj instance void [mscorlib]System.Exception::.ctor(string) IL_0024: throw } filter { IL_0025: pop IL_0026: ldstr "Filter block in unwindTest2.\n" IL_002b: call void [System.Console]System.Console::WriteLine(string) IL_0030: ldarg.s i9 IL_0032: ldc.i4.s 9 IL_0034: beq.s IL_0042 IL_0036: ldstr "Parameters on stack is corrupted\n" IL_003b: call void [System.Console]System.Console::WriteLine(string) IL_0040: br.s L_FAILED IL_0042: ldstr "intArray3" IL_0047: ldloc.0 IL_0048: ldsfld int32 LocallocTest::locallocSize IL_004d: ldc.i4 3000 IL_0052: call bool [localloc_common]LocallocTesting.Global::verifyStack(string, int32*, int32, int32) IL_0057: brfalse.s L_FAILED ldc.i4.0 br.s L_ENDFILTER L_FAILED: ldc.i4.1 L_ENDFILTER: endfilter } { pop IL_005b: leave.s IL_005d } IL_005d: ret } .method private hidebysig specialname rtspecialname static void .cctor() cil managed { .maxstack 8 IL_0000: ldc.i4.0 IL_0001: stsfld int32 LocallocTest::locallocSize IL_0006: ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { .maxstack 8 IL_0000: ldarg.0 IL_0001: call instance void [mscorlib]System.Object::.ctor() IL_0006: ret } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // Unwind from Filter block. .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly extern xunit.core {} .assembly extern mscorlib{} .assembly extern localloc_common{} .assembly 'unwind05_small'{} .class private auto ansi beforefieldinit LocallocTest extends [mscorlib]System.Object { .field private static int32 locallocSize .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 4 .locals (unsigned int64 local1, unsigned int64 local2, int32* intArray1, int32 retValue) IL_0000: ldc.i8 0xfedcba9876543210 IL_0009: stloc.0 IL_000a: ldloc.0 IL_000b: ldc.i4.1 IL_000c: conv.i8 IL_000d: add IL_000e: stloc.1 IL_000f: ldc.i4.4 IL_0016: localloc IL_0018: stloc.2 IL_0019: ldc.i4.1 IL_001e: stsfld int32 LocallocTest::locallocSize .try { IL_0023: ldloc.2 IL_0024: ldsfld int32 LocallocTest::locallocSize IL_0029: ldc.i4 1000 IL_002e: call void [localloc_common]LocallocTesting.Global::initializeStack(int32*, int32, int32) IL_0033: call void LocallocTest::unwindTest1() IL_0038: ldc.i4.1 IL_0039: stloc.3 IL_003a: leave.s IL_009d } catch [mscorlib]System.Object { IL_003c: pop IL_003d: leave.s IL_003f } IL_003f: ldstr "intArray1" IL_0044: ldloc.2 IL_0045: ldsfld int32 LocallocTest::locallocSize IL_004a: ldc.i4 1000 IL_004f: call bool [localloc_common]LocallocTesting.Global::verifyStack(string, int32*, int32, int32) IL_0054: brtrue.s IL_005a IL_0056: ldc.i4.1 IL_0057: stloc.3 IL_0058: br.s IL_009d IL_005a: ldstr "local1" IL_005f: ldloc.0 IL_0060: ldc.i8 0xfedcba9876543210 IL_0069: call bool [localloc_common]LocallocTesting.Global::verifyLocal(string, unsigned int64, unsigned int64) IL_006e: brtrue.s IL_0074 IL_0070: ldc.i4.1 IL_0071: stloc.3 IL_0072: br.s IL_009d IL_0074: ldstr "local2" IL_0079: ldloc.1 IL_007a: ldc.i8 0xfedcba9876543211 IL_0083: call bool [localloc_common]LocallocTesting.Global::verifyLocal(string, unsigned int64, unsigned int64) IL_0088: brtrue.s IL_008e IL_008a: ldc.i4.1 IL_008b: stloc.3 IL_008c: br.s IL_009d IL_008e: ldstr "Passed\n" IL_0093: call void [System.Console]System.Console::WriteLine(string) IL_0098: ldc.i4.s 100 IL_009a: stloc.3 IL_009b: br.s IL_009d IL_009d: ldloc.3 IL_009e: ret } .method public hidebysig static void unwindTest1() cil managed { .maxstack 10 .locals (int32* intArray2, class LocallocTest testObj) IL_0000: ldc.i4.4 IL_0007: localloc IL_0009: stloc.0 IL_000a: ldloc.0 IL_000b: ldsfld int32 LocallocTest::locallocSize IL_0010: ldc.i4 2000 IL_0015: call void [localloc_common]LocallocTesting.Global::initializeStack(int32*, int32, int32) .try { IL_001a: newobj instance void LocallocTest::.ctor() IL_001f: stloc.1 IL_0020: ldloc.1 IL_0021: ldc.i4.1 IL_0022: ldc.i4.2 IL_0023: ldc.i4.3 IL_0024: ldc.i4.4 IL_0025: ldc.i4.5 IL_0026: ldc.i4.6 IL_0027: ldc.i4.7 IL_0028: ldc.i4.8 IL_0029: ldc.i4.s 9 IL_002b: callvirt instance void LocallocTest::unwindTest2(int32, int32, int32, int32, int32, int32, int32, int32, int32) IL_0030: leave.s IL_0058 } filter { IL_0032: pop IL_0033: ldstr "Filter block in unwindTest1.\n" IL_0038: call void [System.Console]System.Console::WriteLine(string) IL_003d: ldstr "intArray2" IL_0042: ldloc.0 IL_0043: ldsfld int32 LocallocTest::locallocSize IL_0048: ldc.i4 2000 IL_004d: call bool [localloc_common]LocallocTesting.Global::verifyStack(string, int32*, int32, int32) IL_0052: brfalse.s L_FAILED ldc.i4.0 br.s L_ENDFILTER L_FAILED: ldc.i4.1 L_ENDFILTER: endfilter } { pop IL_0056: leave.s IL_0058 } IL_0058: br.s IL_005a IL_005a: ret } .method private hidebysig instance void unwindTest2(int32 i1, int32 i2, int32 i3, int32 i4, int32 i5, int32 i6, int32 i7, int32 i8, int32 i9) cil managed { .maxstack 4 .locals (int32* intArray3) IL_0000: ldc.i4.4 IL_0007: localloc IL_0009: stloc.0 IL_000a: ldloc.0 IL_000b: ldsfld int32 LocallocTest::locallocSize IL_0010: ldc.i4 3000 IL_0015: call void [localloc_common]LocallocTesting.Global::initializeStack(int32*, int32, int32) .try { IL_001a: ldstr "Test Exception" IL_001f: newobj instance void [mscorlib]System.Exception::.ctor(string) IL_0024: throw } filter { IL_0025: pop IL_0026: ldstr "Filter block in unwindTest2.\n" IL_002b: call void [System.Console]System.Console::WriteLine(string) IL_0030: ldarg.s i9 IL_0032: ldc.i4.s 9 IL_0034: beq.s IL_0042 IL_0036: ldstr "Parameters on stack is corrupted\n" IL_003b: call void [System.Console]System.Console::WriteLine(string) IL_0040: br.s L_FAILED IL_0042: ldstr "intArray3" IL_0047: ldloc.0 IL_0048: ldsfld int32 LocallocTest::locallocSize IL_004d: ldc.i4 3000 IL_0052: call bool [localloc_common]LocallocTesting.Global::verifyStack(string, int32*, int32, int32) IL_0057: brfalse.s L_FAILED ldc.i4.0 br.s L_ENDFILTER L_FAILED: ldc.i4.1 L_ENDFILTER: endfilter } { pop IL_005b: leave.s IL_005d } IL_005d: ret } .method private hidebysig specialname rtspecialname static void .cctor() cil managed { .maxstack 8 IL_0000: ldc.i4.0 IL_0001: stsfld int32 LocallocTest::locallocSize IL_0006: ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { .maxstack 8 IL_0000: ldarg.0 IL_0001: call instance void [mscorlib]System.Object::.ctor() IL_0006: ret } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest1244/Generated1244.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 } .assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) } //TYPES IN FORWARDER ASSEMBLIES: //TEST ASSEMBLY: .assembly Generated1244 { .hash algorithm 0x00008004 } .assembly extern xunit.core {} .class public BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class public BaseClass1 extends BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void BaseClass0::.ctor() ret } } .class public G3_C1716`1<T0> extends class G2_C692`2<class BaseClass0,!T0> implements IBase0 { .method public hidebysig newslot virtual instance string Method0() cil managed noinlining { ldstr "G3_C1716::Method0.17604()" ret } .method public hidebysig virtual instance string Method1() cil managed noinlining { ldstr "G3_C1716::Method1.17605()" ret } .method public hidebysig newslot virtual instance string Method2<M0>() cil managed noinlining { ldstr "G3_C1716::Method2.17606<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance string Method3<M0>() cil managed noinlining { ldstr "G3_C1716::Method3.17607<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase0.Method3'<M0>() cil managed noinlining { .override method instance string IBase0::Method3<[1]>() ldstr "G3_C1716::Method3.MI.17608<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod4830() cil managed noinlining { ldstr "G3_C1716::ClassMethod4830.17609()" ret } .method public hidebysig newslot virtual instance string ClassMethod4831<M0>() cil managed noinlining { ldstr "G3_C1716::ClassMethod4831.17610<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod4832<M0>() cil managed noinlining { ldstr "G3_C1716::ClassMethod4832.17611<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'G2_C692<class BaseClass0,T0>.ClassMethod2746'() cil managed noinlining { .override method instance string class G2_C692`2<class BaseClass0,!T0>::ClassMethod2746() ldstr "G3_C1716::ClassMethod2746.MI.17612()" ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G2_C692`2<class BaseClass0,!T0>::.ctor() ret } } .class public abstract G2_C692`2<T0, T1> extends class G1_C13`2<class BaseClass0,class BaseClass1> implements IBase0, class IBase1`1<!T0> { .method public hidebysig newslot virtual instance string Method0() cil managed noinlining { ldstr "G2_C692::Method0.11373()" ret } .method public hidebysig virtual instance string Method1() cil managed noinlining { ldstr "G2_C692::Method1.11374()" ret } .method public hidebysig newslot virtual instance string Method2<M0>() cil managed noinlining { ldstr "G2_C692::Method2.11375<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase0.Method2'<M0>() cil managed noinlining { .override method instance string IBase0::Method2<[1]>() ldstr "G2_C692::Method2.MI.11376<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance string Method3<M0>() cil managed noinlining { ldstr "G2_C692::Method3.11377<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance string Method4() cil managed noinlining { ldstr "G2_C692::Method4.11378()" ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method4'() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method4() ldstr "G2_C692::Method4.MI.11379()" ret } .method public hidebysig virtual instance string Method5() cil managed noinlining { ldstr "G2_C692::Method5.11380()" ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method5'() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method5() ldstr "G2_C692::Method5.MI.11381()" ret } .method public hidebysig newslot virtual instance string Method6<M0>() cil managed noinlining { ldstr "G2_C692::Method6.11382<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method6'<M0>() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method6<[1]>() ldstr "G2_C692::Method6.MI.11383<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod2746() cil managed noinlining { ldstr "G2_C692::ClassMethod2746.11384()" ret } .method public hidebysig newslot virtual instance string ClassMethod2747<M0>() cil managed noinlining { ldstr "G2_C692::ClassMethod2747.11385<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'G1_C13<class BaseClass0,class BaseClass1>.ClassMethod1348'<M0>() cil managed noinlining { .override method instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1348<[1]>() ldstr "G2_C692::ClassMethod1348.MI.11386<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G1_C13`2<class BaseClass0,class BaseClass1>::.ctor() ret } } .class interface public abstract IBase0 { .method public hidebysig newslot abstract virtual instance string Method0() cil managed { } .method public hidebysig newslot abstract virtual instance string Method1() cil managed { } .method public hidebysig newslot abstract virtual instance string Method2<M0>() cil managed { } .method public hidebysig newslot abstract virtual instance string Method3<M0>() cil managed { } } .class public abstract G1_C13`2<T0, T1> implements class IBase2`2<!T0,!T1>, class IBase1`1<!T0> { .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G1_C13::Method7.4871<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string Method4() cil managed noinlining { ldstr "G1_C13::Method4.4872()" ret } .method public hidebysig newslot virtual instance string Method5() cil managed noinlining { ldstr "G1_C13::Method5.4873()" ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method5'() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method5() ldstr "G1_C13::Method5.MI.4874()" ret } .method public hidebysig newslot virtual instance string Method6<M0>() cil managed noinlining { ldstr "G1_C13::Method6.4875<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1348<M0>() cil managed noinlining { ldstr "G1_C13::ClassMethod1348.4876<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1349<M0>() cil managed noinlining { ldstr "G1_C13::ClassMethod1349.4877<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class interface public abstract IBase1`1<+T0> { .method public hidebysig newslot abstract virtual instance string Method4() cil managed { } .method public hidebysig newslot abstract virtual instance string Method5() cil managed { } .method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { } } .class interface public abstract IBase2`2<+T0, -T1> { .method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { } } .class public auto ansi beforefieldinit Generated1244 { .method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1716.T<T0,(class G3_C1716`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 20 .locals init (string[] actualResults) ldc.i4.s 15 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1716.T<T0,(class G3_C1716`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 15 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::ClassMethod2746() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::ClassMethod2747<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::ClassMethod4830() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::ClassMethod4831<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::ClassMethod4832<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 14 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1716.A<(class G3_C1716`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 20 .locals init (string[] actualResults) ldc.i4.s 15 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1716.A<(class G3_C1716`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 15 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod2746() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod2747<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod4830() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod4831<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod4832<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 14 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1716.B<(class G3_C1716`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 20 .locals init (string[] actualResults) ldc.i4.s 15 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1716.B<(class G3_C1716`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 15 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod2746() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod2747<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod4830() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod4831<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod4832<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 14 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C692.T.T<T0,T1,(class G2_C692`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C692.T.T<T0,T1,(class G2_C692`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::ClassMethod2746() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::ClassMethod2747<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C692.A.T<T1,(class G2_C692`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C692.A.T<T1,(class G2_C692`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::ClassMethod2746() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::ClassMethod2747<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C692.A.A<(class G2_C692`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C692.A.A<(class G2_C692`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod2746() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod2747<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C692.A.B<(class G2_C692`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C692.A.B<(class G2_C692`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod2746() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod2747<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C692.B.T<T1,(class G2_C692`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C692.B.T<T1,(class G2_C692`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::ClassMethod2746() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::ClassMethod2747<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C692.B.A<(class G2_C692`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C692.B.A<(class G2_C692`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::ClassMethod2746() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::ClassMethod2747<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C692.B.B<(class G2_C692`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C692.B.B<(class G2_C692`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::ClassMethod2746() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::ClassMethod2747<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase0<(IBase0)W>(!!W inst, string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase0<(IBase0)W>(!!W inst, string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method3<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C13.T.T<T0,T1,(class G1_C13`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C13.T.T<T0,T1,(class G1_C13`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<!!T0,!!T1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<!!T0,!!T1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C13.A.T<T1,(class G1_C13`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C13.A.T<T1,(class G1_C13`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,!!T1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,!!T1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C13.A.A<(class G1_C13`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C13.A.A<(class G1_C13`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass0>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass0>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C13.A.B<(class G1_C13`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C13.A.B<(class G1_C13`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C13.B.T<T1,(class G1_C13`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C13.B.T<T1,(class G1_C13`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,!!T1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,!!T1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C13.B.A<(class G1_C13`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C13.B.A<(class G1_C13`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass0>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass0>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C13.B.B<(class G1_C13`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C13.B.B<(class G1_C13`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method public hidebysig static void MethodCallingTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calling Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1716`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1349<object>() ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1348<object>() ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G1_C13::Method6.4875<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G2_C692::Method5.11380()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G2_C692::Method4.11378()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C692::Method4.MI.11379()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C692::Method5.MI.11381()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C692::Method6.MI.11383<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod2747<object>() ldstr "G2_C692::ClassMethod2747.11385<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod2746() ldstr "G3_C1716::ClassMethod2746.MI.17612()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C692::Method6.11382<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C692::Method5.11380()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G2_C692::Method4.11378()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method3<object>() ldstr "G3_C1716::Method3.17607<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method2<object>() ldstr "G2_C692::Method2.11375<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method1() ldstr "G3_C1716::Method1.17605()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method0() ldstr "G2_C692::Method0.11373()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod1349<object>() ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod1348<object>() ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string IBase0::Method0() ldstr "G3_C1716::Method0.17604()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method1() ldstr "G3_C1716::Method1.17605()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method2<object>() ldstr "G3_C1716::Method2.17606<System.Object>()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method3<object>() ldstr "G3_C1716::Method3.MI.17608<System.Object>()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod4832<object>() ldstr "G3_C1716::ClassMethod4832.17611<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod4831<object>() ldstr "G3_C1716::ClassMethod4831.17610<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod4830() ldstr "G3_C1716::ClassMethod4830.17609()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::Method3<object>() ldstr "G3_C1716::Method3.17607<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::Method2<object>() ldstr "G3_C1716::Method2.17606<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::Method1() ldstr "G3_C1716::Method1.17605()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::Method0() ldstr "G3_C1716::Method0.17604()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod2747<object>() ldstr "G2_C692::ClassMethod2747.11385<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod2746() ldstr "G3_C1716::ClassMethod2746.MI.17612()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::Method6<object>() ldstr "G2_C692::Method6.11382<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::Method5() ldstr "G2_C692::Method5.11380()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::Method4() ldstr "G2_C692::Method4.11378()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod1349<object>() ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod1348<object>() ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::Method7<object>() ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G3_C1716`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1349<object>() ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1348<object>() ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G1_C13::Method6.4875<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G2_C692::Method5.11380()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G2_C692::Method4.11378()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C692::Method4.MI.11379()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C692::Method5.MI.11381()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C692::Method6.MI.11383<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod2747<object>() ldstr "G2_C692::ClassMethod2747.11385<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod2746() ldstr "G3_C1716::ClassMethod2746.MI.17612()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G2_C692::Method6.11382<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G2_C692::Method5.11380()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G2_C692::Method4.11378()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method3<object>() ldstr "G3_C1716::Method3.17607<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method2<object>() ldstr "G2_C692::Method2.11375<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method1() ldstr "G3_C1716::Method1.17605()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method0() ldstr "G2_C692::Method0.11373()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod1349<object>() ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod1348<object>() ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string IBase0::Method0() ldstr "G3_C1716::Method0.17604()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method1() ldstr "G3_C1716::Method1.17605()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method2<object>() ldstr "G3_C1716::Method2.17606<System.Object>()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method3<object>() ldstr "G3_C1716::Method3.MI.17608<System.Object>()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod4832<object>() ldstr "G3_C1716::ClassMethod4832.17611<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod4831<object>() ldstr "G3_C1716::ClassMethod4831.17610<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod4830() ldstr "G3_C1716::ClassMethod4830.17609()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::Method3<object>() ldstr "G3_C1716::Method3.17607<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::Method2<object>() ldstr "G3_C1716::Method2.17606<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::Method1() ldstr "G3_C1716::Method1.17605()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::Method0() ldstr "G3_C1716::Method0.17604()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod2747<object>() ldstr "G2_C692::ClassMethod2747.11385<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod2746() ldstr "G3_C1716::ClassMethod2746.MI.17612()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::Method6<object>() ldstr "G2_C692::Method6.11382<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::Method5() ldstr "G2_C692::Method5.11380()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::Method4() ldstr "G2_C692::Method4.11378()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod1349<object>() ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod1348<object>() ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::Method7<object>() ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void ConstrainedCallsTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Constrained Calls Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1716`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G1_C13::Method6.4875<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G1_C13.T.T<class BaseClass0,class BaseClass1,class G3_C1716`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G1_C13::Method6.4875<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G1_C13.A.T<class BaseClass1,class G3_C1716`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G1_C13::Method6.4875<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G1_C13.A.B<class G3_C1716`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1716`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.IBase2.A.T<class BaseClass1,class G3_C1716`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.IBase2.A.B<class G3_C1716`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C692::Method4.MI.11379()#G2_C692::Method5.MI.11381()#G2_C692::Method6.MI.11383<System.Object>()#" call void Generated1244::M.IBase1.T<class BaseClass0,class G3_C1716`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C692::Method4.MI.11379()#G2_C692::Method5.MI.11381()#G2_C692::Method6.MI.11383<System.Object>()#" call void Generated1244::M.IBase1.A<class G3_C1716`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G3_C1716::ClassMethod2746.MI.17612()#G2_C692::ClassMethod2747.11385<System.Object>()#G2_C692::Method0.11373()#G3_C1716::Method1.17605()#G2_C692::Method2.11375<System.Object>()#G3_C1716::Method3.17607<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G2_C692::Method6.11382<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G2_C692.T.T<class BaseClass0,class BaseClass0,class G3_C1716`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G3_C1716::ClassMethod2746.MI.17612()#G2_C692::ClassMethod2747.11385<System.Object>()#G2_C692::Method0.11373()#G3_C1716::Method1.17605()#G2_C692::Method2.11375<System.Object>()#G3_C1716::Method3.17607<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G2_C692::Method6.11382<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G2_C692.A.T<class BaseClass0,class G3_C1716`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G3_C1716::ClassMethod2746.MI.17612()#G2_C692::ClassMethod2747.11385<System.Object>()#G2_C692::Method0.11373()#G3_C1716::Method1.17605()#G2_C692::Method2.11375<System.Object>()#G3_C1716::Method3.17607<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G2_C692::Method6.11382<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G2_C692.A.A<class G3_C1716`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G3_C1716::Method0.17604()#G3_C1716::Method1.17605()#G3_C1716::Method2.17606<System.Object>()#G3_C1716::Method3.MI.17608<System.Object>()#" call void Generated1244::M.IBase0<class G3_C1716`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G3_C1716::ClassMethod2746.MI.17612()#G2_C692::ClassMethod2747.11385<System.Object>()#G3_C1716::ClassMethod4830.17609()#G3_C1716::ClassMethod4831.17610<System.Object>()#G3_C1716::ClassMethod4832.17611<System.Object>()#G3_C1716::Method0.17604()#G3_C1716::Method1.17605()#G3_C1716::Method2.17606<System.Object>()#G3_C1716::Method3.17607<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G2_C692::Method6.11382<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G3_C1716.T<class BaseClass0,class G3_C1716`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G3_C1716::ClassMethod2746.MI.17612()#G2_C692::ClassMethod2747.11385<System.Object>()#G3_C1716::ClassMethod4830.17609()#G3_C1716::ClassMethod4831.17610<System.Object>()#G3_C1716::ClassMethod4832.17611<System.Object>()#G3_C1716::Method0.17604()#G3_C1716::Method1.17605()#G3_C1716::Method2.17606<System.Object>()#G3_C1716::Method3.17607<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G2_C692::Method6.11382<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G3_C1716.A<class G3_C1716`1<class BaseClass0>>(!!0,string) newobj instance void class G3_C1716`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G1_C13::Method6.4875<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G1_C13.T.T<class BaseClass0,class BaseClass1,class G3_C1716`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G1_C13::Method6.4875<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G1_C13.A.T<class BaseClass1,class G3_C1716`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G1_C13::Method6.4875<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G1_C13.A.B<class G3_C1716`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1716`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.IBase2.A.T<class BaseClass1,class G3_C1716`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.IBase2.A.B<class G3_C1716`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C692::Method4.MI.11379()#G2_C692::Method5.MI.11381()#G2_C692::Method6.MI.11383<System.Object>()#" call void Generated1244::M.IBase1.T<class BaseClass0,class G3_C1716`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C692::Method4.MI.11379()#G2_C692::Method5.MI.11381()#G2_C692::Method6.MI.11383<System.Object>()#" call void Generated1244::M.IBase1.A<class G3_C1716`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G3_C1716::ClassMethod2746.MI.17612()#G2_C692::ClassMethod2747.11385<System.Object>()#G2_C692::Method0.11373()#G3_C1716::Method1.17605()#G2_C692::Method2.11375<System.Object>()#G3_C1716::Method3.17607<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G2_C692::Method6.11382<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G2_C692.T.T<class BaseClass0,class BaseClass1,class G3_C1716`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G3_C1716::ClassMethod2746.MI.17612()#G2_C692::ClassMethod2747.11385<System.Object>()#G2_C692::Method0.11373()#G3_C1716::Method1.17605()#G2_C692::Method2.11375<System.Object>()#G3_C1716::Method3.17607<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G2_C692::Method6.11382<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G2_C692.A.T<class BaseClass1,class G3_C1716`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G3_C1716::ClassMethod2746.MI.17612()#G2_C692::ClassMethod2747.11385<System.Object>()#G2_C692::Method0.11373()#G3_C1716::Method1.17605()#G2_C692::Method2.11375<System.Object>()#G3_C1716::Method3.17607<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G2_C692::Method6.11382<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G2_C692.A.B<class G3_C1716`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G3_C1716::Method0.17604()#G3_C1716::Method1.17605()#G3_C1716::Method2.17606<System.Object>()#G3_C1716::Method3.MI.17608<System.Object>()#" call void Generated1244::M.IBase0<class G3_C1716`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G3_C1716::ClassMethod2746.MI.17612()#G2_C692::ClassMethod2747.11385<System.Object>()#G3_C1716::ClassMethod4830.17609()#G3_C1716::ClassMethod4831.17610<System.Object>()#G3_C1716::ClassMethod4832.17611<System.Object>()#G3_C1716::Method0.17604()#G3_C1716::Method1.17605()#G3_C1716::Method2.17606<System.Object>()#G3_C1716::Method3.17607<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G2_C692::Method6.11382<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G3_C1716.T<class BaseClass1,class G3_C1716`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G3_C1716::ClassMethod2746.MI.17612()#G2_C692::ClassMethod2747.11385<System.Object>()#G3_C1716::ClassMethod4830.17609()#G3_C1716::ClassMethod4831.17610<System.Object>()#G3_C1716::ClassMethod4832.17611<System.Object>()#G3_C1716::Method0.17604()#G3_C1716::Method1.17605()#G3_C1716::Method2.17606<System.Object>()#G3_C1716::Method3.17607<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G2_C692::Method6.11382<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G3_C1716.B<class G3_C1716`1<class BaseClass1>>(!!0,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed { .maxstack 10 ldstr "===================== Struct Constrained Interface Calls Test =====================" call void [mscorlib]System.Console::WriteLine(string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void CalliTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calli Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1716`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1349<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1348<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G1_C13::Method6.4875<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method5.11380()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method4.11378()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method4.MI.11379()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method5.MI.11381()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method6.MI.11383<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod2747<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::ClassMethod2747.11385<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod2746() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::ClassMethod2746.MI.17612()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method6.11382<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method5.11380()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method4.11378()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method3<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::Method3.17607<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method2<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method2.11375<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method1() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::Method1.17605()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method0() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method0.11373()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod1349<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod1348<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method0() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::Method0.17604()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method1() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::Method1.17605()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method2<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::Method2.17606<System.Object>()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method3<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::Method3.MI.17608<System.Object>()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::ClassMethod4832<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::ClassMethod4832.17611<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::ClassMethod4831<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::ClassMethod4831.17610<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::ClassMethod4830() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::ClassMethod4830.17609()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::Method3<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::Method3.17607<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::Method2<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::Method2.17606<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::Method1() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::Method1.17605()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::Method0() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::Method0.17604()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::ClassMethod2747<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::ClassMethod2747.11385<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::ClassMethod2746() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::ClassMethod2746.MI.17612()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method6.11382<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::Method5() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method5.11380()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::Method4() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method4.11378()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::ClassMethod1349<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::ClassMethod1348<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::Method7<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G3_C1716`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1349<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1348<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G1_C13::Method6.4875<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method5.11380()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method4.11378()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method4.MI.11379()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method5.MI.11381()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method6.MI.11383<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod2747<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::ClassMethod2747.11385<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod2746() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::ClassMethod2746.MI.17612()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method6.11382<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method5.11380()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method4.11378()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method3<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::Method3.17607<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method2<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method2.11375<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method1() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::Method1.17605()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method0() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method0.11373()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod1349<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod1348<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method0() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::Method0.17604()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method1() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::Method1.17605()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method2<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::Method2.17606<System.Object>()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method3<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::Method3.MI.17608<System.Object>()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::ClassMethod4832<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::ClassMethod4832.17611<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::ClassMethod4831<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::ClassMethod4831.17610<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::ClassMethod4830() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::ClassMethod4830.17609()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::Method3<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::Method3.17607<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::Method2<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::Method2.17606<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::Method1() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::Method1.17605()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::Method0() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::Method0.17604()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::ClassMethod2747<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::ClassMethod2747.11385<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::ClassMethod2746() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::ClassMethod2746.MI.17612()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method6.11382<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::Method5() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method5.11380()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::Method4() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method4.11378()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::ClassMethod1349<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::ClassMethod1348<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::Method7<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 10 call void Generated1244::MethodCallingTest() call void Generated1244::ConstrainedCallsTest() call void Generated1244::StructConstrainedInterfaceCallsTest() call void Generated1244::CalliTest() ldc.i4 100 ret } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 } .assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) } //TYPES IN FORWARDER ASSEMBLIES: //TEST ASSEMBLY: .assembly Generated1244 { .hash algorithm 0x00008004 } .assembly extern xunit.core {} .class public BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class public BaseClass1 extends BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void BaseClass0::.ctor() ret } } .class public G3_C1716`1<T0> extends class G2_C692`2<class BaseClass0,!T0> implements IBase0 { .method public hidebysig newslot virtual instance string Method0() cil managed noinlining { ldstr "G3_C1716::Method0.17604()" ret } .method public hidebysig virtual instance string Method1() cil managed noinlining { ldstr "G3_C1716::Method1.17605()" ret } .method public hidebysig newslot virtual instance string Method2<M0>() cil managed noinlining { ldstr "G3_C1716::Method2.17606<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance string Method3<M0>() cil managed noinlining { ldstr "G3_C1716::Method3.17607<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase0.Method3'<M0>() cil managed noinlining { .override method instance string IBase0::Method3<[1]>() ldstr "G3_C1716::Method3.MI.17608<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod4830() cil managed noinlining { ldstr "G3_C1716::ClassMethod4830.17609()" ret } .method public hidebysig newslot virtual instance string ClassMethod4831<M0>() cil managed noinlining { ldstr "G3_C1716::ClassMethod4831.17610<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod4832<M0>() cil managed noinlining { ldstr "G3_C1716::ClassMethod4832.17611<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'G2_C692<class BaseClass0,T0>.ClassMethod2746'() cil managed noinlining { .override method instance string class G2_C692`2<class BaseClass0,!T0>::ClassMethod2746() ldstr "G3_C1716::ClassMethod2746.MI.17612()" ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G2_C692`2<class BaseClass0,!T0>::.ctor() ret } } .class public abstract G2_C692`2<T0, T1> extends class G1_C13`2<class BaseClass0,class BaseClass1> implements IBase0, class IBase1`1<!T0> { .method public hidebysig newslot virtual instance string Method0() cil managed noinlining { ldstr "G2_C692::Method0.11373()" ret } .method public hidebysig virtual instance string Method1() cil managed noinlining { ldstr "G2_C692::Method1.11374()" ret } .method public hidebysig newslot virtual instance string Method2<M0>() cil managed noinlining { ldstr "G2_C692::Method2.11375<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase0.Method2'<M0>() cil managed noinlining { .override method instance string IBase0::Method2<[1]>() ldstr "G2_C692::Method2.MI.11376<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance string Method3<M0>() cil managed noinlining { ldstr "G2_C692::Method3.11377<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance string Method4() cil managed noinlining { ldstr "G2_C692::Method4.11378()" ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method4'() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method4() ldstr "G2_C692::Method4.MI.11379()" ret } .method public hidebysig virtual instance string Method5() cil managed noinlining { ldstr "G2_C692::Method5.11380()" ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method5'() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method5() ldstr "G2_C692::Method5.MI.11381()" ret } .method public hidebysig newslot virtual instance string Method6<M0>() cil managed noinlining { ldstr "G2_C692::Method6.11382<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method6'<M0>() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method6<[1]>() ldstr "G2_C692::Method6.MI.11383<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod2746() cil managed noinlining { ldstr "G2_C692::ClassMethod2746.11384()" ret } .method public hidebysig newslot virtual instance string ClassMethod2747<M0>() cil managed noinlining { ldstr "G2_C692::ClassMethod2747.11385<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'G1_C13<class BaseClass0,class BaseClass1>.ClassMethod1348'<M0>() cil managed noinlining { .override method instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1348<[1]>() ldstr "G2_C692::ClassMethod1348.MI.11386<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G1_C13`2<class BaseClass0,class BaseClass1>::.ctor() ret } } .class interface public abstract IBase0 { .method public hidebysig newslot abstract virtual instance string Method0() cil managed { } .method public hidebysig newslot abstract virtual instance string Method1() cil managed { } .method public hidebysig newslot abstract virtual instance string Method2<M0>() cil managed { } .method public hidebysig newslot abstract virtual instance string Method3<M0>() cil managed { } } .class public abstract G1_C13`2<T0, T1> implements class IBase2`2<!T0,!T1>, class IBase1`1<!T0> { .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G1_C13::Method7.4871<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string Method4() cil managed noinlining { ldstr "G1_C13::Method4.4872()" ret } .method public hidebysig newslot virtual instance string Method5() cil managed noinlining { ldstr "G1_C13::Method5.4873()" ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method5'() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method5() ldstr "G1_C13::Method5.MI.4874()" ret } .method public hidebysig newslot virtual instance string Method6<M0>() cil managed noinlining { ldstr "G1_C13::Method6.4875<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1348<M0>() cil managed noinlining { ldstr "G1_C13::ClassMethod1348.4876<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1349<M0>() cil managed noinlining { ldstr "G1_C13::ClassMethod1349.4877<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class interface public abstract IBase1`1<+T0> { .method public hidebysig newslot abstract virtual instance string Method4() cil managed { } .method public hidebysig newslot abstract virtual instance string Method5() cil managed { } .method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { } } .class interface public abstract IBase2`2<+T0, -T1> { .method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { } } .class public auto ansi beforefieldinit Generated1244 { .method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1716.T<T0,(class G3_C1716`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 20 .locals init (string[] actualResults) ldc.i4.s 15 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1716.T<T0,(class G3_C1716`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 15 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::ClassMethod2746() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::ClassMethod2747<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::ClassMethod4830() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::ClassMethod4831<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::ClassMethod4832<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 14 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<!!T0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1716.A<(class G3_C1716`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 20 .locals init (string[] actualResults) ldc.i4.s 15 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1716.A<(class G3_C1716`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 15 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod2746() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod2747<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod4830() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod4831<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod4832<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 14 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1716.B<(class G3_C1716`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 20 .locals init (string[] actualResults) ldc.i4.s 15 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1716.B<(class G3_C1716`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 15 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod2746() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod2747<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod4830() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod4831<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod4832<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 14 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1716`1<class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C692.T.T<T0,T1,(class G2_C692`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C692.T.T<T0,T1,(class G2_C692`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::ClassMethod2746() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::ClassMethod2747<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C692.A.T<T1,(class G2_C692`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C692.A.T<T1,(class G2_C692`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::ClassMethod2746() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::ClassMethod2747<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C692.A.A<(class G2_C692`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C692.A.A<(class G2_C692`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod2746() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod2747<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C692.A.B<(class G2_C692`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C692.A.B<(class G2_C692`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod2746() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod2747<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C692.B.T<T1,(class G2_C692`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C692.B.T<T1,(class G2_C692`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::ClassMethod2746() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::ClassMethod2747<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C692.B.A<(class G2_C692`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C692.B.A<(class G2_C692`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::ClassMethod2746() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::ClassMethod2747<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C692.B.B<(class G2_C692`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C692.B.B<(class G2_C692`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::ClassMethod2746() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::ClassMethod2747<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G2_C692`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase0<(IBase0)W>(!!W inst, string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase0<(IBase0)W>(!!W inst, string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method3<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C13.T.T<T0,T1,(class G1_C13`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C13.T.T<T0,T1,(class G1_C13`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<!!T0,!!T1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<!!T0,!!T1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C13.A.T<T1,(class G1_C13`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C13.A.T<T1,(class G1_C13`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,!!T1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,!!T1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C13.A.A<(class G1_C13`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C13.A.A<(class G1_C13`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass0>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass0>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C13.A.B<(class G1_C13`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C13.A.B<(class G1_C13`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C13.B.T<T1,(class G1_C13`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C13.B.T<T1,(class G1_C13`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,!!T1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,!!T1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C13.B.A<(class G1_C13`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C13.B.A<(class G1_C13`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass0>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass0>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C13.B.B<(class G1_C13`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C13.B.B<(class G1_C13`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass1>::ClassMethod1348<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass1>::ClassMethod1349<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C13`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method public hidebysig static void MethodCallingTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calling Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1716`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1349<object>() ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1348<object>() ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G1_C13::Method6.4875<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G2_C692::Method5.11380()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G2_C692::Method4.11378()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C692::Method4.MI.11379()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C692::Method5.MI.11381()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C692::Method6.MI.11383<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod2747<object>() ldstr "G2_C692::ClassMethod2747.11385<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod2746() ldstr "G3_C1716::ClassMethod2746.MI.17612()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C692::Method6.11382<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C692::Method5.11380()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G2_C692::Method4.11378()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method3<object>() ldstr "G3_C1716::Method3.17607<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method2<object>() ldstr "G2_C692::Method2.11375<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method1() ldstr "G3_C1716::Method1.17605()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method0() ldstr "G2_C692::Method0.11373()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod1349<object>() ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod1348<object>() ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string IBase0::Method0() ldstr "G3_C1716::Method0.17604()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method1() ldstr "G3_C1716::Method1.17605()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method2<object>() ldstr "G3_C1716::Method2.17606<System.Object>()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method3<object>() ldstr "G3_C1716::Method3.MI.17608<System.Object>()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod4832<object>() ldstr "G3_C1716::ClassMethod4832.17611<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod4831<object>() ldstr "G3_C1716::ClassMethod4831.17610<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod4830() ldstr "G3_C1716::ClassMethod4830.17609()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::Method3<object>() ldstr "G3_C1716::Method3.17607<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::Method2<object>() ldstr "G3_C1716::Method2.17606<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::Method1() ldstr "G3_C1716::Method1.17605()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::Method0() ldstr "G3_C1716::Method0.17604()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod2747<object>() ldstr "G2_C692::ClassMethod2747.11385<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod2746() ldstr "G3_C1716::ClassMethod2746.MI.17612()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::Method6<object>() ldstr "G2_C692::Method6.11382<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::Method5() ldstr "G2_C692::Method5.11380()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::Method4() ldstr "G2_C692::Method4.11378()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod1349<object>() ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::ClassMethod1348<object>() ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass0> callvirt instance string class G3_C1716`1<class BaseClass0>::Method7<object>() ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G3_C1716`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1349<object>() ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1348<object>() ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G1_C13::Method6.4875<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G2_C692::Method5.11380()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G2_C692::Method4.11378()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C13`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C692::Method4.MI.11379()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C692::Method5.MI.11381()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C692::Method6.MI.11383<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod2747<object>() ldstr "G2_C692::ClassMethod2747.11385<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod2746() ldstr "G3_C1716::ClassMethod2746.MI.17612()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G2_C692::Method6.11382<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G2_C692::Method5.11380()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G2_C692::Method4.11378()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method3<object>() ldstr "G3_C1716::Method3.17607<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method2<object>() ldstr "G2_C692::Method2.11375<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method1() ldstr "G3_C1716::Method1.17605()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method0() ldstr "G2_C692::Method0.11373()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod1349<object>() ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod1348<object>() ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C692`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string IBase0::Method0() ldstr "G3_C1716::Method0.17604()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method1() ldstr "G3_C1716::Method1.17605()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method2<object>() ldstr "G3_C1716::Method2.17606<System.Object>()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method3<object>() ldstr "G3_C1716::Method3.MI.17608<System.Object>()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod4832<object>() ldstr "G3_C1716::ClassMethod4832.17611<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod4831<object>() ldstr "G3_C1716::ClassMethod4831.17610<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod4830() ldstr "G3_C1716::ClassMethod4830.17609()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::Method3<object>() ldstr "G3_C1716::Method3.17607<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::Method2<object>() ldstr "G3_C1716::Method2.17606<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::Method1() ldstr "G3_C1716::Method1.17605()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::Method0() ldstr "G3_C1716::Method0.17604()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod2747<object>() ldstr "G2_C692::ClassMethod2747.11385<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod2746() ldstr "G3_C1716::ClassMethod2746.MI.17612()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::Method6<object>() ldstr "G2_C692::Method6.11382<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::Method5() ldstr "G2_C692::Method5.11380()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::Method4() ldstr "G2_C692::Method4.11378()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod1349<object>() ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::ClassMethod1348<object>() ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1716`1<class BaseClass1> callvirt instance string class G3_C1716`1<class BaseClass1>::Method7<object>() ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void ConstrainedCallsTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Constrained Calls Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1716`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G1_C13::Method6.4875<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G1_C13.T.T<class BaseClass0,class BaseClass1,class G3_C1716`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G1_C13::Method6.4875<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G1_C13.A.T<class BaseClass1,class G3_C1716`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G1_C13::Method6.4875<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G1_C13.A.B<class G3_C1716`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1716`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.IBase2.A.T<class BaseClass1,class G3_C1716`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.IBase2.A.B<class G3_C1716`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C692::Method4.MI.11379()#G2_C692::Method5.MI.11381()#G2_C692::Method6.MI.11383<System.Object>()#" call void Generated1244::M.IBase1.T<class BaseClass0,class G3_C1716`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C692::Method4.MI.11379()#G2_C692::Method5.MI.11381()#G2_C692::Method6.MI.11383<System.Object>()#" call void Generated1244::M.IBase1.A<class G3_C1716`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G3_C1716::ClassMethod2746.MI.17612()#G2_C692::ClassMethod2747.11385<System.Object>()#G2_C692::Method0.11373()#G3_C1716::Method1.17605()#G2_C692::Method2.11375<System.Object>()#G3_C1716::Method3.17607<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G2_C692::Method6.11382<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G2_C692.T.T<class BaseClass0,class BaseClass0,class G3_C1716`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G3_C1716::ClassMethod2746.MI.17612()#G2_C692::ClassMethod2747.11385<System.Object>()#G2_C692::Method0.11373()#G3_C1716::Method1.17605()#G2_C692::Method2.11375<System.Object>()#G3_C1716::Method3.17607<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G2_C692::Method6.11382<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G2_C692.A.T<class BaseClass0,class G3_C1716`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G3_C1716::ClassMethod2746.MI.17612()#G2_C692::ClassMethod2747.11385<System.Object>()#G2_C692::Method0.11373()#G3_C1716::Method1.17605()#G2_C692::Method2.11375<System.Object>()#G3_C1716::Method3.17607<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G2_C692::Method6.11382<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G2_C692.A.A<class G3_C1716`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G3_C1716::Method0.17604()#G3_C1716::Method1.17605()#G3_C1716::Method2.17606<System.Object>()#G3_C1716::Method3.MI.17608<System.Object>()#" call void Generated1244::M.IBase0<class G3_C1716`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G3_C1716::ClassMethod2746.MI.17612()#G2_C692::ClassMethod2747.11385<System.Object>()#G3_C1716::ClassMethod4830.17609()#G3_C1716::ClassMethod4831.17610<System.Object>()#G3_C1716::ClassMethod4832.17611<System.Object>()#G3_C1716::Method0.17604()#G3_C1716::Method1.17605()#G3_C1716::Method2.17606<System.Object>()#G3_C1716::Method3.17607<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G2_C692::Method6.11382<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G3_C1716.T<class BaseClass0,class G3_C1716`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G3_C1716::ClassMethod2746.MI.17612()#G2_C692::ClassMethod2747.11385<System.Object>()#G3_C1716::ClassMethod4830.17609()#G3_C1716::ClassMethod4831.17610<System.Object>()#G3_C1716::ClassMethod4832.17611<System.Object>()#G3_C1716::Method0.17604()#G3_C1716::Method1.17605()#G3_C1716::Method2.17606<System.Object>()#G3_C1716::Method3.17607<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G2_C692::Method6.11382<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G3_C1716.A<class G3_C1716`1<class BaseClass0>>(!!0,string) newobj instance void class G3_C1716`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G1_C13::Method6.4875<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G1_C13.T.T<class BaseClass0,class BaseClass1,class G3_C1716`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G1_C13::Method6.4875<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G1_C13.A.T<class BaseClass1,class G3_C1716`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G1_C13::Method6.4875<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G1_C13.A.B<class G3_C1716`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1716`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.IBase2.A.T<class BaseClass1,class G3_C1716`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.IBase2.A.B<class G3_C1716`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C692::Method4.MI.11379()#G2_C692::Method5.MI.11381()#G2_C692::Method6.MI.11383<System.Object>()#" call void Generated1244::M.IBase1.T<class BaseClass0,class G3_C1716`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C692::Method4.MI.11379()#G2_C692::Method5.MI.11381()#G2_C692::Method6.MI.11383<System.Object>()#" call void Generated1244::M.IBase1.A<class G3_C1716`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G3_C1716::ClassMethod2746.MI.17612()#G2_C692::ClassMethod2747.11385<System.Object>()#G2_C692::Method0.11373()#G3_C1716::Method1.17605()#G2_C692::Method2.11375<System.Object>()#G3_C1716::Method3.17607<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G2_C692::Method6.11382<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G2_C692.T.T<class BaseClass0,class BaseClass1,class G3_C1716`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G3_C1716::ClassMethod2746.MI.17612()#G2_C692::ClassMethod2747.11385<System.Object>()#G2_C692::Method0.11373()#G3_C1716::Method1.17605()#G2_C692::Method2.11375<System.Object>()#G3_C1716::Method3.17607<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G2_C692::Method6.11382<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G2_C692.A.T<class BaseClass1,class G3_C1716`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G3_C1716::ClassMethod2746.MI.17612()#G2_C692::ClassMethod2747.11385<System.Object>()#G2_C692::Method0.11373()#G3_C1716::Method1.17605()#G2_C692::Method2.11375<System.Object>()#G3_C1716::Method3.17607<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G2_C692::Method6.11382<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G2_C692.A.B<class G3_C1716`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G3_C1716::Method0.17604()#G3_C1716::Method1.17605()#G3_C1716::Method2.17606<System.Object>()#G3_C1716::Method3.MI.17608<System.Object>()#" call void Generated1244::M.IBase0<class G3_C1716`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G3_C1716::ClassMethod2746.MI.17612()#G2_C692::ClassMethod2747.11385<System.Object>()#G3_C1716::ClassMethod4830.17609()#G3_C1716::ClassMethod4831.17610<System.Object>()#G3_C1716::ClassMethod4832.17611<System.Object>()#G3_C1716::Method0.17604()#G3_C1716::Method1.17605()#G3_C1716::Method2.17606<System.Object>()#G3_C1716::Method3.17607<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G2_C692::Method6.11382<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G3_C1716.T<class BaseClass1,class G3_C1716`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()#G1_C13::ClassMethod1349.4877<System.Object>()#G3_C1716::ClassMethod2746.MI.17612()#G2_C692::ClassMethod2747.11385<System.Object>()#G3_C1716::ClassMethod4830.17609()#G3_C1716::ClassMethod4831.17610<System.Object>()#G3_C1716::ClassMethod4832.17611<System.Object>()#G3_C1716::Method0.17604()#G3_C1716::Method1.17605()#G3_C1716::Method2.17606<System.Object>()#G3_C1716::Method3.17607<System.Object>()#G2_C692::Method4.11378()#G2_C692::Method5.11380()#G2_C692::Method6.11382<System.Object>()#G1_C13::Method7.4871<System.Object>()#" call void Generated1244::M.G3_C1716.B<class G3_C1716`1<class BaseClass1>>(!!0,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed { .maxstack 10 ldstr "===================== Struct Constrained Interface Calls Test =====================" call void [mscorlib]System.Console::WriteLine(string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void CalliTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calli Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1716`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1349<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1348<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G1_C13::Method6.4875<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method5.11380()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method4.11378()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method4.MI.11379()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method5.MI.11381()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method6.MI.11383<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod2747<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::ClassMethod2747.11385<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod2746() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::ClassMethod2746.MI.17612()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method6.11382<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method5.11380()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method4.11378()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method3<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::Method3.17607<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method2<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method2.11375<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method1() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::Method1.17605()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method0() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method0.11373()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod1349<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::ClassMethod1348<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method0() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::Method0.17604()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method1() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::Method1.17605()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method2<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::Method2.17606<System.Object>()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method3<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::Method3.MI.17608<System.Object>()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::ClassMethod4832<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::ClassMethod4832.17611<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::ClassMethod4831<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::ClassMethod4831.17610<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::ClassMethod4830() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::ClassMethod4830.17609()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::Method3<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::Method3.17607<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::Method2<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::Method2.17606<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::Method1() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::Method1.17605()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::Method0() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::Method0.17604()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::ClassMethod2747<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::ClassMethod2747.11385<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::ClassMethod2746() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G3_C1716::ClassMethod2746.MI.17612()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method6.11382<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::Method5() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method5.11380()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::Method4() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::Method4.11378()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::ClassMethod1349<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::ClassMethod1348<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass0>::Method7<object>() calli default string(class G3_C1716`1<class BaseClass0>) ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G3_C1716`1<class BaseClass0> on type class G3_C1716`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G3_C1716`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1349<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::ClassMethod1348<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G1_C13::Method6.4875<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method5.11380()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method4.11378()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C13`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C13`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G1_C13`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method4.MI.11379()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method5.MI.11381()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method6.MI.11383<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod2747<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::ClassMethod2747.11385<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod2746() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::ClassMethod2746.MI.17612()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method6.11382<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method5.11380()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method4.11378()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method3<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::Method3.17607<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method2<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method2.11375<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method1() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::Method1.17605()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method0() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method0.11373()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod1349<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::ClassMethod1348<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C692`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C692`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G2_C692`2<class BaseClass0,class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method0() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::Method0.17604()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method1() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::Method1.17605()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method2<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::Method2.17606<System.Object>()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method3<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::Method3.MI.17608<System.Object>()" ldstr "IBase0 on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::ClassMethod4832<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::ClassMethod4832.17611<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::ClassMethod4831<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::ClassMethod4831.17610<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::ClassMethod4830() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::ClassMethod4830.17609()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::Method3<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::Method3.17607<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::Method2<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::Method2.17606<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::Method1() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::Method1.17605()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::Method0() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::Method0.17604()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::ClassMethod2747<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::ClassMethod2747.11385<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::ClassMethod2746() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G3_C1716::ClassMethod2746.MI.17612()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method6.11382<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::Method5() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method5.11380()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::Method4() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::Method4.11378()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::ClassMethod1349<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G1_C13::ClassMethod1349.4877<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::ClassMethod1348<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G2_C692::ClassMethod1348.MI.11386<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1716`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1716`1<class BaseClass1>::Method7<object>() calli default string(class G3_C1716`1<class BaseClass1>) ldstr "G1_C13::Method7.4871<System.Object>()" ldstr "class G3_C1716`1<class BaseClass1> on type class G3_C1716`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 10 call void Generated1244::MethodCallingTest() call void Generated1244::ConstrainedCallsTest() call void Generated1244::StructConstrainedInterfaceCallsTest() call void Generated1244::CalliTest() ldc.i4 100 ret } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/mono/mono/tests/dim-constrainedcall.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { } .assembly constrainedcall { } .class interface private abstract auto ansi IAdder`1<T> { .method public hidebysig newslot abstract virtual instance int32 Add(int32) { } .method public hidebysig newslot virtual instance int32 PlusPlus() { ldarg.0 ldc.i4.1 callvirt instance int32 class IAdder`1<!0>::Add(int32) ret } } .class interface IGen1`1<T> { } .class interface IGen2`1<T> { } .class interface IGen3`1<T> { } .class value Atom { } .class value Adder`1<T> implements class IAdder`1<class IGen1`1<!T>>, class IAdder`1<class IGen2`1<!T>>, class IAdder`1<class IGen3`1<!T>>, class IAdder`1<valuetype Atom> { .field private int32 _field .method public hidebysig newslot virtual instance int32 Add(int32) cil managed { ldarg.0 dup ldfld int32 valuetype Adder`1<!T>::_field ldarg.1 add stfld int32 valuetype Adder`1<!T>::_field ldarg.0 ldfld int32 valuetype Adder`1<!T>::_field ret } .method private hidebysig newslot virtual instance int32 'IAdder<IGen1<T>>.PlusPlus'() { .override method instance int32 class IAdder`1<class IGen1`1<!T>>::PlusPlus() ldarg.0 ldc.i4.2 call instance int32 valuetype Adder`1<!T>::Add(int32) ret } .method private hidebysig newslot virtual instance int32 'IAdder<IGen2<T>>.PlusPlus'() { .override method instance int32 class IAdder`1<class IGen2`1<!T>>::PlusPlus() ldarg.0 ldc.i4.3 call instance int32 valuetype Adder`1<!T>::Add(int32) ret } } .method public hidebysig static int32 Check<(class IAdder`1<!!U>) T,U>(!!T t) { // The constrained calls below may or may not box for a valuetype T // depending on whether IAdder`1<!!U>::PlusPlus() ends up calling // the default implementation of the interface method. ldarga.s 0 constrained. !!T callvirt instance int32 class IAdder`1<!!U>::PlusPlus() ldarga.s 0 constrained. !!T callvirt instance int32 class IAdder`1<!!U>::PlusPlus() add ret } .method public hidebysig static int32 Main() { .entrypoint .locals init ( valuetype Adder`1<object>, int32, valuetype Adder`1<valuetype Atom> ) // This will end up calling the implementation of IAdder<IGen1<object>>.PlusPlus // provided by the Adder valuetype. // The sum returned by the Check method will be 2+4 = 6. ldloc.0 call int32 Check<valuetype Adder`1<object>,class IGen1`1<object>>(!!0) ldc.i4.6 ceq brtrue IGen1_OK ldc.i4.1 ret IGen1_OK: // This will end up calling the implementation of IAdder<IGen2<object>>.PlusPlus // provided by the Adder valuetype. // The sum returned by the Check method will be 3+6 = 9. ldloca 0 initobj valuetype Adder`1<object> ldloc.0 call int32 Check<valuetype Adder`1<object>,class IGen2`1<object>>(!!0) ldc.i4 9 ceq brtrue IGen2_OK ldc.i4.2 ret IGen2_OK: ldstr "Constrained calls that require runtime lookup are OK" call void [mscorlib]System.Console::WriteLine(string) // Store a successful result in case the implementation throws. // We consider both a throw and a successful dispatch a success. // The throwing behavior is an implementation limitation. // Successful dispatch is what the spec mandates. ldc.i4.2 stloc.1 ldloca 0 initobj valuetype Adder`1<object> // This will end up calling the default implementation of IAdder<IGen3<object>>.PlusPlus // Since each constrained call in Check is going to box, the sum will end up 1+1 = 2. .try { ldloc.0 call int32 Check<valuetype Adder`1<object>,class IGen3`1<object>>(!!0) stloc.1 ldstr "Runtime supports lookups with runtime determined boxing" call void [mscorlib]System.Console::WriteLine(string) leave AfterBoxingCall } catch [mscorlib]System.Exception { pop leave AfterFailedBoxingCall } AfterFailedBoxingCall: ldstr "Runtime does not support lookups with runtime determined boxing" call void [mscorlib]System.Console::WriteLine(string) AfterBoxingCall: ldloc.1 ldc.i4.2 ceq brtrue IGen3_OK ldc.i4.3 ret IGen3_OK: ldloca 0 initobj valuetype Adder`1<valuetype Atom> ldloc.0 call int32 Check<valuetype Adder`1<valuetype Atom>,valuetype Atom>(!!0) ldc.i4 2 ceq brtrue AllOK ldc.i4.4 ret AllOK: ldstr "Compile time constraint resolution to default interface method OK" call void [mscorlib]System.Console::WriteLine(string) ldc.i4 0 ret }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { } .assembly constrainedcall { } .class interface private abstract auto ansi IAdder`1<T> { .method public hidebysig newslot abstract virtual instance int32 Add(int32) { } .method public hidebysig newslot virtual instance int32 PlusPlus() { ldarg.0 ldc.i4.1 callvirt instance int32 class IAdder`1<!0>::Add(int32) ret } } .class interface IGen1`1<T> { } .class interface IGen2`1<T> { } .class interface IGen3`1<T> { } .class value Atom { } .class value Adder`1<T> implements class IAdder`1<class IGen1`1<!T>>, class IAdder`1<class IGen2`1<!T>>, class IAdder`1<class IGen3`1<!T>>, class IAdder`1<valuetype Atom> { .field private int32 _field .method public hidebysig newslot virtual instance int32 Add(int32) cil managed { ldarg.0 dup ldfld int32 valuetype Adder`1<!T>::_field ldarg.1 add stfld int32 valuetype Adder`1<!T>::_field ldarg.0 ldfld int32 valuetype Adder`1<!T>::_field ret } .method private hidebysig newslot virtual instance int32 'IAdder<IGen1<T>>.PlusPlus'() { .override method instance int32 class IAdder`1<class IGen1`1<!T>>::PlusPlus() ldarg.0 ldc.i4.2 call instance int32 valuetype Adder`1<!T>::Add(int32) ret } .method private hidebysig newslot virtual instance int32 'IAdder<IGen2<T>>.PlusPlus'() { .override method instance int32 class IAdder`1<class IGen2`1<!T>>::PlusPlus() ldarg.0 ldc.i4.3 call instance int32 valuetype Adder`1<!T>::Add(int32) ret } } .method public hidebysig static int32 Check<(class IAdder`1<!!U>) T,U>(!!T t) { // The constrained calls below may or may not box for a valuetype T // depending on whether IAdder`1<!!U>::PlusPlus() ends up calling // the default implementation of the interface method. ldarga.s 0 constrained. !!T callvirt instance int32 class IAdder`1<!!U>::PlusPlus() ldarga.s 0 constrained. !!T callvirt instance int32 class IAdder`1<!!U>::PlusPlus() add ret } .method public hidebysig static int32 Main() { .entrypoint .locals init ( valuetype Adder`1<object>, int32, valuetype Adder`1<valuetype Atom> ) // This will end up calling the implementation of IAdder<IGen1<object>>.PlusPlus // provided by the Adder valuetype. // The sum returned by the Check method will be 2+4 = 6. ldloc.0 call int32 Check<valuetype Adder`1<object>,class IGen1`1<object>>(!!0) ldc.i4.6 ceq brtrue IGen1_OK ldc.i4.1 ret IGen1_OK: // This will end up calling the implementation of IAdder<IGen2<object>>.PlusPlus // provided by the Adder valuetype. // The sum returned by the Check method will be 3+6 = 9. ldloca 0 initobj valuetype Adder`1<object> ldloc.0 call int32 Check<valuetype Adder`1<object>,class IGen2`1<object>>(!!0) ldc.i4 9 ceq brtrue IGen2_OK ldc.i4.2 ret IGen2_OK: ldstr "Constrained calls that require runtime lookup are OK" call void [mscorlib]System.Console::WriteLine(string) // Store a successful result in case the implementation throws. // We consider both a throw and a successful dispatch a success. // The throwing behavior is an implementation limitation. // Successful dispatch is what the spec mandates. ldc.i4.2 stloc.1 ldloca 0 initobj valuetype Adder`1<object> // This will end up calling the default implementation of IAdder<IGen3<object>>.PlusPlus // Since each constrained call in Check is going to box, the sum will end up 1+1 = 2. .try { ldloc.0 call int32 Check<valuetype Adder`1<object>,class IGen3`1<object>>(!!0) stloc.1 ldstr "Runtime supports lookups with runtime determined boxing" call void [mscorlib]System.Console::WriteLine(string) leave AfterBoxingCall } catch [mscorlib]System.Exception { pop leave AfterFailedBoxingCall } AfterFailedBoxingCall: ldstr "Runtime does not support lookups with runtime determined boxing" call void [mscorlib]System.Console::WriteLine(string) AfterBoxingCall: ldloc.1 ldc.i4.2 ceq brtrue IGen3_OK ldc.i4.3 ret IGen3_OK: ldloca 0 initobj valuetype Adder`1<valuetype Atom> ldloc.0 call int32 Check<valuetype Adder`1<valuetype Atom>,valuetype Atom>(!!0) ldc.i4 2 ceq brtrue AllOK ldc.i4.4 ret AllOK: ldstr "Compile time constraint resolution to default interface method OK" call void [mscorlib]System.Console::WriteLine(string) ldc.i4 0 ret }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/IL_Conformance/Old/Base/sub_ovf.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} .assembly sub_ovf{} .class public sub_ovf { .method public static int32 i1(int32,int32) { .maxstack 5 try_start: ldarg 0 ldarg 1 sub.ovf conv.ovf.i1 pop leave try_end try_end: ldc.i4 0x0 ret handler_start: pop leave done handler_end: done: ldc.i4 0x1 ret .try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end } .method public static int32 u1(int32,int32) { .maxstack 5 try_start: ldarg 0 ldarg 1 sub.ovf.un conv.ovf.u1 pop leave try_end try_end: ldc.i4 0x0 ret handler_start: pop leave done handler_end: done: ldc.i4 0x1 ret .try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end } .method public static int32 i2(int32,int32) { .maxstack 5 try_start: ldarg 0 ldarg 1 sub.ovf conv.ovf.i2 pop leave try_end try_end: ldc.i4 0x0 ret handler_start: pop leave done handler_end: done: ldc.i4 0x1 ret .try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end } .method public static int32 u2(int32,int32) { .maxstack 5 try_start: ldarg 0 ldarg 1 sub.ovf.un conv.ovf.u2 pop leave try_end try_end: ldc.i4 0x0 ret handler_start: pop leave done handler_end: done: ldc.i4 0x1 ret .try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end } .method public static int32 i4(int32,int32) { .maxstack 5 try_start: ldarg 0 ldarg 1 sub.ovf conv.ovf.i4 pop leave try_end try_end: ldc.i4 0x0 ret handler_start: pop leave done handler_end: done: ldc.i4 0x1 ret .try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end } .method public static int32 u4(int32,int32) { .maxstack 5 try_start: ldarg 0 ldarg 1 sub.ovf.un conv.ovf.u4 pop leave try_end try_end: ldc.i4 0x0 ret handler_start: pop leave done handler_end: done: ldc.i4 0x1 ret .try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end } .method public static int32 i8(int64,int64) { .maxstack 5 try_start: ldarg 0 ldarg 1 sub.ovf conv.ovf.i8 pop leave try_end try_end: ldc.i4 0x0 ret handler_start: pop leave done handler_end: done: ldc.i4 0x1 ret .try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end } .method public static int32 u8(int64,int64) { .maxstack 5 try_start: ldarg 0 ldarg 1 sub.ovf.un conv.ovf.u8 pop leave try_end try_end: ldc.i4 0x0 ret handler_start: pop leave done handler_end: done: ldc.i4 0x1 ret .try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end } .method public static int32 main(class [mscorlib]System.String[]) { .entrypoint .maxstack 10 ldc.i4 0xFFFFFF80 ldc.i4 0x00000002 call int32 sub_ovf::i1(int32,int32) brfalse FAIL ldc.i4 0x00000000 ldc.i4 0x00000001 call int32 sub_ovf::u1(int32,int32) brfalse FAIL ldc.i4 0xFFFF8000 ldc.i4 0x00000001 call int32 sub_ovf::i2(int32,int32) brfalse FAIL ldc.i4 0x00000001 ldc.i4 0x00000002 call int32 sub_ovf::u2(int32,int32) brfalse FAIL ldc.i4 0x80000000 ldc.i4 0x00000001 call int32 sub_ovf::i4(int32,int32) brfalse FAIL ldc.i4 0x0000000F ldc.i4 0x00000010 call int32 sub_ovf::u4(int32,int32) brfalse FAIL ldc.i8 0x8000000000000000 ldc.i8 0x0000000000000002 call int32 sub_ovf::i8(int64,int64) brfalse FAIL ldc.i8 0xFFFFFFFFFFFFFFFE ldc.i8 0xFFFFFFFFFFFFFFFF call int32 sub_ovf::u8(int64,int64) brfalse FAIL PASS: ldc.i4 100 ret FAIL: ldc.i4 0x0 ret } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} .assembly sub_ovf{} .class public sub_ovf { .method public static int32 i1(int32,int32) { .maxstack 5 try_start: ldarg 0 ldarg 1 sub.ovf conv.ovf.i1 pop leave try_end try_end: ldc.i4 0x0 ret handler_start: pop leave done handler_end: done: ldc.i4 0x1 ret .try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end } .method public static int32 u1(int32,int32) { .maxstack 5 try_start: ldarg 0 ldarg 1 sub.ovf.un conv.ovf.u1 pop leave try_end try_end: ldc.i4 0x0 ret handler_start: pop leave done handler_end: done: ldc.i4 0x1 ret .try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end } .method public static int32 i2(int32,int32) { .maxstack 5 try_start: ldarg 0 ldarg 1 sub.ovf conv.ovf.i2 pop leave try_end try_end: ldc.i4 0x0 ret handler_start: pop leave done handler_end: done: ldc.i4 0x1 ret .try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end } .method public static int32 u2(int32,int32) { .maxstack 5 try_start: ldarg 0 ldarg 1 sub.ovf.un conv.ovf.u2 pop leave try_end try_end: ldc.i4 0x0 ret handler_start: pop leave done handler_end: done: ldc.i4 0x1 ret .try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end } .method public static int32 i4(int32,int32) { .maxstack 5 try_start: ldarg 0 ldarg 1 sub.ovf conv.ovf.i4 pop leave try_end try_end: ldc.i4 0x0 ret handler_start: pop leave done handler_end: done: ldc.i4 0x1 ret .try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end } .method public static int32 u4(int32,int32) { .maxstack 5 try_start: ldarg 0 ldarg 1 sub.ovf.un conv.ovf.u4 pop leave try_end try_end: ldc.i4 0x0 ret handler_start: pop leave done handler_end: done: ldc.i4 0x1 ret .try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end } .method public static int32 i8(int64,int64) { .maxstack 5 try_start: ldarg 0 ldarg 1 sub.ovf conv.ovf.i8 pop leave try_end try_end: ldc.i4 0x0 ret handler_start: pop leave done handler_end: done: ldc.i4 0x1 ret .try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end } .method public static int32 u8(int64,int64) { .maxstack 5 try_start: ldarg 0 ldarg 1 sub.ovf.un conv.ovf.u8 pop leave try_end try_end: ldc.i4 0x0 ret handler_start: pop leave done handler_end: done: ldc.i4 0x1 ret .try try_start to try_end catch [mscorlib]System.OverflowException handler handler_start to handler_end } .method public static int32 main(class [mscorlib]System.String[]) { .entrypoint .maxstack 10 ldc.i4 0xFFFFFF80 ldc.i4 0x00000002 call int32 sub_ovf::i1(int32,int32) brfalse FAIL ldc.i4 0x00000000 ldc.i4 0x00000001 call int32 sub_ovf::u1(int32,int32) brfalse FAIL ldc.i4 0xFFFF8000 ldc.i4 0x00000001 call int32 sub_ovf::i2(int32,int32) brfalse FAIL ldc.i4 0x00000001 ldc.i4 0x00000002 call int32 sub_ovf::u2(int32,int32) brfalse FAIL ldc.i4 0x80000000 ldc.i4 0x00000001 call int32 sub_ovf::i4(int32,int32) brfalse FAIL ldc.i4 0x0000000F ldc.i4 0x00000010 call int32 sub_ovf::u4(int32,int32) brfalse FAIL ldc.i8 0x8000000000000000 ldc.i8 0x0000000000000002 call int32 sub_ovf::i8(int64,int64) brfalse FAIL ldc.i8 0xFFFFFFFFFFFFFFFE ldc.i8 0xFFFFFFFFFFFFFFFF call int32 sub_ovf::u8(int64,int64) brfalse FAIL PASS: ldc.i4 100 ret FAIL: ldc.i4 0x0 ret } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/IL_Conformance/Old/Conformance_Base/sub_i4.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} .class public Sub_I4 { .method public static int32 _sub(int32,int32) { .maxstack 20 ldarg 0 ldarg 1 sub ret } .method public static int32 main(class [mscorlib]System.String[]) { .entrypoint .maxstack 20 ldc.i4 0x80000000 ldc.i4 0x80000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL ldc.i4 0x80000000 ldc.i4 0xFFFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x80000001 ceq brfalse FAIL ldc.i4 0x80000000 ldc.i4 0x00000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x80000000 ceq brfalse FAIL ldc.i4 0x80000000 ldc.i4 0x00000001 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x7FFFFFFF ceq brfalse FAIL ldc.i4 0x80000000 ldc.i4 0x7FFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000001 ceq brfalse FAIL ldc.i4 0x80000000 ldc.i4 0x55555555 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x2AAAAAAB ceq brfalse FAIL ldc.i4 0x80000000 ldc.i4 0xAAAAAAAA call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xD5555556 ceq brfalse FAIL ldc.i4 0xFFFFFFFF ldc.i4 0x80000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x7FFFFFFF ceq brfalse FAIL ldc.i4 0xFFFFFFFF ldc.i4 0xFFFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL ldc.i4 0xFFFFFFFF ldc.i4 0x00000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xFFFFFFFF ceq brfalse FAIL ldc.i4 0xFFFFFFFF ldc.i4 0x00000001 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xFFFFFFFE ceq brfalse FAIL ldc.i4 0xFFFFFFFF ldc.i4 0x7FFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x80000000 ceq brfalse FAIL ldc.i4 0xFFFFFFFF ldc.i4 0x55555555 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xAAAAAAAA ceq brfalse FAIL ldc.i4 0xFFFFFFFF ldc.i4 0xAAAAAAAA call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x55555555 ceq brfalse FAIL ldc.i4 0x00000000 ldc.i4 0x80000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x80000000 ceq brfalse FAIL ldc.i4 0x00000000 ldc.i4 0xFFFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000001 ceq brfalse FAIL ldc.i4 0x00000000 ldc.i4 0x00000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL ldc.i4 0x00000000 ldc.i4 0x00000001 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xFFFFFFFF ceq brfalse FAIL ldc.i4 0x00000000 ldc.i4 0x7FFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x80000001 ceq brfalse FAIL ldc.i4 0x00000000 ldc.i4 0x55555555 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xAAAAAAAB ceq brfalse FAIL ldc.i4 0x00000000 ldc.i4 0xAAAAAAAA call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x55555556 ceq brfalse FAIL ldc.i4 0x00000001 ldc.i4 0x80000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x80000001 ceq brfalse FAIL ldc.i4 0x00000001 ldc.i4 0xFFFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000002 ceq brfalse FAIL ldc.i4 0x00000001 ldc.i4 0x00000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000001 ceq brfalse FAIL ldc.i4 0x00000001 ldc.i4 0x00000001 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL ldc.i4 0x00000001 ldc.i4 0x7FFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x80000002 ceq brfalse FAIL ldc.i4 0x00000001 ldc.i4 0x55555555 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xAAAAAAAC ceq brfalse FAIL ldc.i4 0x00000001 ldc.i4 0xAAAAAAAA call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x55555557 ceq brfalse FAIL ldc.i4 0x7FFFFFFF ldc.i4 0x80000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xFFFFFFFF ceq brfalse FAIL ldc.i4 0x7FFFFFFF ldc.i4 0xFFFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x80000000 ceq brfalse FAIL ldc.i4 0x7FFFFFFF ldc.i4 0x00000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x7FFFFFFF ceq brfalse FAIL ldc.i4 0x7FFFFFFF ldc.i4 0x00000001 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x7FFFFFFE ceq brfalse FAIL ldc.i4 0x7FFFFFFF ldc.i4 0x7FFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL ldc.i4 0x7FFFFFFF ldc.i4 0x55555555 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x2AAAAAAA ceq brfalse FAIL ldc.i4 0x7FFFFFFF ldc.i4 0xAAAAAAAA call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xD5555555 ceq brfalse FAIL ldc.i4 0x55555555 ldc.i4 0x80000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xD5555555 ceq brfalse FAIL ldc.i4 0x55555555 ldc.i4 0xFFFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x55555556 ceq brfalse FAIL ldc.i4 0x55555555 ldc.i4 0x00000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x55555555 ceq brfalse FAIL ldc.i4 0x55555555 ldc.i4 0x00000001 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x55555554 ceq brfalse FAIL ldc.i4 0x55555555 ldc.i4 0x7FFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xD5555556 ceq brfalse FAIL ldc.i4 0x55555555 ldc.i4 0x55555555 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL ldc.i4 0x55555555 ldc.i4 0xAAAAAAAA call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xAAAAAAAB ceq brfalse FAIL ldc.i4 0xAAAAAAAA ldc.i4 0x80000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x2AAAAAAA ceq brfalse FAIL ldc.i4 0xAAAAAAAA ldc.i4 0xFFFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xAAAAAAAB ceq brfalse FAIL ldc.i4 0xAAAAAAAA ldc.i4 0x00000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xAAAAAAAA ceq brfalse FAIL ldc.i4 0xAAAAAAAA ldc.i4 0x00000001 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xAAAAAAA9 ceq brfalse FAIL ldc.i4 0xAAAAAAAA ldc.i4 0x7FFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x2AAAAAAB ceq brfalse FAIL ldc.i4 0xAAAAAAAA ldc.i4 0x55555555 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x55555555 ceq brfalse FAIL ldc.i4 0xAAAAAAAA ldc.i4 0xAAAAAAAA call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL ldc.i4 100 ret FAIL: ldc.i4 0x0 ret } } .assembly sub_i4{}
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} .class public Sub_I4 { .method public static int32 _sub(int32,int32) { .maxstack 20 ldarg 0 ldarg 1 sub ret } .method public static int32 main(class [mscorlib]System.String[]) { .entrypoint .maxstack 20 ldc.i4 0x80000000 ldc.i4 0x80000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL ldc.i4 0x80000000 ldc.i4 0xFFFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x80000001 ceq brfalse FAIL ldc.i4 0x80000000 ldc.i4 0x00000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x80000000 ceq brfalse FAIL ldc.i4 0x80000000 ldc.i4 0x00000001 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x7FFFFFFF ceq brfalse FAIL ldc.i4 0x80000000 ldc.i4 0x7FFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000001 ceq brfalse FAIL ldc.i4 0x80000000 ldc.i4 0x55555555 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x2AAAAAAB ceq brfalse FAIL ldc.i4 0x80000000 ldc.i4 0xAAAAAAAA call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xD5555556 ceq brfalse FAIL ldc.i4 0xFFFFFFFF ldc.i4 0x80000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x7FFFFFFF ceq brfalse FAIL ldc.i4 0xFFFFFFFF ldc.i4 0xFFFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL ldc.i4 0xFFFFFFFF ldc.i4 0x00000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xFFFFFFFF ceq brfalse FAIL ldc.i4 0xFFFFFFFF ldc.i4 0x00000001 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xFFFFFFFE ceq brfalse FAIL ldc.i4 0xFFFFFFFF ldc.i4 0x7FFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x80000000 ceq brfalse FAIL ldc.i4 0xFFFFFFFF ldc.i4 0x55555555 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xAAAAAAAA ceq brfalse FAIL ldc.i4 0xFFFFFFFF ldc.i4 0xAAAAAAAA call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x55555555 ceq brfalse FAIL ldc.i4 0x00000000 ldc.i4 0x80000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x80000000 ceq brfalse FAIL ldc.i4 0x00000000 ldc.i4 0xFFFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000001 ceq brfalse FAIL ldc.i4 0x00000000 ldc.i4 0x00000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL ldc.i4 0x00000000 ldc.i4 0x00000001 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xFFFFFFFF ceq brfalse FAIL ldc.i4 0x00000000 ldc.i4 0x7FFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x80000001 ceq brfalse FAIL ldc.i4 0x00000000 ldc.i4 0x55555555 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xAAAAAAAB ceq brfalse FAIL ldc.i4 0x00000000 ldc.i4 0xAAAAAAAA call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x55555556 ceq brfalse FAIL ldc.i4 0x00000001 ldc.i4 0x80000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x80000001 ceq brfalse FAIL ldc.i4 0x00000001 ldc.i4 0xFFFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000002 ceq brfalse FAIL ldc.i4 0x00000001 ldc.i4 0x00000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000001 ceq brfalse FAIL ldc.i4 0x00000001 ldc.i4 0x00000001 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL ldc.i4 0x00000001 ldc.i4 0x7FFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x80000002 ceq brfalse FAIL ldc.i4 0x00000001 ldc.i4 0x55555555 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xAAAAAAAC ceq brfalse FAIL ldc.i4 0x00000001 ldc.i4 0xAAAAAAAA call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x55555557 ceq brfalse FAIL ldc.i4 0x7FFFFFFF ldc.i4 0x80000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xFFFFFFFF ceq brfalse FAIL ldc.i4 0x7FFFFFFF ldc.i4 0xFFFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x80000000 ceq brfalse FAIL ldc.i4 0x7FFFFFFF ldc.i4 0x00000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x7FFFFFFF ceq brfalse FAIL ldc.i4 0x7FFFFFFF ldc.i4 0x00000001 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x7FFFFFFE ceq brfalse FAIL ldc.i4 0x7FFFFFFF ldc.i4 0x7FFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL ldc.i4 0x7FFFFFFF ldc.i4 0x55555555 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x2AAAAAAA ceq brfalse FAIL ldc.i4 0x7FFFFFFF ldc.i4 0xAAAAAAAA call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xD5555555 ceq brfalse FAIL ldc.i4 0x55555555 ldc.i4 0x80000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xD5555555 ceq brfalse FAIL ldc.i4 0x55555555 ldc.i4 0xFFFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x55555556 ceq brfalse FAIL ldc.i4 0x55555555 ldc.i4 0x00000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x55555555 ceq brfalse FAIL ldc.i4 0x55555555 ldc.i4 0x00000001 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x55555554 ceq brfalse FAIL ldc.i4 0x55555555 ldc.i4 0x7FFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xD5555556 ceq brfalse FAIL ldc.i4 0x55555555 ldc.i4 0x55555555 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL ldc.i4 0x55555555 ldc.i4 0xAAAAAAAA call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xAAAAAAAB ceq brfalse FAIL ldc.i4 0xAAAAAAAA ldc.i4 0x80000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x2AAAAAAA ceq brfalse FAIL ldc.i4 0xAAAAAAAA ldc.i4 0xFFFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xAAAAAAAB ceq brfalse FAIL ldc.i4 0xAAAAAAAA ldc.i4 0x00000000 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xAAAAAAAA ceq brfalse FAIL ldc.i4 0xAAAAAAAA ldc.i4 0x00000001 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0xAAAAAAA9 ceq brfalse FAIL ldc.i4 0xAAAAAAAA ldc.i4 0x7FFFFFFF call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x2AAAAAAB ceq brfalse FAIL ldc.i4 0xAAAAAAAA ldc.i4 0x55555555 call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x55555555 ceq brfalse FAIL ldc.i4 0xAAAAAAAA ldc.i4 0xAAAAAAAA call int32 Sub_I4::_sub(int32,int32) ldc.i4 0x00000000 ceq brfalse FAIL ldc.i4 100 ret FAIL: ldc.i4 0x0 ret } } .assembly sub_i4{}
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest865/Generated865.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 } .assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) } //TYPES IN FORWARDER ASSEMBLIES: //TEST ASSEMBLY: .assembly Generated865 { .hash algorithm 0x00008004 } .assembly extern xunit.core {} .class public BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class public BaseClass1 extends BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void BaseClass0::.ctor() ret } } .class public G3_C1337`1<T0> extends class G2_C374`2<!T0,class BaseClass0> implements class IBase2`2<class BaseClass0,class BaseClass1> { .method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining { ldstr "G3_C1337::Method7.15622<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod4058() cil managed noinlining { ldstr "G3_C1337::ClassMethod4058.15623()" ret } .method public hidebysig newslot virtual instance string ClassMethod4059() cil managed noinlining { ldstr "G3_C1337::ClassMethod4059.15624()" ret } .method public hidebysig newslot virtual instance string ClassMethod4060<M0>() cil managed noinlining { ldstr "G3_C1337::ClassMethod4060.15625<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod4061<M0>() cil managed noinlining { ldstr "G3_C1337::ClassMethod4061.15626<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G2_C374`2<!T0,class BaseClass0>::.ctor() ret } } .class public abstract G2_C374`2<T0, T1> extends class G1_C7`2<!T0,class BaseClass1> implements class IBase2`2<class BaseClass0,class BaseClass0>, class IBase1`1<!T1> { .method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining { ldstr "G2_C374::Method7.8288<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<class BaseClass0,class BaseClass0>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<[1]>() ldstr "G2_C374::Method7.MI.8289<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string Method4() cil managed noinlining { ldstr "G2_C374::Method4.8290()" ret } .method public hidebysig newslot virtual instance string 'IBase1<T1>.Method4'() cil managed noinlining { .override method instance string class IBase1`1<!T1>::Method4() ldstr "G2_C374::Method4.MI.8291()" ret } .method public hidebysig virtual instance string Method5() cil managed noinlining { ldstr "G2_C374::Method5.8292()" ret } .method public hidebysig virtual instance string Method6<M0>() cil managed noinlining { ldstr "G2_C374::Method6.8293<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod2091<M0>() cil managed noinlining { ldstr "G2_C374::ClassMethod2091.8294<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod2092<M0>() cil managed noinlining { ldstr "G2_C374::ClassMethod2092.8295<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'G1_C7<T0,class BaseClass1>.ClassMethod1328'() cil managed noinlining { .override method instance string class G1_C7`2<!T0,class BaseClass1>::ClassMethod1328() ldstr "G2_C374::ClassMethod1328.MI.8296()" ret } .method public hidebysig newslot virtual instance string 'G1_C7<T0,class BaseClass1>.ClassMethod1329'() cil managed noinlining { .override method instance string class G1_C7`2<!T0,class BaseClass1>::ClassMethod1329() ldstr "G2_C374::ClassMethod1329.MI.8297()" ret } .method public hidebysig newslot virtual instance string 'G1_C7<T0,class BaseClass1>.ClassMethod1331'<M0>() cil managed noinlining { .override method instance string class G1_C7`2<!T0,class BaseClass1>::ClassMethod1331<[1]>() ldstr "G2_C374::ClassMethod1331.MI.8298<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G1_C7`2<!T0,class BaseClass1>::.ctor() ret } } .class interface public abstract IBase2`2<+T0, -T1> { .method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { } } .class public abstract G1_C7`2<T0, T1> implements class IBase1`1<!T0>, class IBase2`2<class BaseClass1,!T0> { .method public hidebysig virtual instance string Method4() cil managed noinlining { ldstr "G1_C7::Method4.4811()" ret } .method public hidebysig newslot virtual instance string Method5() cil managed noinlining { ldstr "G1_C7::Method5.4812()" ret } .method public hidebysig newslot virtual instance string Method6<M0>() cil managed noinlining { ldstr "G1_C7::Method6.4813<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method6'<M0>() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method6<[1]>() ldstr "G1_C7::Method6.MI.4814<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G1_C7::Method7.4815<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<class BaseClass1,T0>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<class BaseClass1,!T0>::Method7<[1]>() ldstr "G1_C7::Method7.MI.4816<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1328() cil managed noinlining { ldstr "G1_C7::ClassMethod1328.4817()" ret } .method public hidebysig newslot virtual instance string ClassMethod1329() cil managed noinlining { ldstr "G1_C7::ClassMethod1329.4818()" ret } .method public hidebysig newslot virtual instance string ClassMethod1330<M0>() cil managed noinlining { ldstr "G1_C7::ClassMethod1330.4819<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1331<M0>() cil managed noinlining { ldstr "G1_C7::ClassMethod1331.4820<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class interface public abstract IBase1`1<+T0> { .method public hidebysig newslot abstract virtual instance string Method4() cil managed { } .method public hidebysig newslot abstract virtual instance string Method5() cil managed { } .method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { } } .class public auto ansi beforefieldinit Generated865 { .method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1337.T<T0,(class G3_C1337`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 19 .locals init (string[] actualResults) ldc.i4.s 14 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1337.T<T0,(class G3_C1337`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 14 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::ClassMethod2091<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::ClassMethod2092<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::ClassMethod4058() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::ClassMethod4059() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::ClassMethod4060<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::ClassMethod4061<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1337.A<(class G3_C1337`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 19 .locals init (string[] actualResults) ldc.i4.s 14 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1337.A<(class G3_C1337`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 14 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod2091<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod2092<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod4058() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod4059() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod4060<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod4061<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1337.B<(class G3_C1337`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 19 .locals init (string[] actualResults) ldc.i4.s 14 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1337.B<(class G3_C1337`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 14 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod2091<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod2092<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod4058() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod4059() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod4060<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod4061<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C374.T.T<T0,T1,(class G2_C374`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 15 .locals init (string[] actualResults) ldc.i4.s 10 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C374.T.T<T0,T1,(class G2_C374`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 10 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<!!T0,!!T1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<!!T0,!!T1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<!!T0,!!T1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<!!T0,!!T1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<!!T0,!!T1>::ClassMethod2091<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<!!T0,!!T1>::ClassMethod2092<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C374.A.T<T1,(class G2_C374`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 15 .locals init (string[] actualResults) ldc.i4.s 10 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C374.A.T<T1,(class G2_C374`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 10 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,!!T1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,!!T1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,!!T1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,!!T1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,!!T1>::ClassMethod2091<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,!!T1>::ClassMethod2092<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C374.A.A<(class G2_C374`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 15 .locals init (string[] actualResults) ldc.i4.s 10 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C374.A.A<(class G2_C374`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 10 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod2091<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod2092<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C374.A.B<(class G2_C374`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 15 .locals init (string[] actualResults) ldc.i4.s 10 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C374.A.B<(class G2_C374`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 10 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass1>::ClassMethod2091<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass1>::ClassMethod2092<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C374.B.T<T1,(class G2_C374`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 15 .locals init (string[] actualResults) ldc.i4.s 10 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C374.B.T<T1,(class G2_C374`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 10 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,!!T1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,!!T1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,!!T1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,!!T1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,!!T1>::ClassMethod2091<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,!!T1>::ClassMethod2092<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C374.B.A<(class G2_C374`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 15 .locals init (string[] actualResults) ldc.i4.s 10 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C374.B.A<(class G2_C374`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 10 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod2091<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod2092<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C374.B.B<(class G2_C374`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 15 .locals init (string[] actualResults) ldc.i4.s 10 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C374.B.B<(class G2_C374`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 10 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass1>::ClassMethod2091<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass1>::ClassMethod2092<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C7.T.T<T0,T1,(class G1_C7`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C7.T.T<T0,T1,(class G1_C7`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<!!T0,!!T1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<!!T0,!!T1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<!!T0,!!T1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<!!T0,!!T1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C7.A.T<T1,(class G1_C7`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C7.A.T<T1,(class G1_C7`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C7.A.A<(class G1_C7`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C7.A.A<(class G1_C7`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C7.A.B<(class G1_C7`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C7.A.B<(class G1_C7`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C7.B.T<T1,(class G1_C7`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C7.B.T<T1,(class G1_C7`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C7.B.A<(class G1_C7`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C7.B.A<(class G1_C7`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C7.B.B<(class G1_C7`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C7.B.B<(class G1_C7`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method public hidebysig static void MethodCallingTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calling Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1337`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C7`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1331<object>() ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1330<object>() ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1329() ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1328() ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C7::Method7.4815<System.Object>()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G2_C374::Method5.8292()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G1_C7::Method4.4811()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C374::Method4.MI.8291()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C374::Method5.8292()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G1_C7::Method7.MI.4816<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C374::Method7.MI.8289<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G3_C1337::Method7.15622<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C7::Method7.MI.4816<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C374`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod2092<object>() ldstr "G2_C374::ClassMethod2092.8295<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod2091<object>() ldstr "G2_C374::ClassMethod2091.8294<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C374::Method5.8292()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G2_C374::Method4.8290()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C374::Method7.8288<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>() ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>() ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1329() ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1328() ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod4061<object>() ldstr "G3_C1337::ClassMethod4061.15626<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod4060<object>() ldstr "G3_C1337::ClassMethod4060.15625<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod4059() ldstr "G3_C1337::ClassMethod4059.15624()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod4058() ldstr "G3_C1337::ClassMethod4058.15623()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::Method7<object>() ldstr "G3_C1337::Method7.15622<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod2092<object>() ldstr "G2_C374::ClassMethod2092.8295<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod2091<object>() ldstr "G2_C374::ClassMethod2091.8294<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::Method6<object>() ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::Method5() ldstr "G2_C374::Method5.8292()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::Method4() ldstr "G2_C374::Method4.8290()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod1331<object>() ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod1330<object>() ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod1329() ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod1328() ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G3_C1337`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C7`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1331<object>() ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1330<object>() ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1329() ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1328() ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C7::Method7.4815<System.Object>()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G2_C374::Method5.8292()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G1_C7::Method4.4811()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G1_C7::Method4.4811()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C374::Method5.8292()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G1_C7::Method6.MI.4814<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C7::Method7.MI.4816<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C374::Method4.MI.8291()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C374::Method5.8292()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G3_C1337::Method7.15622<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C374`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod2092<object>() ldstr "G2_C374::ClassMethod2092.8295<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod2091<object>() ldstr "G2_C374::ClassMethod2091.8294<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G2_C374::Method5.8292()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C374::Method4.8290()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C374::Method7.8288<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1331<object>() ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1330<object>() ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1329() ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1328() ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C374::Method7.MI.8289<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod4061<object>() ldstr "G3_C1337::ClassMethod4061.15626<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod4060<object>() ldstr "G3_C1337::ClassMethod4060.15625<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod4059() ldstr "G3_C1337::ClassMethod4059.15624()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod4058() ldstr "G3_C1337::ClassMethod4058.15623()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::Method7<object>() ldstr "G3_C1337::Method7.15622<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod2092<object>() ldstr "G2_C374::ClassMethod2092.8295<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod2091<object>() ldstr "G2_C374::ClassMethod2091.8294<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::Method6<object>() ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::Method5() ldstr "G2_C374::Method5.8292()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::Method4() ldstr "G2_C374::Method4.8290()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod1331<object>() ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod1330<object>() ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod1329() ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod1328() ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void ConstrainedCallsTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Constrained Calls Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1337`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G1_C7::Method4.4811()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G1_C7::Method7.4815<System.Object>()#" call void Generated865::M.G1_C7.T.T<class BaseClass0,class BaseClass1,class G3_C1337`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G1_C7::Method4.4811()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G1_C7::Method7.4815<System.Object>()#" call void Generated865::M.G1_C7.A.T<class BaseClass1,class G3_C1337`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G1_C7::Method4.4811()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G1_C7::Method7.4815<System.Object>()#" call void Generated865::M.G1_C7.A.B<class G3_C1337`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C374::Method4.MI.8291()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#" call void Generated865::M.IBase1.T<class BaseClass0,class G3_C1337`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C374::Method4.MI.8291()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#" call void Generated865::M.IBase1.A<class G3_C1337`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C7::Method7.MI.4816<System.Object>()#" call void Generated865::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G3_C1337`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C7::Method7.MI.4816<System.Object>()#" call void Generated865::M.IBase2.B.T<class BaseClass0,class G3_C1337`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C7::Method7.MI.4816<System.Object>()#" call void Generated865::M.IBase2.B.A<class G3_C1337`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C374::Method7.MI.8289<System.Object>()#" call void Generated865::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1337`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C374::Method7.MI.8289<System.Object>()#" call void Generated865::M.IBase2.A.T<class BaseClass0,class G3_C1337`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C374::Method7.MI.8289<System.Object>()#" call void Generated865::M.IBase2.A.A<class G3_C1337`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G3_C1337::Method7.15622<System.Object>()#" call void Generated865::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1337`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G3_C1337::Method7.15622<System.Object>()#" call void Generated865::M.IBase2.A.T<class BaseClass1,class G3_C1337`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G3_C1337::Method7.15622<System.Object>()#" call void Generated865::M.IBase2.A.B<class G3_C1337`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C7::Method7.MI.4816<System.Object>()#" call void Generated865::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1337`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C7::Method7.MI.4816<System.Object>()#" call void Generated865::M.IBase2.B.T<class BaseClass1,class G3_C1337`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C7::Method7.MI.4816<System.Object>()#" call void Generated865::M.IBase2.B.B<class G3_C1337`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G2_C374::ClassMethod2091.8294<System.Object>()#G2_C374::ClassMethod2092.8295<System.Object>()#G2_C374::Method4.8290()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G2_C374::Method7.8288<System.Object>()#" call void Generated865::M.G2_C374.T.T<class BaseClass0,class BaseClass0,class G3_C1337`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G2_C374::ClassMethod2091.8294<System.Object>()#G2_C374::ClassMethod2092.8295<System.Object>()#G2_C374::Method4.8290()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G2_C374::Method7.8288<System.Object>()#" call void Generated865::M.G2_C374.A.T<class BaseClass0,class G3_C1337`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G2_C374::ClassMethod2091.8294<System.Object>()#G2_C374::ClassMethod2092.8295<System.Object>()#G2_C374::Method4.8290()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G2_C374::Method7.8288<System.Object>()#" call void Generated865::M.G2_C374.A.A<class G3_C1337`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G2_C374::ClassMethod2091.8294<System.Object>()#G2_C374::ClassMethod2092.8295<System.Object>()#G3_C1337::ClassMethod4058.15623()#G3_C1337::ClassMethod4059.15624()#G3_C1337::ClassMethod4060.15625<System.Object>()#G3_C1337::ClassMethod4061.15626<System.Object>()#G2_C374::Method4.8290()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G3_C1337::Method7.15622<System.Object>()#" call void Generated865::M.G3_C1337.T<class BaseClass0,class G3_C1337`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G2_C374::ClassMethod2091.8294<System.Object>()#G2_C374::ClassMethod2092.8295<System.Object>()#G3_C1337::ClassMethod4058.15623()#G3_C1337::ClassMethod4059.15624()#G3_C1337::ClassMethod4060.15625<System.Object>()#G3_C1337::ClassMethod4061.15626<System.Object>()#G2_C374::Method4.8290()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G3_C1337::Method7.15622<System.Object>()#" call void Generated865::M.G3_C1337.A<class G3_C1337`1<class BaseClass0>>(!!0,string) newobj instance void class G3_C1337`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G1_C7::Method4.4811()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G1_C7::Method7.4815<System.Object>()#" call void Generated865::M.G1_C7.T.T<class BaseClass1,class BaseClass1,class G3_C1337`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G1_C7::Method4.4811()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G1_C7::Method7.4815<System.Object>()#" call void Generated865::M.G1_C7.B.T<class BaseClass1,class G3_C1337`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G1_C7::Method4.4811()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G1_C7::Method7.4815<System.Object>()#" call void Generated865::M.G1_C7.B.B<class G3_C1337`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C7::Method4.4811()#G2_C374::Method5.8292()#G1_C7::Method6.MI.4814<System.Object>()#" call void Generated865::M.IBase1.T<class BaseClass1,class G3_C1337`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C7::Method4.4811()#G2_C374::Method5.8292()#G1_C7::Method6.MI.4814<System.Object>()#" call void Generated865::M.IBase1.B<class G3_C1337`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C7::Method7.MI.4816<System.Object>()#" call void Generated865::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1337`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C7::Method7.MI.4816<System.Object>()#" call void Generated865::M.IBase2.B.T<class BaseClass1,class G3_C1337`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C7::Method7.MI.4816<System.Object>()#" call void Generated865::M.IBase2.B.B<class G3_C1337`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C374::Method4.MI.8291()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#" call void Generated865::M.IBase1.T<class BaseClass0,class G3_C1337`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C374::Method4.MI.8291()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#" call void Generated865::M.IBase1.A<class G3_C1337`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G3_C1337::Method7.15622<System.Object>()#" call void Generated865::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1337`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G3_C1337::Method7.15622<System.Object>()#" call void Generated865::M.IBase2.A.T<class BaseClass1,class G3_C1337`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G3_C1337::Method7.15622<System.Object>()#" call void Generated865::M.IBase2.A.B<class G3_C1337`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G2_C374::ClassMethod2091.8294<System.Object>()#G2_C374::ClassMethod2092.8295<System.Object>()#G2_C374::Method4.8290()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G2_C374::Method7.8288<System.Object>()#" call void Generated865::M.G2_C374.T.T<class BaseClass1,class BaseClass0,class G3_C1337`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G2_C374::ClassMethod2091.8294<System.Object>()#G2_C374::ClassMethod2092.8295<System.Object>()#G2_C374::Method4.8290()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G2_C374::Method7.8288<System.Object>()#" call void Generated865::M.G2_C374.B.T<class BaseClass0,class G3_C1337`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G2_C374::ClassMethod2091.8294<System.Object>()#G2_C374::ClassMethod2092.8295<System.Object>()#G2_C374::Method4.8290()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G2_C374::Method7.8288<System.Object>()#" call void Generated865::M.G2_C374.B.A<class G3_C1337`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C374::Method7.MI.8289<System.Object>()#" call void Generated865::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1337`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C374::Method7.MI.8289<System.Object>()#" call void Generated865::M.IBase2.A.T<class BaseClass0,class G3_C1337`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C374::Method7.MI.8289<System.Object>()#" call void Generated865::M.IBase2.A.A<class G3_C1337`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G2_C374::ClassMethod2091.8294<System.Object>()#G2_C374::ClassMethod2092.8295<System.Object>()#G3_C1337::ClassMethod4058.15623()#G3_C1337::ClassMethod4059.15624()#G3_C1337::ClassMethod4060.15625<System.Object>()#G3_C1337::ClassMethod4061.15626<System.Object>()#G2_C374::Method4.8290()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G3_C1337::Method7.15622<System.Object>()#" call void Generated865::M.G3_C1337.T<class BaseClass1,class G3_C1337`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G2_C374::ClassMethod2091.8294<System.Object>()#G2_C374::ClassMethod2092.8295<System.Object>()#G3_C1337::ClassMethod4058.15623()#G3_C1337::ClassMethod4059.15624()#G3_C1337::ClassMethod4060.15625<System.Object>()#G3_C1337::ClassMethod4061.15626<System.Object>()#G2_C374::Method4.8290()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G3_C1337::Method7.15622<System.Object>()#" call void Generated865::M.G3_C1337.B<class G3_C1337`1<class BaseClass1>>(!!0,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed { .maxstack 10 ldstr "===================== Struct Constrained Interface Calls Test =====================" call void [mscorlib]System.Console::WriteLine(string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void CalliTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calli Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1337`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C7`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1331<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1330<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1329() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1328() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G1_C7::Method7.4815<System.Object>()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method5.8292()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G1_C7::Method4.4811()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method4.MI.8291()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method5.8292()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G1_C7::Method7.MI.4816<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method7.MI.8289<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G3_C1337::Method7.15622<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G1_C7::Method7.MI.4816<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod2092<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod2092.8295<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod2091<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod2091.8294<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method5.8292()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method4.8290()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method7.8288<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1329() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1328() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::ClassMethod4061<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G3_C1337::ClassMethod4061.15626<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::ClassMethod4060<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G3_C1337::ClassMethod4060.15625<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::ClassMethod4059() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G3_C1337::ClassMethod4059.15624()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::ClassMethod4058() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G3_C1337::ClassMethod4058.15623()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G3_C1337::Method7.15622<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::ClassMethod2092<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod2092.8295<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::ClassMethod2091<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod2091.8294<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::Method5() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method5.8292()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::Method4() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method4.8290()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::ClassMethod1331<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::ClassMethod1330<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::ClassMethod1329() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::ClassMethod1328() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G3_C1337`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C7`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1331<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1330<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1329() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1328() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G1_C7::Method7.4815<System.Object>()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method5.8292()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G1_C7::Method4.4811()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G1_C7::Method4.4811()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method5.8292()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G1_C7::Method6.MI.4814<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G1_C7::Method7.MI.4816<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method4.MI.8291()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method5.8292()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G3_C1337::Method7.15622<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod2092<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod2092.8295<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod2091<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod2091.8294<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method5.8292()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method4.8290()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method7.8288<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1331<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1330<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1329() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1328() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method7.MI.8289<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::ClassMethod4061<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G3_C1337::ClassMethod4061.15626<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::ClassMethod4060<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G3_C1337::ClassMethod4060.15625<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::ClassMethod4059() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G3_C1337::ClassMethod4059.15624()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::ClassMethod4058() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G3_C1337::ClassMethod4058.15623()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G3_C1337::Method7.15622<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::ClassMethod2092<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod2092.8295<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::ClassMethod2091<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod2091.8294<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::Method5() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method5.8292()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::Method4() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method4.8290()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::ClassMethod1331<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::ClassMethod1330<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::ClassMethod1329() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::ClassMethod1328() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 10 call void Generated865::MethodCallingTest() call void Generated865::ConstrainedCallsTest() call void Generated865::StructConstrainedInterfaceCallsTest() call void Generated865::CalliTest() ldc.i4 100 ret } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 } .assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) } //TYPES IN FORWARDER ASSEMBLIES: //TEST ASSEMBLY: .assembly Generated865 { .hash algorithm 0x00008004 } .assembly extern xunit.core {} .class public BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class public BaseClass1 extends BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void BaseClass0::.ctor() ret } } .class public G3_C1337`1<T0> extends class G2_C374`2<!T0,class BaseClass0> implements class IBase2`2<class BaseClass0,class BaseClass1> { .method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining { ldstr "G3_C1337::Method7.15622<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod4058() cil managed noinlining { ldstr "G3_C1337::ClassMethod4058.15623()" ret } .method public hidebysig newslot virtual instance string ClassMethod4059() cil managed noinlining { ldstr "G3_C1337::ClassMethod4059.15624()" ret } .method public hidebysig newslot virtual instance string ClassMethod4060<M0>() cil managed noinlining { ldstr "G3_C1337::ClassMethod4060.15625<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod4061<M0>() cil managed noinlining { ldstr "G3_C1337::ClassMethod4061.15626<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G2_C374`2<!T0,class BaseClass0>::.ctor() ret } } .class public abstract G2_C374`2<T0, T1> extends class G1_C7`2<!T0,class BaseClass1> implements class IBase2`2<class BaseClass0,class BaseClass0>, class IBase1`1<!T1> { .method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining { ldstr "G2_C374::Method7.8288<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<class BaseClass0,class BaseClass0>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<[1]>() ldstr "G2_C374::Method7.MI.8289<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string Method4() cil managed noinlining { ldstr "G2_C374::Method4.8290()" ret } .method public hidebysig newslot virtual instance string 'IBase1<T1>.Method4'() cil managed noinlining { .override method instance string class IBase1`1<!T1>::Method4() ldstr "G2_C374::Method4.MI.8291()" ret } .method public hidebysig virtual instance string Method5() cil managed noinlining { ldstr "G2_C374::Method5.8292()" ret } .method public hidebysig virtual instance string Method6<M0>() cil managed noinlining { ldstr "G2_C374::Method6.8293<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod2091<M0>() cil managed noinlining { ldstr "G2_C374::ClassMethod2091.8294<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod2092<M0>() cil managed noinlining { ldstr "G2_C374::ClassMethod2092.8295<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'G1_C7<T0,class BaseClass1>.ClassMethod1328'() cil managed noinlining { .override method instance string class G1_C7`2<!T0,class BaseClass1>::ClassMethod1328() ldstr "G2_C374::ClassMethod1328.MI.8296()" ret } .method public hidebysig newslot virtual instance string 'G1_C7<T0,class BaseClass1>.ClassMethod1329'() cil managed noinlining { .override method instance string class G1_C7`2<!T0,class BaseClass1>::ClassMethod1329() ldstr "G2_C374::ClassMethod1329.MI.8297()" ret } .method public hidebysig newslot virtual instance string 'G1_C7<T0,class BaseClass1>.ClassMethod1331'<M0>() cil managed noinlining { .override method instance string class G1_C7`2<!T0,class BaseClass1>::ClassMethod1331<[1]>() ldstr "G2_C374::ClassMethod1331.MI.8298<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G1_C7`2<!T0,class BaseClass1>::.ctor() ret } } .class interface public abstract IBase2`2<+T0, -T1> { .method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { } } .class public abstract G1_C7`2<T0, T1> implements class IBase1`1<!T0>, class IBase2`2<class BaseClass1,!T0> { .method public hidebysig virtual instance string Method4() cil managed noinlining { ldstr "G1_C7::Method4.4811()" ret } .method public hidebysig newslot virtual instance string Method5() cil managed noinlining { ldstr "G1_C7::Method5.4812()" ret } .method public hidebysig newslot virtual instance string Method6<M0>() cil managed noinlining { ldstr "G1_C7::Method6.4813<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method6'<M0>() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method6<[1]>() ldstr "G1_C7::Method6.MI.4814<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G1_C7::Method7.4815<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<class BaseClass1,T0>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<class BaseClass1,!T0>::Method7<[1]>() ldstr "G1_C7::Method7.MI.4816<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1328() cil managed noinlining { ldstr "G1_C7::ClassMethod1328.4817()" ret } .method public hidebysig newslot virtual instance string ClassMethod1329() cil managed noinlining { ldstr "G1_C7::ClassMethod1329.4818()" ret } .method public hidebysig newslot virtual instance string ClassMethod1330<M0>() cil managed noinlining { ldstr "G1_C7::ClassMethod1330.4819<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1331<M0>() cil managed noinlining { ldstr "G1_C7::ClassMethod1331.4820<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class interface public abstract IBase1`1<+T0> { .method public hidebysig newslot abstract virtual instance string Method4() cil managed { } .method public hidebysig newslot abstract virtual instance string Method5() cil managed { } .method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { } } .class public auto ansi beforefieldinit Generated865 { .method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1337.T<T0,(class G3_C1337`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 19 .locals init (string[] actualResults) ldc.i4.s 14 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1337.T<T0,(class G3_C1337`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 14 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::ClassMethod2091<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::ClassMethod2092<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::ClassMethod4058() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::ClassMethod4059() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::ClassMethod4060<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::ClassMethod4061<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<!!T0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1337.A<(class G3_C1337`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 19 .locals init (string[] actualResults) ldc.i4.s 14 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1337.A<(class G3_C1337`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 14 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod2091<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod2092<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod4058() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod4059() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod4060<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod4061<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1337.B<(class G3_C1337`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 19 .locals init (string[] actualResults) ldc.i4.s 14 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1337.B<(class G3_C1337`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 14 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod2091<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod2092<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod4058() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod4059() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod4060<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod4061<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1337`1<class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C374.T.T<T0,T1,(class G2_C374`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 15 .locals init (string[] actualResults) ldc.i4.s 10 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C374.T.T<T0,T1,(class G2_C374`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 10 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<!!T0,!!T1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<!!T0,!!T1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<!!T0,!!T1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<!!T0,!!T1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<!!T0,!!T1>::ClassMethod2091<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<!!T0,!!T1>::ClassMethod2092<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C374.A.T<T1,(class G2_C374`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 15 .locals init (string[] actualResults) ldc.i4.s 10 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C374.A.T<T1,(class G2_C374`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 10 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,!!T1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,!!T1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,!!T1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,!!T1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,!!T1>::ClassMethod2091<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,!!T1>::ClassMethod2092<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C374.A.A<(class G2_C374`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 15 .locals init (string[] actualResults) ldc.i4.s 10 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C374.A.A<(class G2_C374`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 10 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod2091<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod2092<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C374.A.B<(class G2_C374`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 15 .locals init (string[] actualResults) ldc.i4.s 10 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C374.A.B<(class G2_C374`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 10 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass1>::ClassMethod2091<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass1>::ClassMethod2092<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C374.B.T<T1,(class G2_C374`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 15 .locals init (string[] actualResults) ldc.i4.s 10 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C374.B.T<T1,(class G2_C374`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 10 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,!!T1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,!!T1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,!!T1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,!!T1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,!!T1>::ClassMethod2091<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,!!T1>::ClassMethod2092<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C374.B.A<(class G2_C374`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 15 .locals init (string[] actualResults) ldc.i4.s 10 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C374.B.A<(class G2_C374`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 10 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod2091<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod2092<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C374.B.B<(class G2_C374`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 15 .locals init (string[] actualResults) ldc.i4.s 10 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C374.B.B<(class G2_C374`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 10 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass1>::ClassMethod2091<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass1>::ClassMethod2092<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C7.T.T<T0,T1,(class G1_C7`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C7.T.T<T0,T1,(class G1_C7`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<!!T0,!!T1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<!!T0,!!T1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<!!T0,!!T1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<!!T0,!!T1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C7.A.T<T1,(class G1_C7`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C7.A.T<T1,(class G1_C7`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C7.A.A<(class G1_C7`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C7.A.A<(class G1_C7`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C7.A.B<(class G1_C7`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C7.A.B<(class G1_C7`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C7.B.T<T1,(class G1_C7`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C7.B.T<T1,(class G1_C7`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C7.B.A<(class G1_C7`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C7.B.A<(class G1_C7`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C7.B.B<(class G1_C7`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C7.B.B<(class G1_C7`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1328() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1329() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1330<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1331<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method public hidebysig static void MethodCallingTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calling Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1337`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C7`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1331<object>() ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1330<object>() ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1329() ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1328() ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C7::Method7.4815<System.Object>()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G2_C374::Method5.8292()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G1_C7::Method4.4811()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C374::Method4.MI.8291()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C374::Method5.8292()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G1_C7::Method7.MI.4816<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C374::Method7.MI.8289<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G3_C1337::Method7.15622<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C7::Method7.MI.4816<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C374`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod2092<object>() ldstr "G2_C374::ClassMethod2092.8295<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod2091<object>() ldstr "G2_C374::ClassMethod2091.8294<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C374::Method5.8292()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G2_C374::Method4.8290()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C374::Method7.8288<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>() ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>() ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1329() ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1328() ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod4061<object>() ldstr "G3_C1337::ClassMethod4061.15626<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod4060<object>() ldstr "G3_C1337::ClassMethod4060.15625<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod4059() ldstr "G3_C1337::ClassMethod4059.15624()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod4058() ldstr "G3_C1337::ClassMethod4058.15623()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::Method7<object>() ldstr "G3_C1337::Method7.15622<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod2092<object>() ldstr "G2_C374::ClassMethod2092.8295<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod2091<object>() ldstr "G2_C374::ClassMethod2091.8294<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::Method6<object>() ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::Method5() ldstr "G2_C374::Method5.8292()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::Method4() ldstr "G2_C374::Method4.8290()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod1331<object>() ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod1330<object>() ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod1329() ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass0> callvirt instance string class G3_C1337`1<class BaseClass0>::ClassMethod1328() ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G3_C1337`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C7`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1331<object>() ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1330<object>() ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1329() ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1328() ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C7::Method7.4815<System.Object>()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G2_C374::Method5.8292()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C7`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G1_C7::Method4.4811()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G1_C7::Method4.4811()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C374::Method5.8292()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G1_C7::Method6.MI.4814<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C7::Method7.MI.4816<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C374::Method4.MI.8291()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C374::Method5.8292()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G3_C1337::Method7.15622<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C374`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod2092<object>() ldstr "G2_C374::ClassMethod2092.8295<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod2091<object>() ldstr "G2_C374::ClassMethod2091.8294<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G2_C374::Method5.8292()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C374::Method4.8290()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C374::Method7.8288<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1331<object>() ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1330<object>() ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1329() ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C374`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1328() ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C374::Method7.MI.8289<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod4061<object>() ldstr "G3_C1337::ClassMethod4061.15626<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod4060<object>() ldstr "G3_C1337::ClassMethod4060.15625<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod4059() ldstr "G3_C1337::ClassMethod4059.15624()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod4058() ldstr "G3_C1337::ClassMethod4058.15623()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::Method7<object>() ldstr "G3_C1337::Method7.15622<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod2092<object>() ldstr "G2_C374::ClassMethod2092.8295<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod2091<object>() ldstr "G2_C374::ClassMethod2091.8294<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::Method6<object>() ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::Method5() ldstr "G2_C374::Method5.8292()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::Method4() ldstr "G2_C374::Method4.8290()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod1331<object>() ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod1330<object>() ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod1329() ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1337`1<class BaseClass1> callvirt instance string class G3_C1337`1<class BaseClass1>::ClassMethod1328() ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void ConstrainedCallsTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Constrained Calls Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1337`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G1_C7::Method4.4811()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G1_C7::Method7.4815<System.Object>()#" call void Generated865::M.G1_C7.T.T<class BaseClass0,class BaseClass1,class G3_C1337`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G1_C7::Method4.4811()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G1_C7::Method7.4815<System.Object>()#" call void Generated865::M.G1_C7.A.T<class BaseClass1,class G3_C1337`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G1_C7::Method4.4811()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G1_C7::Method7.4815<System.Object>()#" call void Generated865::M.G1_C7.A.B<class G3_C1337`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C374::Method4.MI.8291()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#" call void Generated865::M.IBase1.T<class BaseClass0,class G3_C1337`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C374::Method4.MI.8291()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#" call void Generated865::M.IBase1.A<class G3_C1337`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C7::Method7.MI.4816<System.Object>()#" call void Generated865::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G3_C1337`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C7::Method7.MI.4816<System.Object>()#" call void Generated865::M.IBase2.B.T<class BaseClass0,class G3_C1337`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C7::Method7.MI.4816<System.Object>()#" call void Generated865::M.IBase2.B.A<class G3_C1337`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C374::Method7.MI.8289<System.Object>()#" call void Generated865::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1337`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C374::Method7.MI.8289<System.Object>()#" call void Generated865::M.IBase2.A.T<class BaseClass0,class G3_C1337`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C374::Method7.MI.8289<System.Object>()#" call void Generated865::M.IBase2.A.A<class G3_C1337`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G3_C1337::Method7.15622<System.Object>()#" call void Generated865::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1337`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G3_C1337::Method7.15622<System.Object>()#" call void Generated865::M.IBase2.A.T<class BaseClass1,class G3_C1337`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G3_C1337::Method7.15622<System.Object>()#" call void Generated865::M.IBase2.A.B<class G3_C1337`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C7::Method7.MI.4816<System.Object>()#" call void Generated865::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1337`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C7::Method7.MI.4816<System.Object>()#" call void Generated865::M.IBase2.B.T<class BaseClass1,class G3_C1337`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C7::Method7.MI.4816<System.Object>()#" call void Generated865::M.IBase2.B.B<class G3_C1337`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G2_C374::ClassMethod2091.8294<System.Object>()#G2_C374::ClassMethod2092.8295<System.Object>()#G2_C374::Method4.8290()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G2_C374::Method7.8288<System.Object>()#" call void Generated865::M.G2_C374.T.T<class BaseClass0,class BaseClass0,class G3_C1337`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G2_C374::ClassMethod2091.8294<System.Object>()#G2_C374::ClassMethod2092.8295<System.Object>()#G2_C374::Method4.8290()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G2_C374::Method7.8288<System.Object>()#" call void Generated865::M.G2_C374.A.T<class BaseClass0,class G3_C1337`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G2_C374::ClassMethod2091.8294<System.Object>()#G2_C374::ClassMethod2092.8295<System.Object>()#G2_C374::Method4.8290()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G2_C374::Method7.8288<System.Object>()#" call void Generated865::M.G2_C374.A.A<class G3_C1337`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G2_C374::ClassMethod2091.8294<System.Object>()#G2_C374::ClassMethod2092.8295<System.Object>()#G3_C1337::ClassMethod4058.15623()#G3_C1337::ClassMethod4059.15624()#G3_C1337::ClassMethod4060.15625<System.Object>()#G3_C1337::ClassMethod4061.15626<System.Object>()#G2_C374::Method4.8290()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G3_C1337::Method7.15622<System.Object>()#" call void Generated865::M.G3_C1337.T<class BaseClass0,class G3_C1337`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G2_C374::ClassMethod2091.8294<System.Object>()#G2_C374::ClassMethod2092.8295<System.Object>()#G3_C1337::ClassMethod4058.15623()#G3_C1337::ClassMethod4059.15624()#G3_C1337::ClassMethod4060.15625<System.Object>()#G3_C1337::ClassMethod4061.15626<System.Object>()#G2_C374::Method4.8290()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G3_C1337::Method7.15622<System.Object>()#" call void Generated865::M.G3_C1337.A<class G3_C1337`1<class BaseClass0>>(!!0,string) newobj instance void class G3_C1337`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G1_C7::Method4.4811()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G1_C7::Method7.4815<System.Object>()#" call void Generated865::M.G1_C7.T.T<class BaseClass1,class BaseClass1,class G3_C1337`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G1_C7::Method4.4811()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G1_C7::Method7.4815<System.Object>()#" call void Generated865::M.G1_C7.B.T<class BaseClass1,class G3_C1337`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G1_C7::Method4.4811()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G1_C7::Method7.4815<System.Object>()#" call void Generated865::M.G1_C7.B.B<class G3_C1337`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C7::Method4.4811()#G2_C374::Method5.8292()#G1_C7::Method6.MI.4814<System.Object>()#" call void Generated865::M.IBase1.T<class BaseClass1,class G3_C1337`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C7::Method4.4811()#G2_C374::Method5.8292()#G1_C7::Method6.MI.4814<System.Object>()#" call void Generated865::M.IBase1.B<class G3_C1337`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C7::Method7.MI.4816<System.Object>()#" call void Generated865::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1337`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C7::Method7.MI.4816<System.Object>()#" call void Generated865::M.IBase2.B.T<class BaseClass1,class G3_C1337`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C7::Method7.MI.4816<System.Object>()#" call void Generated865::M.IBase2.B.B<class G3_C1337`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C374::Method4.MI.8291()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#" call void Generated865::M.IBase1.T<class BaseClass0,class G3_C1337`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C374::Method4.MI.8291()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#" call void Generated865::M.IBase1.A<class G3_C1337`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G3_C1337::Method7.15622<System.Object>()#" call void Generated865::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1337`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G3_C1337::Method7.15622<System.Object>()#" call void Generated865::M.IBase2.A.T<class BaseClass1,class G3_C1337`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G3_C1337::Method7.15622<System.Object>()#" call void Generated865::M.IBase2.A.B<class G3_C1337`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G2_C374::ClassMethod2091.8294<System.Object>()#G2_C374::ClassMethod2092.8295<System.Object>()#G2_C374::Method4.8290()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G2_C374::Method7.8288<System.Object>()#" call void Generated865::M.G2_C374.T.T<class BaseClass1,class BaseClass0,class G3_C1337`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G2_C374::ClassMethod2091.8294<System.Object>()#G2_C374::ClassMethod2092.8295<System.Object>()#G2_C374::Method4.8290()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G2_C374::Method7.8288<System.Object>()#" call void Generated865::M.G2_C374.B.T<class BaseClass0,class G3_C1337`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G2_C374::ClassMethod2091.8294<System.Object>()#G2_C374::ClassMethod2092.8295<System.Object>()#G2_C374::Method4.8290()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G2_C374::Method7.8288<System.Object>()#" call void Generated865::M.G2_C374.B.A<class G3_C1337`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C374::Method7.MI.8289<System.Object>()#" call void Generated865::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1337`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C374::Method7.MI.8289<System.Object>()#" call void Generated865::M.IBase2.A.T<class BaseClass0,class G3_C1337`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C374::Method7.MI.8289<System.Object>()#" call void Generated865::M.IBase2.A.A<class G3_C1337`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G2_C374::ClassMethod2091.8294<System.Object>()#G2_C374::ClassMethod2092.8295<System.Object>()#G3_C1337::ClassMethod4058.15623()#G3_C1337::ClassMethod4059.15624()#G3_C1337::ClassMethod4060.15625<System.Object>()#G3_C1337::ClassMethod4061.15626<System.Object>()#G2_C374::Method4.8290()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G3_C1337::Method7.15622<System.Object>()#" call void Generated865::M.G3_C1337.T<class BaseClass1,class G3_C1337`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C374::ClassMethod1328.MI.8296()#G2_C374::ClassMethod1329.MI.8297()#G1_C7::ClassMethod1330.4819<System.Object>()#G2_C374::ClassMethod1331.MI.8298<System.Object>()#G2_C374::ClassMethod2091.8294<System.Object>()#G2_C374::ClassMethod2092.8295<System.Object>()#G3_C1337::ClassMethod4058.15623()#G3_C1337::ClassMethod4059.15624()#G3_C1337::ClassMethod4060.15625<System.Object>()#G3_C1337::ClassMethod4061.15626<System.Object>()#G2_C374::Method4.8290()#G2_C374::Method5.8292()#G2_C374::Method6.8293<System.Object>()#G3_C1337::Method7.15622<System.Object>()#" call void Generated865::M.G3_C1337.B<class G3_C1337`1<class BaseClass1>>(!!0,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed { .maxstack 10 ldstr "===================== Struct Constrained Interface Calls Test =====================" call void [mscorlib]System.Console::WriteLine(string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void CalliTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calli Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1337`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C7`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1331<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1330<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1329() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass1>::ClassMethod1328() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G1_C7::Method7.4815<System.Object>()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method5.8292()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G1_C7::Method4.4811()" ldstr "class G1_C7`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method4.MI.8291()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method5.8292()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G1_C7::Method7.MI.4816<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method7.MI.8289<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G3_C1337::Method7.15622<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G1_C7::Method7.MI.4816<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod2092<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod2092.8295<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod2091<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod2091.8294<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method5.8292()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method4.8290()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method7.8288<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1331<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1330<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1329() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass0,class BaseClass0>::ClassMethod1328() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G2_C374`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::ClassMethod4061<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G3_C1337::ClassMethod4061.15626<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::ClassMethod4060<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G3_C1337::ClassMethod4060.15625<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::ClassMethod4059() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G3_C1337::ClassMethod4059.15624()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::ClassMethod4058() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G3_C1337::ClassMethod4058.15623()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G3_C1337::Method7.15622<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::ClassMethod2092<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod2092.8295<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::ClassMethod2091<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod2091.8294<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::Method5() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method5.8292()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::Method4() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::Method4.8290()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::ClassMethod1331<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::ClassMethod1330<object>() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::ClassMethod1329() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass0>::ClassMethod1328() calli default string(class G3_C1337`1<class BaseClass0>) ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G3_C1337`1<class BaseClass0> on type class G3_C1337`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G3_C1337`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C7`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1331<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1330<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1329() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::ClassMethod1328() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G1_C7::Method7.4815<System.Object>()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method5.8292()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C7`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C7`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G1_C7::Method4.4811()" ldstr "class G1_C7`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G1_C7::Method4.4811()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method5.8292()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G1_C7::Method6.MI.4814<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G1_C7::Method7.MI.4816<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method4.MI.8291()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method5.8292()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G3_C1337::Method7.15622<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod2092<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod2092.8295<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod2091<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod2091.8294<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method5.8292()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method4.8290()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method7.8288<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1331<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1330<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1329() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C374`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C374`2<class BaseClass1,class BaseClass0>::ClassMethod1328() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G2_C374`2<class BaseClass1,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method7.MI.8289<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::ClassMethod4061<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G3_C1337::ClassMethod4061.15626<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::ClassMethod4060<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G3_C1337::ClassMethod4060.15625<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::ClassMethod4059() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G3_C1337::ClassMethod4059.15624()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::ClassMethod4058() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G3_C1337::ClassMethod4058.15623()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::Method7<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G3_C1337::Method7.15622<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::ClassMethod2092<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod2092.8295<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::ClassMethod2091<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod2091.8294<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method6.8293<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::Method5() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method5.8292()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::Method4() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::Method4.8290()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::ClassMethod1331<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod1331.MI.8298<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::ClassMethod1330<object>() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G1_C7::ClassMethod1330.4819<System.Object>()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::ClassMethod1329() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod1329.MI.8297()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1337`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1337`1<class BaseClass1>::ClassMethod1328() calli default string(class G3_C1337`1<class BaseClass1>) ldstr "G2_C374::ClassMethod1328.MI.8296()" ldstr "class G3_C1337`1<class BaseClass1> on type class G3_C1337`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 10 call void Generated865::MethodCallingTest() call void Generated865::ConstrainedCallsTest() call void Generated865::StructConstrainedInterfaceCallsTest() call void Generated865::CalliTest() ldc.i4 100 ret } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest1164/Generated1164.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 } .assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) } //TYPES IN FORWARDER ASSEMBLIES: //TEST ASSEMBLY: .assembly Generated1164 { .hash algorithm 0x00008004 } .assembly extern xunit.core {} .class public BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class public BaseClass1 extends BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void BaseClass0::.ctor() ret } } .class public G3_C1636`1<T0> extends class G2_C644`2<class BaseClass1,!T0> implements class IBase2`2<class BaseClass0,!T0> { .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G3_C1636::Method7.17192<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<class BaseClass0,T0>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<class BaseClass0,!T0>::Method7<[1]>() ldstr "G3_C1636::Method7.MI.17193<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod4665() cil managed noinlining { ldstr "G3_C1636::ClassMethod4665.17194()" ret } .method public hidebysig newslot virtual instance string ClassMethod4666<M0>() cil managed noinlining { ldstr "G3_C1636::ClassMethod4666.17195<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod4667<M0>() cil managed noinlining { ldstr "G3_C1636::ClassMethod4667.17196<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'G2_C644<class BaseClass1,T0>.ClassMethod2644'<M0>() cil managed noinlining { .override method instance string class G2_C644`2<class BaseClass1,!T0>::ClassMethod2644<[1]>() ldstr "G3_C1636::ClassMethod2644.MI.17197<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G2_C644`2<class BaseClass1,!T0>::.ctor() ret } } .class public abstract G2_C644`2<T0, T1> extends class G1_C12`2<class BaseClass0,!T1> implements class IBase2`2<class BaseClass1,!T1>, class IBase1`1<!T1> { .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G2_C644::Method7.10930<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<class BaseClass1,T1>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<class BaseClass1,!T1>::Method7<[1]>() ldstr "G2_C644::Method7.MI.10931<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string Method4() cil managed noinlining { ldstr "G2_C644::Method4.10932()" ret } .method public hidebysig virtual instance string Method5() cil managed noinlining { ldstr "G2_C644::Method5.10933()" ret } .method public hidebysig virtual instance string Method6<M0>() cil managed noinlining { ldstr "G2_C644::Method6.10934<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase1<T1>.Method6'<M0>() cil managed noinlining { .override method instance string class IBase1`1<!T1>::Method6<[1]>() ldstr "G2_C644::Method6.MI.10935<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod2644<M0>() cil managed noinlining { ldstr "G2_C644::ClassMethod2644.10936<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'G1_C12<class BaseClass0,T1>.ClassMethod1347'<M0>() cil managed noinlining { .override method instance string class G1_C12`2<class BaseClass0,!T1>::ClassMethod1347<[1]>() ldstr "G2_C644::ClassMethod1347.MI.10937<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G1_C12`2<class BaseClass0,!T1>::.ctor() ret } } .class interface public abstract IBase2`2<+T0, -T1> { .method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { } } .class public G1_C12`2<T0, T1> implements class IBase2`2<!T0,!T1>, class IBase1`1<class BaseClass0> { .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G1_C12::Method7.4863<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<T0,T1>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<!T0,!T1>::Method7<[1]>() ldstr "G1_C12::Method7.MI.4864<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string Method4() cil managed noinlining { ldstr "G1_C12::Method4.4865()" ret } .method public hidebysig virtual instance string Method5() cil managed noinlining { ldstr "G1_C12::Method5.4866()" ret } .method public hidebysig virtual instance string Method6<M0>() cil managed noinlining { ldstr "G1_C12::Method6.4867<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method6'<M0>() cil managed noinlining { .override method instance string class IBase1`1<class BaseClass0>::Method6<[1]>() ldstr "G1_C12::Method6.MI.4868<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1346<M0>() cil managed noinlining { ldstr "G1_C12::ClassMethod1346.4869<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1347<M0>() cil managed noinlining { ldstr "G1_C12::ClassMethod1347.4870<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class interface public abstract IBase1`1<+T0> { .method public hidebysig newslot abstract virtual instance string Method4() cil managed { } .method public hidebysig newslot abstract virtual instance string Method5() cil managed { } .method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { } } .class public auto ansi beforefieldinit Generated1164 { .method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1636.T<T0,(class G3_C1636`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 15 .locals init (string[] actualResults) ldc.i4.s 10 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1636.T<T0,(class G3_C1636`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 10 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<!!T0>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<!!T0>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<!!T0>::ClassMethod2644<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<!!T0>::ClassMethod4665() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<!!T0>::ClassMethod4666<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<!!T0>::ClassMethod4667<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<!!T0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1636.A<(class G3_C1636`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 15 .locals init (string[] actualResults) ldc.i4.s 10 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1636.A<(class G3_C1636`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 10 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod2644<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod4665() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod4666<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod4667<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1636.B<(class G3_C1636`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 15 .locals init (string[] actualResults) ldc.i4.s 10 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1636.B<(class G3_C1636`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 10 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod2644<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod4665() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod4666<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod4667<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C644.T.T<T0,T1,(class G2_C644`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 12 .locals init (string[] actualResults) ldc.i4.s 7 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C644.T.T<T0,T1,(class G2_C644`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 7 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<!!T0,!!T1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<!!T0,!!T1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<!!T0,!!T1>::ClassMethod2644<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C644.A.T<T1,(class G2_C644`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 12 .locals init (string[] actualResults) ldc.i4.s 7 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C644.A.T<T1,(class G2_C644`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 7 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,!!T1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,!!T1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,!!T1>::ClassMethod2644<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C644.A.A<(class G2_C644`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 12 .locals init (string[] actualResults) ldc.i4.s 7 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C644.A.A<(class G2_C644`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 7 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass0>::ClassMethod2644<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C644.A.B<(class G2_C644`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 12 .locals init (string[] actualResults) ldc.i4.s 7 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C644.A.B<(class G2_C644`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 7 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass1>::ClassMethod2644<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C644.B.T<T1,(class G2_C644`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 12 .locals init (string[] actualResults) ldc.i4.s 7 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C644.B.T<T1,(class G2_C644`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 7 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,!!T1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,!!T1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,!!T1>::ClassMethod2644<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C644.B.A<(class G2_C644`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 12 .locals init (string[] actualResults) ldc.i4.s 7 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C644.B.A<(class G2_C644`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 7 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::ClassMethod2644<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C644.B.B<(class G2_C644`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 12 .locals init (string[] actualResults) ldc.i4.s 7 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C644.B.B<(class G2_C644`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 7 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::ClassMethod2644<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C12.T.T<T0,T1,(class G1_C12`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C12.T.T<T0,T1,(class G1_C12`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<!!T0,!!T1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<!!T0,!!T1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C12.A.T<T1,(class G1_C12`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C12.A.T<T1,(class G1_C12`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C12.A.A<(class G1_C12`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C12.A.A<(class G1_C12`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C12.A.B<(class G1_C12`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C12.A.B<(class G1_C12`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C12.B.T<T1,(class G1_C12`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C12.B.T<T1,(class G1_C12`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C12.B.A<(class G1_C12`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C12.B.A<(class G1_C12`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C12.B.B<(class G1_C12`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C12.B.B<(class G1_C12`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method public hidebysig static void MethodCallingTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calling Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1636`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>() ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>() ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C644::Method5.10933()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G3_C1636::Method7.MI.17193<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C644::Method4.10932()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C644::Method5.10933()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C644::Method6.MI.10935<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G3_C1636::Method7.MI.17193<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C644`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::ClassMethod2644<object>() ldstr "G3_C1636::ClassMethod2644.MI.17197<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G2_C644::Method5.10933()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C644::Method4.10932()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>() ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>() ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C644::Method7.MI.10931<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C644::Method7.MI.10931<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1636`1<class BaseClass0> callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod4667<object>() ldstr "G3_C1636::ClassMethod4667.17196<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass0> callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod4666<object>() ldstr "G3_C1636::ClassMethod4666.17195<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass0> callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod4665() ldstr "G3_C1636::ClassMethod4665.17194()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass0> callvirt instance string class G3_C1636`1<class BaseClass0>::Method7<object>() ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass0> callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod2644<object>() ldstr "G3_C1636::ClassMethod2644.MI.17197<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass0> callvirt instance string class G3_C1636`1<class BaseClass0>::Method6<object>() ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass0> callvirt instance string class G3_C1636`1<class BaseClass0>::Method5() ldstr "G2_C644::Method5.10933()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass0> callvirt instance string class G3_C1636`1<class BaseClass0>::Method4() ldstr "G2_C644::Method4.10932()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass0> callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod1347<object>() ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass0> callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod1346<object>() ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G3_C1636`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>() ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>() ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G2_C644::Method5.10933()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G3_C1636::Method7.MI.17193<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C644::Method4.10932()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C644::Method5.10933()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C644::Method6.MI.10935<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C644`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::ClassMethod2644<object>() ldstr "G3_C1636::ClassMethod2644.MI.17197<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G2_C644::Method5.10933()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G2_C644::Method4.10932()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>() ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>() ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C644::Method7.MI.10931<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C644::Method4.10932()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C644::Method5.10933()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C644::Method6.MI.10935<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1636`1<class BaseClass1> callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod4667<object>() ldstr "G3_C1636::ClassMethod4667.17196<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass1> callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod4666<object>() ldstr "G3_C1636::ClassMethod4666.17195<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass1> callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod4665() ldstr "G3_C1636::ClassMethod4665.17194()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass1> callvirt instance string class G3_C1636`1<class BaseClass1>::Method7<object>() ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass1> callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod2644<object>() ldstr "G3_C1636::ClassMethod2644.MI.17197<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass1> callvirt instance string class G3_C1636`1<class BaseClass1>::Method6<object>() ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass1> callvirt instance string class G3_C1636`1<class BaseClass1>::Method5() ldstr "G2_C644::Method5.10933()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass1> callvirt instance string class G3_C1636`1<class BaseClass1>::Method4() ldstr "G2_C644::Method4.10932()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass1> callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod1347<object>() ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass1> callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod1346<object>() ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C12`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>() ldstr "G1_C12::ClassMethod1347.4870<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>() ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G1_C12::Method6.4867<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G1_C12::Method5.4866()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C12::Method7.4863<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G1_C12::Method4.4865()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G1_C12::Method5.4866()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G1_C12::Method6.MI.4868<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C12`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>() ldstr "G1_C12::ClassMethod1347.4870<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>() ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G1_C12::Method6.4867<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G1_C12::Method5.4866()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C12::Method7.4863<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G1_C12::Method4.4865()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G1_C12::Method5.4866()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G1_C12::Method6.MI.4868<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C12`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C12`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>() ldstr "G1_C12::ClassMethod1347.4870<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>() ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G1_C12::Method6.4867<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G1_C12::Method5.4866()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G1_C12::Method7.4863<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G1_C12::Method4.4865()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G1_C12::Method5.4866()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G1_C12::Method6.MI.4868<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C12`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C12`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>() ldstr "G1_C12::ClassMethod1347.4870<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>() ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G1_C12::Method6.4867<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G1_C12::Method5.4866()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C12::Method7.4863<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G1_C12::Method4.4865()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G1_C12::Method5.4866()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G1_C12::Method6.MI.4868<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void ConstrainedCallsTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Constrained Calls Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1636`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G1_C12::Method4.4865()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G1_C12.T.T<class BaseClass0,class BaseClass0,class G3_C1636`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G1_C12::Method4.4865()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G1_C12.A.T<class BaseClass0,class G3_C1636`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G1_C12::Method4.4865()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G1_C12.A.A<class G3_C1636`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G3_C1636::Method7.MI.17193<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1636`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G3_C1636::Method7.MI.17193<System.Object>()#" call void Generated1164::M.IBase2.A.T<class BaseClass0,class G3_C1636`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G3_C1636::Method7.MI.17193<System.Object>()#" call void Generated1164::M.IBase2.A.A<class G3_C1636`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.MI.10935<System.Object>()#" call void Generated1164::M.IBase1.T<class BaseClass0,class G3_C1636`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.MI.10935<System.Object>()#" call void Generated1164::M.IBase1.A<class G3_C1636`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G3_C1636::Method7.MI.17193<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1636`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G3_C1636::Method7.MI.17193<System.Object>()#" call void Generated1164::M.IBase2.A.T<class BaseClass1,class G3_C1636`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G3_C1636::Method7.MI.17193<System.Object>()#" call void Generated1164::M.IBase2.A.B<class G3_C1636`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G3_C1636::ClassMethod2644.MI.17197<System.Object>()#G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G2_C644.T.T<class BaseClass1,class BaseClass0,class G3_C1636`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G3_C1636::ClassMethod2644.MI.17197<System.Object>()#G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G2_C644.B.T<class BaseClass0,class G3_C1636`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G3_C1636::ClassMethod2644.MI.17197<System.Object>()#G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G2_C644.B.A<class G3_C1636`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C644::Method7.MI.10931<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G3_C1636`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C644::Method7.MI.10931<System.Object>()#" call void Generated1164::M.IBase2.B.T<class BaseClass0,class G3_C1636`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C644::Method7.MI.10931<System.Object>()#" call void Generated1164::M.IBase2.B.A<class G3_C1636`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C644::Method7.MI.10931<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1636`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C644::Method7.MI.10931<System.Object>()#" call void Generated1164::M.IBase2.B.T<class BaseClass1,class G3_C1636`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C644::Method7.MI.10931<System.Object>()#" call void Generated1164::M.IBase2.B.B<class G3_C1636`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G3_C1636::ClassMethod2644.MI.17197<System.Object>()#G3_C1636::ClassMethod4665.17194()#G3_C1636::ClassMethod4666.17195<System.Object>()#G3_C1636::ClassMethod4667.17196<System.Object>()#G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G3_C1636.T<class BaseClass0,class G3_C1636`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G3_C1636::ClassMethod2644.MI.17197<System.Object>()#G3_C1636::ClassMethod4665.17194()#G3_C1636::ClassMethod4666.17195<System.Object>()#G3_C1636::ClassMethod4667.17196<System.Object>()#G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G3_C1636.A<class G3_C1636`1<class BaseClass0>>(!!0,string) newobj instance void class G3_C1636`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G1_C12::Method4.4865()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G1_C12.T.T<class BaseClass0,class BaseClass1,class G3_C1636`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G1_C12::Method4.4865()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G1_C12.A.T<class BaseClass1,class G3_C1636`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G1_C12::Method4.4865()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G1_C12.A.B<class G3_C1636`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G3_C1636::Method7.MI.17193<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1636`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G3_C1636::Method7.MI.17193<System.Object>()#" call void Generated1164::M.IBase2.A.T<class BaseClass1,class G3_C1636`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G3_C1636::Method7.MI.17193<System.Object>()#" call void Generated1164::M.IBase2.A.B<class G3_C1636`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.MI.10935<System.Object>()#" call void Generated1164::M.IBase1.T<class BaseClass0,class G3_C1636`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.MI.10935<System.Object>()#" call void Generated1164::M.IBase1.A<class G3_C1636`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G3_C1636::ClassMethod2644.MI.17197<System.Object>()#G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G2_C644.T.T<class BaseClass1,class BaseClass1,class G3_C1636`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G3_C1636::ClassMethod2644.MI.17197<System.Object>()#G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G2_C644.B.T<class BaseClass1,class G3_C1636`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G3_C1636::ClassMethod2644.MI.17197<System.Object>()#G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G2_C644.B.B<class G3_C1636`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C644::Method7.MI.10931<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1636`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C644::Method7.MI.10931<System.Object>()#" call void Generated1164::M.IBase2.B.T<class BaseClass1,class G3_C1636`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C644::Method7.MI.10931<System.Object>()#" call void Generated1164::M.IBase2.B.B<class G3_C1636`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.MI.10935<System.Object>()#" call void Generated1164::M.IBase1.T<class BaseClass1,class G3_C1636`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.MI.10935<System.Object>()#" call void Generated1164::M.IBase1.B<class G3_C1636`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G3_C1636::ClassMethod2644.MI.17197<System.Object>()#G3_C1636::ClassMethod4665.17194()#G3_C1636::ClassMethod4666.17195<System.Object>()#G3_C1636::ClassMethod4667.17196<System.Object>()#G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G3_C1636.T<class BaseClass1,class G3_C1636`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G3_C1636::ClassMethod2644.MI.17197<System.Object>()#G3_C1636::ClassMethod4665.17194()#G3_C1636::ClassMethod4666.17195<System.Object>()#G3_C1636::ClassMethod4667.17196<System.Object>()#G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G3_C1636.B<class G3_C1636`1<class BaseClass1>>(!!0,string) newobj instance void class G1_C12`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.T.T<class BaseClass0,class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.A.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.A.A<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.A<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#" call void Generated1164::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#" call void Generated1164::M.IBase1.A<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.B<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string) newobj instance void class G1_C12`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.A.T<class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.A.B<class G1_C12`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.B<class G1_C12`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#" call void Generated1164::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#" call void Generated1164::M.IBase1.A<class G1_C12`2<class BaseClass0,class BaseClass1>>(!!0,string) newobj instance void class G1_C12`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.T.T<class BaseClass1,class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.B.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.B.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.B.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.B.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#" call void Generated1164::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#" call void Generated1164::M.IBase1.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.B<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.B.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.B.B<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string) newobj instance void class G1_C12`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.T.T<class BaseClass1,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.B.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.B.B<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.B.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.B.B<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#" call void Generated1164::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#" call void Generated1164::M.IBase1.A<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.B<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed { .maxstack 10 ldstr "===================== Struct Constrained Interface Calls Test =====================" call void [mscorlib]System.Console::WriteLine(string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void CalliTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calli Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1636`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method5.10933()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G3_C1636::Method7.MI.17193<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method4.10932()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method5.10933()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method6.MI.10935<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G3_C1636::Method7.MI.17193<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass0>::ClassMethod2644<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G3_C1636::ClassMethod2644.MI.17197<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method5.10933()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method4.10932()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method7.MI.10931<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method7.MI.10931<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass0>::ClassMethod4667<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G3_C1636::ClassMethod4667.17196<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass0>::ClassMethod4666<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G3_C1636::ClassMethod4666.17195<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass0>::ClassMethod4665() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G3_C1636::ClassMethod4665.17194()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass0>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass0>::ClassMethod2644<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G3_C1636::ClassMethod2644.MI.17197<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass0>::Method5() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method5.10933()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass0>::Method4() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method4.10932()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass0>::ClassMethod1347<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass0>::ClassMethod1346<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G3_C1636`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method5.10933()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G3_C1636::Method7.MI.17193<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method4.10932()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method5.10933()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method6.MI.10935<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass1>::ClassMethod2644<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G3_C1636::ClassMethod2644.MI.17197<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method5.10933()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method4.10932()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method7.MI.10931<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method4.10932()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method5.10933()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method6.MI.10935<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass1>::ClassMethod4667<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G3_C1636::ClassMethod4667.17196<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass1>::ClassMethod4666<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G3_C1636::ClassMethod4666.17195<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass1>::ClassMethod4665() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G3_C1636::ClassMethod4665.17194()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass1>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass1>::ClassMethod2644<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G3_C1636::ClassMethod2644.MI.17197<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass1>::Method5() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method5.10933()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass1>::Method4() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method4.10932()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass1>::ClassMethod1347<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass1>::ClassMethod1346<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C12`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::ClassMethod1347.4870<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::Method6.4867<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::Method5.4866()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::Method7.4863<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::Method4.4865()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::Method5.4866()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::Method6.MI.4868<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C12`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>) ldstr "G1_C12::ClassMethod1347.4870<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>) ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>) ldstr "G1_C12::Method6.4867<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>) ldstr "G1_C12::Method5.4866()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>) ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>) ldstr "G1_C12::Method7.4863<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>) ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>) ldstr "G1_C12::Method4.4865()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>) ldstr "G1_C12::Method5.4866()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>) ldstr "G1_C12::Method6.MI.4868<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C12`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::ClassMethod1347.4870<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method6.4867<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method5.4866()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method7.4863<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method4.4865()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method5.4866()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method6.MI.4868<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C12`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::ClassMethod1347.4870<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::Method6.4867<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::Method5.4866()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::Method7.4863<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::Method4.4865()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::Method5.4866()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::Method6.MI.4868<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 10 call void Generated1164::MethodCallingTest() call void Generated1164::ConstrainedCallsTest() call void Generated1164::StructConstrainedInterfaceCallsTest() call void Generated1164::CalliTest() ldc.i4 100 ret } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 } .assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) } //TYPES IN FORWARDER ASSEMBLIES: //TEST ASSEMBLY: .assembly Generated1164 { .hash algorithm 0x00008004 } .assembly extern xunit.core {} .class public BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class public BaseClass1 extends BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void BaseClass0::.ctor() ret } } .class public G3_C1636`1<T0> extends class G2_C644`2<class BaseClass1,!T0> implements class IBase2`2<class BaseClass0,!T0> { .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G3_C1636::Method7.17192<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<class BaseClass0,T0>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<class BaseClass0,!T0>::Method7<[1]>() ldstr "G3_C1636::Method7.MI.17193<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod4665() cil managed noinlining { ldstr "G3_C1636::ClassMethod4665.17194()" ret } .method public hidebysig newslot virtual instance string ClassMethod4666<M0>() cil managed noinlining { ldstr "G3_C1636::ClassMethod4666.17195<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod4667<M0>() cil managed noinlining { ldstr "G3_C1636::ClassMethod4667.17196<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'G2_C644<class BaseClass1,T0>.ClassMethod2644'<M0>() cil managed noinlining { .override method instance string class G2_C644`2<class BaseClass1,!T0>::ClassMethod2644<[1]>() ldstr "G3_C1636::ClassMethod2644.MI.17197<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G2_C644`2<class BaseClass1,!T0>::.ctor() ret } } .class public abstract G2_C644`2<T0, T1> extends class G1_C12`2<class BaseClass0,!T1> implements class IBase2`2<class BaseClass1,!T1>, class IBase1`1<!T1> { .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G2_C644::Method7.10930<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<class BaseClass1,T1>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<class BaseClass1,!T1>::Method7<[1]>() ldstr "G2_C644::Method7.MI.10931<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string Method4() cil managed noinlining { ldstr "G2_C644::Method4.10932()" ret } .method public hidebysig virtual instance string Method5() cil managed noinlining { ldstr "G2_C644::Method5.10933()" ret } .method public hidebysig virtual instance string Method6<M0>() cil managed noinlining { ldstr "G2_C644::Method6.10934<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase1<T1>.Method6'<M0>() cil managed noinlining { .override method instance string class IBase1`1<!T1>::Method6<[1]>() ldstr "G2_C644::Method6.MI.10935<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod2644<M0>() cil managed noinlining { ldstr "G2_C644::ClassMethod2644.10936<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'G1_C12<class BaseClass0,T1>.ClassMethod1347'<M0>() cil managed noinlining { .override method instance string class G1_C12`2<class BaseClass0,!T1>::ClassMethod1347<[1]>() ldstr "G2_C644::ClassMethod1347.MI.10937<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G1_C12`2<class BaseClass0,!T1>::.ctor() ret } } .class interface public abstract IBase2`2<+T0, -T1> { .method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { } } .class public G1_C12`2<T0, T1> implements class IBase2`2<!T0,!T1>, class IBase1`1<class BaseClass0> { .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G1_C12::Method7.4863<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<T0,T1>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<!T0,!T1>::Method7<[1]>() ldstr "G1_C12::Method7.MI.4864<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string Method4() cil managed noinlining { ldstr "G1_C12::Method4.4865()" ret } .method public hidebysig virtual instance string Method5() cil managed noinlining { ldstr "G1_C12::Method5.4866()" ret } .method public hidebysig virtual instance string Method6<M0>() cil managed noinlining { ldstr "G1_C12::Method6.4867<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method6'<M0>() cil managed noinlining { .override method instance string class IBase1`1<class BaseClass0>::Method6<[1]>() ldstr "G1_C12::Method6.MI.4868<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1346<M0>() cil managed noinlining { ldstr "G1_C12::ClassMethod1346.4869<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1347<M0>() cil managed noinlining { ldstr "G1_C12::ClassMethod1347.4870<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class interface public abstract IBase1`1<+T0> { .method public hidebysig newslot abstract virtual instance string Method4() cil managed { } .method public hidebysig newslot abstract virtual instance string Method5() cil managed { } .method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { } } .class public auto ansi beforefieldinit Generated1164 { .method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1636.T<T0,(class G3_C1636`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 15 .locals init (string[] actualResults) ldc.i4.s 10 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1636.T<T0,(class G3_C1636`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 10 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<!!T0>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<!!T0>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<!!T0>::ClassMethod2644<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<!!T0>::ClassMethod4665() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<!!T0>::ClassMethod4666<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<!!T0>::ClassMethod4667<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<!!T0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1636.A<(class G3_C1636`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 15 .locals init (string[] actualResults) ldc.i4.s 10 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1636.A<(class G3_C1636`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 10 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod2644<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod4665() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod4666<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod4667<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1636.B<(class G3_C1636`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 15 .locals init (string[] actualResults) ldc.i4.s 10 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1636.B<(class G3_C1636`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 10 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod2644<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod4665() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod4666<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod4667<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1636`1<class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C644.T.T<T0,T1,(class G2_C644`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 12 .locals init (string[] actualResults) ldc.i4.s 7 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C644.T.T<T0,T1,(class G2_C644`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 7 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<!!T0,!!T1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<!!T0,!!T1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<!!T0,!!T1>::ClassMethod2644<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C644.A.T<T1,(class G2_C644`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 12 .locals init (string[] actualResults) ldc.i4.s 7 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C644.A.T<T1,(class G2_C644`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 7 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,!!T1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,!!T1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,!!T1>::ClassMethod2644<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C644.A.A<(class G2_C644`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 12 .locals init (string[] actualResults) ldc.i4.s 7 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C644.A.A<(class G2_C644`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 7 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass0>::ClassMethod2644<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C644.A.B<(class G2_C644`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 12 .locals init (string[] actualResults) ldc.i4.s 7 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C644.A.B<(class G2_C644`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 7 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass1>::ClassMethod2644<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C644.B.T<T1,(class G2_C644`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 12 .locals init (string[] actualResults) ldc.i4.s 7 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C644.B.T<T1,(class G2_C644`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 7 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,!!T1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,!!T1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,!!T1>::ClassMethod2644<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C644.B.A<(class G2_C644`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 12 .locals init (string[] actualResults) ldc.i4.s 7 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C644.B.A<(class G2_C644`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 7 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::ClassMethod2644<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C644.B.B<(class G2_C644`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 12 .locals init (string[] actualResults) ldc.i4.s 7 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C644.B.B<(class G2_C644`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 7 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::ClassMethod2644<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C12.T.T<T0,T1,(class G1_C12`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C12.T.T<T0,T1,(class G1_C12`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<!!T0,!!T1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<!!T0,!!T1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C12.A.T<T1,(class G1_C12`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C12.A.T<T1,(class G1_C12`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C12.A.A<(class G1_C12`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C12.A.A<(class G1_C12`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C12.A.B<(class G1_C12`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C12.A.B<(class G1_C12`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C12.B.T<T1,(class G1_C12`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C12.B.T<T1,(class G1_C12`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C12.B.A<(class G1_C12`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C12.B.A<(class G1_C12`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C12.B.B<(class G1_C12`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C12.B.B<(class G1_C12`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method public hidebysig static void MethodCallingTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calling Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1636`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>() ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>() ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C644::Method5.10933()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G3_C1636::Method7.MI.17193<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C644::Method4.10932()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C644::Method5.10933()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C644::Method6.MI.10935<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G3_C1636::Method7.MI.17193<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C644`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::ClassMethod2644<object>() ldstr "G3_C1636::ClassMethod2644.MI.17197<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G2_C644::Method5.10933()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C644::Method4.10932()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>() ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>() ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C644::Method7.MI.10931<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C644::Method7.MI.10931<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1636`1<class BaseClass0> callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod4667<object>() ldstr "G3_C1636::ClassMethod4667.17196<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass0> callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod4666<object>() ldstr "G3_C1636::ClassMethod4666.17195<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass0> callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod4665() ldstr "G3_C1636::ClassMethod4665.17194()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass0> callvirt instance string class G3_C1636`1<class BaseClass0>::Method7<object>() ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass0> callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod2644<object>() ldstr "G3_C1636::ClassMethod2644.MI.17197<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass0> callvirt instance string class G3_C1636`1<class BaseClass0>::Method6<object>() ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass0> callvirt instance string class G3_C1636`1<class BaseClass0>::Method5() ldstr "G2_C644::Method5.10933()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass0> callvirt instance string class G3_C1636`1<class BaseClass0>::Method4() ldstr "G2_C644::Method4.10932()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass0> callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod1347<object>() ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass0> callvirt instance string class G3_C1636`1<class BaseClass0>::ClassMethod1346<object>() ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G3_C1636`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>() ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>() ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G2_C644::Method5.10933()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G3_C1636::Method7.MI.17193<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C644::Method4.10932()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C644::Method5.10933()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C644::Method6.MI.10935<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C644`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::ClassMethod2644<object>() ldstr "G3_C1636::ClassMethod2644.MI.17197<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G2_C644::Method5.10933()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G2_C644::Method4.10932()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>() ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C644`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C644`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>() ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C644::Method7.MI.10931<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C644::Method4.10932()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C644::Method5.10933()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C644::Method6.MI.10935<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1636`1<class BaseClass1> callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod4667<object>() ldstr "G3_C1636::ClassMethod4667.17196<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass1> callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod4666<object>() ldstr "G3_C1636::ClassMethod4666.17195<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass1> callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod4665() ldstr "G3_C1636::ClassMethod4665.17194()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass1> callvirt instance string class G3_C1636`1<class BaseClass1>::Method7<object>() ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass1> callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod2644<object>() ldstr "G3_C1636::ClassMethod2644.MI.17197<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass1> callvirt instance string class G3_C1636`1<class BaseClass1>::Method6<object>() ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass1> callvirt instance string class G3_C1636`1<class BaseClass1>::Method5() ldstr "G2_C644::Method5.10933()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass1> callvirt instance string class G3_C1636`1<class BaseClass1>::Method4() ldstr "G2_C644::Method4.10932()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass1> callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod1347<object>() ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1636`1<class BaseClass1> callvirt instance string class G3_C1636`1<class BaseClass1>::ClassMethod1346<object>() ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C12`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>() ldstr "G1_C12::ClassMethod1347.4870<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>() ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G1_C12::Method6.4867<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G1_C12::Method5.4866()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C12::Method7.4863<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G1_C12::Method4.4865()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G1_C12::Method5.4866()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G1_C12::Method6.MI.4868<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C12`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>() ldstr "G1_C12::ClassMethod1347.4870<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>() ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G1_C12::Method6.4867<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G1_C12::Method5.4866()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C12::Method7.4863<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G1_C12::Method4.4865()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G1_C12::Method5.4866()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G1_C12::Method6.MI.4868<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C12`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C12`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>() ldstr "G1_C12::ClassMethod1347.4870<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>() ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G1_C12::Method6.4867<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G1_C12::Method5.4866()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G1_C12::Method7.4863<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G1_C12::Method4.4865()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G1_C12::Method5.4866()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G1_C12::Method6.MI.4868<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C12`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C12`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>() ldstr "G1_C12::ClassMethod1347.4870<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>() ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G1_C12::Method6.4867<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G1_C12::Method5.4866()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C12`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C12::Method7.4863<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G1_C12::Method4.4865()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G1_C12::Method5.4866()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G1_C12::Method6.MI.4868<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void ConstrainedCallsTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Constrained Calls Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1636`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G1_C12::Method4.4865()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G1_C12.T.T<class BaseClass0,class BaseClass0,class G3_C1636`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G1_C12::Method4.4865()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G1_C12.A.T<class BaseClass0,class G3_C1636`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G1_C12::Method4.4865()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G1_C12.A.A<class G3_C1636`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G3_C1636::Method7.MI.17193<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1636`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G3_C1636::Method7.MI.17193<System.Object>()#" call void Generated1164::M.IBase2.A.T<class BaseClass0,class G3_C1636`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G3_C1636::Method7.MI.17193<System.Object>()#" call void Generated1164::M.IBase2.A.A<class G3_C1636`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.MI.10935<System.Object>()#" call void Generated1164::M.IBase1.T<class BaseClass0,class G3_C1636`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.MI.10935<System.Object>()#" call void Generated1164::M.IBase1.A<class G3_C1636`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G3_C1636::Method7.MI.17193<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1636`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G3_C1636::Method7.MI.17193<System.Object>()#" call void Generated1164::M.IBase2.A.T<class BaseClass1,class G3_C1636`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G3_C1636::Method7.MI.17193<System.Object>()#" call void Generated1164::M.IBase2.A.B<class G3_C1636`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G3_C1636::ClassMethod2644.MI.17197<System.Object>()#G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G2_C644.T.T<class BaseClass1,class BaseClass0,class G3_C1636`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G3_C1636::ClassMethod2644.MI.17197<System.Object>()#G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G2_C644.B.T<class BaseClass0,class G3_C1636`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G3_C1636::ClassMethod2644.MI.17197<System.Object>()#G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G2_C644.B.A<class G3_C1636`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C644::Method7.MI.10931<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G3_C1636`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C644::Method7.MI.10931<System.Object>()#" call void Generated1164::M.IBase2.B.T<class BaseClass0,class G3_C1636`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C644::Method7.MI.10931<System.Object>()#" call void Generated1164::M.IBase2.B.A<class G3_C1636`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C644::Method7.MI.10931<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1636`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C644::Method7.MI.10931<System.Object>()#" call void Generated1164::M.IBase2.B.T<class BaseClass1,class G3_C1636`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C644::Method7.MI.10931<System.Object>()#" call void Generated1164::M.IBase2.B.B<class G3_C1636`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G3_C1636::ClassMethod2644.MI.17197<System.Object>()#G3_C1636::ClassMethod4665.17194()#G3_C1636::ClassMethod4666.17195<System.Object>()#G3_C1636::ClassMethod4667.17196<System.Object>()#G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G3_C1636.T<class BaseClass0,class G3_C1636`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G3_C1636::ClassMethod2644.MI.17197<System.Object>()#G3_C1636::ClassMethod4665.17194()#G3_C1636::ClassMethod4666.17195<System.Object>()#G3_C1636::ClassMethod4667.17196<System.Object>()#G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G3_C1636.A<class G3_C1636`1<class BaseClass0>>(!!0,string) newobj instance void class G3_C1636`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G1_C12::Method4.4865()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G1_C12.T.T<class BaseClass0,class BaseClass1,class G3_C1636`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G1_C12::Method4.4865()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G1_C12.A.T<class BaseClass1,class G3_C1636`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G1_C12::Method4.4865()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G1_C12.A.B<class G3_C1636`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G3_C1636::Method7.MI.17193<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1636`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G3_C1636::Method7.MI.17193<System.Object>()#" call void Generated1164::M.IBase2.A.T<class BaseClass1,class G3_C1636`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G3_C1636::Method7.MI.17193<System.Object>()#" call void Generated1164::M.IBase2.A.B<class G3_C1636`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.MI.10935<System.Object>()#" call void Generated1164::M.IBase1.T<class BaseClass0,class G3_C1636`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.MI.10935<System.Object>()#" call void Generated1164::M.IBase1.A<class G3_C1636`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G3_C1636::ClassMethod2644.MI.17197<System.Object>()#G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G2_C644.T.T<class BaseClass1,class BaseClass1,class G3_C1636`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G3_C1636::ClassMethod2644.MI.17197<System.Object>()#G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G2_C644.B.T<class BaseClass1,class G3_C1636`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G3_C1636::ClassMethod2644.MI.17197<System.Object>()#G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G2_C644.B.B<class G3_C1636`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C644::Method7.MI.10931<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1636`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C644::Method7.MI.10931<System.Object>()#" call void Generated1164::M.IBase2.B.T<class BaseClass1,class G3_C1636`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C644::Method7.MI.10931<System.Object>()#" call void Generated1164::M.IBase2.B.B<class G3_C1636`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.MI.10935<System.Object>()#" call void Generated1164::M.IBase1.T<class BaseClass1,class G3_C1636`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.MI.10935<System.Object>()#" call void Generated1164::M.IBase1.B<class G3_C1636`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G3_C1636::ClassMethod2644.MI.17197<System.Object>()#G3_C1636::ClassMethod4665.17194()#G3_C1636::ClassMethod4666.17195<System.Object>()#G3_C1636::ClassMethod4667.17196<System.Object>()#G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G3_C1636.T<class BaseClass1,class G3_C1636`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G2_C644::ClassMethod1347.MI.10937<System.Object>()#G3_C1636::ClassMethod2644.MI.17197<System.Object>()#G3_C1636::ClassMethod4665.17194()#G3_C1636::ClassMethod4666.17195<System.Object>()#G3_C1636::ClassMethod4667.17196<System.Object>()#G2_C644::Method4.10932()#G2_C644::Method5.10933()#G2_C644::Method6.10934<System.Object>()#G3_C1636::Method7.17192<System.Object>()#" call void Generated1164::M.G3_C1636.B<class G3_C1636`1<class BaseClass1>>(!!0,string) newobj instance void class G1_C12`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.T.T<class BaseClass0,class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.A.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.A.A<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.A<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#" call void Generated1164::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#" call void Generated1164::M.IBase1.A<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.B<class G1_C12`2<class BaseClass0,class BaseClass0>>(!!0,string) newobj instance void class G1_C12`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.A.T<class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.A.B<class G1_C12`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.B<class G1_C12`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#" call void Generated1164::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#" call void Generated1164::M.IBase1.A<class G1_C12`2<class BaseClass0,class BaseClass1>>(!!0,string) newobj instance void class G1_C12`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.T.T<class BaseClass1,class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.B.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.B.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.B.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.B.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#" call void Generated1164::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#" call void Generated1164::M.IBase1.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.A<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.B<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.B.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.B.B<class G1_C12`2<class BaseClass1,class BaseClass0>>(!!0,string) newobj instance void class G1_C12`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.T.T<class BaseClass1,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.B.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C12::ClassMethod1346.4869<System.Object>()#G1_C12::ClassMethod1347.4870<System.Object>()#G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.4867<System.Object>()#G1_C12::Method7.4863<System.Object>()#" call void Generated1164::M.G1_C12.B.B<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.B.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.B.B<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#" call void Generated1164::M.IBase1.T<class BaseClass0,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C12::Method4.4865()#G1_C12::Method5.4866()#G1_C12::Method6.MI.4868<System.Object>()#" call void Generated1164::M.IBase1.A<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.T<class BaseClass1,class G1_C12`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C12::Method7.MI.4864<System.Object>()#" call void Generated1164::M.IBase2.A.B<class G1_C12`2<class BaseClass1,class BaseClass1>>(!!0,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed { .maxstack 10 ldstr "===================== Struct Constrained Interface Calls Test =====================" call void [mscorlib]System.Console::WriteLine(string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void CalliTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calli Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1636`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method5.10933()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G3_C1636::Method7.MI.17193<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method4.10932()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method5.10933()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method6.MI.10935<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G3_C1636::Method7.MI.17193<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass0>::ClassMethod2644<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G3_C1636::ClassMethod2644.MI.17197<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method5.10933()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method4.10932()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method7.MI.10931<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method7.MI.10931<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass0>::ClassMethod4667<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G3_C1636::ClassMethod4667.17196<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass0>::ClassMethod4666<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G3_C1636::ClassMethod4666.17195<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass0>::ClassMethod4665() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G3_C1636::ClassMethod4665.17194()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass0>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass0>::ClassMethod2644<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G3_C1636::ClassMethod2644.MI.17197<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass0>::Method5() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method5.10933()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass0>::Method4() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::Method4.10932()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass0>::ClassMethod1347<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass0>::ClassMethod1346<object>() calli default string(class G3_C1636`1<class BaseClass0>) ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G3_C1636`1<class BaseClass0> on type class G3_C1636`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G3_C1636`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method5.10933()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G3_C1636::Method7.MI.17193<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method4.10932()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method5.10933()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method6.MI.10935<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass1>::ClassMethod2644<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G3_C1636::ClassMethod2644.MI.17197<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method5.10933()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method4.10932()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C644`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C644`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G2_C644`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method7.MI.10931<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method4.10932()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method5.10933()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method6.MI.10935<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass1>::ClassMethod4667<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G3_C1636::ClassMethod4667.17196<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass1>::ClassMethod4666<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G3_C1636::ClassMethod4666.17195<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass1>::ClassMethod4665() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G3_C1636::ClassMethod4665.17194()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass1>::Method7<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G3_C1636::Method7.17192<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass1>::ClassMethod2644<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G3_C1636::ClassMethod2644.MI.17197<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method6.10934<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass1>::Method5() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method5.10933()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass1>::Method4() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::Method4.10932()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass1>::ClassMethod1347<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G2_C644::ClassMethod1347.MI.10937<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1636`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1636`1<class BaseClass1>::ClassMethod1346<object>() calli default string(class G3_C1636`1<class BaseClass1>) ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G3_C1636`1<class BaseClass1> on type class G3_C1636`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C12`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1347<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::ClassMethod1347.4870<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::ClassMethod1346<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::Method6.4867<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::Method5.4866()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::Method7.4863<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::Method4.4865()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::Method5.4866()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::Method6.MI.4868<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass0>) ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C12`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1347<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>) ldstr "G1_C12::ClassMethod1347.4870<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::ClassMethod1346<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>) ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>) ldstr "G1_C12::Method6.4867<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>) ldstr "G1_C12::Method5.4866()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>) ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>) ldstr "G1_C12::Method7.4863<System.Object>()" ldstr "class G1_C12`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>) ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>) ldstr "G1_C12::Method4.4865()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>) ldstr "G1_C12::Method5.4866()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G1_C12`2<class BaseClass0,class BaseClass1>) ldstr "G1_C12::Method6.MI.4868<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C12`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1347<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::ClassMethod1347.4870<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::ClassMethod1346<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method6.4867<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method5.4866()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method7.4863<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method4.4865()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method5.4866()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method6.MI.4868<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass0>) ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C12`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1347<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::ClassMethod1347.4870<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::ClassMethod1346<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::ClassMethod1346.4869<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::Method6.4867<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::Method5.4866()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::Method4.4865()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C12`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C12`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::Method7.4863<System.Object>()" ldstr "class G1_C12`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::Method4.4865()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::Method5.4866()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::Method6.MI.4868<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C12`2<class BaseClass1,class BaseClass1>) ldstr "G1_C12::Method7.MI.4864<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C12`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 10 call void Generated1164::MethodCallingTest() call void Generated1164::ConstrainedCallsTest() call void Generated1164::StructConstrainedInterfaceCallsTest() call void Generated1164::CalliTest() ldc.i4 100 ret } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest354/Generated354.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 } .assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) } //TYPES IN FORWARDER ASSEMBLIES: //TEST ASSEMBLY: .assembly Generated354 { .hash algorithm 0x00008004 } .assembly extern xunit.core {} .class public BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class public BaseClass1 extends BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void BaseClass0::.ctor() ret } } .class public sequential sealed MyStruct404`2<T0, T1> extends [mscorlib]System.ValueType implements class IBase2`2<!T0,!T1>, class IBase1`1<!T0> { .pack 0 .size 1 .method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining { ldstr "MyStruct404::Method7.3307<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<T0,T1>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<!T0,!T1>::Method7<[1]>() ldstr "MyStruct404::Method7.MI.3308<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string Method4() cil managed noinlining { ldstr "MyStruct404::Method4.3309()" ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method4'() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method4() ldstr "MyStruct404::Method4.MI.3310()" ret } .method public hidebysig newslot virtual instance string Method5() cil managed noinlining { ldstr "MyStruct404::Method5.3311()" ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method5'() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method5() ldstr "MyStruct404::Method5.MI.3312()" ret } .method public hidebysig virtual instance string Method6<M0>() cil managed noinlining { ldstr "MyStruct404::Method6.3313<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method6'<M0>() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method6<[1]>() ldstr "MyStruct404::Method6.MI.3314<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot instance string ClassMethod794() cil managed noinlining { ldstr "MyStruct404::ClassMethod794.3315()" ret } .method public hidebysig newslot instance string ClassMethod795() cil managed noinlining { ldstr "MyStruct404::ClassMethod795.3316()" ret } .method public hidebysig newslot instance string ClassMethod796<M0>() cil managed noinlining { ldstr "MyStruct404::ClassMethod796.3317<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance bool Equals(object obj) cil managed { ldc.i4.0 ret } .method public hidebysig virtual instance int32 GetHashCode() cil managed { ldc.i4.0 ret } .method public hidebysig virtual instance string ToString() cil managed { ldstr "" ret } } .class interface public abstract IBase2`2<+T0, -T1> { .method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { } } .class interface public abstract IBase1`1<+T0> { .method public hidebysig newslot abstract virtual instance string Method4() cil managed { } .method public hidebysig newslot abstract virtual instance string Method5() cil managed { } .method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { } } .class public auto ansi beforefieldinit Generated354 { .method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.MyStruct404.T.T<T0,T1,(valuetype MyStruct404`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.MyStruct404.T.T<T0,T1,(valuetype MyStruct404`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. valuetype MyStruct404`2<!!T0,!!T1> callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. valuetype MyStruct404`2<!!T0,!!T1> callvirt instance string class IBase1`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. valuetype MyStruct404`2<!!T0,!!T1> callvirt instance string class IBase1`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. valuetype MyStruct404`2<!!T0,!!T1> callvirt instance string class IBase1`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.MyStruct404.A.T<T1,(valuetype MyStruct404`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.MyStruct404.A.T<T1,(valuetype MyStruct404`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,!!T1> callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,!!T1> callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,!!T1> callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,!!T1> callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.MyStruct404.A.A<(valuetype MyStruct404`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.MyStruct404.A.A<(valuetype MyStruct404`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,class BaseClass0> callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,class BaseClass0> callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,class BaseClass0> callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,class BaseClass0> callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.MyStruct404.A.B<(valuetype MyStruct404`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.MyStruct404.A.B<(valuetype MyStruct404`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,class BaseClass1> callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,class BaseClass1> callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,class BaseClass1> callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,class BaseClass1> callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.MyStruct404.B.T<T1,(valuetype MyStruct404`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.MyStruct404.B.T<T1,(valuetype MyStruct404`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,!!T1> callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,!!T1> callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,!!T1> callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,!!T1> callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.MyStruct404.B.A<(valuetype MyStruct404`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.MyStruct404.B.A<(valuetype MyStruct404`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,class BaseClass0> callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,class BaseClass0> callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,class BaseClass0> callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,class BaseClass0> callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.MyStruct404.B.B<(valuetype MyStruct404`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.MyStruct404.B.B<(valuetype MyStruct404`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,class BaseClass1> callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,class BaseClass1> callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,class BaseClass1> callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,class BaseClass1> callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method public hidebysig static void MethodCallingTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calling Test ==========================" call void [mscorlib]System.Console::WriteLine(string) .locals init (valuetype MyStruct404`2<class BaseClass0,class BaseClass0> V_1) ldloca V_1 initobj valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloca V_1 dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "MyStruct404::Method7.3307<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::Method4() ldstr "MyStruct404::Method4.3309()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::Method5() ldstr "MyStruct404::Method5.3311()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "MyStruct404::Method6.3313<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::ClassMethod794() ldstr "MyStruct404::ClassMethod794.3315()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::ClassMethod795() ldstr "MyStruct404::ClassMethod795.3316()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::ClassMethod796<object>() ldstr "MyStruct404::ClassMethod796.3317<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup ldnull call instance bool valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::Equals(object) pop dup call instance int32 valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::GetHashCode() pop dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::ToString() pop pop ldloc V_1 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_1 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_1 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop .locals init (valuetype MyStruct404`2<class BaseClass0,class BaseClass1> V_2) ldloca V_2 initobj valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloca V_2 dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "MyStruct404::Method7.3307<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::Method4() ldstr "MyStruct404::Method4.3309()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::Method5() ldstr "MyStruct404::Method5.3311()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "MyStruct404::Method6.3313<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::ClassMethod794() ldstr "MyStruct404::ClassMethod794.3315()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::ClassMethod795() ldstr "MyStruct404::ClassMethod795.3316()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::ClassMethod796<object>() ldstr "MyStruct404::ClassMethod796.3317<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup ldnull call instance bool valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::Equals(object) pop dup call instance int32 valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::GetHashCode() pop dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::ToString() pop pop ldloc V_2 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_2 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop .locals init (valuetype MyStruct404`2<class BaseClass1,class BaseClass0> V_3) ldloca V_3 initobj valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloca V_3 dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "MyStruct404::Method7.3307<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::Method4() ldstr "MyStruct404::Method4.3309()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::Method5() ldstr "MyStruct404::Method5.3311()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "MyStruct404::Method6.3313<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::ClassMethod794() ldstr "MyStruct404::ClassMethod794.3315()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::ClassMethod795() ldstr "MyStruct404::ClassMethod795.3316()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::ClassMethod796<object>() ldstr "MyStruct404::ClassMethod796.3317<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup ldnull call instance bool valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::Equals(object) pop dup call instance int32 valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::GetHashCode() pop dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::ToString() pop pop ldloc V_3 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_3 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_3 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_3 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_3 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_3 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop .locals init (valuetype MyStruct404`2<class BaseClass1,class BaseClass1> V_4) ldloca V_4 initobj valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloca V_4 dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "MyStruct404::Method7.3307<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::Method4() ldstr "MyStruct404::Method4.3309()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::Method5() ldstr "MyStruct404::Method5.3311()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "MyStruct404::Method6.3313<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::ClassMethod794() ldstr "MyStruct404::ClassMethod794.3315()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::ClassMethod795() ldstr "MyStruct404::ClassMethod795.3316()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::ClassMethod796<object>() ldstr "MyStruct404::ClassMethod796.3317<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup ldnull call instance bool valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::Equals(object) pop dup call instance int32 valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::GetHashCode() pop dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::ToString() pop pop ldloc V_4 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_4 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_4 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_4 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void ConstrainedCallsTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Constrained Calls Test ==========================" call void [mscorlib]System.Console::WriteLine(string) .locals init (valuetype MyStruct404`2<class BaseClass0,class BaseClass0> V_5) ldloca V_5 initobj valuetype MyStruct404`2<class BaseClass0,class BaseClass0> .try { ldloc V_5 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV0 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0: .try { ldloc V_5 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.T<class BaseClass0,valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV1 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1: .try { ldloc V_5 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.A<valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV2 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2: .try { ldloc V_5 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.T<class BaseClass0,valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV3 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3: .try { ldloc V_5 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.A<valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV4 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4: .try { ldloc V_5 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV5 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5: .try { ldloc V_5 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.T<class BaseClass1,valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV6 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6: .try { ldloc V_5 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.B<valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV7 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7: .locals init (valuetype MyStruct404`2<class BaseClass0,class BaseClass1> V_6) ldloca V_6 initobj valuetype MyStruct404`2<class BaseClass0,class BaseClass1> .try { ldloc V_6 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct404`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV8 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8: .try { ldloc V_6 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.T<class BaseClass1,valuetype MyStruct404`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV9 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV9} LV9: .try { ldloc V_6 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.B<valuetype MyStruct404`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV10 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV10} LV10: .try { ldloc V_6 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.T<class BaseClass0,valuetype MyStruct404`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV11 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV11} LV11: .try { ldloc V_6 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.A<valuetype MyStruct404`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV12 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV12} LV12: .locals init (valuetype MyStruct404`2<class BaseClass1,class BaseClass0> V_7) ldloca V_7 initobj valuetype MyStruct404`2<class BaseClass1,class BaseClass0> .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV13 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV13} LV13: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.B.T<class BaseClass0,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV14 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV14} LV14: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.B.A<valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV15 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV15} LV15: .try { ldloc V_7 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.T<class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV16 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV16} LV16: .try { ldloc V_7 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.B<valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV17 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV17} LV17: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV18 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV18} LV18: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.T<class BaseClass0,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV19 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV19} LV19: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.A<valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV20 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV20} LV20: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV21 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV21} LV21: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.T<class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV22 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV22} LV22: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.B<valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV23 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV23} LV23: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV24 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV24} LV24: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.B.T<class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV25 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV25} LV25: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.B.B<valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV26 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV26} LV26: .try { ldloc V_7 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.T<class BaseClass0,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV27 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV27} LV27: .try { ldloc V_7 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.A<valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV28 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV28} LV28: .locals init (valuetype MyStruct404`2<class BaseClass1,class BaseClass1> V_8) ldloca V_8 initobj valuetype MyStruct404`2<class BaseClass1,class BaseClass1> .try { ldloc V_8 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV29 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV29} LV29: .try { ldloc V_8 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.B.T<class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV30 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV30} LV30: .try { ldloc V_8 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.B.B<valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV31 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV31} LV31: .try { ldloc V_8 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.T<class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV32 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV32} LV32: .try { ldloc V_8 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.B<valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV33 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV33} LV33: .try { ldloc V_8 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV34 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV34} LV34: .try { ldloc V_8 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.T<class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV35 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV35} LV35: .try { ldloc V_8 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.B<valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV36 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV36} LV36: .try { ldloc V_8 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.T<class BaseClass0,valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV37 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV37} LV37: .try { ldloc V_8 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.A<valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV38 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV38} LV38: ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed { .maxstack 10 ldstr "===================== Struct Constrained Interface Calls Test =====================" call void [mscorlib]System.Console::WriteLine(string) .locals init (valuetype MyStruct404`2<class BaseClass0,class BaseClass0> V_9) ldloca V_9 initobj valuetype MyStruct404`2<class BaseClass0,class BaseClass0> .try { ldloc V_9 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV0 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0: .try { ldloc V_9 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.A.T<class BaseClass0,valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV1 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1: .try { ldloc V_9 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.A.A<valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV2 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2: .locals init (valuetype MyStruct404`2<class BaseClass0,class BaseClass1> V_10) ldloca V_10 initobj valuetype MyStruct404`2<class BaseClass0,class BaseClass1> .try { ldloc V_10 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct404`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV3 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3: .try { ldloc V_10 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.A.T<class BaseClass1,valuetype MyStruct404`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV4 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4: .try { ldloc V_10 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.A.B<valuetype MyStruct404`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV5 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5: .locals init (valuetype MyStruct404`2<class BaseClass1,class BaseClass0> V_11) ldloca V_11 initobj valuetype MyStruct404`2<class BaseClass1,class BaseClass0> .try { ldloc V_11 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV6 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6: .try { ldloc V_11 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.B.T<class BaseClass0,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV7 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7: .try { ldloc V_11 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.B.A<valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV8 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8: .locals init (valuetype MyStruct404`2<class BaseClass1,class BaseClass1> V_12) ldloca V_12 initobj valuetype MyStruct404`2<class BaseClass1,class BaseClass1> .try { ldloc V_12 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV9 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV9} LV9: .try { ldloc V_12 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.B.T<class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV10 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV10} LV10: .try { ldloc V_12 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.B.B<valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV11 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV11} LV11: ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void CalliTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calli Test ==========================" call void [mscorlib]System.Console::WriteLine(string) .locals init (valuetype MyStruct404`2<class BaseClass0,class BaseClass0> V_13) ldloca V_13 initobj valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.3307<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::Method4() calli default string(object) ldstr "MyStruct404::Method4.3309()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::Method5() calli default string(object) ldstr "MyStruct404::Method5.3311()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(object) ldstr "MyStruct404::Method6.3313<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::ClassMethod794() calli default string(object) ldstr "MyStruct404::ClassMethod794.3315()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::ClassMethod795() calli default string(object) ldstr "MyStruct404::ClassMethod795.3316()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::ClassMethod796<object>() calli default string(object) ldstr "MyStruct404::ClassMethod796.3317<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldnull ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance bool valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::Equals(object) calli default bool(object,object) pop ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance int32 valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::GetHashCode() calli default int32(object) pop ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::ToString() calli default string(object) pop ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(object) ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(object) ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(object) ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) .locals init (valuetype MyStruct404`2<class BaseClass0,class BaseClass1> V_14) ldloca V_14 initobj valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.3307<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::Method4() calli default string(object) ldstr "MyStruct404::Method4.3309()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::Method5() calli default string(object) ldstr "MyStruct404::Method5.3311()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(object) ldstr "MyStruct404::Method6.3313<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::ClassMethod794() calli default string(object) ldstr "MyStruct404::ClassMethod794.3315()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::ClassMethod795() calli default string(object) ldstr "MyStruct404::ClassMethod795.3316()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::ClassMethod796<object>() calli default string(object) ldstr "MyStruct404::ClassMethod796.3317<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldnull ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance bool valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::Equals(object) calli default bool(object,object) pop ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance int32 valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::GetHashCode() calli default int32(object) pop ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::ToString() calli default string(object) pop ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(object) ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(object) ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(object) ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) .locals init (valuetype MyStruct404`2<class BaseClass1,class BaseClass0> V_15) ldloca V_15 initobj valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.3307<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::Method4() calli default string(object) ldstr "MyStruct404::Method4.3309()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::Method5() calli default string(object) ldstr "MyStruct404::Method5.3311()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(object) ldstr "MyStruct404::Method6.3313<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::ClassMethod794() calli default string(object) ldstr "MyStruct404::ClassMethod794.3315()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::ClassMethod795() calli default string(object) ldstr "MyStruct404::ClassMethod795.3316()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::ClassMethod796<object>() calli default string(object) ldstr "MyStruct404::ClassMethod796.3317<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldnull ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance bool valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::Equals(object) calli default bool(object,object) pop ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance int32 valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::GetHashCode() calli default int32(object) pop ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::ToString() calli default string(object) pop ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(object) ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(object) ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(object) ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(object) ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(object) ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(object) ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) .locals init (valuetype MyStruct404`2<class BaseClass1,class BaseClass1> V_16) ldloca V_16 initobj valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.3307<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::Method4() calli default string(object) ldstr "MyStruct404::Method4.3309()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::Method5() calli default string(object) ldstr "MyStruct404::Method5.3311()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(object) ldstr "MyStruct404::Method6.3313<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::ClassMethod794() calli default string(object) ldstr "MyStruct404::ClassMethod794.3315()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::ClassMethod795() calli default string(object) ldstr "MyStruct404::ClassMethod795.3316()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::ClassMethod796<object>() calli default string(object) ldstr "MyStruct404::ClassMethod796.3317<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldnull ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance bool valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::Equals(object) calli default bool(object,object) pop ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance int32 valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::GetHashCode() calli default int32(object) pop ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::ToString() calli default string(object) pop ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(object) ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(object) ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(object) ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(object) ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(object) ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(object) ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 10 call void Generated354::MethodCallingTest() call void Generated354::ConstrainedCallsTest() call void Generated354::StructConstrainedInterfaceCallsTest() call void Generated354::CalliTest() ldc.i4 100 ret } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 } .assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) } //TYPES IN FORWARDER ASSEMBLIES: //TEST ASSEMBLY: .assembly Generated354 { .hash algorithm 0x00008004 } .assembly extern xunit.core {} .class public BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class public BaseClass1 extends BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void BaseClass0::.ctor() ret } } .class public sequential sealed MyStruct404`2<T0, T1> extends [mscorlib]System.ValueType implements class IBase2`2<!T0,!T1>, class IBase1`1<!T0> { .pack 0 .size 1 .method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining { ldstr "MyStruct404::Method7.3307<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<T0,T1>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<!T0,!T1>::Method7<[1]>() ldstr "MyStruct404::Method7.MI.3308<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string Method4() cil managed noinlining { ldstr "MyStruct404::Method4.3309()" ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method4'() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method4() ldstr "MyStruct404::Method4.MI.3310()" ret } .method public hidebysig newslot virtual instance string Method5() cil managed noinlining { ldstr "MyStruct404::Method5.3311()" ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method5'() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method5() ldstr "MyStruct404::Method5.MI.3312()" ret } .method public hidebysig virtual instance string Method6<M0>() cil managed noinlining { ldstr "MyStruct404::Method6.3313<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method6'<M0>() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method6<[1]>() ldstr "MyStruct404::Method6.MI.3314<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot instance string ClassMethod794() cil managed noinlining { ldstr "MyStruct404::ClassMethod794.3315()" ret } .method public hidebysig newslot instance string ClassMethod795() cil managed noinlining { ldstr "MyStruct404::ClassMethod795.3316()" ret } .method public hidebysig newslot instance string ClassMethod796<M0>() cil managed noinlining { ldstr "MyStruct404::ClassMethod796.3317<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance bool Equals(object obj) cil managed { ldc.i4.0 ret } .method public hidebysig virtual instance int32 GetHashCode() cil managed { ldc.i4.0 ret } .method public hidebysig virtual instance string ToString() cil managed { ldstr "" ret } } .class interface public abstract IBase2`2<+T0, -T1> { .method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { } } .class interface public abstract IBase1`1<+T0> { .method public hidebysig newslot abstract virtual instance string Method4() cil managed { } .method public hidebysig newslot abstract virtual instance string Method5() cil managed { } .method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { } } .class public auto ansi beforefieldinit Generated354 { .method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.MyStruct404.T.T<T0,T1,(valuetype MyStruct404`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.MyStruct404.T.T<T0,T1,(valuetype MyStruct404`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. valuetype MyStruct404`2<!!T0,!!T1> callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. valuetype MyStruct404`2<!!T0,!!T1> callvirt instance string class IBase1`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. valuetype MyStruct404`2<!!T0,!!T1> callvirt instance string class IBase1`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. valuetype MyStruct404`2<!!T0,!!T1> callvirt instance string class IBase1`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.MyStruct404.A.T<T1,(valuetype MyStruct404`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.MyStruct404.A.T<T1,(valuetype MyStruct404`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,!!T1> callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,!!T1> callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,!!T1> callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,!!T1> callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.MyStruct404.A.A<(valuetype MyStruct404`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.MyStruct404.A.A<(valuetype MyStruct404`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,class BaseClass0> callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,class BaseClass0> callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,class BaseClass0> callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,class BaseClass0> callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.MyStruct404.A.B<(valuetype MyStruct404`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.MyStruct404.A.B<(valuetype MyStruct404`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,class BaseClass1> callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,class BaseClass1> callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,class BaseClass1> callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass0,class BaseClass1> callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.MyStruct404.B.T<T1,(valuetype MyStruct404`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.MyStruct404.B.T<T1,(valuetype MyStruct404`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,!!T1> callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,!!T1> callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,!!T1> callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,!!T1> callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.MyStruct404.B.A<(valuetype MyStruct404`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.MyStruct404.B.A<(valuetype MyStruct404`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,class BaseClass0> callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,class BaseClass0> callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,class BaseClass0> callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,class BaseClass0> callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.MyStruct404.B.B<(valuetype MyStruct404`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.MyStruct404.B.B<(valuetype MyStruct404`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,class BaseClass1> callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,class BaseClass1> callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,class BaseClass1> callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. valuetype MyStruct404`2<class BaseClass1,class BaseClass1> callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method public hidebysig static void MethodCallingTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calling Test ==========================" call void [mscorlib]System.Console::WriteLine(string) .locals init (valuetype MyStruct404`2<class BaseClass0,class BaseClass0> V_1) ldloca V_1 initobj valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloca V_1 dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "MyStruct404::Method7.3307<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::Method4() ldstr "MyStruct404::Method4.3309()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::Method5() ldstr "MyStruct404::Method5.3311()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "MyStruct404::Method6.3313<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::ClassMethod794() ldstr "MyStruct404::ClassMethod794.3315()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::ClassMethod795() ldstr "MyStruct404::ClassMethod795.3316()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::ClassMethod796<object>() ldstr "MyStruct404::ClassMethod796.3317<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup ldnull call instance bool valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::Equals(object) pop dup call instance int32 valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::GetHashCode() pop dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::ToString() pop pop ldloc V_1 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_1 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_1 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop .locals init (valuetype MyStruct404`2<class BaseClass0,class BaseClass1> V_2) ldloca V_2 initobj valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloca V_2 dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "MyStruct404::Method7.3307<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::Method4() ldstr "MyStruct404::Method4.3309()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::Method5() ldstr "MyStruct404::Method5.3311()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "MyStruct404::Method6.3313<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::ClassMethod794() ldstr "MyStruct404::ClassMethod794.3315()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::ClassMethod795() ldstr "MyStruct404::ClassMethod795.3316()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::ClassMethod796<object>() ldstr "MyStruct404::ClassMethod796.3317<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup ldnull call instance bool valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::Equals(object) pop dup call instance int32 valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::GetHashCode() pop dup call instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::ToString() pop pop ldloc V_2 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_2 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop .locals init (valuetype MyStruct404`2<class BaseClass1,class BaseClass0> V_3) ldloca V_3 initobj valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloca V_3 dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "MyStruct404::Method7.3307<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::Method4() ldstr "MyStruct404::Method4.3309()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::Method5() ldstr "MyStruct404::Method5.3311()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "MyStruct404::Method6.3313<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::ClassMethod794() ldstr "MyStruct404::ClassMethod794.3315()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::ClassMethod795() ldstr "MyStruct404::ClassMethod795.3316()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::ClassMethod796<object>() ldstr "MyStruct404::ClassMethod796.3317<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup ldnull call instance bool valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::Equals(object) pop dup call instance int32 valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::GetHashCode() pop dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::ToString() pop pop ldloc V_3 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_3 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_3 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_3 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_3 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_3 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop .locals init (valuetype MyStruct404`2<class BaseClass1,class BaseClass1> V_4) ldloca V_4 initobj valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloca V_4 dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "MyStruct404::Method7.3307<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::Method4() ldstr "MyStruct404::Method4.3309()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::Method5() ldstr "MyStruct404::Method5.3311()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "MyStruct404::Method6.3313<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::ClassMethod794() ldstr "MyStruct404::ClassMethod794.3315()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::ClassMethod795() ldstr "MyStruct404::ClassMethod795.3316()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::ClassMethod796<object>() ldstr "MyStruct404::ClassMethod796.3317<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type MyStruct404" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup ldnull call instance bool valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::Equals(object) pop dup call instance int32 valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::GetHashCode() pop dup call instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::ToString() pop pop ldloc V_4 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_4 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_4 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_4 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void ConstrainedCallsTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Constrained Calls Test ==========================" call void [mscorlib]System.Console::WriteLine(string) .locals init (valuetype MyStruct404`2<class BaseClass0,class BaseClass0> V_5) ldloca V_5 initobj valuetype MyStruct404`2<class BaseClass0,class BaseClass0> .try { ldloc V_5 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV0 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0: .try { ldloc V_5 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.T<class BaseClass0,valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV1 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1: .try { ldloc V_5 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.A<valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV2 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2: .try { ldloc V_5 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.T<class BaseClass0,valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV3 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3: .try { ldloc V_5 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.A<valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV4 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4: .try { ldloc V_5 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV5 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5: .try { ldloc V_5 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.T<class BaseClass1,valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV6 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6: .try { ldloc V_5 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.B<valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV7 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7: .locals init (valuetype MyStruct404`2<class BaseClass0,class BaseClass1> V_6) ldloca V_6 initobj valuetype MyStruct404`2<class BaseClass0,class BaseClass1> .try { ldloc V_6 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct404`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV8 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8: .try { ldloc V_6 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.T<class BaseClass1,valuetype MyStruct404`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV9 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV9} LV9: .try { ldloc V_6 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.B<valuetype MyStruct404`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV10 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV10} LV10: .try { ldloc V_6 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.T<class BaseClass0,valuetype MyStruct404`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV11 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV11} LV11: .try { ldloc V_6 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.A<valuetype MyStruct404`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV12 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV12} LV12: .locals init (valuetype MyStruct404`2<class BaseClass1,class BaseClass0> V_7) ldloca V_7 initobj valuetype MyStruct404`2<class BaseClass1,class BaseClass0> .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV13 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV13} LV13: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.B.T<class BaseClass0,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV14 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV14} LV14: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.B.A<valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV15 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV15} LV15: .try { ldloc V_7 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.T<class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV16 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV16} LV16: .try { ldloc V_7 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.B<valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV17 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV17} LV17: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV18 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV18} LV18: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.T<class BaseClass0,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV19 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV19} LV19: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.A<valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV20 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV20} LV20: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV21 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV21} LV21: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.T<class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV22 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV22} LV22: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.B<valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV23 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV23} LV23: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV24 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV24} LV24: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.B.T<class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV25 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV25} LV25: .try { ldloc V_7 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.B.B<valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV26 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV26} LV26: .try { ldloc V_7 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.T<class BaseClass0,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV27 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV27} LV27: .try { ldloc V_7 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.A<valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV28 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV28} LV28: .locals init (valuetype MyStruct404`2<class BaseClass1,class BaseClass1> V_8) ldloca V_8 initobj valuetype MyStruct404`2<class BaseClass1,class BaseClass1> .try { ldloc V_8 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV29 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV29} LV29: .try { ldloc V_8 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.B.T<class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV30 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV30} LV30: .try { ldloc V_8 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.B.B<valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV31 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV31} LV31: .try { ldloc V_8 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.T<class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV32 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV32} LV32: .try { ldloc V_8 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.B<valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV33 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV33} LV33: .try { ldloc V_8 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV34 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV34} LV34: .try { ldloc V_8 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.T<class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV35 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV35} LV35: .try { ldloc V_8 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" call void Generated354::M.IBase2.A.B<valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV36 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV36} LV36: .try { ldloc V_8 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.T<class BaseClass0,valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV37 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV37} LV37: .try { ldloc V_8 ldstr "MyStruct404::Method4.MI.3310()#MyStruct404::Method5.MI.3312()#MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.IBase1.A<valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV38 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV38} LV38: ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed { .maxstack 10 ldstr "===================== Struct Constrained Interface Calls Test =====================" call void [mscorlib]System.Console::WriteLine(string) .locals init (valuetype MyStruct404`2<class BaseClass0,class BaseClass0> V_9) ldloca V_9 initobj valuetype MyStruct404`2<class BaseClass0,class BaseClass0> .try { ldloc V_9 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!2,string) leave.s LV0 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0: .try { ldloc V_9 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.A.T<class BaseClass0,valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!1,string) leave.s LV1 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1: .try { ldloc V_9 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.A.A<valuetype MyStruct404`2<class BaseClass0,class BaseClass0>>(!!0,string) leave.s LV2 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2: .locals init (valuetype MyStruct404`2<class BaseClass0,class BaseClass1> V_10) ldloca V_10 initobj valuetype MyStruct404`2<class BaseClass0,class BaseClass1> .try { ldloc V_10 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct404`2<class BaseClass0,class BaseClass1>>(!!2,string) leave.s LV3 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3: .try { ldloc V_10 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.A.T<class BaseClass1,valuetype MyStruct404`2<class BaseClass0,class BaseClass1>>(!!1,string) leave.s LV4 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4: .try { ldloc V_10 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.A.B<valuetype MyStruct404`2<class BaseClass0,class BaseClass1>>(!!0,string) leave.s LV5 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5: .locals init (valuetype MyStruct404`2<class BaseClass1,class BaseClass0> V_11) ldloca V_11 initobj valuetype MyStruct404`2<class BaseClass1,class BaseClass0> .try { ldloc V_11 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.T.T<class BaseClass1,class BaseClass0,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!2,string) leave.s LV6 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6: .try { ldloc V_11 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.B.T<class BaseClass0,valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!1,string) leave.s LV7 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7: .try { ldloc V_11 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.B.A<valuetype MyStruct404`2<class BaseClass1,class BaseClass0>>(!!0,string) leave.s LV8 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8: .locals init (valuetype MyStruct404`2<class BaseClass1,class BaseClass1> V_12) ldloca V_12 initobj valuetype MyStruct404`2<class BaseClass1,class BaseClass1> .try { ldloc V_12 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!2,string) leave.s LV9 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV9} LV9: .try { ldloc V_12 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.B.T<class BaseClass1,valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!1,string) leave.s LV10 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV10} LV10: .try { ldloc V_12 ldstr "MyStruct404::Method7.MI.3308<System.Object>()#" + "MyStruct404::Method4.MI.3310()#" + "MyStruct404::Method5.MI.3312()#" + "MyStruct404::Method6.MI.3314<System.Object>()#" call void Generated354::M.MyStruct404.B.B<valuetype MyStruct404`2<class BaseClass1,class BaseClass1>>(!!0,string) leave.s LV11 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV11} LV11: ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void CalliTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calli Test ==========================" call void [mscorlib]System.Console::WriteLine(string) .locals init (valuetype MyStruct404`2<class BaseClass0,class BaseClass0> V_13) ldloca V_13 initobj valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.3307<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::Method4() calli default string(object) ldstr "MyStruct404::Method4.3309()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::Method5() calli default string(object) ldstr "MyStruct404::Method5.3311()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(object) ldstr "MyStruct404::Method6.3313<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::ClassMethod794() calli default string(object) ldstr "MyStruct404::ClassMethod794.3315()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::ClassMethod795() calli default string(object) ldstr "MyStruct404::ClassMethod795.3316()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::ClassMethod796<object>() calli default string(object) ldstr "MyStruct404::ClassMethod796.3317<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldnull ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance bool valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::Equals(object) calli default bool(object,object) pop ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance int32 valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::GetHashCode() calli default int32(object) pop ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass0>::ToString() calli default string(object) pop ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(object) ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(object) ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(object) ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldloc V_13 box valuetype MyStruct404`2<class BaseClass0,class BaseClass0> ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) .locals init (valuetype MyStruct404`2<class BaseClass0,class BaseClass1> V_14) ldloca V_14 initobj valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.3307<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::Method4() calli default string(object) ldstr "MyStruct404::Method4.3309()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::Method5() calli default string(object) ldstr "MyStruct404::Method5.3311()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(object) ldstr "MyStruct404::Method6.3313<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::ClassMethod794() calli default string(object) ldstr "MyStruct404::ClassMethod794.3315()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::ClassMethod795() calli default string(object) ldstr "MyStruct404::ClassMethod795.3316()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::ClassMethod796<object>() calli default string(object) ldstr "MyStruct404::ClassMethod796.3317<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldnull ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance bool valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::Equals(object) calli default bool(object,object) pop ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance int32 valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::GetHashCode() calli default int32(object) pop ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass0,class BaseClass1>::ToString() calli default string(object) pop ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(object) ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(object) ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldloc V_14 box valuetype MyStruct404`2<class BaseClass0,class BaseClass1> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(object) ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) .locals init (valuetype MyStruct404`2<class BaseClass1,class BaseClass0> V_15) ldloca V_15 initobj valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.3307<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::Method4() calli default string(object) ldstr "MyStruct404::Method4.3309()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::Method5() calli default string(object) ldstr "MyStruct404::Method5.3311()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(object) ldstr "MyStruct404::Method6.3313<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::ClassMethod794() calli default string(object) ldstr "MyStruct404::ClassMethod794.3315()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::ClassMethod795() calli default string(object) ldstr "MyStruct404::ClassMethod795.3316()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::ClassMethod796<object>() calli default string(object) ldstr "MyStruct404::ClassMethod796.3317<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldnull ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance bool valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::Equals(object) calli default bool(object,object) pop ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance int32 valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::GetHashCode() calli default int32(object) pop ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass0>::ToString() calli default string(object) pop ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(object) ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(object) ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(object) ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(object) ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(object) ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldloc V_15 box valuetype MyStruct404`2<class BaseClass1,class BaseClass0> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(object) ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) .locals init (valuetype MyStruct404`2<class BaseClass1,class BaseClass1> V_16) ldloca V_16 initobj valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.3307<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::Method4() calli default string(object) ldstr "MyStruct404::Method4.3309()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::Method5() calli default string(object) ldstr "MyStruct404::Method5.3311()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(object) ldstr "MyStruct404::Method6.3313<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::ClassMethod794() calli default string(object) ldstr "MyStruct404::ClassMethod794.3315()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::ClassMethod795() calli default string(object) ldstr "MyStruct404::ClassMethod795.3316()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::ClassMethod796<object>() calli default string(object) ldstr "MyStruct404::ClassMethod796.3317<System.Object>()" ldstr "valuetype MyStruct404`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldnull ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance bool valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::Equals(object) calli default bool(object,object) pop ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance int32 valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::GetHashCode() calli default int32(object) pop ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string valuetype MyStruct404`2<class BaseClass1,class BaseClass1>::ToString() calli default string(object) pop ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(object) ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(object) ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(object) ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct404::Method7.MI.3308<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(object) ldstr "MyStruct404::Method4.MI.3310()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(object) ldstr "MyStruct404::Method5.MI.3312()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldloc V_16 box valuetype MyStruct404`2<class BaseClass1,class BaseClass1> ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(object) ldstr "MyStruct404::Method6.MI.3314<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type valuetype MyStruct404`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 10 call void Generated354::MethodCallingTest() call void Generated354::ConstrainedCallsTest() call void Generated354::StructConstrainedInterfaceCallsTest() call void Generated354::CalliTest() ldc.i4 100 ret } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/Regression/CLR-x86-JIT/V1-M10/b04306/b04306.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly b04306 { } .class _simple { .method static int32 main(class System.String[]) { .entrypoint .maxstack 100 ldc.i4 1 ldc.i4 2 ldc.i4 1 sub ldc.i4 1 ldc.i4 2 mul mul add ldc.i4 3 sub ldc.i4 100 add ret } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly b04306 { } .class _simple { .method static int32 main(class System.String[]) { .entrypoint .maxstack 100 ldc.i4 1 ldc.i4 2 ldc.i4 1 sub ldc.i4 1 ldc.i4 2 mul mul add ldc.i4 3 sub ldc.i4 100 add ret } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/Methodical/Invoke/fptr/recurse_calli.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { } .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly 'recurse_calli'// as "recurse" { // .custom instance void ['mscorlib']System.Diagnostics.DebuggableAttribute::.ctor(bool, // bool) = ( 01 00 00 01 00 00 ) } .assembly extern xunit.core {} // MVID: {885F4995-E80A-480B-BB9B-30139BED90E1} .namespace TestCase { .class private auto ansi Test extends ['mscorlib']System.Object { .method private hidebysig static int32 Fact1(int32& arg, int32& result) il managed { // Code size 38 (0x26) .maxstack 3 IL_0000: ldarg.0 IL_0001: ldind.i4 IL_0002: ldc.i4.1 IL_0003: bgt.s IL_0005 ldc.i4 0x12345 br end_of_method IL_0005: ldarg.1 IL_0006: dup IL_0007: ldind.i4 IL_0008: ldarg.0 IL_0009: ldind.i4 IL_000a: mul IL_000b: stind.i4 IL_000c: ldarg.0 IL_000d: dup IL_000e: ldind.i4 IL_000f: ldc.i4.1 IL_0010: sub IL_0011: stind.i4 ldarg.0 ldarg.1 ldftn int32 TestCase.Test::Fact1(int32&, int32&) calli int32 (int32&, int32&) end_of_method: ret } // end of method 'Test::Fact1' .method private hidebysig static int32 Main() il managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint // Code size 72 (0x48) .maxstack 2 .locals (int32 V_0, int32 V_1, int32 V_2) IL_0000: ldc.i4.6 IL_0001: stloc.0 IL_0002: ldc.i4.1 IL_0003: stloc.1 IL_0004: ldloca.s V_0 IL_0006: ldloca.s V_1 IL_0008: call int32 TestCase.Test::Fact1(int32&, int32&) IL_000d: ldc.i4 0x12345 IL_0012: beq.s IL_0022 IL_0014: ldstr "FAILED" IL_0019: call void [System.Console]System.Console::WriteLine(class System.String) IL_001e: ldc.i4.1 IL_001f: stloc.2 IL_0020: br.s IL_0046 IL_0022: ldloc.1 IL_0023: ldc.i4 0x2d0 IL_0028: beq.s IL_0038 IL_002a: ldstr "FAILED" IL_002f: call void [System.Console]System.Console::WriteLine(class System.String) IL_0034: ldc.i4.2 IL_0035: stloc.2 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.2 IL_0044: br.s IL_0046 IL_0046: ldloc.2 IL_0047: ret IL_0048: } // end of method 'Test::Main' .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 IL_0007: } // end of method 'Test::.ctor' } // end of class 'Test' } // end of namespace 'TestCase' //*********** DISASSEMBLY COMPLETE ***********************
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { } .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly 'recurse_calli'// as "recurse" { // .custom instance void ['mscorlib']System.Diagnostics.DebuggableAttribute::.ctor(bool, // bool) = ( 01 00 00 01 00 00 ) } .assembly extern xunit.core {} // MVID: {885F4995-E80A-480B-BB9B-30139BED90E1} .namespace TestCase { .class private auto ansi Test extends ['mscorlib']System.Object { .method private hidebysig static int32 Fact1(int32& arg, int32& result) il managed { // Code size 38 (0x26) .maxstack 3 IL_0000: ldarg.0 IL_0001: ldind.i4 IL_0002: ldc.i4.1 IL_0003: bgt.s IL_0005 ldc.i4 0x12345 br end_of_method IL_0005: ldarg.1 IL_0006: dup IL_0007: ldind.i4 IL_0008: ldarg.0 IL_0009: ldind.i4 IL_000a: mul IL_000b: stind.i4 IL_000c: ldarg.0 IL_000d: dup IL_000e: ldind.i4 IL_000f: ldc.i4.1 IL_0010: sub IL_0011: stind.i4 ldarg.0 ldarg.1 ldftn int32 TestCase.Test::Fact1(int32&, int32&) calli int32 (int32&, int32&) end_of_method: ret } // end of method 'Test::Fact1' .method private hidebysig static int32 Main() il managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint // Code size 72 (0x48) .maxstack 2 .locals (int32 V_0, int32 V_1, int32 V_2) IL_0000: ldc.i4.6 IL_0001: stloc.0 IL_0002: ldc.i4.1 IL_0003: stloc.1 IL_0004: ldloca.s V_0 IL_0006: ldloca.s V_1 IL_0008: call int32 TestCase.Test::Fact1(int32&, int32&) IL_000d: ldc.i4 0x12345 IL_0012: beq.s IL_0022 IL_0014: ldstr "FAILED" IL_0019: call void [System.Console]System.Console::WriteLine(class System.String) IL_001e: ldc.i4.1 IL_001f: stloc.2 IL_0020: br.s IL_0046 IL_0022: ldloc.1 IL_0023: ldc.i4 0x2d0 IL_0028: beq.s IL_0038 IL_002a: ldstr "FAILED" IL_002f: call void [System.Console]System.Console::WriteLine(class System.String) IL_0034: ldc.i4.2 IL_0035: stloc.2 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.2 IL_0044: br.s IL_0046 IL_0046: ldloc.2 IL_0047: ret IL_0048: } // end of method 'Test::Main' .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 IL_0007: } // end of method 'Test::.ctor' } // end of class 'Test' } // end of namespace 'TestCase' //*********** DISASSEMBLY COMPLETE ***********************
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/Directed/PREFIX/volatile/1/cpobj.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly extern legacy library mscorlib {} .assembly 'cpobj' {} .class public _cpobj { .field static value class valClass Instance1 .field static value class valClass Instance2 .method public static int32 main() { .entrypoint .locals (class [mscorlib]System.IO.TextWriter) .maxstack 2 call class [mscorlib]System.IO.TextWriter [System.Console]System.Console::get_Out() stloc 0 ldsflda value class valClass _cpobj::Instance1 ldc.i4 0x89ABCDEF volatile. stfld int32 valClass::Field ldc.i4 0x01234567 volatile. stsfld int32 valClass::SField ldsflda value class valClass _cpobj::Instance1 volatile. ldfld int32 valClass::Field ldc.i4 0x89ABCDEF ceq brfalse Init1Failure volatile. ldsfld int32 valClass::SField ldc.i4 0x01234567 ceq brtrue InitInstance2 Init1Failure: ldloc 0 ldstr "Initialization failure in instance 1" callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string) br fail InitInstance2: ldsflda value class valClass _cpobj::Instance2 ldc.i4 0xABABABAB volatile. stfld int32 valClass::Field ldsflda value class valClass _cpobj::Instance2 volatile. ldfld int32 valClass::Field ldc.i4 0xABABABAB ceq brfalse Init2Failure ldsfld int32 valClass::SField ldc.i4 0x01234567 ceq brtrue CheckInst1Field Init2Failure: ldloc 0 ldstr "Initialization failure in instance 2" callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string) br fail CheckInst1Field: ldsflda value class valClass _cpobj::Instance1 volatile. ldfld int32 valClass::Field ldc.i4 0x89ABCDEF ceq brtrue cpobjTests ldloc 0 ldstr "Initialization failure in instance 1" callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string) br fail cpobjTests: ldsflda value class valClass _cpobj::Instance2 ldsflda value class valClass _cpobj::Instance1 cpobj valClass ldsflda value class valClass _cpobj::Instance1 volatile. ldfld int32 valClass::Field ldc.i4 0x89ABCDEF ceq brfalse cpobjFailure ldsflda value class valClass _cpobj::Instance2 volatile. ldfld int32 valClass::Field ldc.i4 0x89ABCDEF ceq brfalse cpobjFailure volatile. ldsfld int32 valClass::SField ldc.i4 0x01234567 ceq brtrue pass cpobjFailure: ldloc 0 ldstr "_cpobj failed. inst1 fields != inst2 fields" callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string) br fail pass: ldloc 0 ldstr "_cpobj tests PASS" callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string) ldc.i4 0x64 br end fail: ldloc 0 ldstr "!!! FAILURE !!! CPOBJ TEST(S) HAVE FAILED !!! FAILURE !!!" callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string) ldc.i4 0x0 br end end: ret } } .class public value sealed valClass { .field public int32 Field .field public static int32 SField }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly extern legacy library mscorlib {} .assembly 'cpobj' {} .class public _cpobj { .field static value class valClass Instance1 .field static value class valClass Instance2 .method public static int32 main() { .entrypoint .locals (class [mscorlib]System.IO.TextWriter) .maxstack 2 call class [mscorlib]System.IO.TextWriter [System.Console]System.Console::get_Out() stloc 0 ldsflda value class valClass _cpobj::Instance1 ldc.i4 0x89ABCDEF volatile. stfld int32 valClass::Field ldc.i4 0x01234567 volatile. stsfld int32 valClass::SField ldsflda value class valClass _cpobj::Instance1 volatile. ldfld int32 valClass::Field ldc.i4 0x89ABCDEF ceq brfalse Init1Failure volatile. ldsfld int32 valClass::SField ldc.i4 0x01234567 ceq brtrue InitInstance2 Init1Failure: ldloc 0 ldstr "Initialization failure in instance 1" callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string) br fail InitInstance2: ldsflda value class valClass _cpobj::Instance2 ldc.i4 0xABABABAB volatile. stfld int32 valClass::Field ldsflda value class valClass _cpobj::Instance2 volatile. ldfld int32 valClass::Field ldc.i4 0xABABABAB ceq brfalse Init2Failure ldsfld int32 valClass::SField ldc.i4 0x01234567 ceq brtrue CheckInst1Field Init2Failure: ldloc 0 ldstr "Initialization failure in instance 2" callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string) br fail CheckInst1Field: ldsflda value class valClass _cpobj::Instance1 volatile. ldfld int32 valClass::Field ldc.i4 0x89ABCDEF ceq brtrue cpobjTests ldloc 0 ldstr "Initialization failure in instance 1" callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string) br fail cpobjTests: ldsflda value class valClass _cpobj::Instance2 ldsflda value class valClass _cpobj::Instance1 cpobj valClass ldsflda value class valClass _cpobj::Instance1 volatile. ldfld int32 valClass::Field ldc.i4 0x89ABCDEF ceq brfalse cpobjFailure ldsflda value class valClass _cpobj::Instance2 volatile. ldfld int32 valClass::Field ldc.i4 0x89ABCDEF ceq brfalse cpobjFailure volatile. ldsfld int32 valClass::SField ldc.i4 0x01234567 ceq brtrue pass cpobjFailure: ldloc 0 ldstr "_cpobj failed. inst1 fields != inst2 fields" callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string) br fail pass: ldloc 0 ldstr "_cpobj tests PASS" callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string) ldc.i4 0x64 br end fail: ldloc 0 ldstr "!!! FAILURE !!! CPOBJ TEST(S) HAVE FAILED !!! FAILURE !!!" callvirt instance void [mscorlib]System.IO.TextWriter::WriteLine(string) ldc.i4 0x0 br end end: ret } } .class public value sealed valClass { .field public int32 Field .field public static int32 SField }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/IL_Conformance/Old/Conformance_Base/ldc_conv_ovf_i4_i2.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } // //====================================== //---- CLASS ---------------- .class public conv_ovf_i2 { //---- GLOBAL DATA ---------- //---- METHODS -------------- .method public static int32 conv_0(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_0(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_1(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_1(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_2(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_2(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_3(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_3(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_4(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_4(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_5(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_5(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_6(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_6(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_7(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_7(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_8(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_8(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_9(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_9(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_10(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_10(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_11(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_11(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_12(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_12(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_13(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_13(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_14(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_14(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_15(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_15(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_16(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_16(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_17(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_17(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_18(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_18(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_19(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_19(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } //---- CONSTRUCTOR ---------- .method public void conv_ovf_i2() { .maxstack 1 ret } //---- MAIN ----------------- .method public static int32 main(class [mscorlib]System.String[]) { .entrypoint .maxstack 5 //====== begin testing ====== //-- min i4 -- ldc.i4 0x80000000 ldc.i4 0x00000000 call int32 conv_ovf_i2::conv_0(int32,int32) ldc.i4 0xEEEEEEEE ceq brfalse FAIL //-- -1 i4 -- ldc.i4 0xFFFFFFFF ldc.i4 0xFFFFFFFF call int32 conv_ovf_i2::conv_1(int32,int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- 0 i4 -- ldc.i4 0x00000000 ldc.i4 0x00000000 call int32 conv_ovf_i2::conv_2(int32,int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- +1 i4 -- ldc.i4 0x00000001 ldc.i4 0x00000001 call int32 conv_ovf_i2::conv_3(int32,int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- max i4 -- ldc.i4 0x7FFFFFFF ldc.i4 0x00000000 call int32 conv_ovf_i2::conv_4(int32,int32) ldc.i4 0xEEEEEEEE ceq brfalse FAIL //-- min i2 -- ldc.i4 0xFFFF8000 ldc.i4 0xFFFF8000 call int32 conv_ovf_i2::conv_5(int32,int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- -1 i2 -- ldc.i4 0xFFFFFFFF ldc.i4 0xFFFFFFFF call int32 conv_ovf_i2::conv_6(int32,int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- 0 i2 -- ldc.i4 0x00000000 ldc.i4 0x00000000 call int32 conv_ovf_i2::conv_7(int32,int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- +1 i2 -- ldc.i4 0x00000001 ldc.i4 0x00000001 call int32 conv_ovf_i2::conv_8(int32,int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- max i2 -- ldc.i4 0x00007FFF ldc.i4 0x00007FFF call int32 conv_ovf_i2::conv_9(int32,int32) ldc.i4 0x11111111 ceq brfalse FAIL //====== conv_un testing ====== //-- min i4 -- /* ldc.i4 0x80000000 ldc.i4 0x00000000 call int32 conv_ovf_i2::conv_un_10(unsigned int32,unsigned int32) ldc.i4 0xEEEEEEEE ceq brfalse FAIL //-- -1 i4 -- ldc.i4 0xFFFFFFFF ldc.i4 0xFFFFFFFF call int32 conv_ovf_i2::conv_un_11(unsigned int32,unsigned int32) ldc.i4 0x11111111 ceq brfalse FAIL *///-- 0 i4 -- ldc.i4 0x00000000 ldc.i4 0x00000000 call int32 conv_ovf_i2::conv_un_12(unsigned int32,unsigned int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- +1 i4 -- ldc.i4 0x00000001 ldc.i4 0x00000001 call int32 conv_ovf_i2::conv_un_13(unsigned int32,unsigned int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- max i4 -- ldc.i4 0x7FFFFFFF ldc.i4 0x00000000 call int32 conv_ovf_i2::conv_un_14(unsigned int32,unsigned int32) ldc.i4 0xEEEEEEEE ceq brfalse FAIL //-- min i2 -- /* ldc.i4 0xFFFF8000 ldc.i4 0xFFFF8000 call int32 conv_ovf_i2::conv_un_15(unsigned int32,unsigned int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- -1 i2 -- ldc.i4 0xFFFFFFFF ldc.i4 0xFFFFFFFF call int32 conv_ovf_i2::conv_un_16(unsigned int32,unsigned int32) ldc.i4 0x11111111 ceq brfalse FAIL *///-- 0 i2 -- ldc.i4 0x00000000 ldc.i4 0x00000000 call int32 conv_ovf_i2::conv_un_17(unsigned int32,unsigned int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- +1 i2 -- ldc.i4 0x00000001 ldc.i4 0x00000001 call int32 conv_ovf_i2::conv_un_18(unsigned int32,unsigned int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- max i2 -- ldc.i4 0x00007FFF ldc.i4 0x00007FFF call int32 conv_ovf_i2::conv_un_19(unsigned int32,unsigned int32) ldc.i4 0x11111111 ceq brfalse FAIL //====== end testing ======== //---- branch here on pass -- PASS: ldc.i4 100 br END //---- branch here on fail -- FAIL: ldc.i4 101 //---- return the result ---- END: ret //---- END OF METHOD -------- } //---- EOF ------------------ } .assembly ldc_conv_ovf_i4_i2{}
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } // //====================================== //---- CLASS ---------------- .class public conv_ovf_i2 { //---- GLOBAL DATA ---------- //---- METHODS -------------- .method public static int32 conv_0(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_0(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_1(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_1(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_2(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_2(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_3(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_3(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_4(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_4(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_5(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_5(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_6(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_6(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_7(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_7(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_8(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_8(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_9(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_9(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_10(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_10(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_11(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_11(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_12(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_12(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_13(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_13(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_14(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_14(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_15(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_15(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_16(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_16(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_17(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_17(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_18(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_18(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } .method public static int32 conv_19(int32,int32) { .locals (class [mscorlib]System.OverflowException, int32) .maxstack 2 try_start: ldarg 0 conv.ovf.i2 //- No exception ldarg 1 ceq stloc.1 leave.s try_end try_end: ldloc.1 brfalse FAIL ldc.i4 0x11111111 br END aHandler: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd HEnd: ldloc 0 brfalse FAIL ldc.i4 0xEEEEEEEE br END FAIL: ldc.i4 0x00000000 br END END: ret .try try_start to try_end catch [mscorlib]System.ArithmeticException handler aHandler to HEnd } .method public static int32 conv_un_19(unsigned int32,unsigned int32) { .locals (class [mscorlib]System.ArithmeticException,unsigned int16) .maxstack 2 try_start2: ldarg 0 conv.ovf.i2.un stloc.1 leave.s try_end2 try_end2: //- No exception ldloc.1 ldarg 1 ceq brfalse FAIL2 ldc.i4 0x11111111 br END2 aHandler2: //- Got an ArithmeticException isinst [mscorlib]System.ArithmeticException stloc 0 leave HEnd2 HEnd2: ldloc 0 brfalse FAIL2 ldc.i4 0xEEEEEEEE br END2 FAIL2: ldc.i4 0x00000000 br END2 END2: ret .try try_start2 to try_end2 catch [mscorlib]System.ArithmeticException handler aHandler2 to HEnd2 } //---- CONSTRUCTOR ---------- .method public void conv_ovf_i2() { .maxstack 1 ret } //---- MAIN ----------------- .method public static int32 main(class [mscorlib]System.String[]) { .entrypoint .maxstack 5 //====== begin testing ====== //-- min i4 -- ldc.i4 0x80000000 ldc.i4 0x00000000 call int32 conv_ovf_i2::conv_0(int32,int32) ldc.i4 0xEEEEEEEE ceq brfalse FAIL //-- -1 i4 -- ldc.i4 0xFFFFFFFF ldc.i4 0xFFFFFFFF call int32 conv_ovf_i2::conv_1(int32,int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- 0 i4 -- ldc.i4 0x00000000 ldc.i4 0x00000000 call int32 conv_ovf_i2::conv_2(int32,int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- +1 i4 -- ldc.i4 0x00000001 ldc.i4 0x00000001 call int32 conv_ovf_i2::conv_3(int32,int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- max i4 -- ldc.i4 0x7FFFFFFF ldc.i4 0x00000000 call int32 conv_ovf_i2::conv_4(int32,int32) ldc.i4 0xEEEEEEEE ceq brfalse FAIL //-- min i2 -- ldc.i4 0xFFFF8000 ldc.i4 0xFFFF8000 call int32 conv_ovf_i2::conv_5(int32,int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- -1 i2 -- ldc.i4 0xFFFFFFFF ldc.i4 0xFFFFFFFF call int32 conv_ovf_i2::conv_6(int32,int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- 0 i2 -- ldc.i4 0x00000000 ldc.i4 0x00000000 call int32 conv_ovf_i2::conv_7(int32,int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- +1 i2 -- ldc.i4 0x00000001 ldc.i4 0x00000001 call int32 conv_ovf_i2::conv_8(int32,int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- max i2 -- ldc.i4 0x00007FFF ldc.i4 0x00007FFF call int32 conv_ovf_i2::conv_9(int32,int32) ldc.i4 0x11111111 ceq brfalse FAIL //====== conv_un testing ====== //-- min i4 -- /* ldc.i4 0x80000000 ldc.i4 0x00000000 call int32 conv_ovf_i2::conv_un_10(unsigned int32,unsigned int32) ldc.i4 0xEEEEEEEE ceq brfalse FAIL //-- -1 i4 -- ldc.i4 0xFFFFFFFF ldc.i4 0xFFFFFFFF call int32 conv_ovf_i2::conv_un_11(unsigned int32,unsigned int32) ldc.i4 0x11111111 ceq brfalse FAIL *///-- 0 i4 -- ldc.i4 0x00000000 ldc.i4 0x00000000 call int32 conv_ovf_i2::conv_un_12(unsigned int32,unsigned int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- +1 i4 -- ldc.i4 0x00000001 ldc.i4 0x00000001 call int32 conv_ovf_i2::conv_un_13(unsigned int32,unsigned int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- max i4 -- ldc.i4 0x7FFFFFFF ldc.i4 0x00000000 call int32 conv_ovf_i2::conv_un_14(unsigned int32,unsigned int32) ldc.i4 0xEEEEEEEE ceq brfalse FAIL //-- min i2 -- /* ldc.i4 0xFFFF8000 ldc.i4 0xFFFF8000 call int32 conv_ovf_i2::conv_un_15(unsigned int32,unsigned int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- -1 i2 -- ldc.i4 0xFFFFFFFF ldc.i4 0xFFFFFFFF call int32 conv_ovf_i2::conv_un_16(unsigned int32,unsigned int32) ldc.i4 0x11111111 ceq brfalse FAIL *///-- 0 i2 -- ldc.i4 0x00000000 ldc.i4 0x00000000 call int32 conv_ovf_i2::conv_un_17(unsigned int32,unsigned int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- +1 i2 -- ldc.i4 0x00000001 ldc.i4 0x00000001 call int32 conv_ovf_i2::conv_un_18(unsigned int32,unsigned int32) ldc.i4 0x11111111 ceq brfalse FAIL //-- max i2 -- ldc.i4 0x00007FFF ldc.i4 0x00007FFF call int32 conv_ovf_i2::conv_un_19(unsigned int32,unsigned int32) ldc.i4 0x11111111 ceq brfalse FAIL //====== end testing ======== //---- branch here on pass -- PASS: ldc.i4 100 br END //---- branch here on fail -- FAIL: ldc.i4 101 //---- return the result ---- END: ret //---- END OF METHOD -------- } //---- EOF ------------------ } .assembly ldc_conv_ovf_i4_i2{}
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/Methodical/explicit/basic/refloc_u2.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { } .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly 'refloc_u2'// as "refloc_u2" { // .custom instance void ['mscorlib']System.Diagnostics.DebuggableAttribute::.ctor(bool, // bool) = ( 01 00 00 01 00 00 ) } .assembly extern xunit.core {} // MVID: {ADBCF0C8-A2B9-4481-BF63-32F2CB11E46E} .namespace Test { .class private auto ansi AA extends ['mscorlib']System.Object { .field static family class Test.AA s_aa .field family class Test.AA m_aa .field public unsigned int16 mm .field public static bool finalizerCalled .method family hidebysig virtual instance void Finalize() il managed { // Code size 61 (0x3d) .maxstack 8 IL_0000: ldstr "finalizer called." IL_0005: call void [System.Console]System.Console::WriteLine(class System.String) IL_000a: ldarg.0 IL_0028: ldfld unsigned int16 Test.AA::mm IL_002d: conv.i4 ldc.i4.s 45 IL_002e: beq.s IL_0036 IL_0030: newobj instance void ['mscorlib']System.Exception::.ctor() IL_0035: throw IL_0036: ldc.i4.1 IL_0037: stsfld bool Test.AA::finalizerCalled IL_003c: ret } // end of method 'AA::Finalize' .method public hidebysig specialname rtspecialname static void .cctor() il managed { // Code size 17 (0x11) .maxstack 8 IL_0000: newobj instance void Test.AA::.ctor() IL_0005: stsfld class Test.AA Test.AA::s_aa IL_000a: ldc.i4.0 IL_000b: stsfld bool Test.AA::finalizerCalled IL_0010: ret } // end of method 'AA::.cctor' .method public hidebysig specialname rtspecialname instance void .ctor() il managed { // Code size 26 (0x1a) .maxstack 8 IL_0000: ldarg.0 IL_0001: ldsfld class Test.AA Test.AA::s_aa IL_0006: stfld class Test.AA Test.AA::m_aa IL_000b: ldarg.0 IL_000c: ldc.i4.s 45 IL_000e: stfld unsigned int16 Test.AA::mm IL_0013: ldarg.0 IL_0014: call instance void ['mscorlib']System.Object::.ctor() IL_0019: ret } // end of method 'AA::.ctor' } // 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 { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint // Code size 65 (0x41) .maxstack 2 .locals (unsigned int16 & V_0, int32 V_1) IL_0000: ldsfld class Test.AA Test.App::s_aa IL_0005: ldflda unsigned int16 Test.AA::mm 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_0023 IL_001d: ldloc.0 ldind.i2 IL_001e: conv.i4 IL_001f: ldc.i4.s 45 IL_0021: beq.s IL_0031 IL_0023: ldstr "*** failed ***" IL_0028: call void [System.Console]System.Console::WriteLine(class System.String) IL_002d: ldc.i4.1 IL_002e: stloc.1 IL_002f: br.s IL_003f IL_0031: ldstr "*** passed ***" IL_0036: call void [System.Console]System.Console::WriteLine(class System.String) IL_003b: ldc.i4 0x64 IL_003c: stloc.1 IL_003d: br.s IL_003f IL_003f: ldloc.1 IL_0040: ret } // end of method 'App::Main' .method public hidebysig specialname rtspecialname static void .cctor() il managed { // Code size 11 (0xb) .maxstack 8 IL_0000: newobj instance void Test.AA::.ctor() IL_0005: stsfld class Test.AA Test.App::s_aa IL_000a: 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 ***********************
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { } .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly 'refloc_u2'// as "refloc_u2" { // .custom instance void ['mscorlib']System.Diagnostics.DebuggableAttribute::.ctor(bool, // bool) = ( 01 00 00 01 00 00 ) } .assembly extern xunit.core {} // MVID: {ADBCF0C8-A2B9-4481-BF63-32F2CB11E46E} .namespace Test { .class private auto ansi AA extends ['mscorlib']System.Object { .field static family class Test.AA s_aa .field family class Test.AA m_aa .field public unsigned int16 mm .field public static bool finalizerCalled .method family hidebysig virtual instance void Finalize() il managed { // Code size 61 (0x3d) .maxstack 8 IL_0000: ldstr "finalizer called." IL_0005: call void [System.Console]System.Console::WriteLine(class System.String) IL_000a: ldarg.0 IL_0028: ldfld unsigned int16 Test.AA::mm IL_002d: conv.i4 ldc.i4.s 45 IL_002e: beq.s IL_0036 IL_0030: newobj instance void ['mscorlib']System.Exception::.ctor() IL_0035: throw IL_0036: ldc.i4.1 IL_0037: stsfld bool Test.AA::finalizerCalled IL_003c: ret } // end of method 'AA::Finalize' .method public hidebysig specialname rtspecialname static void .cctor() il managed { // Code size 17 (0x11) .maxstack 8 IL_0000: newobj instance void Test.AA::.ctor() IL_0005: stsfld class Test.AA Test.AA::s_aa IL_000a: ldc.i4.0 IL_000b: stsfld bool Test.AA::finalizerCalled IL_0010: ret } // end of method 'AA::.cctor' .method public hidebysig specialname rtspecialname instance void .ctor() il managed { // Code size 26 (0x1a) .maxstack 8 IL_0000: ldarg.0 IL_0001: ldsfld class Test.AA Test.AA::s_aa IL_0006: stfld class Test.AA Test.AA::m_aa IL_000b: ldarg.0 IL_000c: ldc.i4.s 45 IL_000e: stfld unsigned int16 Test.AA::mm IL_0013: ldarg.0 IL_0014: call instance void ['mscorlib']System.Object::.ctor() IL_0019: ret } // end of method 'AA::.ctor' } // 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 { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint // Code size 65 (0x41) .maxstack 2 .locals (unsigned int16 & V_0, int32 V_1) IL_0000: ldsfld class Test.AA Test.App::s_aa IL_0005: ldflda unsigned int16 Test.AA::mm 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_0023 IL_001d: ldloc.0 ldind.i2 IL_001e: conv.i4 IL_001f: ldc.i4.s 45 IL_0021: beq.s IL_0031 IL_0023: ldstr "*** failed ***" IL_0028: call void [System.Console]System.Console::WriteLine(class System.String) IL_002d: ldc.i4.1 IL_002e: stloc.1 IL_002f: br.s IL_003f IL_0031: ldstr "*** passed ***" IL_0036: call void [System.Console]System.Console::WriteLine(class System.String) IL_003b: ldc.i4 0x64 IL_003c: stloc.1 IL_003d: br.s IL_003f IL_003f: ldloc.1 IL_0040: ret } // end of method 'App::Main' .method public hidebysig specialname rtspecialname static void .cctor() il managed { // Code size 11 (0xb) .maxstack 8 IL_0000: newobj instance void Test.AA::.ctor() IL_0005: stsfld class Test.AA Test.App::s_aa IL_000a: 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 ***********************
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b36030/b36030.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly 'b36030' {} .assembly extern xunit.core {} .class ILGEN_0x68f5b414 { .field static float64[] field_0x0 .method static float32 Method_0x51d(unsigned int64 Arg_0x1, float32 Arg_0x3) { .maxstack 17 ldc.i4 255 newarr [mscorlib]System.Double stsfld float64[] ILGEN_0x68f5b414::field_0x0 ldarg Arg_0x1 conv.r4 ldarg Arg_0x3 rem Start_Orphan_d: ldsfld float64[] ILGEN_0x68f5b414::field_0x0 ldc.i4.3 ldelem.r8 pop End_Orphan_d: Start_Orphan_10: ldsfld float64[] ILGEN_0x68f5b414::field_0x0 ldc.i4.3 ldelem.r8 pop End_Orphan_10: conv.r4 ret } .method static int32 Main() { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 20 ldc.i8 0x1dc3638c3d8a55be ldc.r4 float32(0x13ce587e) call float32 ILGEN_0x68f5b414::Method_0x51d(unsigned int64 Arg_0x1,float32 Arg_0x3) conv.i4 ldc.i4 100 add ret } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly 'b36030' {} .assembly extern xunit.core {} .class ILGEN_0x68f5b414 { .field static float64[] field_0x0 .method static float32 Method_0x51d(unsigned int64 Arg_0x1, float32 Arg_0x3) { .maxstack 17 ldc.i4 255 newarr [mscorlib]System.Double stsfld float64[] ILGEN_0x68f5b414::field_0x0 ldarg Arg_0x1 conv.r4 ldarg Arg_0x3 rem Start_Orphan_d: ldsfld float64[] ILGEN_0x68f5b414::field_0x0 ldc.i4.3 ldelem.r8 pop End_Orphan_d: Start_Orphan_10: ldsfld float64[] ILGEN_0x68f5b414::field_0x0 ldc.i4.3 ldelem.r8 pop End_Orphan_10: conv.r4 ret } .method static int32 Main() { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 20 ldc.i8 0x1dc3638c3d8a55be ldc.r4 float32(0x13ce587e) call float32 ILGEN_0x68f5b414::Method_0x51d(unsigned int64 Arg_0x1,float32 Arg_0x3) conv.i4 ldc.i4 100 add ret } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest1466/Generated1466.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 } .assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) } //TYPES IN FORWARDER ASSEMBLIES: //TEST ASSEMBLY: .assembly Generated1466 { .hash algorithm 0x00008004 } .assembly extern xunit.core {} .class public BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class public BaseClass1 extends BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void BaseClass0::.ctor() ret } } .class public G3_C1938`1<T0> extends class G2_C846`2<class BaseClass1,class BaseClass0> implements class IBase2`2<class BaseClass0,!T0> { .method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining { ldstr "G3_C1938::Method7.18811<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod5273() cil managed noinlining { ldstr "G3_C1938::ClassMethod5273.18812()" ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G2_C846`2<class BaseClass1,class BaseClass0>::.ctor() ret } } .class public G2_C846`2<T0, T1> extends class G1_C15`2<!T0,class BaseClass0> implements class IBase1`1<!T0>, class IBase2`2<!T1,!T0> { .method public hidebysig virtual instance string Method4() cil managed noinlining { ldstr "G2_C846::Method4.12757()" ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method4'() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method4() ldstr "G2_C846::Method4.MI.12758()" ret } .method public hidebysig newslot virtual instance string Method5() cil managed noinlining { ldstr "G2_C846::Method5.12759()" ret } .method public hidebysig newslot virtual instance string Method6<M0>() cil managed noinlining { ldstr "G2_C846::Method6.12760<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method6'<M0>() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method6<[1]>() ldstr "G2_C846::Method6.MI.12761<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G2_C846::Method7.12762<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<T1,T0>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<!T1,!T0>::Method7<[1]>() ldstr "G2_C846::Method7.MI.12763<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod3068<M0>() cil managed noinlining { ldstr "G2_C846::ClassMethod3068.12764<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G1_C15`2<!T0,class BaseClass0>::.ctor() ret } } .class interface public abstract IBase2`2<+T0, -T1> { .method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { } } .class public abstract G1_C15`2<T0, T1> implements class IBase2`2<!T1,!T1>, class IBase1`1<class BaseClass0> { .method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining { ldstr "G1_C15::Method7.4885<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<T1,T1>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<!T1,!T1>::Method7<[1]>() ldstr "G1_C15::Method7.MI.4886<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance string Method4() cil managed noinlining { ldstr "G1_C15::Method4.4887()" ret } .method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method4'() cil managed noinlining { .override method instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G1_C15::Method4.MI.4888()" ret } .method public hidebysig virtual instance string Method5() cil managed noinlining { ldstr "G1_C15::Method5.4889()" ret } .method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method5'() cil managed noinlining { .override method instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G1_C15::Method5.MI.4890()" ret } .method public hidebysig virtual instance string Method6<M0>() cil managed noinlining { ldstr "G1_C15::Method6.4891<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method6'<M0>() cil managed noinlining { .override method instance string class IBase1`1<class BaseClass0>::Method6<[1]>() ldstr "G1_C15::Method6.MI.4892<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class interface public abstract IBase1`1<+T0> { .method public hidebysig newslot abstract virtual instance string Method4() cil managed { } .method public hidebysig newslot abstract virtual instance string Method5() cil managed { } .method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { } } .class public auto ansi beforefieldinit Generated1466 { .method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1938.T<T0,(class G3_C1938`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1938.T<T0,(class G3_C1938`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<!!T0>::ClassMethod3068<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<!!T0>::ClassMethod5273() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<!!T0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1938.A<(class G3_C1938`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1938.A<(class G3_C1938`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass0>::ClassMethod3068<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass0>::ClassMethod5273() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1938.B<(class G3_C1938`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1938.B<(class G3_C1938`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass1>::ClassMethod3068<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass1>::ClassMethod5273() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C846.T.T<T0,T1,(class G2_C846`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 10 .locals init (string[] actualResults) ldc.i4.s 5 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C846.T.T<T0,T1,(class G2_C846`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 5 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<!!T0,!!T1>::ClassMethod3068<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C846.A.T<T1,(class G2_C846`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 10 .locals init (string[] actualResults) ldc.i4.s 5 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C846.A.T<T1,(class G2_C846`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 5 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,!!T1>::ClassMethod3068<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C846.A.A<(class G2_C846`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 10 .locals init (string[] actualResults) ldc.i4.s 5 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C846.A.A<(class G2_C846`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 5 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass0>::ClassMethod3068<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C846.A.B<(class G2_C846`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 10 .locals init (string[] actualResults) ldc.i4.s 5 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C846.A.B<(class G2_C846`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 5 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass1>::ClassMethod3068<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C846.B.T<T1,(class G2_C846`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 10 .locals init (string[] actualResults) ldc.i4.s 5 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C846.B.T<T1,(class G2_C846`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 5 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,!!T1>::ClassMethod3068<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C846.B.A<(class G2_C846`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 10 .locals init (string[] actualResults) ldc.i4.s 5 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C846.B.A<(class G2_C846`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 5 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::ClassMethod3068<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C846.B.B<(class G2_C846`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 10 .locals init (string[] actualResults) ldc.i4.s 5 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C846.B.B<(class G2_C846`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 5 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass1>::ClassMethod3068<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C15.T.T<T0,T1,(class G1_C15`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C15.T.T<T0,T1,(class G1_C15`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C15.A.T<T1,(class G1_C15`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C15.A.T<T1,(class G1_C15`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C15.A.A<(class G1_C15`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C15.A.A<(class G1_C15`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C15.A.B<(class G1_C15`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C15.A.B<(class G1_C15`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C15.B.T<T1,(class G1_C15`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C15.B.T<T1,(class G1_C15`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C15.B.A<(class G1_C15`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C15.B.A<(class G1_C15`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C15.B.B<(class G1_C15`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C15.B.B<(class G1_C15`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method public hidebysig static void MethodCallingTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calling Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1938`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G3_C1938::Method7.18811<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G3_C1938::Method7.18811<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::ClassMethod3068<object>() ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1938`1<class BaseClass0> callvirt instance string class G3_C1938`1<class BaseClass0>::ClassMethod5273() ldstr "G3_C1938::ClassMethod5273.18812()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1938`1<class BaseClass0> callvirt instance string class G3_C1938`1<class BaseClass0>::Method7<object>() ldstr "G3_C1938::Method7.18811<System.Object>()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1938`1<class BaseClass0> callvirt instance string class G3_C1938`1<class BaseClass0>::ClassMethod3068<object>() ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1938`1<class BaseClass0> callvirt instance string class G3_C1938`1<class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1938`1<class BaseClass0> callvirt instance string class G3_C1938`1<class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1938`1<class BaseClass0> callvirt instance string class G3_C1938`1<class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G3_C1938`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C15::Method7.MI.4886<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G3_C1938::Method7.18811<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::ClassMethod3068<object>() ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1938`1<class BaseClass1> callvirt instance string class G3_C1938`1<class BaseClass1>::ClassMethod5273() ldstr "G3_C1938::ClassMethod5273.18812()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1938`1<class BaseClass1> callvirt instance string class G3_C1938`1<class BaseClass1>::Method7<object>() ldstr "G3_C1938::Method7.18811<System.Object>()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1938`1<class BaseClass1> callvirt instance string class G3_C1938`1<class BaseClass1>::ClassMethod3068<object>() ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1938`1<class BaseClass1> callvirt instance string class G3_C1938`1<class BaseClass1>::Method6<object>() ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1938`1<class BaseClass1> callvirt instance string class G3_C1938`1<class BaseClass1>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1938`1<class BaseClass1> callvirt instance string class G3_C1938`1<class BaseClass1>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C846`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C15`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C846`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass0>::ClassMethod3068<object>() ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C846`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C15`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C846`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass1>::ClassMethod3068<object>() ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C846`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C15::Method7.MI.4886<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::ClassMethod3068<object>() ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C846`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C15::Method7.MI.4886<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C846`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass1>::ClassMethod3068<object>() ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void ConstrainedCallsTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Constrained Calls Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1938`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.T.T<class BaseClass1,class BaseClass0,class G3_C1938`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.B.T<class BaseClass0,class G3_C1938`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.B.A<class G3_C1938`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1938`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass0,class G3_C1938`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.IBase2.A.A<class G3_C1938`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.T<class BaseClass0,class G3_C1938`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.A<class G3_C1938`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1938`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass1,class G3_C1938`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.IBase2.A.B<class G3_C1938`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.T.T<class BaseClass1,class BaseClass0,class G3_C1938`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.B.T<class BaseClass0,class G3_C1938`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.B.A<class G3_C1938`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.T<class BaseClass1,class G3_C1938`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.B<class G3_C1938`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G3_C1938::ClassMethod5273.18812()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.G3_C1938.T<class BaseClass0,class G3_C1938`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G3_C1938::ClassMethod5273.18812()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.G3_C1938.A<class G3_C1938`1<class BaseClass0>>(!!0,string) newobj instance void class G3_C1938`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.T.T<class BaseClass1,class BaseClass0,class G3_C1938`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.B.T<class BaseClass0,class G3_C1938`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.B.A<class G3_C1938`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C15::Method7.MI.4886<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1938`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C15::Method7.MI.4886<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass0,class G3_C1938`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C15::Method7.MI.4886<System.Object>()#" call void Generated1466::M.IBase2.A.A<class G3_C1938`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.T<class BaseClass0,class G3_C1938`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.A<class G3_C1938`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1938`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass1,class G3_C1938`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.IBase2.A.B<class G3_C1938`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.T.T<class BaseClass1,class BaseClass0,class G3_C1938`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.B.T<class BaseClass0,class G3_C1938`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.B.A<class G3_C1938`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.T<class BaseClass1,class G3_C1938`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.B<class G3_C1938`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G3_C1938::ClassMethod5273.18812()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.G3_C1938.T<class BaseClass1,class G3_C1938`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G3_C1938::ClassMethod5273.18812()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.G3_C1938.B<class G3_C1938`1<class BaseClass1>>(!!0,string) newobj instance void class G2_C846`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.T.T<class BaseClass0,class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.A.T<class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.A.A<class G2_C846`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.A<class G2_C846`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.T<class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.A<class G2_C846`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C846`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass1,class G2_C846`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.B<class G2_C846`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.T.T<class BaseClass0,class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.A.T<class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.A.A<class G2_C846`2<class BaseClass0,class BaseClass0>>(!!0,string) newobj instance void class G2_C846`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.T.T<class BaseClass0,class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.A.T<class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.A.A<class G2_C846`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.A<class G2_C846`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.T<class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.A<class G2_C846`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass1,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.B<class G2_C846`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.T.T<class BaseClass0,class BaseClass1,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.A.T<class BaseClass1,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.A.B<class G2_C846`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.B.T<class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.B.A<class G2_C846`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.B.T<class BaseClass1,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.B.B<class G2_C846`2<class BaseClass0,class BaseClass1>>(!!0,string) newobj instance void class G2_C846`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.T.T<class BaseClass1,class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.B.T<class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.B.A<class G2_C846`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C15::Method7.MI.4886<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C15::Method7.MI.4886<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C15::Method7.MI.4886<System.Object>()#" call void Generated1466::M.IBase2.A.A<class G2_C846`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.T<class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.A<class G2_C846`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C846`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass1,class G2_C846`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.B<class G2_C846`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.T.T<class BaseClass1,class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.B.T<class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.B.A<class G2_C846`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.T<class BaseClass1,class G2_C846`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.B<class G2_C846`2<class BaseClass1,class BaseClass0>>(!!0,string) newobj instance void class G2_C846`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.T.T<class BaseClass1,class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.B.T<class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.B.A<class G2_C846`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C15::Method7.MI.4886<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C15::Method7.MI.4886<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C15::Method7.MI.4886<System.Object>()#" call void Generated1466::M.IBase2.A.A<class G2_C846`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.T<class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.A<class G2_C846`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass1,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.B<class G2_C846`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.T.T<class BaseClass1,class BaseClass1,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.B.T<class BaseClass1,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.B.B<class G2_C846`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.T<class BaseClass1,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.B<class G2_C846`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.B.T<class BaseClass1,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.B.B<class G2_C846`2<class BaseClass1,class BaseClass1>>(!!0,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed { .maxstack 10 ldstr "===================== Struct Constrained Interface Calls Test =====================" call void [mscorlib]System.Console::WriteLine(string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void CalliTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calli Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1938`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G3_C1938::Method7.18811<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G3_C1938::Method7.18811<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::ClassMethod3068<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass0>::ClassMethod5273() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G3_C1938::ClassMethod5273.18812()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass0>::Method7<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G3_C1938::Method7.18811<System.Object>()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass0>::ClassMethod3068<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass0>::Method5() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method5.12759()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass0>::Method4() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method4.12757()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G3_C1938`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G1_C15::Method7.MI.4886<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G3_C1938::Method7.18811<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::ClassMethod3068<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass1>::ClassMethod5273() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G3_C1938::ClassMethod5273.18812()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass1>::Method7<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G3_C1938::Method7.18811<System.Object>()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass1>::ClassMethod3068<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass1>::Method5() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method5.12759()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass1>::Method4() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method4.12757()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C846`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C15`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass0,class BaseClass0>::ClassMethod3068<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C846`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C15`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass0,class BaseClass1>::ClassMethod3068<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C846`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G1_C15::Method7.MI.4886<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::ClassMethod3068<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C846`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G1_C15::Method7.MI.4886<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass1>::ClassMethod3068<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 10 call void Generated1466::MethodCallingTest() call void Generated1466::ConstrainedCallsTest() call void Generated1466::StructConstrainedInterfaceCallsTest() call void Generated1466::CalliTest() ldc.i4 100 ret } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 } .assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) } //TYPES IN FORWARDER ASSEMBLIES: //TEST ASSEMBLY: .assembly Generated1466 { .hash algorithm 0x00008004 } .assembly extern xunit.core {} .class public BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class public BaseClass1 extends BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void BaseClass0::.ctor() ret } } .class public G3_C1938`1<T0> extends class G2_C846`2<class BaseClass1,class BaseClass0> implements class IBase2`2<class BaseClass0,!T0> { .method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining { ldstr "G3_C1938::Method7.18811<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod5273() cil managed noinlining { ldstr "G3_C1938::ClassMethod5273.18812()" ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G2_C846`2<class BaseClass1,class BaseClass0>::.ctor() ret } } .class public G2_C846`2<T0, T1> extends class G1_C15`2<!T0,class BaseClass0> implements class IBase1`1<!T0>, class IBase2`2<!T1,!T0> { .method public hidebysig virtual instance string Method4() cil managed noinlining { ldstr "G2_C846::Method4.12757()" ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method4'() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method4() ldstr "G2_C846::Method4.MI.12758()" ret } .method public hidebysig newslot virtual instance string Method5() cil managed noinlining { ldstr "G2_C846::Method5.12759()" ret } .method public hidebysig newslot virtual instance string Method6<M0>() cil managed noinlining { ldstr "G2_C846::Method6.12760<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase1<T0>.Method6'<M0>() cil managed noinlining { .override method instance string class IBase1`1<!T0>::Method6<[1]>() ldstr "G2_C846::Method6.MI.12761<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G2_C846::Method7.12762<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<T1,T0>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<!T1,!T0>::Method7<[1]>() ldstr "G2_C846::Method7.MI.12763<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod3068<M0>() cil managed noinlining { ldstr "G2_C846::ClassMethod3068.12764<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G1_C15`2<!T0,class BaseClass0>::.ctor() ret } } .class interface public abstract IBase2`2<+T0, -T1> { .method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { } } .class public abstract G1_C15`2<T0, T1> implements class IBase2`2<!T1,!T1>, class IBase1`1<class BaseClass0> { .method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining { ldstr "G1_C15::Method7.4885<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<T1,T1>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<!T1,!T1>::Method7<[1]>() ldstr "G1_C15::Method7.MI.4886<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance string Method4() cil managed noinlining { ldstr "G1_C15::Method4.4887()" ret } .method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method4'() cil managed noinlining { .override method instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G1_C15::Method4.MI.4888()" ret } .method public hidebysig virtual instance string Method5() cil managed noinlining { ldstr "G1_C15::Method5.4889()" ret } .method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method5'() cil managed noinlining { .override method instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G1_C15::Method5.MI.4890()" ret } .method public hidebysig virtual instance string Method6<M0>() cil managed noinlining { ldstr "G1_C15::Method6.4891<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method6'<M0>() cil managed noinlining { .override method instance string class IBase1`1<class BaseClass0>::Method6<[1]>() ldstr "G1_C15::Method6.MI.4892<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class interface public abstract IBase1`1<+T0> { .method public hidebysig newslot abstract virtual instance string Method4() cil managed { } .method public hidebysig newslot abstract virtual instance string Method5() cil managed { } .method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { } } .class public auto ansi beforefieldinit Generated1466 { .method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1938.T<T0,(class G3_C1938`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1938.T<T0,(class G3_C1938`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<!!T0>::ClassMethod3068<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<!!T0>::ClassMethod5273() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<!!T0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1938.A<(class G3_C1938`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1938.A<(class G3_C1938`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass0>::ClassMethod3068<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass0>::ClassMethod5273() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1938.B<(class G3_C1938`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1938.B<(class G3_C1938`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass1>::ClassMethod3068<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass1>::ClassMethod5273() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1938`1<class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C846.T.T<T0,T1,(class G2_C846`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 10 .locals init (string[] actualResults) ldc.i4.s 5 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C846.T.T<T0,T1,(class G2_C846`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 5 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<!!T0,!!T1>::ClassMethod3068<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C846.A.T<T1,(class G2_C846`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 10 .locals init (string[] actualResults) ldc.i4.s 5 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C846.A.T<T1,(class G2_C846`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 5 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,!!T1>::ClassMethod3068<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C846.A.A<(class G2_C846`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 10 .locals init (string[] actualResults) ldc.i4.s 5 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C846.A.A<(class G2_C846`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 5 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass0>::ClassMethod3068<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C846.A.B<(class G2_C846`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 10 .locals init (string[] actualResults) ldc.i4.s 5 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C846.A.B<(class G2_C846`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 5 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass1>::ClassMethod3068<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C846.B.T<T1,(class G2_C846`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 10 .locals init (string[] actualResults) ldc.i4.s 5 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C846.B.T<T1,(class G2_C846`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 5 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,!!T1>::ClassMethod3068<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C846.B.A<(class G2_C846`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 10 .locals init (string[] actualResults) ldc.i4.s 5 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C846.B.A<(class G2_C846`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 5 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::ClassMethod3068<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C846.B.B<(class G2_C846`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 10 .locals init (string[] actualResults) ldc.i4.s 5 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C846.B.B<(class G2_C846`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 5 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass1>::ClassMethod3068<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C15.T.T<T0,T1,(class G1_C15`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C15.T.T<T0,T1,(class G1_C15`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C15.A.T<T1,(class G1_C15`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C15.A.T<T1,(class G1_C15`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C15.A.A<(class G1_C15`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C15.A.A<(class G1_C15`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C15.A.B<(class G1_C15`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C15.A.B<(class G1_C15`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C15.B.T<T1,(class G1_C15`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C15.B.T<T1,(class G1_C15`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C15.B.A<(class G1_C15`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C15.B.A<(class G1_C15`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C15.B.B<(class G1_C15`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C15.B.B<(class G1_C15`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method public hidebysig static void MethodCallingTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calling Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1938`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G3_C1938::Method7.18811<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G3_C1938::Method7.18811<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::ClassMethod3068<object>() ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1938`1<class BaseClass0> callvirt instance string class G3_C1938`1<class BaseClass0>::ClassMethod5273() ldstr "G3_C1938::ClassMethod5273.18812()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1938`1<class BaseClass0> callvirt instance string class G3_C1938`1<class BaseClass0>::Method7<object>() ldstr "G3_C1938::Method7.18811<System.Object>()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1938`1<class BaseClass0> callvirt instance string class G3_C1938`1<class BaseClass0>::ClassMethod3068<object>() ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1938`1<class BaseClass0> callvirt instance string class G3_C1938`1<class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1938`1<class BaseClass0> callvirt instance string class G3_C1938`1<class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1938`1<class BaseClass0> callvirt instance string class G3_C1938`1<class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G3_C1938`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C15::Method7.MI.4886<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G3_C1938::Method7.18811<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::ClassMethod3068<object>() ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1938`1<class BaseClass1> callvirt instance string class G3_C1938`1<class BaseClass1>::ClassMethod5273() ldstr "G3_C1938::ClassMethod5273.18812()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1938`1<class BaseClass1> callvirt instance string class G3_C1938`1<class BaseClass1>::Method7<object>() ldstr "G3_C1938::Method7.18811<System.Object>()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1938`1<class BaseClass1> callvirt instance string class G3_C1938`1<class BaseClass1>::ClassMethod3068<object>() ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1938`1<class BaseClass1> callvirt instance string class G3_C1938`1<class BaseClass1>::Method6<object>() ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1938`1<class BaseClass1> callvirt instance string class G3_C1938`1<class BaseClass1>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1938`1<class BaseClass1> callvirt instance string class G3_C1938`1<class BaseClass1>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C846`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C15`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C846`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass0>::ClassMethod3068<object>() ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C846`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C15`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C846`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass1>::ClassMethod3068<object>() ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C846`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C15::Method7.MI.4886<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::ClassMethod3068<object>() ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C846`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C15`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C15::Method7.MI.4886<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C846`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass1>::ClassMethod3068<object>() ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C846`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void ConstrainedCallsTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Constrained Calls Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1938`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.T.T<class BaseClass1,class BaseClass0,class G3_C1938`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.B.T<class BaseClass0,class G3_C1938`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.B.A<class G3_C1938`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1938`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass0,class G3_C1938`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.IBase2.A.A<class G3_C1938`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.T<class BaseClass0,class G3_C1938`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.A<class G3_C1938`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1938`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass1,class G3_C1938`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.IBase2.A.B<class G3_C1938`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.T.T<class BaseClass1,class BaseClass0,class G3_C1938`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.B.T<class BaseClass0,class G3_C1938`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.B.A<class G3_C1938`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.T<class BaseClass1,class G3_C1938`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.B<class G3_C1938`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G3_C1938::ClassMethod5273.18812()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.G3_C1938.T<class BaseClass0,class G3_C1938`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G3_C1938::ClassMethod5273.18812()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.G3_C1938.A<class G3_C1938`1<class BaseClass0>>(!!0,string) newobj instance void class G3_C1938`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.T.T<class BaseClass1,class BaseClass0,class G3_C1938`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.B.T<class BaseClass0,class G3_C1938`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.B.A<class G3_C1938`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C15::Method7.MI.4886<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1938`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C15::Method7.MI.4886<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass0,class G3_C1938`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C15::Method7.MI.4886<System.Object>()#" call void Generated1466::M.IBase2.A.A<class G3_C1938`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.T<class BaseClass0,class G3_C1938`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.A<class G3_C1938`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1938`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass1,class G3_C1938`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.IBase2.A.B<class G3_C1938`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.T.T<class BaseClass1,class BaseClass0,class G3_C1938`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.B.T<class BaseClass0,class G3_C1938`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.B.A<class G3_C1938`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.T<class BaseClass1,class G3_C1938`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.B<class G3_C1938`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G3_C1938::ClassMethod5273.18812()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.G3_C1938.T<class BaseClass1,class G3_C1938`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G3_C1938::ClassMethod5273.18812()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G3_C1938::Method7.18811<System.Object>()#" call void Generated1466::M.G3_C1938.B<class G3_C1938`1<class BaseClass1>>(!!0,string) newobj instance void class G2_C846`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.T.T<class BaseClass0,class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.A.T<class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.A.A<class G2_C846`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.A<class G2_C846`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.T<class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.A<class G2_C846`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C846`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass1,class G2_C846`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.B<class G2_C846`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.T.T<class BaseClass0,class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.A.T<class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.A.A<class G2_C846`2<class BaseClass0,class BaseClass0>>(!!0,string) newobj instance void class G2_C846`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.T.T<class BaseClass0,class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.A.T<class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.A.A<class G2_C846`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.A<class G2_C846`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.T<class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.A<class G2_C846`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass1,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.B<class G2_C846`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.T.T<class BaseClass0,class BaseClass1,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.A.T<class BaseClass1,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.A.B<class G2_C846`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.B.T<class BaseClass0,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.B.A<class G2_C846`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.B.T<class BaseClass1,class G2_C846`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.B.B<class G2_C846`2<class BaseClass0,class BaseClass1>>(!!0,string) newobj instance void class G2_C846`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.T.T<class BaseClass1,class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.B.T<class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.B.A<class G2_C846`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C15::Method7.MI.4886<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C15::Method7.MI.4886<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C15::Method7.MI.4886<System.Object>()#" call void Generated1466::M.IBase2.A.A<class G2_C846`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.T<class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.A<class G2_C846`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C846`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass1,class G2_C846`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.B<class G2_C846`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.T.T<class BaseClass1,class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.B.T<class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.B.A<class G2_C846`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.T<class BaseClass1,class G2_C846`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.B<class G2_C846`2<class BaseClass1,class BaseClass0>>(!!0,string) newobj instance void class G2_C846`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.T.T<class BaseClass1,class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.B.T<class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.12757()#G1_C15::Method5.4889()#G1_C15::Method6.4891<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G1_C15.B.A<class G2_C846`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C15::Method7.MI.4886<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C15::Method7.MI.4886<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C15::Method7.MI.4886<System.Object>()#" call void Generated1466::M.IBase2.A.A<class G2_C846`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.T<class BaseClass0,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.A<class G2_C846`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.T<class BaseClass1,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.A.B<class G2_C846`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.T.T<class BaseClass1,class BaseClass1,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.B.T<class BaseClass1,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::ClassMethod3068.12764<System.Object>()#G2_C846::Method4.12757()#G2_C846::Method5.12759()#G2_C846::Method6.12760<System.Object>()#G2_C846::Method7.12762<System.Object>()#" call void Generated1466::M.G2_C846.B.B<class G2_C846`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.T<class BaseClass1,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method4.MI.12758()#G2_C846::Method5.12759()#G2_C846::Method6.MI.12761<System.Object>()#" call void Generated1466::M.IBase1.B<class G2_C846`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.B.T<class BaseClass1,class G2_C846`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C846::Method7.MI.12763<System.Object>()#" call void Generated1466::M.IBase2.B.B<class G2_C846`2<class BaseClass1,class BaseClass1>>(!!0,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed { .maxstack 10 ldstr "===================== Struct Constrained Interface Calls Test =====================" call void [mscorlib]System.Console::WriteLine(string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void CalliTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calli Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1938`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G3_C1938::Method7.18811<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G3_C1938::Method7.18811<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::ClassMethod3068<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass0>::ClassMethod5273() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G3_C1938::ClassMethod5273.18812()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass0>::Method7<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G3_C1938::Method7.18811<System.Object>()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass0>::ClassMethod3068<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass0>::Method5() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method5.12759()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass0>::Method4() calli default string(class G3_C1938`1<class BaseClass0>) ldstr "G2_C846::Method4.12757()" ldstr "class G3_C1938`1<class BaseClass0> on type class G3_C1938`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G3_C1938`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G1_C15::Method7.MI.4886<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G3_C1938::Method7.18811<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::ClassMethod3068<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass1>::ClassMethod5273() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G3_C1938::ClassMethod5273.18812()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass1>::Method7<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G3_C1938::Method7.18811<System.Object>()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass1>::ClassMethod3068<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass1>::Method5() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method5.12759()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1938`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1938`1<class BaseClass1>::Method4() calli default string(class G3_C1938`1<class BaseClass1>) ldstr "G2_C846::Method4.12757()" ldstr "class G3_C1938`1<class BaseClass1> on type class G3_C1938`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C846`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C15`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass0,class BaseClass0>::ClassMethod3068<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G2_C846`2<class BaseClass0,class BaseClass0>) ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C846`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C15`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass0,class BaseClass1>::ClassMethod3068<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C846`2<class BaseClass0,class BaseClass1>) ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C846`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G1_C15::Method7.MI.4886<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::ClassMethod3068<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass0>) ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C846`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G1_C15::Method6.4891<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G1_C15::Method5.4889()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method4.12757()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C15`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C15`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G1_C15`2<class BaseClass1,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G1_C15::Method7.MI.4886<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass1>::ClassMethod3068<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::ClassMethod3068.12764<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method7.12762<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method6.12760<System.Object>()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method5.12759()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C846`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C846`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method4.12757()" ldstr "class G2_C846`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method4.MI.12758()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method5.12759()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method6.MI.12761<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C846`2<class BaseClass1,class BaseClass1>) ldstr "G2_C846::Method7.MI.12763<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C846`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 10 call void Generated1466::MethodCallingTest() call void Generated1466::ConstrainedCallsTest() call void Generated1466::StructConstrainedInterfaceCallsTest() call void Generated1466::CalliTest() ldc.i4 100 ret } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/Methodical/casts/coverage/castclass_ldloc.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { } .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly castclass_ldloc { } .assembly extern xunit.core {} .namespace JitTest { .class private auto ansi beforefieldinit BaseClass extends [mscorlib]System.Object { .method public hidebysig specialname rtspecialname instance void .ctor() cil 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 BaseClass::.ctor } // end of class BaseClass .class private auto ansi beforefieldinit TestClass extends JitTest.BaseClass { .method private hidebysig static bool Test_LDLOC(object _obj, bool flag) cil managed { // Code size 57 (0x39) .maxstack 2 .locals (object V_0, class JitTest.TestClass V_1, class [mscorlib]System.Exception V_2, bool V_3) IL_0000: ldarg.0 IL_0001: stloc.0 .try { IL_0002: ldarg.1 IL_0003: brfalse.s IL_0016 IL_0005: ldloc 0 IL_0006: castclass JitTest.TestClass IL_000b: stloc.1 IL_000c: ldloc.1 IL_000d: ldnull IL_000e: ceq IL_0010: ldc.i4.0 IL_0011: ceq IL_0013: stloc.3 IL_0014: leave.s IL_0037 IL_0016: ldloc 0 IL_0017: castclass JitTest.TestClass IL_001c: stloc.1 IL_001d: ldloc.0 IL_001e: ldnull IL_001f: ceq IL_0021: stloc.3 IL_0022: leave.s IL_0037 } // end .try catch [mscorlib]System.Exception { IL_0024: stloc.2 IL_0025: ldarg.1 IL_0026: brtrue.s IL_0033 IL_0028: ldloc.2 IL_0029: isinst [mscorlib]System.InvalidCastException IL_002e: ldnull IL_002f: cgt.un IL_0031: br.s IL_0034 IL_0033: ldc.i4.0 IL_0034: stloc.3 IL_0035: leave.s IL_0037 } // end handler IL_0037: ldloc.3 IL_0038: ret } // end of method TestClass::Test_LDLOC .method private hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint // Code size 139 (0x8b) .maxstack 2 IL_0000: newobj instance void JitTest.TestClass::.ctor() IL_0005: ldc.i4.1 IL_0006: call bool JitTest.TestClass::Test_LDLOC(object, bool) IL_000b: brtrue.s IL_001a IL_000d: ldstr "Failed => 101" IL_0012: call void [System.Console]System.Console::WriteLine(string) IL_0017: ldc.i4.s 101 IL_0019: ret IL_001a: newobj instance void JitTest.DerivedClass::.ctor() IL_001f: ldc.i4.1 IL_0020: call bool JitTest.TestClass::Test_LDLOC(object, bool) IL_0025: brtrue.s IL_0034 IL_0027: ldstr "Failed => 102" IL_002c: call void [System.Console]System.Console::WriteLine(string) IL_0031: ldc.i4.s 102 IL_0033: ret IL_0034: newobj instance void JitTest.BaseClass::.ctor() IL_0039: ldc.i4.0 IL_003a: call bool JitTest.TestClass::Test_LDLOC(object, bool) IL_003f: brtrue.s IL_004e IL_0041: ldstr "Failed => 103" IL_0046: call void [System.Console]System.Console::WriteLine(string) IL_004b: ldc.i4.s 103 IL_004d: ret IL_004e: newobj instance void JitTest.OtherClass::.ctor() IL_0053: ldc.i4.0 IL_0054: call bool JitTest.TestClass::Test_LDLOC(object, bool) IL_0059: brtrue.s IL_0068 IL_005b: ldstr "Failed => 104" IL_0060: call void [System.Console]System.Console::WriteLine(string) IL_0065: ldc.i4.s 104 IL_0067: ret IL_0068: ldnull IL_0069: ldc.i4.0 IL_006a: call bool JitTest.TestClass::Test_LDLOC(object, bool) IL_006f: brtrue.s IL_007e IL_0071: ldstr "Failed => 105" IL_0076: call void [System.Console]System.Console::WriteLine(string) IL_007b: ldc.i4.s 105 IL_007d: ret IL_007e: ldstr "Passed => 100" IL_0083: call void [System.Console]System.Console::WriteLine(string) IL_0088: ldc.i4.s 100 IL_008a: ret } // end of method TestClass::Main .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { // Code size 7 (0x7) .maxstack 8 IL_0000: ldarg.0 IL_0001: call instance void JitTest.BaseClass::.ctor() IL_0006: ret } // end of method TestClass::.ctor } // end of class TestClass .class private auto ansi beforefieldinit DerivedClass extends JitTest.TestClass { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { // Code size 7 (0x7) .maxstack 8 IL_0000: ldarg.0 IL_0001: call instance void JitTest.TestClass::.ctor() IL_0006: ret } // end of method DerivedClass::.ctor } // end of class DerivedClass .class private auto ansi beforefieldinit OtherClass extends [mscorlib]System.Object { .method public hidebysig specialname rtspecialname instance void .ctor() cil 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 OtherClass::.ctor } // end of class OtherClass } // end of namespace JitTest //*********** DISASSEMBLY COMPLETE *********************** // WARNING: Created Win32 resource file castclass_ldloc.res
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { } .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly castclass_ldloc { } .assembly extern xunit.core {} .namespace JitTest { .class private auto ansi beforefieldinit BaseClass extends [mscorlib]System.Object { .method public hidebysig specialname rtspecialname instance void .ctor() cil 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 BaseClass::.ctor } // end of class BaseClass .class private auto ansi beforefieldinit TestClass extends JitTest.BaseClass { .method private hidebysig static bool Test_LDLOC(object _obj, bool flag) cil managed { // Code size 57 (0x39) .maxstack 2 .locals (object V_0, class JitTest.TestClass V_1, class [mscorlib]System.Exception V_2, bool V_3) IL_0000: ldarg.0 IL_0001: stloc.0 .try { IL_0002: ldarg.1 IL_0003: brfalse.s IL_0016 IL_0005: ldloc 0 IL_0006: castclass JitTest.TestClass IL_000b: stloc.1 IL_000c: ldloc.1 IL_000d: ldnull IL_000e: ceq IL_0010: ldc.i4.0 IL_0011: ceq IL_0013: stloc.3 IL_0014: leave.s IL_0037 IL_0016: ldloc 0 IL_0017: castclass JitTest.TestClass IL_001c: stloc.1 IL_001d: ldloc.0 IL_001e: ldnull IL_001f: ceq IL_0021: stloc.3 IL_0022: leave.s IL_0037 } // end .try catch [mscorlib]System.Exception { IL_0024: stloc.2 IL_0025: ldarg.1 IL_0026: brtrue.s IL_0033 IL_0028: ldloc.2 IL_0029: isinst [mscorlib]System.InvalidCastException IL_002e: ldnull IL_002f: cgt.un IL_0031: br.s IL_0034 IL_0033: ldc.i4.0 IL_0034: stloc.3 IL_0035: leave.s IL_0037 } // end handler IL_0037: ldloc.3 IL_0038: ret } // end of method TestClass::Test_LDLOC .method private hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint // Code size 139 (0x8b) .maxstack 2 IL_0000: newobj instance void JitTest.TestClass::.ctor() IL_0005: ldc.i4.1 IL_0006: call bool JitTest.TestClass::Test_LDLOC(object, bool) IL_000b: brtrue.s IL_001a IL_000d: ldstr "Failed => 101" IL_0012: call void [System.Console]System.Console::WriteLine(string) IL_0017: ldc.i4.s 101 IL_0019: ret IL_001a: newobj instance void JitTest.DerivedClass::.ctor() IL_001f: ldc.i4.1 IL_0020: call bool JitTest.TestClass::Test_LDLOC(object, bool) IL_0025: brtrue.s IL_0034 IL_0027: ldstr "Failed => 102" IL_002c: call void [System.Console]System.Console::WriteLine(string) IL_0031: ldc.i4.s 102 IL_0033: ret IL_0034: newobj instance void JitTest.BaseClass::.ctor() IL_0039: ldc.i4.0 IL_003a: call bool JitTest.TestClass::Test_LDLOC(object, bool) IL_003f: brtrue.s IL_004e IL_0041: ldstr "Failed => 103" IL_0046: call void [System.Console]System.Console::WriteLine(string) IL_004b: ldc.i4.s 103 IL_004d: ret IL_004e: newobj instance void JitTest.OtherClass::.ctor() IL_0053: ldc.i4.0 IL_0054: call bool JitTest.TestClass::Test_LDLOC(object, bool) IL_0059: brtrue.s IL_0068 IL_005b: ldstr "Failed => 104" IL_0060: call void [System.Console]System.Console::WriteLine(string) IL_0065: ldc.i4.s 104 IL_0067: ret IL_0068: ldnull IL_0069: ldc.i4.0 IL_006a: call bool JitTest.TestClass::Test_LDLOC(object, bool) IL_006f: brtrue.s IL_007e IL_0071: ldstr "Failed => 105" IL_0076: call void [System.Console]System.Console::WriteLine(string) IL_007b: ldc.i4.s 105 IL_007d: ret IL_007e: ldstr "Passed => 100" IL_0083: call void [System.Console]System.Console::WriteLine(string) IL_0088: ldc.i4.s 100 IL_008a: ret } // end of method TestClass::Main .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { // Code size 7 (0x7) .maxstack 8 IL_0000: ldarg.0 IL_0001: call instance void JitTest.BaseClass::.ctor() IL_0006: ret } // end of method TestClass::.ctor } // end of class TestClass .class private auto ansi beforefieldinit DerivedClass extends JitTest.TestClass { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { // Code size 7 (0x7) .maxstack 8 IL_0000: ldarg.0 IL_0001: call instance void JitTest.TestClass::.ctor() IL_0006: ret } // end of method DerivedClass::.ctor } // end of class DerivedClass .class private auto ansi beforefieldinit OtherClass extends [mscorlib]System.Object { .method public hidebysig specialname rtspecialname instance void .ctor() cil 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 OtherClass::.ctor } // end of class OtherClass } // end of namespace JitTest //*********** DISASSEMBLY COMPLETE *********************** // WARNING: Created Win32 resource file castclass_ldloc.res
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest1366/Generated1366.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 } .assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) } //TYPES IN FORWARDER ASSEMBLIES: //TEST ASSEMBLY: .assembly Generated1366 { .hash algorithm 0x00008004 } .assembly extern xunit.core {} .class public BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class public BaseClass1 extends BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void BaseClass0::.ctor() ret } } .class public G3_C1838`1<T0> extends class G2_C780`2<!T0,!T0> implements class IBase2`2<class BaseClass1,class BaseClass1> { .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G3_C1838::Method7.18277<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<class BaseClass1,class BaseClass1>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<[1]>() ldstr "G3_C1838::Method7.MI.18278<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod5072() cil managed noinlining { ldstr "G3_C1838::ClassMethod5072.18279()" ret } .method public hidebysig newslot virtual instance string ClassMethod5073() cil managed noinlining { ldstr "G3_C1838::ClassMethod5073.18280()" ret } .method public hidebysig newslot virtual instance string ClassMethod5074<M0>() cil managed noinlining { ldstr "G3_C1838::ClassMethod5074.18281<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'G2_C780<T0,T0>.ClassMethod2941'() cil managed noinlining { .override method instance string class G2_C780`2<!T0,!T0>::ClassMethod2941() ldstr "G3_C1838::ClassMethod2941.MI.18282()" ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G2_C780`2<!T0,!T0>::.ctor() ret } } .class public G2_C780`2<T0, T1> extends class G1_C14`2<!T0,class BaseClass1> implements class IBase1`1<!T0>, class IBase2`2<!T0,!T1> { .method public hidebysig newslot virtual instance string Method4() cil managed noinlining { ldstr "G2_C780::Method4.12215()" ret } .method public hidebysig newslot virtual instance string Method5() cil managed noinlining { ldstr "G2_C780::Method5.12216()" ret } .method public hidebysig virtual instance string Method6<M0>() cil managed noinlining { ldstr "G2_C780::Method6.12217<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G2_C780::Method7.12218<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod2941() cil managed noinlining { ldstr "G2_C780::ClassMethod2941.12219()" ret } .method public hidebysig newslot virtual instance string ClassMethod2942() cil managed noinlining { ldstr "G2_C780::ClassMethod2942.12220()" ret } .method public hidebysig newslot virtual instance string ClassMethod2943<M0>() cil managed noinlining { ldstr "G2_C780::ClassMethod2943.12221<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'G1_C14<T0,class BaseClass1>.ClassMethod1351'<M0>() cil managed noinlining { .override method instance string class G1_C14`2<!T0,class BaseClass1>::ClassMethod1351<[1]>() ldstr "G2_C780::ClassMethod1351.MI.12222<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G1_C14`2<!T0,class BaseClass1>::.ctor() ret } } .class interface public abstract IBase2`2<+T0, -T1> { .method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { } } .class public G1_C14`2<T0, T1> implements class IBase2`2<!T1,class BaseClass1>, class IBase1`1<class BaseClass1> { .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G1_C14::Method7.4878<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string Method4() cil managed noinlining { ldstr "G1_C14::Method4.4879()" ret } .method public hidebysig newslot virtual instance string Method5() cil managed noinlining { ldstr "G1_C14::Method5.4880()" ret } .method public hidebysig newslot virtual instance string 'IBase1<class BaseClass1>.Method5'() cil managed noinlining { .override method instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G1_C14::Method5.MI.4881()" ret } .method public hidebysig virtual instance string Method6<M0>() cil managed noinlining { ldstr "G1_C14::Method6.4882<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1350<M0>() cil managed noinlining { ldstr "G1_C14::ClassMethod1350.4883<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1351<M0>() cil managed noinlining { ldstr "G1_C14::ClassMethod1351.4884<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class interface public abstract IBase1`1<+T0> { .method public hidebysig newslot abstract virtual instance string Method4() cil managed { } .method public hidebysig newslot abstract virtual instance string Method5() cil managed { } .method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { } } .class public auto ansi beforefieldinit Generated1366 { .method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1838.T<T0,(class G3_C1838`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1838.T<T0,(class G3_C1838`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::ClassMethod2941() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::ClassMethod2942() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::ClassMethod2943<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::ClassMethod5072() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::ClassMethod5073() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::ClassMethod5074<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1838.A<(class G3_C1838`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1838.A<(class G3_C1838`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod2941() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod2942() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod2943<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod5072() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod5073() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod5074<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1838.B<(class G3_C1838`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1838.B<(class G3_C1838`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod2941() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod2942() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod2943<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod5072() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod5073() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod5074<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C780.T.T<T0,T1,(class G2_C780`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C780.T.T<T0,T1,(class G2_C780`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<!!T0,!!T1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<!!T0,!!T1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<!!T0,!!T1>::ClassMethod2941() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<!!T0,!!T1>::ClassMethod2942() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<!!T0,!!T1>::ClassMethod2943<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C780.A.T<T1,(class G2_C780`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C780.A.T<T1,(class G2_C780`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,!!T1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,!!T1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,!!T1>::ClassMethod2941() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,!!T1>::ClassMethod2942() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,!!T1>::ClassMethod2943<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C780.A.A<(class G2_C780`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C780.A.A<(class G2_C780`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2941() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2942() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2943<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C780.A.B<(class G2_C780`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C780.A.B<(class G2_C780`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod2941() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod2942() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod2943<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C780.B.T<T1,(class G2_C780`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C780.B.T<T1,(class G2_C780`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,!!T1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,!!T1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,!!T1>::ClassMethod2941() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,!!T1>::ClassMethod2942() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,!!T1>::ClassMethod2943<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C780.B.A<(class G2_C780`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C780.B.A<(class G2_C780`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod2941() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod2942() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod2943<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C780.B.B<(class G2_C780`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C780.B.B<(class G2_C780`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2941() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2942() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2943<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C14.T.T<T0,T1,(class G1_C14`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C14.T.T<T0,T1,(class G1_C14`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<!!T0,!!T1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<!!T0,!!T1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C14.A.T<T1,(class G1_C14`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C14.A.T<T1,(class G1_C14`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,!!T1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,!!T1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C14.A.A<(class G1_C14`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C14.A.A<(class G1_C14`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C14.A.B<(class G1_C14`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C14.A.B<(class G1_C14`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C14.B.T<T1,(class G1_C14`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C14.B.T<T1,(class G1_C14`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,!!T1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,!!T1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C14.B.A<(class G1_C14`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C14.B.A<(class G1_C14`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C14.B.B<(class G1_C14`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C14.B.B<(class G1_C14`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method public hidebysig static void MethodCallingTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calling Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1838`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G3_C1838::Method7.MI.18278<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G3_C1838::Method7.MI.18278<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2943<object>() ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2942() ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2941() ldstr "G3_C1838::ClassMethod2941.MI.18282()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod5074<object>() ldstr "G3_C1838::ClassMethod5074.18281<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod5073() ldstr "G3_C1838::ClassMethod5073.18280()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod5072() ldstr "G3_C1838::ClassMethod5072.18279()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::Method7<object>() ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod2943<object>() ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod2942() ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod2941() ldstr "G3_C1838::ClassMethod2941.MI.18282()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G3_C1838`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G3_C1838::Method7.MI.18278<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G3_C1838::Method7.MI.18278<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2943<object>() ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2942() ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2941() ldstr "G3_C1838::ClassMethod2941.MI.18282()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod5074<object>() ldstr "G3_C1838::ClassMethod5074.18281<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod5073() ldstr "G3_C1838::ClassMethod5073.18280()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod5072() ldstr "G3_C1838::ClassMethod5072.18279()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::Method7<object>() ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod2943<object>() ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod2942() ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod2941() ldstr "G3_C1838::ClassMethod2941.MI.18282()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C780`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2943<object>() ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2942() ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2941() ldstr "G2_C780::ClassMethod2941.12219()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C780`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C780`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod2943<object>() ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod2942() ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod2941() ldstr "G2_C780::ClassMethod2941.12219()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C780`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C780`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod2943<object>() ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod2942() ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod2941() ldstr "G2_C780::ClassMethod2941.12219()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C780`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2943<object>() ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2942() ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2941() ldstr "G2_C780::ClassMethod2941.12219()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C14`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C14`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::ClassMethod1351<object>() ldstr "G1_C14::ClassMethod1351.4884<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C14`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() ldstr "G1_C14::ClassMethod1351.4884<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C14`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C14`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::ClassMethod1351<object>() ldstr "G1_C14::ClassMethod1351.4884<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C14`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() ldstr "G1_C14::ClassMethod1351.4884<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void ConstrainedCallsTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Constrained Calls Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1838`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G1_C14.T.T<class BaseClass0,class BaseClass1,class G3_C1838`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G1_C14.A.T<class BaseClass1,class G3_C1838`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G1_C14.A.B<class G3_C1838`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1838`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.B.T<class BaseClass1,class G3_C1838`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.B.B<class G3_C1838`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass1,class G3_C1838`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.B<class G3_C1838`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1838`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass1,class G3_C1838`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.A.B<class G3_C1838`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass0,class G3_C1838`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.A<class G3_C1838`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G3_C1838::ClassMethod2941.MI.18282()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G2_C780.T.T<class BaseClass0,class BaseClass0,class G3_C1838`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G3_C1838::ClassMethod2941.MI.18282()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G2_C780.A.T<class BaseClass0,class G3_C1838`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G3_C1838::ClassMethod2941.MI.18282()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G2_C780.A.A<class G3_C1838`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1838`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass0,class G3_C1838`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.IBase2.A.A<class G3_C1838`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G3_C1838::ClassMethod2941.MI.18282()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G3_C1838::ClassMethod5072.18279()#G3_C1838::ClassMethod5073.18280()#G3_C1838::ClassMethod5074.18281<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G3_C1838.T<class BaseClass0,class G3_C1838`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G3_C1838::ClassMethod2941.MI.18282()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G3_C1838::ClassMethod5072.18279()#G3_C1838::ClassMethod5073.18280()#G3_C1838::ClassMethod5074.18281<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G3_C1838.A<class G3_C1838`1<class BaseClass0>>(!!0,string) newobj instance void class G3_C1838`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G1_C14.T.T<class BaseClass1,class BaseClass1,class G3_C1838`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G1_C14.B.T<class BaseClass1,class G3_C1838`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G1_C14.B.B<class G3_C1838`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1838`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.B.T<class BaseClass1,class G3_C1838`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.B.B<class G3_C1838`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass1,class G3_C1838`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.B<class G3_C1838`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1838`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass1,class G3_C1838`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.A.B<class G3_C1838`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass0,class G3_C1838`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.A<class G3_C1838`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G3_C1838::ClassMethod2941.MI.18282()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G2_C780.T.T<class BaseClass1,class BaseClass1,class G3_C1838`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G3_C1838::ClassMethod2941.MI.18282()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G2_C780.B.T<class BaseClass1,class G3_C1838`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G3_C1838::ClassMethod2941.MI.18282()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G2_C780.B.B<class G3_C1838`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G3_C1838::ClassMethod2941.MI.18282()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G3_C1838::ClassMethod5072.18279()#G3_C1838::ClassMethod5073.18280()#G3_C1838::ClassMethod5074.18281<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G3_C1838.T<class BaseClass1,class G3_C1838`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G3_C1838::ClassMethod2941.MI.18282()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G3_C1838::ClassMethod5072.18279()#G3_C1838::ClassMethod5073.18280()#G3_C1838::ClassMethod5074.18281<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G3_C1838.B<class G3_C1838`1<class BaseClass1>>(!!0,string) newobj instance void class G2_C780`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.T.T<class BaseClass0,class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.A.T<class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.A.B<class G2_C780`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.B.T<class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.B.B<class G2_C780`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.B<class G2_C780`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.B<class G2_C780`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass0,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.A<class G2_C780`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.T.T<class BaseClass0,class BaseClass0,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.A.T<class BaseClass0,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.A.A<class G2_C780`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass0,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.A<class G2_C780`2<class BaseClass0,class BaseClass0>>(!!0,string) newobj instance void class G2_C780`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.T.T<class BaseClass0,class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.A.T<class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.A.B<class G2_C780`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.B.T<class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.B.B<class G2_C780`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.B<class G2_C780`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.B<class G2_C780`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass0,class G2_C780`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.A<class G2_C780`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.T.T<class BaseClass0,class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.A.T<class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.A.B<class G2_C780`2<class BaseClass0,class BaseClass1>>(!!0,string) newobj instance void class G2_C780`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.T.T<class BaseClass1,class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.B.T<class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.B.B<class G2_C780`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.B.T<class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.B.B<class G2_C780`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.B<class G2_C780`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.B<class G2_C780`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass0,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.A<class G2_C780`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.T.T<class BaseClass1,class BaseClass0,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.B.T<class BaseClass0,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.B.A<class G2_C780`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.B.T<class BaseClass0,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.B.A<class G2_C780`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass0,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.A<class G2_C780`2<class BaseClass1,class BaseClass0>>(!!0,string) newobj instance void class G2_C780`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.T.T<class BaseClass1,class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.B.T<class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.B.B<class G2_C780`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.B.T<class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.B.B<class G2_C780`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.B<class G2_C780`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.B<class G2_C780`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass0,class G2_C780`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.A<class G2_C780`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.T.T<class BaseClass1,class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.B.T<class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.B.B<class G2_C780`2<class BaseClass1,class BaseClass1>>(!!0,string) newobj instance void class G1_C14`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.T.T<class BaseClass0,class BaseClass0,class G1_C14`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.A.T<class BaseClass0,class G1_C14`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.A.A<class G1_C14`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C14`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass1,class G1_C14`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.A.B<class G1_C14`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass1,class G1_C14`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.B<class G1_C14`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass0,class G1_C14`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.A<class G1_C14`2<class BaseClass0,class BaseClass0>>(!!0,string) newobj instance void class G1_C14`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.T.T<class BaseClass0,class BaseClass1,class G1_C14`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.A.T<class BaseClass1,class G1_C14`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.A.B<class G1_C14`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C14`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.B.T<class BaseClass1,class G1_C14`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.B.B<class G1_C14`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass1,class G1_C14`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.B<class G1_C14`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C14`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass1,class G1_C14`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.A.B<class G1_C14`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass0,class G1_C14`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.A<class G1_C14`2<class BaseClass0,class BaseClass1>>(!!0,string) newobj instance void class G1_C14`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.T.T<class BaseClass1,class BaseClass0,class G1_C14`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.B.T<class BaseClass0,class G1_C14`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.B.A<class G1_C14`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C14`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass1,class G1_C14`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.A.B<class G1_C14`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass1,class G1_C14`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.B<class G1_C14`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass0,class G1_C14`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.A<class G1_C14`2<class BaseClass1,class BaseClass0>>(!!0,string) newobj instance void class G1_C14`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.T.T<class BaseClass1,class BaseClass1,class G1_C14`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.B.T<class BaseClass1,class G1_C14`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.B.B<class G1_C14`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C14`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.B.T<class BaseClass1,class G1_C14`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.B.B<class G1_C14`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass1,class G1_C14`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.B<class G1_C14`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C14`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass1,class G1_C14`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.A.B<class G1_C14`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass0,class G1_C14`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.A<class G1_C14`2<class BaseClass1,class BaseClass1>>(!!0,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed { .maxstack 10 ldstr "===================== Struct Constrained Interface Calls Test =====================" call void [mscorlib]System.Console::WriteLine(string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void CalliTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calli Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1838`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::Method7.MI.18278<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::Method7.MI.18278<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2943<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2942() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2941() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::ClassMethod2941.MI.18282()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod1351<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod1350<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::ClassMethod5074<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::ClassMethod5074.18281<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::ClassMethod5073() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::ClassMethod5073.18280()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::ClassMethod5072() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::ClassMethod5072.18279()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::ClassMethod2943<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::ClassMethod2942() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::ClassMethod2941() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::ClassMethod2941.MI.18282()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::Method5() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method5.12216()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::Method4() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method4.12215()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::ClassMethod1351<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::ClassMethod1350<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G3_C1838`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G3_C1838::Method7.MI.18278<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G3_C1838::Method7.MI.18278<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2943<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2942() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2941() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G3_C1838::ClassMethod2941.MI.18282()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::ClassMethod5074<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G3_C1838::ClassMethod5074.18281<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::ClassMethod5073() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G3_C1838::ClassMethod5073.18280()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::ClassMethod5072() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G3_C1838::ClassMethod5072.18279()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::ClassMethod2943<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::ClassMethod2942() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::ClassMethod2941() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G3_C1838::ClassMethod2941.MI.18282()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::Method5() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method5.12216()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::Method4() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method4.12215()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::ClassMethod1351<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::ClassMethod1350<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C780`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2943<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2942() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2941() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::ClassMethod2941.12219()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod1351<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod1350<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C780`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod2943<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod2942() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod2941() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::ClassMethod2941.12219()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C780`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod2943<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod2942() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod2941() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::ClassMethod2941.12219()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod1351<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod1350<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C780`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2943<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2942() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2941() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::ClassMethod2941.12219()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C14`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass0>::ClassMethod1351<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::ClassMethod1351.4884<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass0>::ClassMethod1350<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C14`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::ClassMethod1351.4884<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C14`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass0>::ClassMethod1351<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::ClassMethod1351.4884<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass0>::ClassMethod1350<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C14`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::ClassMethod1351.4884<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 10 call void Generated1366::MethodCallingTest() call void Generated1366::ConstrainedCallsTest() call void Generated1366::StructConstrainedInterfaceCallsTest() call void Generated1366::CalliTest() ldc.i4 100 ret } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 } .assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) } //TYPES IN FORWARDER ASSEMBLIES: //TEST ASSEMBLY: .assembly Generated1366 { .hash algorithm 0x00008004 } .assembly extern xunit.core {} .class public BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class public BaseClass1 extends BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void BaseClass0::.ctor() ret } } .class public G3_C1838`1<T0> extends class G2_C780`2<!T0,!T0> implements class IBase2`2<class BaseClass1,class BaseClass1> { .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G3_C1838::Method7.18277<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase2<class BaseClass1,class BaseClass1>.Method7'<M0>() cil managed noinlining { .override method instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<[1]>() ldstr "G3_C1838::Method7.MI.18278<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod5072() cil managed noinlining { ldstr "G3_C1838::ClassMethod5072.18279()" ret } .method public hidebysig newslot virtual instance string ClassMethod5073() cil managed noinlining { ldstr "G3_C1838::ClassMethod5073.18280()" ret } .method public hidebysig newslot virtual instance string ClassMethod5074<M0>() cil managed noinlining { ldstr "G3_C1838::ClassMethod5074.18281<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'G2_C780<T0,T0>.ClassMethod2941'() cil managed noinlining { .override method instance string class G2_C780`2<!T0,!T0>::ClassMethod2941() ldstr "G3_C1838::ClassMethod2941.MI.18282()" ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G2_C780`2<!T0,!T0>::.ctor() ret } } .class public G2_C780`2<T0, T1> extends class G1_C14`2<!T0,class BaseClass1> implements class IBase1`1<!T0>, class IBase2`2<!T0,!T1> { .method public hidebysig newslot virtual instance string Method4() cil managed noinlining { ldstr "G2_C780::Method4.12215()" ret } .method public hidebysig newslot virtual instance string Method5() cil managed noinlining { ldstr "G2_C780::Method5.12216()" ret } .method public hidebysig virtual instance string Method6<M0>() cil managed noinlining { ldstr "G2_C780::Method6.12217<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G2_C780::Method7.12218<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod2941() cil managed noinlining { ldstr "G2_C780::ClassMethod2941.12219()" ret } .method public hidebysig newslot virtual instance string ClassMethod2942() cil managed noinlining { ldstr "G2_C780::ClassMethod2942.12220()" ret } .method public hidebysig newslot virtual instance string ClassMethod2943<M0>() cil managed noinlining { ldstr "G2_C780::ClassMethod2943.12221<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'G1_C14<T0,class BaseClass1>.ClassMethod1351'<M0>() cil managed noinlining { .override method instance string class G1_C14`2<!T0,class BaseClass1>::ClassMethod1351<[1]>() ldstr "G2_C780::ClassMethod1351.MI.12222<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G1_C14`2<!T0,class BaseClass1>::.ctor() ret } } .class interface public abstract IBase2`2<+T0, -T1> { .method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { } } .class public G1_C14`2<T0, T1> implements class IBase2`2<!T1,class BaseClass1>, class IBase1`1<class BaseClass1> { .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G1_C14::Method7.4878<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string Method4() cil managed noinlining { ldstr "G1_C14::Method4.4879()" ret } .method public hidebysig newslot virtual instance string Method5() cil managed noinlining { ldstr "G1_C14::Method5.4880()" ret } .method public hidebysig newslot virtual instance string 'IBase1<class BaseClass1>.Method5'() cil managed noinlining { .override method instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G1_C14::Method5.MI.4881()" ret } .method public hidebysig virtual instance string Method6<M0>() cil managed noinlining { ldstr "G1_C14::Method6.4882<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1350<M0>() cil managed noinlining { ldstr "G1_C14::ClassMethod1350.4883<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1351<M0>() cil managed noinlining { ldstr "G1_C14::ClassMethod1351.4884<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class interface public abstract IBase1`1<+T0> { .method public hidebysig newslot abstract virtual instance string Method4() cil managed { } .method public hidebysig newslot abstract virtual instance string Method5() cil managed { } .method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { } } .class public auto ansi beforefieldinit Generated1366 { .method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1838.T<T0,(class G3_C1838`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1838.T<T0,(class G3_C1838`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::ClassMethod2941() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::ClassMethod2942() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::ClassMethod2943<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::ClassMethod5072() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::ClassMethod5073() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::ClassMethod5074<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<!!T0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1838.A<(class G3_C1838`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1838.A<(class G3_C1838`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod2941() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod2942() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod2943<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod5072() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod5073() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod5074<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1838.B<(class G3_C1838`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 17 .locals init (string[] actualResults) ldc.i4.s 12 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1838.B<(class G3_C1838`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 12 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod2941() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod2942() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod2943<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod5072() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod5073() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod5074<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1838`1<class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C780.T.T<T0,T1,(class G2_C780`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C780.T.T<T0,T1,(class G2_C780`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<!!T0,!!T1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<!!T0,!!T1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<!!T0,!!T1>::ClassMethod2941() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<!!T0,!!T1>::ClassMethod2942() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<!!T0,!!T1>::ClassMethod2943<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C780.A.T<T1,(class G2_C780`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C780.A.T<T1,(class G2_C780`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,!!T1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,!!T1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,!!T1>::ClassMethod2941() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,!!T1>::ClassMethod2942() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,!!T1>::ClassMethod2943<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C780.A.A<(class G2_C780`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C780.A.A<(class G2_C780`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2941() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2942() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2943<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C780.A.B<(class G2_C780`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C780.A.B<(class G2_C780`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod2941() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod2942() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod2943<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C780.B.T<T1,(class G2_C780`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C780.B.T<T1,(class G2_C780`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,!!T1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,!!T1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,!!T1>::ClassMethod2941() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,!!T1>::ClassMethod2942() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,!!T1>::ClassMethod2943<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C780.B.A<(class G2_C780`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C780.B.A<(class G2_C780`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod2941() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod2942() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod2943<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C780.B.B<(class G2_C780`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C780.B.B<(class G2_C780`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2941() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2942() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2943<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C14.T.T<T0,T1,(class G1_C14`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C14.T.T<T0,T1,(class G1_C14`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<!!T0,!!T1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<!!T0,!!T1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C14.A.T<T1,(class G1_C14`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C14.A.T<T1,(class G1_C14`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,!!T1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,!!T1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C14.A.A<(class G1_C14`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C14.A.A<(class G1_C14`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C14.A.B<(class G1_C14`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C14.A.B<(class G1_C14`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C14.B.T<T1,(class G1_C14`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C14.B.T<T1,(class G1_C14`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,!!T1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,!!T1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C14.B.A<(class G1_C14`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C14.B.A<(class G1_C14`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C14.B.B<(class G1_C14`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 11 .locals init (string[] actualResults) ldc.i4.s 6 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C14.B.B<(class G1_C14`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 6 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method public hidebysig static void MethodCallingTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calling Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1838`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G3_C1838::Method7.MI.18278<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G3_C1838::Method7.MI.18278<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2943<object>() ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2942() ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2941() ldstr "G3_C1838::ClassMethod2941.MI.18282()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod5074<object>() ldstr "G3_C1838::ClassMethod5074.18281<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod5073() ldstr "G3_C1838::ClassMethod5073.18280()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod5072() ldstr "G3_C1838::ClassMethod5072.18279()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::Method7<object>() ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod2943<object>() ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod2942() ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod2941() ldstr "G3_C1838::ClassMethod2941.MI.18282()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass0> callvirt instance string class G3_C1838`1<class BaseClass0>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G3_C1838`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G3_C1838::Method7.MI.18278<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G3_C1838::Method7.MI.18278<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2943<object>() ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2942() ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2941() ldstr "G3_C1838::ClassMethod2941.MI.18282()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod5074<object>() ldstr "G3_C1838::ClassMethod5074.18281<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod5073() ldstr "G3_C1838::ClassMethod5073.18280()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod5072() ldstr "G3_C1838::ClassMethod5072.18279()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::Method7<object>() ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod2943<object>() ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod2942() ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod2941() ldstr "G3_C1838::ClassMethod2941.MI.18282()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1838`1<class BaseClass1> callvirt instance string class G3_C1838`1<class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C780`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2943<object>() ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2942() ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2941() ldstr "G2_C780::ClassMethod2941.12219()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C780`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C780`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod2943<object>() ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod2942() ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod2941() ldstr "G2_C780::ClassMethod2941.12219()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C780`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C780`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod2943<object>() ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod2942() ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod2941() ldstr "G2_C780::ClassMethod2941.12219()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C780`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2943<object>() ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2942() ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2941() ldstr "G2_C780::ClassMethod2941.12219()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C780`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C14`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C14`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::ClassMethod1351<object>() ldstr "G1_C14::ClassMethod1351.4884<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C14`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() ldstr "G1_C14::ClassMethod1351.4884<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass0,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C14`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C14`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::ClassMethod1351<object>() ldstr "G1_C14::ClassMethod1351.4884<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass0> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G1_C14`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() ldstr "G1_C14::ClassMethod1351.4884<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C14`2<class BaseClass1,class BaseClass1> callvirt instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void ConstrainedCallsTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Constrained Calls Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1838`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G1_C14.T.T<class BaseClass0,class BaseClass1,class G3_C1838`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G1_C14.A.T<class BaseClass1,class G3_C1838`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G1_C14.A.B<class G3_C1838`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1838`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.B.T<class BaseClass1,class G3_C1838`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.B.B<class G3_C1838`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass1,class G3_C1838`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.B<class G3_C1838`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1838`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass1,class G3_C1838`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.A.B<class G3_C1838`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass0,class G3_C1838`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.A<class G3_C1838`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G3_C1838::ClassMethod2941.MI.18282()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G2_C780.T.T<class BaseClass0,class BaseClass0,class G3_C1838`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G3_C1838::ClassMethod2941.MI.18282()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G2_C780.A.T<class BaseClass0,class G3_C1838`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G3_C1838::ClassMethod2941.MI.18282()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G2_C780.A.A<class G3_C1838`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1838`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass0,class G3_C1838`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.IBase2.A.A<class G3_C1838`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G3_C1838::ClassMethod2941.MI.18282()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G3_C1838::ClassMethod5072.18279()#G3_C1838::ClassMethod5073.18280()#G3_C1838::ClassMethod5074.18281<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G3_C1838.T<class BaseClass0,class G3_C1838`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G3_C1838::ClassMethod2941.MI.18282()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G3_C1838::ClassMethod5072.18279()#G3_C1838::ClassMethod5073.18280()#G3_C1838::ClassMethod5074.18281<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G3_C1838.A<class G3_C1838`1<class BaseClass0>>(!!0,string) newobj instance void class G3_C1838`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G1_C14.T.T<class BaseClass1,class BaseClass1,class G3_C1838`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G1_C14.B.T<class BaseClass1,class G3_C1838`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G1_C14.B.B<class G3_C1838`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1838`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.B.T<class BaseClass1,class G3_C1838`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.B.B<class G3_C1838`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass1,class G3_C1838`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.B<class G3_C1838`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1838`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass1,class G3_C1838`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G3_C1838::Method7.MI.18278<System.Object>()#" call void Generated1366::M.IBase2.A.B<class G3_C1838`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass0,class G3_C1838`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.A<class G3_C1838`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G3_C1838::ClassMethod2941.MI.18282()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G2_C780.T.T<class BaseClass1,class BaseClass1,class G3_C1838`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G3_C1838::ClassMethod2941.MI.18282()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G2_C780.B.T<class BaseClass1,class G3_C1838`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G3_C1838::ClassMethod2941.MI.18282()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G2_C780.B.B<class G3_C1838`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G3_C1838::ClassMethod2941.MI.18282()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G3_C1838::ClassMethod5072.18279()#G3_C1838::ClassMethod5073.18280()#G3_C1838::ClassMethod5074.18281<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G3_C1838.T<class BaseClass1,class G3_C1838`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G3_C1838::ClassMethod2941.MI.18282()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G3_C1838::ClassMethod5072.18279()#G3_C1838::ClassMethod5073.18280()#G3_C1838::ClassMethod5074.18281<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G3_C1838::Method7.18277<System.Object>()#" call void Generated1366::M.G3_C1838.B<class G3_C1838`1<class BaseClass1>>(!!0,string) newobj instance void class G2_C780`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.T.T<class BaseClass0,class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.A.T<class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.A.B<class G2_C780`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.B.T<class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.B.B<class G2_C780`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.B<class G2_C780`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.B<class G2_C780`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass0,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.A<class G2_C780`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.T.T<class BaseClass0,class BaseClass0,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.A.T<class BaseClass0,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.A.A<class G2_C780`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass0,class G2_C780`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.A<class G2_C780`2<class BaseClass0,class BaseClass0>>(!!0,string) newobj instance void class G2_C780`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.T.T<class BaseClass0,class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.A.T<class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.A.B<class G2_C780`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.B.T<class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.B.B<class G2_C780`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.B<class G2_C780`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.B<class G2_C780`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass0,class G2_C780`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.A<class G2_C780`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.T.T<class BaseClass0,class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.A.T<class BaseClass1,class G2_C780`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.A.B<class G2_C780`2<class BaseClass0,class BaseClass1>>(!!0,string) newobj instance void class G2_C780`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.T.T<class BaseClass1,class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.B.T<class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.B.B<class G2_C780`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.B.T<class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.B.B<class G2_C780`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.B<class G2_C780`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.B<class G2_C780`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass0,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.A<class G2_C780`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.T.T<class BaseClass1,class BaseClass0,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.B.T<class BaseClass0,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.B.A<class G2_C780`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass1,class BaseClass0,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.B.T<class BaseClass0,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.B.A<class G2_C780`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass0,class G2_C780`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.A<class G2_C780`2<class BaseClass1,class BaseClass0>>(!!0,string) newobj instance void class G2_C780`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.T.T<class BaseClass1,class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.B.T<class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G1_C14.B.B<class G2_C780`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.B.T<class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.B.B<class G2_C780`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.B<class G2_C780`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.IBase2.A.B<class G2_C780`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass0,class G2_C780`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#" call void Generated1366::M.IBase1.A<class G2_C780`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.T.T<class BaseClass1,class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.B.T<class BaseClass1,class G2_C780`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G2_C780::ClassMethod1351.MI.12222<System.Object>()#G2_C780::ClassMethod2941.12219()#G2_C780::ClassMethod2942.12220()#G2_C780::ClassMethod2943.12221<System.Object>()#G2_C780::Method4.12215()#G2_C780::Method5.12216()#G2_C780::Method6.12217<System.Object>()#G2_C780::Method7.12218<System.Object>()#" call void Generated1366::M.G2_C780.B.B<class G2_C780`2<class BaseClass1,class BaseClass1>>(!!0,string) newobj instance void class G1_C14`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.T.T<class BaseClass0,class BaseClass0,class G1_C14`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.A.T<class BaseClass0,class G1_C14`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.A.A<class G1_C14`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C14`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass1,class G1_C14`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.A.B<class G1_C14`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass1,class G1_C14`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.B<class G1_C14`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass0,class G1_C14`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.A<class G1_C14`2<class BaseClass0,class BaseClass0>>(!!0,string) newobj instance void class G1_C14`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.T.T<class BaseClass0,class BaseClass1,class G1_C14`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.A.T<class BaseClass1,class G1_C14`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.A.B<class G1_C14`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C14`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.B.T<class BaseClass1,class G1_C14`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.B.B<class G1_C14`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass1,class G1_C14`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.B<class G1_C14`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C14`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass1,class G1_C14`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.A.B<class G1_C14`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass0,class G1_C14`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.A<class G1_C14`2<class BaseClass0,class BaseClass1>>(!!0,string) newobj instance void class G1_C14`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.T.T<class BaseClass1,class BaseClass0,class G1_C14`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.B.T<class BaseClass0,class G1_C14`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.B.A<class G1_C14`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C14`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass1,class G1_C14`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.A.B<class G1_C14`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass1,class G1_C14`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.B<class G1_C14`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass0,class G1_C14`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.A<class G1_C14`2<class BaseClass1,class BaseClass0>>(!!0,string) newobj instance void class G1_C14`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.T.T<class BaseClass1,class BaseClass1,class G1_C14`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.B.T<class BaseClass1,class G1_C14`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::ClassMethod1350.4883<System.Object>()#G1_C14::ClassMethod1351.4884<System.Object>()#G1_C14::Method4.4879()#G1_C14::Method5.4880()#G1_C14::Method6.4882<System.Object>()#G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.G1_C14.B.B<class G1_C14`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G1_C14`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.B.T<class BaseClass1,class G1_C14`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.B.B<class G1_C14`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass1,class G1_C14`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.B<class G1_C14`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G1_C14`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.A.T<class BaseClass1,class G1_C14`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::Method7.4878<System.Object>()#" call void Generated1366::M.IBase2.A.B<class G1_C14`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.T<class BaseClass0,class G1_C14`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C14::Method4.4879()#G1_C14::Method5.MI.4881()#G1_C14::Method6.4882<System.Object>()#" call void Generated1366::M.IBase1.A<class G1_C14`2<class BaseClass1,class BaseClass1>>(!!0,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed { .maxstack 10 ldstr "===================== Struct Constrained Interface Calls Test =====================" call void [mscorlib]System.Console::WriteLine(string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void CalliTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calli Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1838`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::Method7.MI.18278<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::Method7.MI.18278<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2943<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2942() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2941() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::ClassMethod2941.MI.18282()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod1351<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod1350<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::ClassMethod5074<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::ClassMethod5074.18281<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::ClassMethod5073() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::ClassMethod5073.18280()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::ClassMethod5072() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::ClassMethod5072.18279()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::ClassMethod2943<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::ClassMethod2942() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::ClassMethod2941() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G3_C1838::ClassMethod2941.MI.18282()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::Method5() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method5.12216()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::Method4() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::Method4.12215()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::ClassMethod1351<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass0>::ClassMethod1350<object>() calli default string(class G3_C1838`1<class BaseClass0>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G3_C1838`1<class BaseClass0> on type class G3_C1838`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G3_C1838`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G3_C1838::Method7.MI.18278<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G3_C1838::Method7.MI.18278<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2943<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2942() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2941() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G3_C1838::ClassMethod2941.MI.18282()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::ClassMethod5074<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G3_C1838::ClassMethod5074.18281<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::ClassMethod5073() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G3_C1838::ClassMethod5073.18280()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::ClassMethod5072() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G3_C1838::ClassMethod5072.18279()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::Method7<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G3_C1838::Method7.18277<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::ClassMethod2943<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::ClassMethod2942() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::ClassMethod2941() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G3_C1838::ClassMethod2941.MI.18282()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::Method5() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method5.12216()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::Method4() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::Method4.12215()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::ClassMethod1351<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1838`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1838`1<class BaseClass1>::ClassMethod1350<object>() calli default string(class G3_C1838`1<class BaseClass1>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G3_C1838`1<class BaseClass1> on type class G3_C1838`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C780`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2943<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2942() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod2941() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::ClassMethod2941.12219()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod1351<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass0>::ClassMethod1350<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C780`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod2943<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod2942() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod2941() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::ClassMethod2941.12219()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() calli default string(class G2_C780`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C780`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod2943<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod2942() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod2941() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::ClassMethod2941.12219()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod1351<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass0>::ClassMethod1350<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass0>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C780`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method4.12215()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method5.12216()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2943<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::ClassMethod2943.12221<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2942() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::ClassMethod2942.12220()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod2941() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::ClassMethod2941.12219()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method7.12218<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method6.12217<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method5.12216()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::Method4.12215()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G2_C780::ClassMethod1351.MI.12222<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C780`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C780`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() calli default string(class G2_C780`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G2_C780`2<class BaseClass1,class BaseClass1> on type class G2_C780`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C14`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass0>::ClassMethod1351<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::ClassMethod1351.4884<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass0>::ClassMethod1350<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass0>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C14`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1351<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::ClassMethod1351.4884<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::ClassMethod1350<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class G1_C14`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G1_C14`2<class BaseClass0,class BaseClass1>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C14`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass0>::ClassMethod1351<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::ClassMethod1351.4884<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass0>::ClassMethod1350<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass0>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G1_C14`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1351<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::ClassMethod1351.4884<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::ClassMethod1350<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::ClassMethod1350.4883<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method5.4880()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method4.4879()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C14`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G1_C14`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class G1_C14`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method7.4878<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method4.4879()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method5.MI.4881()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G1_C14`2<class BaseClass1,class BaseClass1>) ldstr "G1_C14::Method6.4882<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G1_C14`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 10 call void Generated1366::MethodCallingTest() call void Generated1366::ConstrainedCallsTest() call void Generated1366::StructConstrainedInterfaceCallsTest() call void Generated1366::CalliTest() ldc.i4 100 ret } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b43121/b43121.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly 'b43121' {} .assembly extern xunit.core {} .class ILGEN_0x1495dac4 { .field static float64 field_0x0 .field static unsigned int64[] field_0x1 .field static int8 field_0x2 .field static unsigned int32 field_0x3 .field static unsigned int32[] field_0x4 .field static unsigned int8[] field_0x5 .method static int32 Method_0xb72b8337(int32 Arg_0x0) { .maxstack 15 .locals (unsigned int32[] local_0x0,unsigned int8[] local_0x1,float32[] local_0x2,int64 local_0x3) ldc.i4 255 newarr [mscorlib]System.UInt32 stloc local_0x0 ldc.i4 255 newarr [mscorlib]System.Byte stloc local_0x1 ldc.i4 255 newarr [mscorlib]System.Single stloc local_0x2 ldc.i8 0x66ae57873565340c stloc local_0x3 //BEGIN INIT OF STATIC FIELDS ldc.r8 float64(0xc1ff5dd7fae1e7a7) stsfld float64 ILGEN_0x1495dac4::field_0x0 ldc.i4 255 newarr [mscorlib]System.UInt64 stsfld unsigned int64[] ILGEN_0x1495dac4::field_0x1 ldc.i4 0x4b37527d stsfld int8 ILGEN_0x1495dac4::field_0x2 ldc.i4 0x4e999ceb stsfld unsigned int32 ILGEN_0x1495dac4::field_0x3 ldc.i4 255 newarr [mscorlib]System.UInt32 stsfld unsigned int32[] ILGEN_0x1495dac4::field_0x4 ldc.i4 255 newarr [mscorlib]System.Byte stsfld unsigned int8[] ILGEN_0x1495dac4::field_0x5 //END INIT OF STATIC FIELDS BLOCK_1: ldsfld unsigned int32 ILGEN_0x1495dac4::field_0x3 Start_Orphan_0: Start_Orphan_1: ldc.i4.5 ldsfld unsigned int32 ILGEN_0x1495dac4::field_0x3 bgt.un Branch_0x2 ldc.i4.4 starg Arg_0x0 br Branch_0x3 Branch_0x2: ldsfld unsigned int32 ILGEN_0x1495dac4::field_0x3 ldc.i4 0x6cb5d927 bgt.un Branch_0x4 nop br Branch_0x5 Branch_0x4: nop Branch_0x5: Branch_0x3: End_Orphan_1: ldloc local_0x1 pop End_Orphan_0: ldc.i4.6 conv.r8 ckfinite ldc.i4.3 ldc.i4 0xf18833d1 shr.un conv.r.un bgt.un Branch_0x8 ldc.i4.7 conv.ovf.i2.un conv.u4 br Branch_0x9 Branch_0x8: ldc.i4.8 Branch_0x9: ldloc local_0x3 ldc.i8 0x95761a65bda18b6 sub.ovf conv.u Start_Orphan_8: ldsfld unsigned int64[] ILGEN_0x1495dac4::field_0x1 ldc.i4.5 ldelema [mscorlib]System.UInt64 ldloc local_0x3 stind.i8 End_Orphan_8: ldc.i4.1 conv.u1 newarr [mscorlib]System.Single ldlen mul cgt Start_Orphan_9: ldsfld unsigned int32[] ILGEN_0x1495dac4::field_0x4 ldarg Arg_0x0 ldc.i4.s 84 clt.un ldelema [mscorlib]System.UInt32 Start_Orphan_b: ldloc local_0x2 ldc.i4.6 ldc.r8 float64(0xbaeef0145159f883) stelem.r4 End_Orphan_b: ldc.i4.5 ldc.i4.0 div ldc.i4.s -35 conv.u2 rem stind.i4 End_Orphan_9: ldloc local_0x2 ldc.i4.8 ldelem.r4 conv.ovf.u2 conv.ovf.i ldc.i4.5 conv.r8 ckfinite ldc.i4.3 conv.u1 newarr [mscorlib]System.Single ldc.i4.2 conv.u4 ldelem.r4 clt.un mul.ovf.un bge.un Branch_0x6 ldc.i4 0x137da1c5 conv.ovf.u ldloc local_0x3 conv.ovf.i4 add.ovf conv.i4 conv.ovf.u br Branch_0x7 Branch_0x6: ldloca local_0x3 ldind.i8 conv.r4 conv.ovf.i1 Start_Orphan_1a: ldc.i4.5 conv.u1 newarr [mscorlib]System.UInt64 ldc.i4.6 ldsfld unsigned int32 ILGEN_0x1495dac4::field_0x3 clt.un ldloca local_0x3 ldind.i8 stelem.i8 End_Orphan_1a: Start_Orphan_1c: ldsflda unsigned int32 ILGEN_0x1495dac4::field_0x3 ldarg Arg_0x0 stind.i4 End_Orphan_1c: ldc.i4.0 conv.ovf.i8.un conv.ovf.i2.un ldsfld unsigned int32 ILGEN_0x1495dac4::field_0x3 conv.ovf.i4.un mul.ovf mul.ovf Branch_0x7: bgt.un Branch_0x0 Start_Orphan_20: Start_Orphan_21: ldloc local_0x2 ldc.i4.0 ldelema [mscorlib]System.Single ldc.r4 float32(0x51b5a2f7) stind.r4 End_Orphan_21: ldloc local_0x1 stsfld unsigned int8[] ILGEN_0x1495dac4::field_0x5 End_Orphan_20: ldc.i4.7 conv.r8 br Branch_0x1 Branch_0x0: ldloc local_0x3 conv.r.un Branch_0x1: conv.i2 ret } .method static int32 Main() { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 20 .try { ldc.i4 0x622e3099 call int32 ILGEN_0x1495dac4::Method_0xb72b8337(int32 Arg_0x0) pop leave out_of_here } catch [mscorlib]System.DivideByZeroException { pop leave out_of_here } out_of_here: ldc.i4 100 ret } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern legacy library mscorlib {} .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly 'b43121' {} .assembly extern xunit.core {} .class ILGEN_0x1495dac4 { .field static float64 field_0x0 .field static unsigned int64[] field_0x1 .field static int8 field_0x2 .field static unsigned int32 field_0x3 .field static unsigned int32[] field_0x4 .field static unsigned int8[] field_0x5 .method static int32 Method_0xb72b8337(int32 Arg_0x0) { .maxstack 15 .locals (unsigned int32[] local_0x0,unsigned int8[] local_0x1,float32[] local_0x2,int64 local_0x3) ldc.i4 255 newarr [mscorlib]System.UInt32 stloc local_0x0 ldc.i4 255 newarr [mscorlib]System.Byte stloc local_0x1 ldc.i4 255 newarr [mscorlib]System.Single stloc local_0x2 ldc.i8 0x66ae57873565340c stloc local_0x3 //BEGIN INIT OF STATIC FIELDS ldc.r8 float64(0xc1ff5dd7fae1e7a7) stsfld float64 ILGEN_0x1495dac4::field_0x0 ldc.i4 255 newarr [mscorlib]System.UInt64 stsfld unsigned int64[] ILGEN_0x1495dac4::field_0x1 ldc.i4 0x4b37527d stsfld int8 ILGEN_0x1495dac4::field_0x2 ldc.i4 0x4e999ceb stsfld unsigned int32 ILGEN_0x1495dac4::field_0x3 ldc.i4 255 newarr [mscorlib]System.UInt32 stsfld unsigned int32[] ILGEN_0x1495dac4::field_0x4 ldc.i4 255 newarr [mscorlib]System.Byte stsfld unsigned int8[] ILGEN_0x1495dac4::field_0x5 //END INIT OF STATIC FIELDS BLOCK_1: ldsfld unsigned int32 ILGEN_0x1495dac4::field_0x3 Start_Orphan_0: Start_Orphan_1: ldc.i4.5 ldsfld unsigned int32 ILGEN_0x1495dac4::field_0x3 bgt.un Branch_0x2 ldc.i4.4 starg Arg_0x0 br Branch_0x3 Branch_0x2: ldsfld unsigned int32 ILGEN_0x1495dac4::field_0x3 ldc.i4 0x6cb5d927 bgt.un Branch_0x4 nop br Branch_0x5 Branch_0x4: nop Branch_0x5: Branch_0x3: End_Orphan_1: ldloc local_0x1 pop End_Orphan_0: ldc.i4.6 conv.r8 ckfinite ldc.i4.3 ldc.i4 0xf18833d1 shr.un conv.r.un bgt.un Branch_0x8 ldc.i4.7 conv.ovf.i2.un conv.u4 br Branch_0x9 Branch_0x8: ldc.i4.8 Branch_0x9: ldloc local_0x3 ldc.i8 0x95761a65bda18b6 sub.ovf conv.u Start_Orphan_8: ldsfld unsigned int64[] ILGEN_0x1495dac4::field_0x1 ldc.i4.5 ldelema [mscorlib]System.UInt64 ldloc local_0x3 stind.i8 End_Orphan_8: ldc.i4.1 conv.u1 newarr [mscorlib]System.Single ldlen mul cgt Start_Orphan_9: ldsfld unsigned int32[] ILGEN_0x1495dac4::field_0x4 ldarg Arg_0x0 ldc.i4.s 84 clt.un ldelema [mscorlib]System.UInt32 Start_Orphan_b: ldloc local_0x2 ldc.i4.6 ldc.r8 float64(0xbaeef0145159f883) stelem.r4 End_Orphan_b: ldc.i4.5 ldc.i4.0 div ldc.i4.s -35 conv.u2 rem stind.i4 End_Orphan_9: ldloc local_0x2 ldc.i4.8 ldelem.r4 conv.ovf.u2 conv.ovf.i ldc.i4.5 conv.r8 ckfinite ldc.i4.3 conv.u1 newarr [mscorlib]System.Single ldc.i4.2 conv.u4 ldelem.r4 clt.un mul.ovf.un bge.un Branch_0x6 ldc.i4 0x137da1c5 conv.ovf.u ldloc local_0x3 conv.ovf.i4 add.ovf conv.i4 conv.ovf.u br Branch_0x7 Branch_0x6: ldloca local_0x3 ldind.i8 conv.r4 conv.ovf.i1 Start_Orphan_1a: ldc.i4.5 conv.u1 newarr [mscorlib]System.UInt64 ldc.i4.6 ldsfld unsigned int32 ILGEN_0x1495dac4::field_0x3 clt.un ldloca local_0x3 ldind.i8 stelem.i8 End_Orphan_1a: Start_Orphan_1c: ldsflda unsigned int32 ILGEN_0x1495dac4::field_0x3 ldarg Arg_0x0 stind.i4 End_Orphan_1c: ldc.i4.0 conv.ovf.i8.un conv.ovf.i2.un ldsfld unsigned int32 ILGEN_0x1495dac4::field_0x3 conv.ovf.i4.un mul.ovf mul.ovf Branch_0x7: bgt.un Branch_0x0 Start_Orphan_20: Start_Orphan_21: ldloc local_0x2 ldc.i4.0 ldelema [mscorlib]System.Single ldc.r4 float32(0x51b5a2f7) stind.r4 End_Orphan_21: ldloc local_0x1 stsfld unsigned int8[] ILGEN_0x1495dac4::field_0x5 End_Orphan_20: ldc.i4.7 conv.r8 br Branch_0x1 Branch_0x0: ldloc local_0x3 conv.r.un Branch_0x1: conv.i2 ret } .method static int32 Main() { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 20 .try { ldc.i4 0x622e3099 call int32 ILGEN_0x1495dac4::Method_0xb72b8337(int32 Arg_0x0) pop leave out_of_here } catch [mscorlib]System.DivideByZeroException { pop leave out_of_here } out_of_here: ldc.i4 100 ret } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest105/Generated105.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 } .assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) } //TYPES IN FORWARDER ASSEMBLIES: //TEST ASSEMBLY: .assembly Generated105 { .hash algorithm 0x00008004 } .assembly extern xunit.core {} .class public BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class public BaseClass1 extends BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void BaseClass0::.ctor() ret } } .class public sequential sealed MyStruct155`1<T0> extends [mscorlib]System.ValueType implements class IBase2`2<class BaseClass0,class BaseClass0>, class IBase2`2<!T0,!T0> { .pack 0 .size 1 .method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining { ldstr "MyStruct155::Method7.1322<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot instance string ClassMethod309() cil managed noinlining { ldstr "MyStruct155::ClassMethod309.1324()" ret } .method public hidebysig newslot instance string ClassMethod310() cil managed noinlining { ldstr "MyStruct155::ClassMethod310.1325()" ret } .method public hidebysig newslot instance string ClassMethod311<M0>() cil managed noinlining { ldstr "MyStruct155::ClassMethod311.1326<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot instance string ClassMethod312<M0>() cil managed noinlining { ldstr "MyStruct155::ClassMethod312.1327<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance bool Equals(object obj) cil managed { ldc.i4.0 ret } .method public hidebysig virtual instance int32 GetHashCode() cil managed { ldc.i4.0 ret } .method public hidebysig virtual instance string ToString() cil managed { ldstr "" ret } } .class interface public abstract IBase2`2<+T0, -T1> { .method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { } } .class public auto ansi beforefieldinit Generated105 { .method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.MyStruct155.T<T0,(valuetype MyStruct155`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 7 .locals init (string[] actualResults) ldc.i4.s 2 newarr string stloc.s actualResults ldarg.1 ldstr "M.MyStruct155.T<T0,(valuetype MyStruct155`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 2 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. valuetype MyStruct155`1<!!T0> callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. valuetype MyStruct155`1<!!T0> callvirt instance string class IBase2`2<!!T0,!!T0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.MyStruct155.B<(valuetype MyStruct155`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 7 .locals init (string[] actualResults) ldc.i4.s 2 newarr string stloc.s actualResults ldarg.1 ldstr "M.MyStruct155.B<(valuetype MyStruct155`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 2 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. valuetype MyStruct155`1<class BaseClass1> callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. valuetype MyStruct155`1<class BaseClass1> callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method public hidebysig static void MethodCallingTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calling Test ==========================" call void [mscorlib]System.Console::WriteLine(string) .locals init (valuetype MyStruct155`1<class BaseClass1> V_2) ldloca V_2 initobj valuetype MyStruct155`1<class BaseClass1> ldloca V_2 dup call instance string valuetype MyStruct155`1<class BaseClass1>::Method7<object>() ldstr "MyStruct155::Method7.1322<System.Object>()" ldstr "valuetype MyStruct155`1<class BaseClass1> on type MyStruct155" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct155`1<class BaseClass1>::ClassMethod309() ldstr "MyStruct155::ClassMethod309.1324()" ldstr "valuetype MyStruct155`1<class BaseClass1> on type MyStruct155" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct155`1<class BaseClass1>::ClassMethod310() ldstr "MyStruct155::ClassMethod310.1325()" ldstr "valuetype MyStruct155`1<class BaseClass1> on type MyStruct155" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct155`1<class BaseClass1>::ClassMethod311<object>() ldstr "MyStruct155::ClassMethod311.1326<System.Object>()" ldstr "valuetype MyStruct155`1<class BaseClass1> on type MyStruct155" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct155`1<class BaseClass1>::ClassMethod312<object>() ldstr "MyStruct155::ClassMethod312.1327<System.Object>()" ldstr "valuetype MyStruct155`1<class BaseClass1> on type MyStruct155" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup ldnull call instance bool valuetype MyStruct155`1<class BaseClass1>::Equals(object) pop dup call instance int32 valuetype MyStruct155`1<class BaseClass1>::GetHashCode() pop dup call instance string valuetype MyStruct155`1<class BaseClass1>::ToString() pop pop ldloc V_2 box valuetype MyStruct155`1<class BaseClass1> dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "MyStruct155::Method7.1322<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_2 box valuetype MyStruct155`1<class BaseClass1> dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "MyStruct155::Method7.1322<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_2 box valuetype MyStruct155`1<class BaseClass1> dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "MyStruct155::Method7.1322<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void ConstrainedCallsTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Constrained Calls Test ==========================" call void [mscorlib]System.Console::WriteLine(string) .locals init (valuetype MyStruct155`1<class BaseClass1> V_4) ldloca V_4 initobj valuetype MyStruct155`1<class BaseClass1> .try { ldloc V_4 ldstr "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct155`1<class BaseClass1>>(!!2,string) leave.s LV0 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0: .try { ldloc V_4 ldstr "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.IBase2.A.T<class BaseClass0,valuetype MyStruct155`1<class BaseClass1>>(!!1,string) leave.s LV1 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1: .try { ldloc V_4 ldstr "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.IBase2.A.A<valuetype MyStruct155`1<class BaseClass1>>(!!0,string) leave.s LV2 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2: .try { ldloc V_4 ldstr "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct155`1<class BaseClass1>>(!!2,string) leave.s LV3 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3: .try { ldloc V_4 ldstr "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.IBase2.B.T<class BaseClass1,valuetype MyStruct155`1<class BaseClass1>>(!!1,string) leave.s LV4 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4: .try { ldloc V_4 ldstr "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.IBase2.B.B<valuetype MyStruct155`1<class BaseClass1>>(!!0,string) leave.s LV5 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5: .try { ldloc V_4 ldstr "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct155`1<class BaseClass1>>(!!2,string) leave.s LV6 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6: .try { ldloc V_4 ldstr "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.IBase2.A.T<class BaseClass1,valuetype MyStruct155`1<class BaseClass1>>(!!1,string) leave.s LV7 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7: .try { ldloc V_4 ldstr "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.IBase2.A.B<valuetype MyStruct155`1<class BaseClass1>>(!!0,string) leave.s LV8 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8: ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed { .maxstack 10 ldstr "===================== Struct Constrained Interface Calls Test =====================" call void [mscorlib]System.Console::WriteLine(string) .locals init (valuetype MyStruct155`1<class BaseClass1> V_6) ldloca V_6 initobj valuetype MyStruct155`1<class BaseClass1> .try { ldloc V_6 ldstr "MyStruct155::Method7.1322<System.Object>()#" + "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.MyStruct155.T<class BaseClass1,valuetype MyStruct155`1<class BaseClass1>>(!!1,string) leave.s LV0 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0: .try { ldloc V_6 ldstr "MyStruct155::Method7.1322<System.Object>()#" + "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.MyStruct155.B<valuetype MyStruct155`1<class BaseClass1>>(!!0,string) leave.s LV1 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1: ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void CalliTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calli Test ==========================" call void [mscorlib]System.Console::WriteLine(string) .locals init (valuetype MyStruct155`1<class BaseClass1> V_8) ldloca V_8 initobj valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance string valuetype MyStruct155`1<class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct155::Method7.1322<System.Object>()" ldstr "valuetype MyStruct155`1<class BaseClass1> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance string valuetype MyStruct155`1<class BaseClass1>::ClassMethod309() calli default string(object) ldstr "MyStruct155::ClassMethod309.1324()" ldstr "valuetype MyStruct155`1<class BaseClass1> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance string valuetype MyStruct155`1<class BaseClass1>::ClassMethod310() calli default string(object) ldstr "MyStruct155::ClassMethod310.1325()" ldstr "valuetype MyStruct155`1<class BaseClass1> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance string valuetype MyStruct155`1<class BaseClass1>::ClassMethod311<object>() calli default string(object) ldstr "MyStruct155::ClassMethod311.1326<System.Object>()" ldstr "valuetype MyStruct155`1<class BaseClass1> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance string valuetype MyStruct155`1<class BaseClass1>::ClassMethod312<object>() calli default string(object) ldstr "MyStruct155::ClassMethod312.1327<System.Object>()" ldstr "valuetype MyStruct155`1<class BaseClass1> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldnull ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance bool valuetype MyStruct155`1<class BaseClass1>::Equals(object) calli default bool(object,object) pop ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance int32 valuetype MyStruct155`1<class BaseClass1>::GetHashCode() calli default int32(object) pop ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance string valuetype MyStruct155`1<class BaseClass1>::ToString() calli default string(object) pop ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(object) ldstr "MyStruct155::Method7.1322<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct155::Method7.1322<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct155::Method7.1322<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 10 call void Generated105::MethodCallingTest() call void Generated105::ConstrainedCallsTest() call void Generated105::StructConstrainedInterfaceCallsTest() call void Generated105::CalliTest() ldc.i4 100 ret } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 } .assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) } //TYPES IN FORWARDER ASSEMBLIES: //TEST ASSEMBLY: .assembly Generated105 { .hash algorithm 0x00008004 } .assembly extern xunit.core {} .class public BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class public BaseClass1 extends BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void BaseClass0::.ctor() ret } } .class public sequential sealed MyStruct155`1<T0> extends [mscorlib]System.ValueType implements class IBase2`2<class BaseClass0,class BaseClass0>, class IBase2`2<!T0,!T0> { .pack 0 .size 1 .method public hidebysig newslot virtual instance string Method7<M0>() cil managed noinlining { ldstr "MyStruct155::Method7.1322<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot instance string ClassMethod309() cil managed noinlining { ldstr "MyStruct155::ClassMethod309.1324()" ret } .method public hidebysig newslot instance string ClassMethod310() cil managed noinlining { ldstr "MyStruct155::ClassMethod310.1325()" ret } .method public hidebysig newslot instance string ClassMethod311<M0>() cil managed noinlining { ldstr "MyStruct155::ClassMethod311.1326<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot instance string ClassMethod312<M0>() cil managed noinlining { ldstr "MyStruct155::ClassMethod312.1327<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance bool Equals(object obj) cil managed { ldc.i4.0 ret } .method public hidebysig virtual instance int32 GetHashCode() cil managed { ldc.i4.0 ret } .method public hidebysig virtual instance string ToString() cil managed { ldstr "" ret } } .class interface public abstract IBase2`2<+T0, -T1> { .method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { } } .class public auto ansi beforefieldinit Generated105 { .method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.MyStruct155.T<T0,(valuetype MyStruct155`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 7 .locals init (string[] actualResults) ldc.i4.s 2 newarr string stloc.s actualResults ldarg.1 ldstr "M.MyStruct155.T<T0,(valuetype MyStruct155`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 2 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. valuetype MyStruct155`1<!!T0> callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. valuetype MyStruct155`1<!!T0> callvirt instance string class IBase2`2<!!T0,!!T0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.MyStruct155.B<(valuetype MyStruct155`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 7 .locals init (string[] actualResults) ldc.i4.s 2 newarr string stloc.s actualResults ldarg.1 ldstr "M.MyStruct155.B<(valuetype MyStruct155`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 2 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. valuetype MyStruct155`1<class BaseClass1> callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. valuetype MyStruct155`1<class BaseClass1> callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method public hidebysig static void MethodCallingTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calling Test ==========================" call void [mscorlib]System.Console::WriteLine(string) .locals init (valuetype MyStruct155`1<class BaseClass1> V_2) ldloca V_2 initobj valuetype MyStruct155`1<class BaseClass1> ldloca V_2 dup call instance string valuetype MyStruct155`1<class BaseClass1>::Method7<object>() ldstr "MyStruct155::Method7.1322<System.Object>()" ldstr "valuetype MyStruct155`1<class BaseClass1> on type MyStruct155" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct155`1<class BaseClass1>::ClassMethod309() ldstr "MyStruct155::ClassMethod309.1324()" ldstr "valuetype MyStruct155`1<class BaseClass1> on type MyStruct155" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct155`1<class BaseClass1>::ClassMethod310() ldstr "MyStruct155::ClassMethod310.1325()" ldstr "valuetype MyStruct155`1<class BaseClass1> on type MyStruct155" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct155`1<class BaseClass1>::ClassMethod311<object>() ldstr "MyStruct155::ClassMethod311.1326<System.Object>()" ldstr "valuetype MyStruct155`1<class BaseClass1> on type MyStruct155" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup call instance string valuetype MyStruct155`1<class BaseClass1>::ClassMethod312<object>() ldstr "MyStruct155::ClassMethod312.1327<System.Object>()" ldstr "valuetype MyStruct155`1<class BaseClass1> on type MyStruct155" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup ldnull call instance bool valuetype MyStruct155`1<class BaseClass1>::Equals(object) pop dup call instance int32 valuetype MyStruct155`1<class BaseClass1>::GetHashCode() pop dup call instance string valuetype MyStruct155`1<class BaseClass1>::ToString() pop pop ldloc V_2 box valuetype MyStruct155`1<class BaseClass1> dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "MyStruct155::Method7.1322<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_2 box valuetype MyStruct155`1<class BaseClass1> dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "MyStruct155::Method7.1322<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc V_2 box valuetype MyStruct155`1<class BaseClass1> dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "MyStruct155::Method7.1322<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void ConstrainedCallsTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Constrained Calls Test ==========================" call void [mscorlib]System.Console::WriteLine(string) .locals init (valuetype MyStruct155`1<class BaseClass1> V_4) ldloca V_4 initobj valuetype MyStruct155`1<class BaseClass1> .try { ldloc V_4 ldstr "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.IBase2.T.T<class BaseClass0,class BaseClass0,valuetype MyStruct155`1<class BaseClass1>>(!!2,string) leave.s LV0 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0: .try { ldloc V_4 ldstr "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.IBase2.A.T<class BaseClass0,valuetype MyStruct155`1<class BaseClass1>>(!!1,string) leave.s LV1 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1: .try { ldloc V_4 ldstr "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.IBase2.A.A<valuetype MyStruct155`1<class BaseClass1>>(!!0,string) leave.s LV2 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV2} LV2: .try { ldloc V_4 ldstr "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.IBase2.T.T<class BaseClass1,class BaseClass1,valuetype MyStruct155`1<class BaseClass1>>(!!2,string) leave.s LV3 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV3} LV3: .try { ldloc V_4 ldstr "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.IBase2.B.T<class BaseClass1,valuetype MyStruct155`1<class BaseClass1>>(!!1,string) leave.s LV4 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV4} LV4: .try { ldloc V_4 ldstr "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.IBase2.B.B<valuetype MyStruct155`1<class BaseClass1>>(!!0,string) leave.s LV5 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV5} LV5: .try { ldloc V_4 ldstr "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.IBase2.T.T<class BaseClass0,class BaseClass1,valuetype MyStruct155`1<class BaseClass1>>(!!2,string) leave.s LV6 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV6} LV6: .try { ldloc V_4 ldstr "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.IBase2.A.T<class BaseClass1,valuetype MyStruct155`1<class BaseClass1>>(!!1,string) leave.s LV7 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV7} LV7: .try { ldloc V_4 ldstr "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.IBase2.A.B<valuetype MyStruct155`1<class BaseClass1>>(!!0,string) leave.s LV8 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV8} LV8: ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed { .maxstack 10 ldstr "===================== Struct Constrained Interface Calls Test =====================" call void [mscorlib]System.Console::WriteLine(string) .locals init (valuetype MyStruct155`1<class BaseClass1> V_6) ldloca V_6 initobj valuetype MyStruct155`1<class BaseClass1> .try { ldloc V_6 ldstr "MyStruct155::Method7.1322<System.Object>()#" + "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.MyStruct155.T<class BaseClass1,valuetype MyStruct155`1<class BaseClass1>>(!!1,string) leave.s LV0 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV0} LV0: .try { ldloc V_6 ldstr "MyStruct155::Method7.1322<System.Object>()#" + "MyStruct155::Method7.1322<System.Object>()#" call void Generated105::M.MyStruct155.B<valuetype MyStruct155`1<class BaseClass1>>(!!0,string) leave.s LV1 } catch [mscorlib]System.Security.VerificationException { pop leave.s LV1} LV1: ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void CalliTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calli Test ==========================" call void [mscorlib]System.Console::WriteLine(string) .locals init (valuetype MyStruct155`1<class BaseClass1> V_8) ldloca V_8 initobj valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance string valuetype MyStruct155`1<class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct155::Method7.1322<System.Object>()" ldstr "valuetype MyStruct155`1<class BaseClass1> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance string valuetype MyStruct155`1<class BaseClass1>::ClassMethod309() calli default string(object) ldstr "MyStruct155::ClassMethod309.1324()" ldstr "valuetype MyStruct155`1<class BaseClass1> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance string valuetype MyStruct155`1<class BaseClass1>::ClassMethod310() calli default string(object) ldstr "MyStruct155::ClassMethod310.1325()" ldstr "valuetype MyStruct155`1<class BaseClass1> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance string valuetype MyStruct155`1<class BaseClass1>::ClassMethod311<object>() calli default string(object) ldstr "MyStruct155::ClassMethod311.1326<System.Object>()" ldstr "valuetype MyStruct155`1<class BaseClass1> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance string valuetype MyStruct155`1<class BaseClass1>::ClassMethod312<object>() calli default string(object) ldstr "MyStruct155::ClassMethod312.1327<System.Object>()" ldstr "valuetype MyStruct155`1<class BaseClass1> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldnull ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance bool valuetype MyStruct155`1<class BaseClass1>::Equals(object) calli default bool(object,object) pop ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance int32 valuetype MyStruct155`1<class BaseClass1>::GetHashCode() calli default int32(object) pop ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance string valuetype MyStruct155`1<class BaseClass1>::ToString() calli default string(object) pop ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(object) ldstr "MyStruct155::Method7.1322<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct155::Method7.1322<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldloc V_8 box valuetype MyStruct155`1<class BaseClass1> ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(object) ldstr "MyStruct155::Method7.1322<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type valuetype MyStruct155`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 10 call void Generated105::MethodCallingTest() call void Generated105::ConstrainedCallsTest() call void Generated105::StructConstrainedInterfaceCallsTest() call void Generated105::CalliTest() ldc.i4 100 ret } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/Loader/classloader/TypeGeneratorTests/TypeGeneratorTest965/Generated965.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 } .assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) } //TYPES IN FORWARDER ASSEMBLIES: //TEST ASSEMBLY: .assembly Generated965 { .hash algorithm 0x00008004 } .assembly extern xunit.core {} .class public BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class public BaseClass1 extends BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void BaseClass0::.ctor() ret } } .class public G3_C1437`1<T0> extends class G2_C470`2<class BaseClass1,class BaseClass1> implements IBase0 { .method public hidebysig newslot virtual instance string Method0() cil managed noinlining { ldstr "G3_C1437::Method0.16164()" ret } .method public hidebysig newslot virtual instance string Method1() cil managed noinlining { ldstr "G3_C1437::Method1.16165()" ret } .method public hidebysig newslot virtual instance string 'IBase0.Method1'() cil managed noinlining { .override method instance string IBase0::Method1() ldstr "G3_C1437::Method1.MI.16166()" ret } .method public hidebysig newslot virtual instance string Method2<M0>() cil managed noinlining { ldstr "G3_C1437::Method2.16167<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance string Method3<M0>() cil managed noinlining { ldstr "G3_C1437::Method3.16168<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase0.Method3'<M0>() cil managed noinlining { .override method instance string IBase0::Method3<[1]>() ldstr "G3_C1437::Method3.MI.16169<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod4260<M0>() cil managed noinlining { ldstr "G3_C1437::ClassMethod4260.16170<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod4261<M0>() cil managed noinlining { ldstr "G3_C1437::ClassMethod4261.16171<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G2_C470`2<class BaseClass1,class BaseClass1>::.ctor() ret } } .class public G2_C470`2<T0, T1> extends class G1_C9`2<class BaseClass0,class BaseClass0> implements class IBase1`1<class BaseClass1>, class IBase2`2<!T0,!T0> { .method public hidebysig newslot virtual instance string Method4() cil managed noinlining { ldstr "G2_C470::Method4.9260()" ret } .method public hidebysig newslot virtual instance string 'IBase1<class BaseClass1>.Method4'() cil managed noinlining { .override method instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C470::Method4.MI.9261()" ret } .method public hidebysig virtual instance string Method5() cil managed noinlining { ldstr "G2_C470::Method5.9262()" ret } .method public hidebysig virtual instance string Method6<M0>() cil managed noinlining { ldstr "G2_C470::Method6.9263<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase1<class BaseClass1>.Method6'<M0>() cil managed noinlining { .override method instance string class IBase1`1<class BaseClass1>::Method6<[1]>() ldstr "G2_C470::Method6.MI.9264<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G2_C470::Method7.9265<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod2299<M0>() cil managed noinlining { ldstr "G2_C470::ClassMethod2299.9266<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'G1_C9<class BaseClass0,class BaseClass0>.ClassMethod1337'() cil managed noinlining { .override method instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ret } .method public hidebysig newslot virtual instance string 'G1_C9<class BaseClass0,class BaseClass0>.ClassMethod1338'<M0>() cil managed noinlining { .override method instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<[1]>() ldstr "G2_C470::ClassMethod1338.MI.9268<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G1_C9`2<class BaseClass0,class BaseClass0>::.ctor() ret } } .class interface public abstract IBase0 { .method public hidebysig newslot abstract virtual instance string Method0() cil managed { } .method public hidebysig newslot abstract virtual instance string Method1() cil managed { } .method public hidebysig newslot abstract virtual instance string Method2<M0>() cil managed { } .method public hidebysig newslot abstract virtual instance string Method3<M0>() cil managed { } } .class public abstract G1_C9`2<T0, T1> implements class IBase2`2<class BaseClass0,!T0>, class IBase1`1<class BaseClass0> { .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G1_C9::Method7.4833<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance string Method4() cil managed noinlining { ldstr "G1_C9::Method4.4834()" ret } .method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method4'() cil managed noinlining { .override method instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G1_C9::Method4.MI.4835()" ret } .method public hidebysig newslot virtual instance string Method5() cil managed noinlining { ldstr "G1_C9::Method5.4836()" ret } .method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method5'() cil managed noinlining { .override method instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G1_C9::Method5.MI.4837()" ret } .method public hidebysig virtual instance string Method6<M0>() cil managed noinlining { ldstr "G1_C9::Method6.4838<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method6'<M0>() cil managed noinlining { .override method instance string class IBase1`1<class BaseClass0>::Method6<[1]>() ldstr "G1_C9::Method6.MI.4839<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1336() cil managed noinlining { ldstr "G1_C9::ClassMethod1336.4840()" ret } .method public hidebysig newslot virtual instance string ClassMethod1337() cil managed noinlining { ldstr "G1_C9::ClassMethod1337.4841()" ret } .method public hidebysig newslot virtual instance string ClassMethod1338<M0>() cil managed noinlining { ldstr "G1_C9::ClassMethod1338.4842<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1339<M0>() cil managed noinlining { ldstr "G1_C9::ClassMethod1339.4843<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class interface public abstract IBase1`1<+T0> { .method public hidebysig newslot abstract virtual instance string Method4() cil managed { } .method public hidebysig newslot abstract virtual instance string Method5() cil managed { } .method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { } } .class interface public abstract IBase2`2<+T0, -T1> { .method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { } } .class public auto ansi beforefieldinit Generated965 { .method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1437.T<T0,(class G3_C1437`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 20 .locals init (string[] actualResults) ldc.i4.s 15 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1437.T<T0,(class G3_C1437`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 15 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::ClassMethod2299<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::ClassMethod4260<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::ClassMethod4261<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 14 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1437.A<(class G3_C1437`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 20 .locals init (string[] actualResults) ldc.i4.s 15 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1437.A<(class G3_C1437`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 15 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod2299<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod4260<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod4261<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 14 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1437.B<(class G3_C1437`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 20 .locals init (string[] actualResults) ldc.i4.s 15 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1437.B<(class G3_C1437`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 15 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod2299<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod4260<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod4261<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 14 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C470.T.T<T0,T1,(class G2_C470`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C470.T.T<T0,T1,(class G2_C470`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<!!T0,!!T1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<!!T0,!!T1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<!!T0,!!T1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<!!T0,!!T1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<!!T0,!!T1>::ClassMethod2299<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C470.A.T<T1,(class G2_C470`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C470.A.T<T1,(class G2_C470`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,!!T1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,!!T1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,!!T1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,!!T1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,!!T1>::ClassMethod2299<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C470.A.A<(class G2_C470`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C470.A.A<(class G2_C470`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod2299<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C470.A.B<(class G2_C470`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C470.A.B<(class G2_C470`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod2299<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C470.B.T<T1,(class G2_C470`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C470.B.T<T1,(class G2_C470`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,!!T1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,!!T1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,!!T1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,!!T1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,!!T1>::ClassMethod2299<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C470.B.A<(class G2_C470`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C470.B.A<(class G2_C470`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod2299<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C470.B.B<(class G2_C470`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C470.B.B<(class G2_C470`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod2299<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase0<(IBase0)W>(!!W inst, string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase0<(IBase0)W>(!!W inst, string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method3<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C9.T.T<T0,T1,(class G1_C9`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C9.T.T<T0,T1,(class G1_C9`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<!!T0,!!T1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<!!T0,!!T1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<!!T0,!!T1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<!!T0,!!T1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C9.A.T<T1,(class G1_C9`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C9.A.T<T1,(class G1_C9`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,!!T1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,!!T1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,!!T1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,!!T1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C9.A.A<(class G1_C9`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C9.A.A<(class G1_C9`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C9.A.B<(class G1_C9`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C9.A.B<(class G1_C9`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C9.B.T<T1,(class G1_C9`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C9.B.T<T1,(class G1_C9`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,!!T1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,!!T1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,!!T1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,!!T1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C9.B.A<(class G1_C9`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C9.B.A<(class G1_C9`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass0>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass0>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass0>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass0>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C9.B.B<(class G1_C9`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C9.B.B<(class G1_C9`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method public hidebysig static void MethodCallingTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calling Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1437`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod2299<object>() ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod4261<object>() ldstr "G3_C1437::ClassMethod4261.16171<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod4260<object>() ldstr "G3_C1437::ClassMethod4260.16170<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::Method3<object>() ldstr "G3_C1437::Method3.16168<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::Method2<object>() ldstr "G3_C1437::Method2.16167<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::Method1() ldstr "G3_C1437::Method1.16165()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::Method0() ldstr "G3_C1437::Method0.16164()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod2299<object>() ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::Method4() ldstr "G2_C470::Method4.9260()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string IBase0::Method0() ldstr "G3_C1437::Method0.16164()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method1() ldstr "G3_C1437::Method1.MI.16166()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method2<object>() ldstr "G3_C1437::Method2.16167<System.Object>()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method3<object>() ldstr "G3_C1437::Method3.MI.16169<System.Object>()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G3_C1437`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod2299<object>() ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod4261<object>() ldstr "G3_C1437::ClassMethod4261.16171<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod4260<object>() ldstr "G3_C1437::ClassMethod4260.16170<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::Method3<object>() ldstr "G3_C1437::Method3.16168<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::Method2<object>() ldstr "G3_C1437::Method2.16167<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::Method1() ldstr "G3_C1437::Method1.16165()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::Method0() ldstr "G3_C1437::Method0.16164()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod2299<object>() ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::Method4() ldstr "G2_C470::Method4.9260()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string IBase0::Method0() ldstr "G3_C1437::Method0.16164()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method1() ldstr "G3_C1437::Method1.MI.16166()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method2<object>() ldstr "G3_C1437::Method2.16167<System.Object>()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method3<object>() ldstr "G3_C1437::Method3.MI.16169<System.Object>()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C470`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C470`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod2299<object>() ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C470`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C470`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod2299<object>() ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C470`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C470`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod2299<object>() ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C470`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod2299<object>() ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void ConstrainedCallsTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Constrained Calls Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1437`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.T.T<class BaseClass0,class BaseClass0,class G3_C1437`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.T<class BaseClass0,class G3_C1437`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.A<class G3_C1437`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1437`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass0,class G3_C1437`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.A<class G3_C1437`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass0,class G3_C1437`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.A<class G3_C1437`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1437`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass1,class G3_C1437`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.B<class G3_C1437`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.T.T<class BaseClass1,class BaseClass1,class G3_C1437`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.B.T<class BaseClass1,class G3_C1437`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.B.B<class G3_C1437`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass1,class G3_C1437`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.B<class G3_C1437`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1437`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.B.T<class BaseClass1,class G3_C1437`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.B.B<class G3_C1437`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G3_C1437::ClassMethod4260.16170<System.Object>()#G3_C1437::ClassMethod4261.16171<System.Object>()#G3_C1437::Method0.16164()#G3_C1437::Method1.16165()#G3_C1437::Method2.16167<System.Object>()#G3_C1437::Method3.16168<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G3_C1437.T<class BaseClass0,class G3_C1437`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G3_C1437::ClassMethod4260.16170<System.Object>()#G3_C1437::ClassMethod4261.16171<System.Object>()#G3_C1437::Method0.16164()#G3_C1437::Method1.16165()#G3_C1437::Method2.16167<System.Object>()#G3_C1437::Method3.16168<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G3_C1437.A<class G3_C1437`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G3_C1437::Method0.16164()#G3_C1437::Method1.MI.16166()#G3_C1437::Method2.16167<System.Object>()#G3_C1437::Method3.MI.16169<System.Object>()#" call void Generated965::M.IBase0<class G3_C1437`1<class BaseClass0>>(!!0,string) newobj instance void class G3_C1437`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.T.T<class BaseClass0,class BaseClass0,class G3_C1437`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.T<class BaseClass0,class G3_C1437`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.A<class G3_C1437`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1437`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass0,class G3_C1437`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.A<class G3_C1437`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass0,class G3_C1437`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.A<class G3_C1437`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1437`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass1,class G3_C1437`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.B<class G3_C1437`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.T.T<class BaseClass1,class BaseClass1,class G3_C1437`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.B.T<class BaseClass1,class G3_C1437`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.B.B<class G3_C1437`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass1,class G3_C1437`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.B<class G3_C1437`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1437`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.B.T<class BaseClass1,class G3_C1437`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.B.B<class G3_C1437`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G3_C1437::ClassMethod4260.16170<System.Object>()#G3_C1437::ClassMethod4261.16171<System.Object>()#G3_C1437::Method0.16164()#G3_C1437::Method1.16165()#G3_C1437::Method2.16167<System.Object>()#G3_C1437::Method3.16168<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G3_C1437.T<class BaseClass1,class G3_C1437`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G3_C1437::ClassMethod4260.16170<System.Object>()#G3_C1437::ClassMethod4261.16171<System.Object>()#G3_C1437::Method0.16164()#G3_C1437::Method1.16165()#G3_C1437::Method2.16167<System.Object>()#G3_C1437::Method3.16168<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G3_C1437.B<class G3_C1437`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G3_C1437::Method0.16164()#G3_C1437::Method1.MI.16166()#G3_C1437::Method2.16167<System.Object>()#G3_C1437::Method3.MI.16169<System.Object>()#" call void Generated965::M.IBase0<class G3_C1437`1<class BaseClass1>>(!!0,string) newobj instance void class G2_C470`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.T.T<class BaseClass0,class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.T<class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.A<class G2_C470`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.A<class G2_C470`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.A<class G2_C470`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C470`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass1,class G2_C470`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.B<class G2_C470`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.T.T<class BaseClass0,class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.A.T<class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.A.A<class G2_C470`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass1,class G2_C470`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.B<class G2_C470`2<class BaseClass0,class BaseClass0>>(!!0,string) newobj instance void class G2_C470`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.T.T<class BaseClass0,class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.T<class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.A<class G2_C470`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.A<class G2_C470`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.A<class G2_C470`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C470`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass1,class G2_C470`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.B<class G2_C470`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.T.T<class BaseClass0,class BaseClass1,class G2_C470`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.A.T<class BaseClass1,class G2_C470`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.A.B<class G2_C470`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass1,class G2_C470`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.B<class G2_C470`2<class BaseClass0,class BaseClass1>>(!!0,string) newobj instance void class G2_C470`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.T.T<class BaseClass0,class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.T<class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.A<class G2_C470`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.A<class G2_C470`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.A<class G2_C470`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.B<class G2_C470`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.T.T<class BaseClass1,class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.B.T<class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.B.A<class G2_C470`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.B<class G2_C470`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.B.T<class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.B.B<class G2_C470`2<class BaseClass1,class BaseClass0>>(!!0,string) newobj instance void class G2_C470`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.T.T<class BaseClass0,class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.T<class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.A<class G2_C470`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.A<class G2_C470`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.A<class G2_C470`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.B<class G2_C470`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.T.T<class BaseClass1,class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.B.T<class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.B.B<class G2_C470`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.B<class G2_C470`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.B.T<class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.B.B<class G2_C470`2<class BaseClass1,class BaseClass1>>(!!0,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed { .maxstack 10 ldstr "===================== Struct Constrained Interface Calls Test =====================" call void [mscorlib]System.Console::WriteLine(string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void CalliTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calli Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1437`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod2299<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1339<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1338<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1337() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1336() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::ClassMethod4261<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G3_C1437::ClassMethod4261.16171<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::ClassMethod4260<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G3_C1437::ClassMethod4260.16170<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::Method3<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G3_C1437::Method3.16168<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::Method2<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G3_C1437::Method2.16167<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::Method1() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G3_C1437::Method1.16165()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::Method0() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G3_C1437::Method0.16164()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::ClassMethod2299<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::Method5() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::Method4() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method4.9260()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::ClassMethod1339<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::ClassMethod1338<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::ClassMethod1337() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::ClassMethod1336() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method0() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G3_C1437::Method0.16164()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method1() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G3_C1437::Method1.MI.16166()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method2<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G3_C1437::Method2.16167<System.Object>()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method3<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G3_C1437::Method3.MI.16169<System.Object>()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G3_C1437`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod2299<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1339<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1338<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1337() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1336() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::ClassMethod4261<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G3_C1437::ClassMethod4261.16171<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::ClassMethod4260<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G3_C1437::ClassMethod4260.16170<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::Method3<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G3_C1437::Method3.16168<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::Method2<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G3_C1437::Method2.16167<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::Method1() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G3_C1437::Method1.16165()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::Method0() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G3_C1437::Method0.16164()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::ClassMethod2299<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::Method5() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::Method4() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method4.9260()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::ClassMethod1339<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::ClassMethod1338<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::ClassMethod1337() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::ClassMethod1336() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method0() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G3_C1437::Method0.16164()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method1() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G3_C1437::Method1.MI.16166()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method2<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G3_C1437::Method2.16167<System.Object>()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method3<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G3_C1437::Method3.MI.16169<System.Object>()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C470`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod2299<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1337() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1336() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C470`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod2299<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1339<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1338<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1337() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1336() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C470`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod2299<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1339<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1338<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1337() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1336() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C470`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod2299<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1339<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1338<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1337() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1336() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 10 call void Generated965::MethodCallingTest() call void Generated965::ConstrainedCallsTest() call void Generated965::StructConstrainedInterfaceCallsTest() call void Generated965::CalliTest() ldc.i4 100 ret } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) .ver 4:0:0:0 } .assembly extern TestFramework { .publickeytoken = ( B0 3F 5F 7F 11 D5 0A 3A ) } //TYPES IN FORWARDER ASSEMBLIES: //TEST ASSEMBLY: .assembly Generated965 { .hash algorithm 0x00008004 } .assembly extern xunit.core {} .class public BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class public BaseClass1 extends BaseClass0 { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void BaseClass0::.ctor() ret } } .class public G3_C1437`1<T0> extends class G2_C470`2<class BaseClass1,class BaseClass1> implements IBase0 { .method public hidebysig newslot virtual instance string Method0() cil managed noinlining { ldstr "G3_C1437::Method0.16164()" ret } .method public hidebysig newslot virtual instance string Method1() cil managed noinlining { ldstr "G3_C1437::Method1.16165()" ret } .method public hidebysig newslot virtual instance string 'IBase0.Method1'() cil managed noinlining { .override method instance string IBase0::Method1() ldstr "G3_C1437::Method1.MI.16166()" ret } .method public hidebysig newslot virtual instance string Method2<M0>() cil managed noinlining { ldstr "G3_C1437::Method2.16167<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance string Method3<M0>() cil managed noinlining { ldstr "G3_C1437::Method3.16168<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase0.Method3'<M0>() cil managed noinlining { .override method instance string IBase0::Method3<[1]>() ldstr "G3_C1437::Method3.MI.16169<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod4260<M0>() cil managed noinlining { ldstr "G3_C1437::ClassMethod4260.16170<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod4261<M0>() cil managed noinlining { ldstr "G3_C1437::ClassMethod4261.16171<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G2_C470`2<class BaseClass1,class BaseClass1>::.ctor() ret } } .class public G2_C470`2<T0, T1> extends class G1_C9`2<class BaseClass0,class BaseClass0> implements class IBase1`1<class BaseClass1>, class IBase2`2<!T0,!T0> { .method public hidebysig newslot virtual instance string Method4() cil managed noinlining { ldstr "G2_C470::Method4.9260()" ret } .method public hidebysig newslot virtual instance string 'IBase1<class BaseClass1>.Method4'() cil managed noinlining { .override method instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C470::Method4.MI.9261()" ret } .method public hidebysig virtual instance string Method5() cil managed noinlining { ldstr "G2_C470::Method5.9262()" ret } .method public hidebysig virtual instance string Method6<M0>() cil managed noinlining { ldstr "G2_C470::Method6.9263<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase1<class BaseClass1>.Method6'<M0>() cil managed noinlining { .override method instance string class IBase1`1<class BaseClass1>::Method6<[1]>() ldstr "G2_C470::Method6.MI.9264<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G2_C470::Method7.9265<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod2299<M0>() cil managed noinlining { ldstr "G2_C470::ClassMethod2299.9266<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'G1_C9<class BaseClass0,class BaseClass0>.ClassMethod1337'() cil managed noinlining { .override method instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ret } .method public hidebysig newslot virtual instance string 'G1_C9<class BaseClass0,class BaseClass0>.ClassMethod1338'<M0>() cil managed noinlining { .override method instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<[1]>() ldstr "G2_C470::ClassMethod1338.MI.9268<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void class G1_C9`2<class BaseClass0,class BaseClass0>::.ctor() ret } } .class interface public abstract IBase0 { .method public hidebysig newslot abstract virtual instance string Method0() cil managed { } .method public hidebysig newslot abstract virtual instance string Method1() cil managed { } .method public hidebysig newslot abstract virtual instance string Method2<M0>() cil managed { } .method public hidebysig newslot abstract virtual instance string Method3<M0>() cil managed { } } .class public abstract G1_C9`2<T0, T1> implements class IBase2`2<class BaseClass0,!T0>, class IBase1`1<class BaseClass0> { .method public hidebysig virtual instance string Method7<M0>() cil managed noinlining { ldstr "G1_C9::Method7.4833<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig virtual instance string Method4() cil managed noinlining { ldstr "G1_C9::Method4.4834()" ret } .method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method4'() cil managed noinlining { .override method instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G1_C9::Method4.MI.4835()" ret } .method public hidebysig newslot virtual instance string Method5() cil managed noinlining { ldstr "G1_C9::Method5.4836()" ret } .method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method5'() cil managed noinlining { .override method instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G1_C9::Method5.MI.4837()" ret } .method public hidebysig virtual instance string Method6<M0>() cil managed noinlining { ldstr "G1_C9::Method6.4838<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string 'IBase1<class BaseClass0>.Method6'<M0>() cil managed noinlining { .override method instance string class IBase1`1<class BaseClass0>::Method6<[1]>() ldstr "G1_C9::Method6.MI.4839<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1336() cil managed noinlining { ldstr "G1_C9::ClassMethod1336.4840()" ret } .method public hidebysig newslot virtual instance string ClassMethod1337() cil managed noinlining { ldstr "G1_C9::ClassMethod1337.4841()" ret } .method public hidebysig newslot virtual instance string ClassMethod1338<M0>() cil managed noinlining { ldstr "G1_C9::ClassMethod1338.4842<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig newslot virtual instance string ClassMethod1339<M0>() cil managed noinlining { ldstr "G1_C9::ClassMethod1339.4843<" ldtoken !!M0 call class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle) call string [mscorlib]System.String::Concat(object,object) ldstr ">()" call string [mscorlib]System.String::Concat(object,object) ret } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } .class interface public abstract IBase1`1<+T0> { .method public hidebysig newslot abstract virtual instance string Method4() cil managed { } .method public hidebysig newslot abstract virtual instance string Method5() cil managed { } .method public hidebysig newslot abstract virtual instance string Method6<M0>() cil managed { } } .class interface public abstract IBase2`2<+T0, -T1> { .method public hidebysig newslot abstract virtual instance string Method7<M0>() cil managed { } } .class public auto ansi beforefieldinit Generated965 { .method static void M.BaseClass0<(BaseClass0)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass0<(BaseClass0)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.BaseClass1<(BaseClass1)W>(!!W inst, string exp) cil managed { .maxstack 5 .locals init (string[] actualResults) ldc.i4.s 0 newarr string stloc.s actualResults ldarg.1 ldstr "M.BaseClass1<(BaseClass1)W>(!!W inst, string exp)" ldc.i4.s 0 ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1437.T<T0,(class G3_C1437`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 20 .locals init (string[] actualResults) ldc.i4.s 15 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1437.T<T0,(class G3_C1437`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 15 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::ClassMethod2299<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::ClassMethod4260<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::ClassMethod4261<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 14 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<!!T0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1437.A<(class G3_C1437`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 20 .locals init (string[] actualResults) ldc.i4.s 15 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1437.A<(class G3_C1437`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 15 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod2299<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod4260<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod4261<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 14 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G3_C1437.B<(class G3_C1437`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 20 .locals init (string[] actualResults) ldc.i4.s 15 newarr string stloc.s actualResults ldarg.1 ldstr "M.G3_C1437.B<(class G3_C1437`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 15 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod2299<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod4260<object>() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod4261<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 9 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 10 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::Method3<object>() stelem.ref ldloc.s actualResults ldc.i4.s 11 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 12 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 13 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 14 ldarga.s 0 constrained. !!W callvirt instance string class G3_C1437`1<class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C470.T.T<T0,T1,(class G2_C470`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C470.T.T<T0,T1,(class G2_C470`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<!!T0,!!T1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<!!T0,!!T1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<!!T0,!!T1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<!!T0,!!T1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<!!T0,!!T1>::ClassMethod2299<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C470.A.T<T1,(class G2_C470`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C470.A.T<T1,(class G2_C470`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,!!T1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,!!T1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,!!T1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,!!T1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,!!T1>::ClassMethod2299<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C470.A.A<(class G2_C470`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C470.A.A<(class G2_C470`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod2299<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C470.A.B<(class G2_C470`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C470.A.B<(class G2_C470`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod2299<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C470.B.T<T1,(class G2_C470`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C470.B.T<T1,(class G2_C470`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,!!T1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,!!T1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,!!T1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,!!T1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,!!T1>::ClassMethod2299<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C470.B.A<(class G2_C470`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C470.B.A<(class G2_C470`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod2299<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G2_C470.B.B<(class G2_C470`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 14 .locals init (string[] actualResults) ldc.i4.s 9 newarr string stloc.s actualResults ldarg.1 ldstr "M.G2_C470.B.B<(class G2_C470`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 9 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod2299<object>() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 8 ldarga.s 0 constrained. !!W callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase0<(IBase0)W>(!!W inst, string exp) cil managed { .maxstack 9 .locals init (string[] actualResults) ldc.i4.s 4 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase0<(IBase0)W>(!!W inst, string exp)" ldc.i4.s 4 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method0() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method1() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method2<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string IBase0::Method3<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C9.T.T<T0,T1,(class G1_C9`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C9.T.T<T0,T1,(class G1_C9`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<!!T0,!!T1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<!!T0,!!T1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<!!T0,!!T1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<!!T0,!!T1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<!!T0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<!!T0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<!!T0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C9.A.T<T1,(class G1_C9`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C9.A.T<T1,(class G1_C9`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,!!T1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,!!T1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,!!T1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,!!T1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C9.A.A<(class G1_C9`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C9.A.A<(class G1_C9`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C9.A.B<(class G1_C9`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C9.A.B<(class G1_C9`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C9.B.T<T1,(class G1_C9`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C9.B.T<T1,(class G1_C9`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,!!T1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,!!T1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,!!T1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,!!T1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,!!T1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,!!T1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,!!T1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C9.B.A<(class G1_C9`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C9.B.A<(class G1_C9`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass0>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass0>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass0>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass0>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.G1_C9.B.B<(class G1_C9`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 13 .locals init (string[] actualResults) ldc.i4.s 8 newarr string stloc.s actualResults ldarg.1 ldstr "M.G1_C9.B.B<(class G1_C9`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 8 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass1>::ClassMethod1336() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass1>::ClassMethod1337() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass1>::ClassMethod1338<object>() stelem.ref ldloc.s actualResults ldc.i4.s 3 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass1>::ClassMethod1339<object>() stelem.ref ldloc.s actualResults ldc.i4.s 4 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 5 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 6 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults ldc.i4.s 7 ldarga.s 0 constrained. !!W callvirt instance string class G1_C9`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.T<T0,(class IBase1`1<!!T0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<!!T0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.A<(class IBase1`1<class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 8 .locals init (string[] actualResults) ldc.i4.s 3 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase1.B<(class IBase1`1<class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 3 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method4() stelem.ref ldloc.s actualResults ldc.i4.s 1 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method5() stelem.ref ldloc.s actualResults ldc.i4.s 2 ldarga.s 0 constrained. !!W callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.T.T<T0,T1,(class IBase2`2<!!T0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<!!T0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.T<T1,(class IBase2`2<class BaseClass0,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.A<(class IBase2`2<class BaseClass0,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.A.B<(class IBase2`2<class BaseClass0,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.T<T1,(class IBase2`2<class BaseClass1,!!T1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,!!T1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.A<(class IBase2`2<class BaseClass1,class BaseClass0>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass0>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method static void M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp) cil managed { .maxstack 6 .locals init (string[] actualResults) ldc.i4.s 1 newarr string stloc.s actualResults ldarg.1 ldstr "M.IBase2.B.B<(class IBase2`2<class BaseClass1,class BaseClass1>)W>(!!W 'inst', string exp)" ldc.i4.s 1 ldloc.s actualResults ldc.i4.s 0 ldarga.s 0 constrained. !!W callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() stelem.ref ldloc.s actualResults call void [TestFramework]TestFramework::MethodCallTest(string,string,int32,string[]) ret } .method public hidebysig static void MethodCallingTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calling Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1437`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod2299<object>() ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod4261<object>() ldstr "G3_C1437::ClassMethod4261.16171<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod4260<object>() ldstr "G3_C1437::ClassMethod4260.16170<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::Method3<object>() ldstr "G3_C1437::Method3.16168<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::Method2<object>() ldstr "G3_C1437::Method2.16167<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::Method1() ldstr "G3_C1437::Method1.16165()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::Method0() ldstr "G3_C1437::Method0.16164()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod2299<object>() ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::Method4() ldstr "G2_C470::Method4.9260()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass0> callvirt instance string class G3_C1437`1<class BaseClass0>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string IBase0::Method0() ldstr "G3_C1437::Method0.16164()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method1() ldstr "G3_C1437::Method1.MI.16166()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method2<object>() ldstr "G3_C1437::Method2.16167<System.Object>()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method3<object>() ldstr "G3_C1437::Method3.MI.16169<System.Object>()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G3_C1437`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod2299<object>() ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod4261<object>() ldstr "G3_C1437::ClassMethod4261.16171<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod4260<object>() ldstr "G3_C1437::ClassMethod4260.16170<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::Method3<object>() ldstr "G3_C1437::Method3.16168<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::Method2<object>() ldstr "G3_C1437::Method2.16167<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::Method1() ldstr "G3_C1437::Method1.16165()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::Method0() ldstr "G3_C1437::Method0.16164()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod2299<object>() ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::Method4() ldstr "G2_C470::Method4.9260()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G3_C1437`1<class BaseClass1> callvirt instance string class G3_C1437`1<class BaseClass1>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string IBase0::Method0() ldstr "G3_C1437::Method0.16164()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method1() ldstr "G3_C1437::Method1.MI.16166()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method2<object>() ldstr "G3_C1437::Method2.16167<System.Object>()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string IBase0::Method3<object>() ldstr "G3_C1437::Method3.MI.16169<System.Object>()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C470`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C470`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod2299<object>() ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C470`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C470`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod2299<object>() ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method4() ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass0,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C470`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C470`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod2299<object>() ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method4() ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass0> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop newobj instance void class G2_C470`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G1_C9`2<class BaseClass0,class BaseClass0> callvirt instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass0>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass0>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod2299<object>() ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method4() ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1339<object>() ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1338<object>() ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1337() ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup castclass class G2_C470`2<class BaseClass1,class BaseClass1> callvirt instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1336() ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase1`1<class BaseClass1>::Method4() ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method5() ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) dup callvirt instance string class IBase1`1<class BaseClass1>::Method6<object>() ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldloc.0 dup callvirt instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) pop ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void ConstrainedCallsTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Constrained Calls Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1437`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.T.T<class BaseClass0,class BaseClass0,class G3_C1437`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.T<class BaseClass0,class G3_C1437`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.A<class G3_C1437`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1437`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass0,class G3_C1437`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.A<class G3_C1437`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass0,class G3_C1437`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.A<class G3_C1437`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1437`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass1,class G3_C1437`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.B<class G3_C1437`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.T.T<class BaseClass1,class BaseClass1,class G3_C1437`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.B.T<class BaseClass1,class G3_C1437`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.B.B<class G3_C1437`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass1,class G3_C1437`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.B<class G3_C1437`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1437`1<class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.B.T<class BaseClass1,class G3_C1437`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.B.B<class G3_C1437`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G3_C1437::ClassMethod4260.16170<System.Object>()#G3_C1437::ClassMethod4261.16171<System.Object>()#G3_C1437::Method0.16164()#G3_C1437::Method1.16165()#G3_C1437::Method2.16167<System.Object>()#G3_C1437::Method3.16168<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G3_C1437.T<class BaseClass0,class G3_C1437`1<class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G3_C1437::ClassMethod4260.16170<System.Object>()#G3_C1437::ClassMethod4261.16171<System.Object>()#G3_C1437::Method0.16164()#G3_C1437::Method1.16165()#G3_C1437::Method2.16167<System.Object>()#G3_C1437::Method3.16168<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G3_C1437.A<class G3_C1437`1<class BaseClass0>>(!!0,string) ldloc.0 ldstr "G3_C1437::Method0.16164()#G3_C1437::Method1.MI.16166()#G3_C1437::Method2.16167<System.Object>()#G3_C1437::Method3.MI.16169<System.Object>()#" call void Generated965::M.IBase0<class G3_C1437`1<class BaseClass0>>(!!0,string) newobj instance void class G3_C1437`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.T.T<class BaseClass0,class BaseClass0,class G3_C1437`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.T<class BaseClass0,class G3_C1437`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.A<class G3_C1437`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G3_C1437`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass0,class G3_C1437`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.A<class G3_C1437`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass0,class G3_C1437`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.A<class G3_C1437`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G3_C1437`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass1,class G3_C1437`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.B<class G3_C1437`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.T.T<class BaseClass1,class BaseClass1,class G3_C1437`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.B.T<class BaseClass1,class G3_C1437`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.B.B<class G3_C1437`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass1,class G3_C1437`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.B<class G3_C1437`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G3_C1437`1<class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.B.T<class BaseClass1,class G3_C1437`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.B.B<class G3_C1437`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G3_C1437::ClassMethod4260.16170<System.Object>()#G3_C1437::ClassMethod4261.16171<System.Object>()#G3_C1437::Method0.16164()#G3_C1437::Method1.16165()#G3_C1437::Method2.16167<System.Object>()#G3_C1437::Method3.16168<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G3_C1437.T<class BaseClass1,class G3_C1437`1<class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G3_C1437::ClassMethod4260.16170<System.Object>()#G3_C1437::ClassMethod4261.16171<System.Object>()#G3_C1437::Method0.16164()#G3_C1437::Method1.16165()#G3_C1437::Method2.16167<System.Object>()#G3_C1437::Method3.16168<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G3_C1437.B<class G3_C1437`1<class BaseClass1>>(!!0,string) ldloc.0 ldstr "G3_C1437::Method0.16164()#G3_C1437::Method1.MI.16166()#G3_C1437::Method2.16167<System.Object>()#G3_C1437::Method3.MI.16169<System.Object>()#" call void Generated965::M.IBase0<class G3_C1437`1<class BaseClass1>>(!!0,string) newobj instance void class G2_C470`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.T.T<class BaseClass0,class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.T<class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.A<class G2_C470`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.A<class G2_C470`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.A<class G2_C470`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C470`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass1,class G2_C470`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.B<class G2_C470`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.T.T<class BaseClass0,class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.A.T<class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.A.A<class G2_C470`2<class BaseClass0,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass1,class G2_C470`2<class BaseClass0,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.B<class G2_C470`2<class BaseClass0,class BaseClass0>>(!!0,string) newobj instance void class G2_C470`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.T.T<class BaseClass0,class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.T<class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.A<class G2_C470`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.A<class G2_C470`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass0,class G2_C470`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.A<class G2_C470`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C470`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass1,class G2_C470`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.B<class G2_C470`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.T.T<class BaseClass0,class BaseClass1,class G2_C470`2<class BaseClass0,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.A.T<class BaseClass1,class G2_C470`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.A.B<class G2_C470`2<class BaseClass0,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass1,class G2_C470`2<class BaseClass0,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.B<class G2_C470`2<class BaseClass0,class BaseClass1>>(!!0,string) newobj instance void class G2_C470`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.T.T<class BaseClass0,class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.T<class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.A<class G2_C470`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.A<class G2_C470`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.A<class G2_C470`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.B<class G2_C470`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.T.T<class BaseClass1,class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.B.T<class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.B.A<class G2_C470`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.B<class G2_C470`2<class BaseClass1,class BaseClass0>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.B.T<class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass0>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.B.B<class G2_C470`2<class BaseClass1,class BaseClass0>>(!!0,string) newobj instance void class G2_C470`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.T.T<class BaseClass0,class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.T<class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G1_C9::Method4.4834()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G1_C9.A.A<class G2_C470`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.A<class G2_C470`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass0,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.A<class G2_C470`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass0,class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.T<class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.A.B<class G2_C470`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.T.T<class BaseClass1,class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.B.T<class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G1_C9::ClassMethod1336.4840()#G2_C470::ClassMethod1337.MI.9267()#G2_C470::ClassMethod1338.MI.9268<System.Object>()#G1_C9::ClassMethod1339.4843<System.Object>()#G2_C470::ClassMethod2299.9266<System.Object>()#G2_C470::Method4.9260()#G2_C470::Method5.9262()#G2_C470::Method6.9263<System.Object>()#G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.G2_C470.B.B<class G2_C470`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.T<class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method4.MI.9261()#G2_C470::Method5.9262()#G2_C470::Method6.MI.9264<System.Object>()#" call void Generated965::M.IBase1.B<class G2_C470`2<class BaseClass1,class BaseClass1>>(!!0,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.T.T<class BaseClass1,class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!2,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.B.T<class BaseClass1,class G2_C470`2<class BaseClass1,class BaseClass1>>(!!1,string) ldloc.0 ldstr "G2_C470::Method7.9265<System.Object>()#" call void Generated965::M.IBase2.B.B<class G2_C470`2<class BaseClass1,class BaseClass1>>(!!0,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void StructConstrainedInterfaceCallsTest() cil managed { .maxstack 10 ldstr "===================== Struct Constrained Interface Calls Test =====================" call void [mscorlib]System.Console::WriteLine(string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static void CalliTest() cil managed { .maxstack 10 .locals init (object V_0) ldstr "========================== Method Calli Test ==========================" call void [mscorlib]System.Console::WriteLine(string) newobj instance void class G3_C1437`1<class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod2299<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1339<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1338<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1337() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1336() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::ClassMethod4261<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G3_C1437::ClassMethod4261.16171<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::ClassMethod4260<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G3_C1437::ClassMethod4260.16170<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::Method3<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G3_C1437::Method3.16168<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::Method2<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G3_C1437::Method2.16167<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::Method1() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G3_C1437::Method1.16165()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::Method0() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G3_C1437::Method0.16164()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::ClassMethod2299<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::Method5() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::Method4() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::Method4.9260()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::ClassMethod1339<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::ClassMethod1338<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::ClassMethod1337() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass0> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass0>::ClassMethod1336() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G3_C1437`1<class BaseClass0> on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method0() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G3_C1437::Method0.16164()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method1() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G3_C1437::Method1.MI.16166()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method2<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G3_C1437::Method2.16167<System.Object>()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method3<object>() calli default string(class G3_C1437`1<class BaseClass0>) ldstr "G3_C1437::Method3.MI.16169<System.Object>()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G3_C1437`1<class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod2299<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1339<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1338<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1337() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1336() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::ClassMethod4261<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G3_C1437::ClassMethod4261.16171<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::ClassMethod4260<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G3_C1437::ClassMethod4260.16170<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::Method3<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G3_C1437::Method3.16168<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::Method2<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G3_C1437::Method2.16167<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::Method1() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G3_C1437::Method1.16165()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::Method0() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G3_C1437::Method0.16164()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::ClassMethod2299<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::Method7<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::Method6<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::Method5() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::Method4() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::Method4.9260()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::ClassMethod1339<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::ClassMethod1338<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::ClassMethod1337() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G3_C1437`1<class BaseClass1> ldloc.0 ldvirtftn instance string class G3_C1437`1<class BaseClass1>::ClassMethod1336() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G3_C1437`1<class BaseClass1> on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method0() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G3_C1437::Method0.16164()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method1() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G3_C1437::Method1.MI.16166()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method2<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G3_C1437::Method2.16167<System.Object>()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string IBase0::Method3<object>() calli default string(class G3_C1437`1<class BaseClass1>) ldstr "G3_C1437::Method3.MI.16169<System.Object>()" ldstr "IBase0 on type class G3_C1437`1<class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C470`2<class BaseClass0,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod2299<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1337() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass0>::ClassMethod1336() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass0>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C470`2<class BaseClass0,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod2299<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method6<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method5() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass1>::Method4() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1339<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1338<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1337() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass0,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass0,class BaseClass1>::ClassMethod1336() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G2_C470`2<class BaseClass0,class BaseClass1>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass0,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C470`2<class BaseClass1,class BaseClass0>::.ctor() stloc.0 ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod2299<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method7<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method6<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method5() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass0>::Method4() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1339<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1338<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1337() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass0> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass0>::ClassMethod1336() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass0>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass0>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) newobj instance void class G2_C470`2<class BaseClass1,class BaseClass1>::.ctor() stloc.0 ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1339<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1338<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1337() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::ClassMethod1336() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method6<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method5() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method4() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G1_C9::Method4.4834()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G1_C9`2<class BaseClass0,class BaseClass0> ldloc.0 ldvirtftn instance string class G1_C9`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G1_C9`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass0>::Method7<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method4() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method5() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass0>::Method6<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass0> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass0,class BaseClass1>::Method7<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass0,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod2299<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::ClassMethod2299.9266<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method6<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method6.9263<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method5() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::Method4() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method4.9260()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1339<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G1_C9::ClassMethod1339.4843<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1338<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::ClassMethod1338.MI.9268<System.Object>()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1337() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::ClassMethod1337.MI.9267()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 castclass class G2_C470`2<class BaseClass1,class BaseClass1> ldloc.0 ldvirtftn instance string class G2_C470`2<class BaseClass1,class BaseClass1>::ClassMethod1336() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G1_C9::ClassMethod1336.4840()" ldstr "class G2_C470`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method4() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method4.MI.9261()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method5() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method5.9262()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase1`1<class BaseClass1>::Method6<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method6.MI.9264<System.Object>()" ldstr "class IBase1`1<class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldloc.0 ldloc.0 ldvirtftn instance string class IBase2`2<class BaseClass1,class BaseClass1>::Method7<object>() calli default string(class G2_C470`2<class BaseClass1,class BaseClass1>) ldstr "G2_C470::Method7.9265<System.Object>()" ldstr "class IBase2`2<class BaseClass1,class BaseClass1> on type class G2_C470`2<class BaseClass1,class BaseClass1>" call void [TestFramework]TestFramework::MethodCallTest(string,string,string) ldstr "========================================================================\n\n" call void [mscorlib]System.Console::WriteLine(string) ret } .method public hidebysig static int32 Main() cil managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 10 call void Generated965::MethodCallingTest() call void Generated965::ConstrainedCallsTest() call void Generated965::StructConstrainedInterfaceCallsTest() call void Generated965::CalliTest() ldc.i4 100 ret } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/Loader/classloader/nesting/Tests/nesting7.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern System.Console { auto } .assembly extern xunit.core {} .assembly extern mscorlib { auto } // model revision #2 // To compile: ilasm nesting7.il /err .assembly nesting7{} // Nesting module: PureManaged // Nesting location: MainModule // enclosing type // kind: Interface // flag: abstract // visibility: private // generics: Nongeneric // depends on nested: StaticField .class interface abstract private EnclType { // nested type // kind: Delegate // flag: sealed // visibility: assembly // generics: Nongeneric // depends on enclosing: None .class sealed nested assembly NestedType extends [mscorlib]System.MulticastDelegate { // nested member visibility: assembly .method assembly hidebysig specialname rtspecialname instance void .ctor(object 'object', native int 'method') runtime managed {} .method assembly hidebysig newslot virtual instance void Invoke(int32 i) runtime managed {} .method assembly hidebysig newslot virtual instance class [mscorlib]System.IAsyncResult BeginInvoke(int32 i, class [mscorlib]System.AsyncCallback callback, object 'object') runtime managed {} .method assembly hidebysig newslot virtual instance void EndInvoke(class [mscorlib]System.IAsyncResult result) runtime managed {} } // enclosing depends on nested: StaticField // enclosing member visibility: assembly .field assembly static class EnclType/NestedType sNestClass .method public hidebysig static void TakesADelegate(class EnclType/NestedType SomeFunction) cil managed { ldarg.0 ldc.i4.s 21 callvirt instance void EnclType/NestedType::Invoke(int32) ret } .method public hidebysig static void DelegateFunction(int32 i) cil managed { ret } } // Client module: PureManaged // Client location: MainModule // Client interaction: ImplementsEncl .class public Client implements EnclType { .method public specialname instance void .ctor() cil managed { .maxstack 8 ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } .method public hidebysig instance void method2() { // create the delegate which is a static field of EnclType ldarg.0 ldftn void class EnclType::DelegateFunction(int32) newobj instance void class EnclType/NestedType::.ctor(object, native int) stsfld class EnclType/NestedType class EnclType::sNestClass ldsfld class EnclType/NestedType class EnclType::sNestClass call void class EnclType::TakesADelegate(class EnclType/NestedType) ret } } // entry point location: GlobalManaged .method public static int32 Main() { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .locals init (class [mscorlib]System.Exception V_0, int32 V_1) .try { newobj instance void class Client::.ctor() call instance void class Client::method2() ldstr "PASS" call void [System.Console]System.Console::WriteLine(string) ldc.i4.s 100 stloc.1 leave.s end } catch [mscorlib]System.Exception { stloc.0 ldstr "{0}Caught unexpected exception." ldloc.0 call void [System.Console]System.Console::WriteLine(string,object) ldstr "FAIL" call void [System.Console]System.Console::WriteLine(string) ldc.i4.s 101 stloc.1 leave.s end } end: ldloc.1 ret }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern System.Console { auto } .assembly extern xunit.core {} .assembly extern mscorlib { auto } // model revision #2 // To compile: ilasm nesting7.il /err .assembly nesting7{} // Nesting module: PureManaged // Nesting location: MainModule // enclosing type // kind: Interface // flag: abstract // visibility: private // generics: Nongeneric // depends on nested: StaticField .class interface abstract private EnclType { // nested type // kind: Delegate // flag: sealed // visibility: assembly // generics: Nongeneric // depends on enclosing: None .class sealed nested assembly NestedType extends [mscorlib]System.MulticastDelegate { // nested member visibility: assembly .method assembly hidebysig specialname rtspecialname instance void .ctor(object 'object', native int 'method') runtime managed {} .method assembly hidebysig newslot virtual instance void Invoke(int32 i) runtime managed {} .method assembly hidebysig newslot virtual instance class [mscorlib]System.IAsyncResult BeginInvoke(int32 i, class [mscorlib]System.AsyncCallback callback, object 'object') runtime managed {} .method assembly hidebysig newslot virtual instance void EndInvoke(class [mscorlib]System.IAsyncResult result) runtime managed {} } // enclosing depends on nested: StaticField // enclosing member visibility: assembly .field assembly static class EnclType/NestedType sNestClass .method public hidebysig static void TakesADelegate(class EnclType/NestedType SomeFunction) cil managed { ldarg.0 ldc.i4.s 21 callvirt instance void EnclType/NestedType::Invoke(int32) ret } .method public hidebysig static void DelegateFunction(int32 i) cil managed { ret } } // Client module: PureManaged // Client location: MainModule // Client interaction: ImplementsEncl .class public Client implements EnclType { .method public specialname instance void .ctor() cil managed { .maxstack 8 ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } .method public hidebysig instance void method2() { // create the delegate which is a static field of EnclType ldarg.0 ldftn void class EnclType::DelegateFunction(int32) newobj instance void class EnclType/NestedType::.ctor(object, native int) stsfld class EnclType/NestedType class EnclType::sNestClass ldsfld class EnclType/NestedType class EnclType::sNestClass call void class EnclType::TakesADelegate(class EnclType/NestedType) ret } } // entry point location: GlobalManaged .method public static int32 Main() { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .locals init (class [mscorlib]System.Exception V_0, int32 V_1) .try { newobj instance void class Client::.ctor() call instance void class Client::method2() ldstr "PASS" call void [System.Console]System.Console::WriteLine(string) ldc.i4.s 100 stloc.1 leave.s end } catch [mscorlib]System.Exception { stloc.0 ldstr "{0}Caught unexpected exception." ldloc.0 call void [System.Console]System.Console::WriteLine(string,object) ldstr "FAIL" call void [System.Console]System.Console::WriteLine(string) ldc.i4.s 101 stloc.1 leave.s end } end: ldloc.1 ret }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/libraries/System.Linq.Expressions/src/System/Dynamic/Utils/EmptyReadOnlyCollection.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Collections.ObjectModel; using System.Runtime.CompilerServices; namespace System.Dynamic.Utils { internal static class EmptyReadOnlyCollection<T> { public static readonly ReadOnlyCollection<T> Instance = new TrueReadOnlyCollection<T>(Array.Empty<T>()); } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Collections.ObjectModel; using System.Runtime.CompilerServices; namespace System.Dynamic.Utils { internal static class EmptyReadOnlyCollection<T> { public static readonly ReadOnlyCollection<T> Instance = new TrueReadOnlyCollection<T>(Array.Empty<T>()); } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/Methodical/localloc/call/call01_small.csproj
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <CLRTestPriority>1</CLRTestPriority> </PropertyGroup> <PropertyGroup> <!-- Set to 'Full' if the Debug? column is marked in the spreadsheet. Leave blank otherwise. --> <DebugType>PdbOnly</DebugType> <AllowUnsafeBlocks>True</AllowUnsafeBlocks> <DefineConstants>$(DefineConstants);LOCALLOC_SMALL</DefineConstants> <NoWarn>$(NoWarn),8002</NoWarn> </PropertyGroup> <ItemGroup> <Compile Include="call01.cs" /> <ProjectReference Include="..\..\..\common\localloc_common.ilproj" /> </ItemGroup> </Project>
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <CLRTestPriority>1</CLRTestPriority> </PropertyGroup> <PropertyGroup> <!-- Set to 'Full' if the Debug? column is marked in the spreadsheet. Leave blank otherwise. --> <DebugType>PdbOnly</DebugType> <AllowUnsafeBlocks>True</AllowUnsafeBlocks> <DefineConstants>$(DefineConstants);LOCALLOC_SMALL</DefineConstants> <NoWarn>$(NoWarn),8002</NoWarn> </PropertyGroup> <ItemGroup> <Compile Include="call01.cs" /> <ProjectReference Include="..\..\..\common\localloc_common.ilproj" /> </ItemGroup> </Project>
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/libraries/System.Net.Mail/src/System/Net/Mime/Base64Encoder.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Diagnostics; namespace System.Net.Mime { internal sealed class Base64Encoder : ByteEncoder { private static ReadOnlySpan<byte> Base64EncodeMap => new byte[] { 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, 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, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 43, 47, 61 }; //the number of bytes needed to encode three bytes private const int SizeOfBase64EncodedBlock = 4; private readonly int _lineLength; private readonly Base64WriteStateInfo _writeState; internal override WriteStateInfoBase WriteState { get { Debug.Assert(_writeState != null, "_writeState was null"); return _writeState; } } internal Base64Encoder(Base64WriteStateInfo writeStateInfo, int lineLength) { _writeState = writeStateInfo; _lineLength = lineLength; } protected override bool HasSpecialEncodingForCRLF => false; // no special encoding of CRLF in Base64. this method will not be used protected override void AppendEncodedCRLF() { throw new InvalidOperationException(); } protected override bool LineBreakNeeded(byte b) { return LineBreakNeeded(1); } protected override bool LineBreakNeeded(byte[] bytes, int count) { return LineBreakNeeded(count); } private bool LineBreakNeeded(int numberOfBytesToAppend) { if (_lineLength == -1) { return false; } int bytesLeftInCurrentBlock; int numberOfCharsLeftInCurrentBlock; switch (_writeState.Padding) { case 2: // 1 byte was encoded from 3 bytesLeftInCurrentBlock = 2; numberOfCharsLeftInCurrentBlock = 3; break; case 1: // 2 bytes were encoded from 3 bytesLeftInCurrentBlock = 1; numberOfCharsLeftInCurrentBlock = 2; break; case 0: // all 3 bytes were encoded bytesLeftInCurrentBlock = 0; numberOfCharsLeftInCurrentBlock = 0; break; default: Debug.Fail("paddind was not in range [0,2]"); bytesLeftInCurrentBlock = 0; numberOfCharsLeftInCurrentBlock = 0; break; } int numberOfBytesInNewBlock = numberOfBytesToAppend - bytesLeftInCurrentBlock; if (numberOfBytesInNewBlock <= 0) { return false; } int numberOfBlocksToAppend = numberOfBytesInNewBlock / 3 + (numberOfBytesInNewBlock % 3 == 0 ? 0 : 1); int numberOfCharsToAppend = numberOfCharsLeftInCurrentBlock + numberOfBlocksToAppend * SizeOfBase64EncodedBlock; return WriteState.CurrentLineLength + numberOfCharsToAppend + _writeState.FooterLength > _lineLength; } protected override int GetCodepointSize(string value, int i) { return IsSurrogatePair(value, i) ? 2 : 1; } public override void AppendPadding() { switch (_writeState.Padding) { case 0: // No padding needed break; case 2: // 2 character padding needed (1 byte was encoded instead of 3) _writeState.Append(Base64EncodeMap[_writeState.LastBits]); _writeState.Append(Base64EncodeMap[64]); _writeState.Append(Base64EncodeMap[64]); _writeState.Padding = 0; break; case 1: // 1 character padding needed (2 bytes were encoded instead of 3) _writeState.Append(Base64EncodeMap[_writeState.LastBits]); _writeState.Append(Base64EncodeMap[64]); _writeState.Padding = 0; break; default: Debug.Fail("paddind was not in range [0,2]"); break; } } protected override void ApppendEncodedByte(byte b) { // Base64 encoding transforms a group of 3 bytes into a group of 4 Base64 characters switch (_writeState.Padding) { case 0: // Add first byte of 3 _writeState.Append(Base64EncodeMap[(b & 0xfc) >> 2]); _writeState.LastBits = (byte)((b & 0x03) << 4); _writeState.Padding = 2; break; case 2: // Add second byte of 3 _writeState.Append(Base64EncodeMap[_writeState.LastBits | ((b & 0xf0) >> 4)]); _writeState.LastBits = (byte)((b & 0x0f) << 2); _writeState.Padding = 1; break; case 1: // Add third byte of 3 _writeState.Append(Base64EncodeMap[_writeState.LastBits | ((b & 0xc0) >> 6)]); _writeState.Append(Base64EncodeMap[(b & 0x3f)]); _writeState.Padding = 0; break; default: Debug.Fail("paddind was not in range [0,2]"); break; } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Diagnostics; namespace System.Net.Mime { internal sealed class Base64Encoder : ByteEncoder { private static ReadOnlySpan<byte> Base64EncodeMap => new byte[] { 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, 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, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 43, 47, 61 }; //the number of bytes needed to encode three bytes private const int SizeOfBase64EncodedBlock = 4; private readonly int _lineLength; private readonly Base64WriteStateInfo _writeState; internal override WriteStateInfoBase WriteState { get { Debug.Assert(_writeState != null, "_writeState was null"); return _writeState; } } internal Base64Encoder(Base64WriteStateInfo writeStateInfo, int lineLength) { _writeState = writeStateInfo; _lineLength = lineLength; } protected override bool HasSpecialEncodingForCRLF => false; // no special encoding of CRLF in Base64. this method will not be used protected override void AppendEncodedCRLF() { throw new InvalidOperationException(); } protected override bool LineBreakNeeded(byte b) { return LineBreakNeeded(1); } protected override bool LineBreakNeeded(byte[] bytes, int count) { return LineBreakNeeded(count); } private bool LineBreakNeeded(int numberOfBytesToAppend) { if (_lineLength == -1) { return false; } int bytesLeftInCurrentBlock; int numberOfCharsLeftInCurrentBlock; switch (_writeState.Padding) { case 2: // 1 byte was encoded from 3 bytesLeftInCurrentBlock = 2; numberOfCharsLeftInCurrentBlock = 3; break; case 1: // 2 bytes were encoded from 3 bytesLeftInCurrentBlock = 1; numberOfCharsLeftInCurrentBlock = 2; break; case 0: // all 3 bytes were encoded bytesLeftInCurrentBlock = 0; numberOfCharsLeftInCurrentBlock = 0; break; default: Debug.Fail("paddind was not in range [0,2]"); bytesLeftInCurrentBlock = 0; numberOfCharsLeftInCurrentBlock = 0; break; } int numberOfBytesInNewBlock = numberOfBytesToAppend - bytesLeftInCurrentBlock; if (numberOfBytesInNewBlock <= 0) { return false; } int numberOfBlocksToAppend = numberOfBytesInNewBlock / 3 + (numberOfBytesInNewBlock % 3 == 0 ? 0 : 1); int numberOfCharsToAppend = numberOfCharsLeftInCurrentBlock + numberOfBlocksToAppend * SizeOfBase64EncodedBlock; return WriteState.CurrentLineLength + numberOfCharsToAppend + _writeState.FooterLength > _lineLength; } protected override int GetCodepointSize(string value, int i) { return IsSurrogatePair(value, i) ? 2 : 1; } public override void AppendPadding() { switch (_writeState.Padding) { case 0: // No padding needed break; case 2: // 2 character padding needed (1 byte was encoded instead of 3) _writeState.Append(Base64EncodeMap[_writeState.LastBits]); _writeState.Append(Base64EncodeMap[64]); _writeState.Append(Base64EncodeMap[64]); _writeState.Padding = 0; break; case 1: // 1 character padding needed (2 bytes were encoded instead of 3) _writeState.Append(Base64EncodeMap[_writeState.LastBits]); _writeState.Append(Base64EncodeMap[64]); _writeState.Padding = 0; break; default: Debug.Fail("paddind was not in range [0,2]"); break; } } protected override void ApppendEncodedByte(byte b) { // Base64 encoding transforms a group of 3 bytes into a group of 4 Base64 characters switch (_writeState.Padding) { case 0: // Add first byte of 3 _writeState.Append(Base64EncodeMap[(b & 0xfc) >> 2]); _writeState.LastBits = (byte)((b & 0x03) << 4); _writeState.Padding = 2; break; case 2: // Add second byte of 3 _writeState.Append(Base64EncodeMap[_writeState.LastBits | ((b & 0xf0) >> 4)]); _writeState.LastBits = (byte)((b & 0x0f) << 2); _writeState.Padding = 1; break; case 1: // Add third byte of 3 _writeState.Append(Base64EncodeMap[_writeState.LastBits | ((b & 0xc0) >> 6)]); _writeState.Append(Base64EncodeMap[(b & 0x3f)]); _writeState.Padding = 0; break; default: Debug.Fail("paddind was not in range [0,2]"); break; } } } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/Loader/classloader/generics/Layout/General/Base01b_auto_ser.csproj
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <OutputType>Exe</OutputType> <CLRTestPriority>1</CLRTestPriority> </PropertyGroup> <ItemGroup> <Compile Include="Base01b_auto_ser.cs" /> </ItemGroup> </Project>
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <OutputType>Exe</OutputType> <CLRTestPriority>1</CLRTestPriority> </PropertyGroup> <ItemGroup> <Compile Include="Base01b_auto_ser.cs" /> </ItemGroup> </Project>
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/HardwareIntrinsics/General/Vector256/Abs.Int64.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /****************************************************************************** * This file is auto-generated from a template file by the GenerateTests.csx * * script in tests\src\JIT\HardwareIntrinsics\X86\Shared. In order to make * * changes, please update the corresponding template and run according to the * * directions listed in the file. * ******************************************************************************/ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Intrinsics; namespace JIT.HardwareIntrinsics.General { public static partial class Program { private static void AbsInt64() { var test = new VectorUnaryOpTest__AbsInt64(); // Validates basic functionality works, using Unsafe.Read test.RunBasicScenario_UnsafeRead(); // Validates calling via reflection works, using Unsafe.Read test.RunReflectionScenario_UnsafeRead(); // Validates passing a static member works test.RunClsVarScenario(); // Validates passing a local works, using Unsafe.Read test.RunLclVarScenario_UnsafeRead(); // Validates passing the field of a local class works test.RunClassLclFldScenario(); // Validates passing an instance member of a class works test.RunClassFldScenario(); // Validates passing the field of a local struct works test.RunStructLclFldScenario(); // Validates passing an instance member of a struct works test.RunStructFldScenario(); if (!test.Succeeded) { throw new Exception("One or more scenarios did not complete as expected."); } } } public sealed unsafe class VectorUnaryOpTest__AbsInt64 { private struct DataTable { private byte[] inArray1; private byte[] outArray; private GCHandle inHandle1; private GCHandle outHandle; private ulong alignment; public DataTable(Int64[] inArray1, Int64[] outArray, int alignment) { int sizeOfinArray1 = inArray1.Length * Unsafe.SizeOf<Int64>(); int sizeOfoutArray = outArray.Length * Unsafe.SizeOf<Int64>(); if ((alignment != 32 && alignment != 16 && alignment != 8) || (alignment * 2) < sizeOfinArray1 || (alignment * 2) < sizeOfoutArray) { throw new ArgumentException("Invalid value of alignment"); } this.inArray1 = new byte[alignment * 2]; this.outArray = new byte[alignment * 2]; this.inHandle1 = GCHandle.Alloc(this.inArray1, GCHandleType.Pinned); this.outHandle = GCHandle.Alloc(this.outArray, GCHandleType.Pinned); this.alignment = (ulong)alignment; Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray1Ptr), ref Unsafe.As<Int64, byte>(ref inArray1[0]), (uint)sizeOfinArray1); } public void* inArray1Ptr => Align((byte*)(inHandle1.AddrOfPinnedObject().ToPointer()), alignment); public void* outArrayPtr => Align((byte*)(outHandle.AddrOfPinnedObject().ToPointer()), alignment); public void Dispose() { inHandle1.Free(); outHandle.Free(); } private static unsafe void* Align(byte* buffer, ulong expectedAlignment) { return (void*)(((ulong)buffer + expectedAlignment - 1) & ~(expectedAlignment - 1)); } } private struct TestStruct { public Vector256<Int64> _fld1; public static TestStruct Create() { var testStruct = new TestStruct(); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector256<Int64>, byte>(ref testStruct._fld1), ref Unsafe.As<Int64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector256<Int64>>()); return testStruct; } public void RunStructFldScenario(VectorUnaryOpTest__AbsInt64 testClass) { var result = Vector256.Abs(_fld1); Unsafe.Write(testClass._dataTable.outArrayPtr, result); testClass.ValidateResult(_fld1, testClass._dataTable.outArrayPtr); } } private static readonly int LargestVectorSize = 32; private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector256<Int64>>() / sizeof(Int64); private static readonly int RetElementCount = Unsafe.SizeOf<Vector256<Int64>>() / sizeof(Int64); private static Int64[] _data1 = new Int64[Op1ElementCount]; private static Vector256<Int64> _clsVar1; private Vector256<Int64> _fld1; private DataTable _dataTable; static VectorUnaryOpTest__AbsInt64() { for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector256<Int64>, byte>(ref _clsVar1), ref Unsafe.As<Int64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector256<Int64>>()); } public VectorUnaryOpTest__AbsInt64() { Succeeded = true; for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector256<Int64>, byte>(ref _fld1), ref Unsafe.As<Int64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector256<Int64>>()); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt64(); } _dataTable = new DataTable(_data1, new Int64[RetElementCount], LargestVectorSize); } public bool Succeeded { get; set; } public void RunBasicScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead)); var result = Vector256.Abs( Unsafe.Read<Vector256<Int64>>(_dataTable.inArray1Ptr) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead)); var method = typeof(Vector256).GetMethod(nameof(Vector256.Abs), new Type[] { typeof(Vector256<Int64>) }); if (method is null) { method = typeof(Vector256).GetMethod(nameof(Vector256.Abs), 1, new Type[] { typeof(Vector256<>).MakeGenericType(Type.MakeGenericMethodParameter(0)) }); } if (method.IsGenericMethodDefinition) { method = method.MakeGenericMethod(typeof(Int64)); } var result = method.Invoke(null, new object[] { Unsafe.Read<Vector256<Int64>>(_dataTable.inArray1Ptr) }); Unsafe.Write(_dataTable.outArrayPtr, (Vector256<Int64>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.outArrayPtr); } public void RunClsVarScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario)); var result = Vector256.Abs( _clsVar1 ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_clsVar1, _dataTable.outArrayPtr); } public void RunLclVarScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead)); var op1 = Unsafe.Read<Vector256<Int64>>(_dataTable.inArray1Ptr); var result = Vector256.Abs(op1); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(op1, _dataTable.outArrayPtr); } public void RunClassLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario)); var test = new VectorUnaryOpTest__AbsInt64(); var result = Vector256.Abs(test._fld1); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, _dataTable.outArrayPtr); } public void RunClassFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario)); var result = Vector256.Abs(_fld1); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_fld1, _dataTable.outArrayPtr); } public void RunStructLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario)); var test = TestStruct.Create(); var result = Vector256.Abs(test._fld1); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, _dataTable.outArrayPtr); } public void RunStructFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario)); var test = TestStruct.Create(); test.RunStructFldScenario(this); } private void ValidateResult(Vector256<Int64> op1, void* result, [CallerMemberName] string method = "") { Int64[] inArray1 = new Int64[Op1ElementCount]; Int64[] outArray = new Int64[RetElementCount]; Unsafe.WriteUnaligned(ref Unsafe.As<Int64, byte>(ref inArray1[0]), op1); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int64, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector256<Int64>>()); ValidateResult(inArray1, outArray, method); } private void ValidateResult(void* op1, void* result, [CallerMemberName] string method = "") { Int64[] inArray1 = new Int64[Op1ElementCount]; Int64[] outArray = new Int64[RetElementCount]; Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int64, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(op1), (uint)Unsafe.SizeOf<Vector256<Int64>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int64, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector256<Int64>>()); ValidateResult(inArray1, outArray, method); } private void ValidateResult(Int64[] firstOp, Int64[] result, [CallerMemberName] string method = "") { bool succeeded = true; if (result[0] != Math.Abs(firstOp[0])) { succeeded = false; } else { for (var i = 1; i < RetElementCount; i++) { if (result[i] != Math.Abs(firstOp[i])) { succeeded = false; break; } } } if (!succeeded) { TestLibrary.TestFramework.LogInformation($"{nameof(Vector256)}.{nameof(Vector256.Abs)}<Int64>(Vector256<Int64>): {method} failed:"); TestLibrary.TestFramework.LogInformation($" firstOp: ({string.Join(", ", firstOp)})"); TestLibrary.TestFramework.LogInformation($" result: ({string.Join(", ", result)})"); TestLibrary.TestFramework.LogInformation(string.Empty); Succeeded = false; } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /****************************************************************************** * This file is auto-generated from a template file by the GenerateTests.csx * * script in tests\src\JIT\HardwareIntrinsics\X86\Shared. In order to make * * changes, please update the corresponding template and run according to the * * directions listed in the file. * ******************************************************************************/ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Intrinsics; namespace JIT.HardwareIntrinsics.General { public static partial class Program { private static void AbsInt64() { var test = new VectorUnaryOpTest__AbsInt64(); // Validates basic functionality works, using Unsafe.Read test.RunBasicScenario_UnsafeRead(); // Validates calling via reflection works, using Unsafe.Read test.RunReflectionScenario_UnsafeRead(); // Validates passing a static member works test.RunClsVarScenario(); // Validates passing a local works, using Unsafe.Read test.RunLclVarScenario_UnsafeRead(); // Validates passing the field of a local class works test.RunClassLclFldScenario(); // Validates passing an instance member of a class works test.RunClassFldScenario(); // Validates passing the field of a local struct works test.RunStructLclFldScenario(); // Validates passing an instance member of a struct works test.RunStructFldScenario(); if (!test.Succeeded) { throw new Exception("One or more scenarios did not complete as expected."); } } } public sealed unsafe class VectorUnaryOpTest__AbsInt64 { private struct DataTable { private byte[] inArray1; private byte[] outArray; private GCHandle inHandle1; private GCHandle outHandle; private ulong alignment; public DataTable(Int64[] inArray1, Int64[] outArray, int alignment) { int sizeOfinArray1 = inArray1.Length * Unsafe.SizeOf<Int64>(); int sizeOfoutArray = outArray.Length * Unsafe.SizeOf<Int64>(); if ((alignment != 32 && alignment != 16 && alignment != 8) || (alignment * 2) < sizeOfinArray1 || (alignment * 2) < sizeOfoutArray) { throw new ArgumentException("Invalid value of alignment"); } this.inArray1 = new byte[alignment * 2]; this.outArray = new byte[alignment * 2]; this.inHandle1 = GCHandle.Alloc(this.inArray1, GCHandleType.Pinned); this.outHandle = GCHandle.Alloc(this.outArray, GCHandleType.Pinned); this.alignment = (ulong)alignment; Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray1Ptr), ref Unsafe.As<Int64, byte>(ref inArray1[0]), (uint)sizeOfinArray1); } public void* inArray1Ptr => Align((byte*)(inHandle1.AddrOfPinnedObject().ToPointer()), alignment); public void* outArrayPtr => Align((byte*)(outHandle.AddrOfPinnedObject().ToPointer()), alignment); public void Dispose() { inHandle1.Free(); outHandle.Free(); } private static unsafe void* Align(byte* buffer, ulong expectedAlignment) { return (void*)(((ulong)buffer + expectedAlignment - 1) & ~(expectedAlignment - 1)); } } private struct TestStruct { public Vector256<Int64> _fld1; public static TestStruct Create() { var testStruct = new TestStruct(); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector256<Int64>, byte>(ref testStruct._fld1), ref Unsafe.As<Int64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector256<Int64>>()); return testStruct; } public void RunStructFldScenario(VectorUnaryOpTest__AbsInt64 testClass) { var result = Vector256.Abs(_fld1); Unsafe.Write(testClass._dataTable.outArrayPtr, result); testClass.ValidateResult(_fld1, testClass._dataTable.outArrayPtr); } } private static readonly int LargestVectorSize = 32; private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector256<Int64>>() / sizeof(Int64); private static readonly int RetElementCount = Unsafe.SizeOf<Vector256<Int64>>() / sizeof(Int64); private static Int64[] _data1 = new Int64[Op1ElementCount]; private static Vector256<Int64> _clsVar1; private Vector256<Int64> _fld1; private DataTable _dataTable; static VectorUnaryOpTest__AbsInt64() { for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector256<Int64>, byte>(ref _clsVar1), ref Unsafe.As<Int64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector256<Int64>>()); } public VectorUnaryOpTest__AbsInt64() { Succeeded = true; for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector256<Int64>, byte>(ref _fld1), ref Unsafe.As<Int64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector256<Int64>>()); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt64(); } _dataTable = new DataTable(_data1, new Int64[RetElementCount], LargestVectorSize); } public bool Succeeded { get; set; } public void RunBasicScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead)); var result = Vector256.Abs( Unsafe.Read<Vector256<Int64>>(_dataTable.inArray1Ptr) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead)); var method = typeof(Vector256).GetMethod(nameof(Vector256.Abs), new Type[] { typeof(Vector256<Int64>) }); if (method is null) { method = typeof(Vector256).GetMethod(nameof(Vector256.Abs), 1, new Type[] { typeof(Vector256<>).MakeGenericType(Type.MakeGenericMethodParameter(0)) }); } if (method.IsGenericMethodDefinition) { method = method.MakeGenericMethod(typeof(Int64)); } var result = method.Invoke(null, new object[] { Unsafe.Read<Vector256<Int64>>(_dataTable.inArray1Ptr) }); Unsafe.Write(_dataTable.outArrayPtr, (Vector256<Int64>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.outArrayPtr); } public void RunClsVarScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario)); var result = Vector256.Abs( _clsVar1 ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_clsVar1, _dataTable.outArrayPtr); } public void RunLclVarScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead)); var op1 = Unsafe.Read<Vector256<Int64>>(_dataTable.inArray1Ptr); var result = Vector256.Abs(op1); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(op1, _dataTable.outArrayPtr); } public void RunClassLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario)); var test = new VectorUnaryOpTest__AbsInt64(); var result = Vector256.Abs(test._fld1); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, _dataTable.outArrayPtr); } public void RunClassFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario)); var result = Vector256.Abs(_fld1); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_fld1, _dataTable.outArrayPtr); } public void RunStructLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario)); var test = TestStruct.Create(); var result = Vector256.Abs(test._fld1); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, _dataTable.outArrayPtr); } public void RunStructFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario)); var test = TestStruct.Create(); test.RunStructFldScenario(this); } private void ValidateResult(Vector256<Int64> op1, void* result, [CallerMemberName] string method = "") { Int64[] inArray1 = new Int64[Op1ElementCount]; Int64[] outArray = new Int64[RetElementCount]; Unsafe.WriteUnaligned(ref Unsafe.As<Int64, byte>(ref inArray1[0]), op1); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int64, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector256<Int64>>()); ValidateResult(inArray1, outArray, method); } private void ValidateResult(void* op1, void* result, [CallerMemberName] string method = "") { Int64[] inArray1 = new Int64[Op1ElementCount]; Int64[] outArray = new Int64[RetElementCount]; Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int64, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(op1), (uint)Unsafe.SizeOf<Vector256<Int64>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int64, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector256<Int64>>()); ValidateResult(inArray1, outArray, method); } private void ValidateResult(Int64[] firstOp, Int64[] result, [CallerMemberName] string method = "") { bool succeeded = true; if (result[0] != Math.Abs(firstOp[0])) { succeeded = false; } else { for (var i = 1; i < RetElementCount; i++) { if (result[i] != Math.Abs(firstOp[i])) { succeeded = false; break; } } } if (!succeeded) { TestLibrary.TestFramework.LogInformation($"{nameof(Vector256)}.{nameof(Vector256.Abs)}<Int64>(Vector256<Int64>): {method} failed:"); TestLibrary.TestFramework.LogInformation($" firstOp: ({string.Join(", ", firstOp)})"); TestLibrary.TestFramework.LogInformation($" result: ({string.Join(", ", result)})"); TestLibrary.TestFramework.LogInformation(string.Empty); Succeeded = false; } } } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/native/libs/System.Native/ios/netinet/icmp_var.h
/* * Copyright (c) 2000-2013 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ /* * Copyright (c) 1982, 1986, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#)icmp_var.h 8.1 (Berkeley) 6/10/93 * $FreeBSD: src/sys/netinet/icmp_var.h,v 1.15.2.1 2001/02/24 21:35:18 bmilekic Exp $ */ #ifndef _NETINET_ICMP_VAR_H_ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wreserved-id-macro" #define _NETINET_ICMP_VAR_H_ #pragma clang diagnostic pop #include <sys/appleapiopts.h> /* * Variables related to this implementation * of the internet control message protocol. */ struct icmpstat { /* statistics related to icmp packets generated */ u_int32_t icps_error; /* # of calls to icmp_error */ u_int32_t icps_oldshort; /* no error 'cuz old ip too short */ u_int32_t icps_oldicmp; /* no error 'cuz old was icmp */ u_int32_t icps_outhist[ICMP_MAXTYPE + 1]; /* statistics related to input messages processed */ u_int32_t icps_badcode; /* icmp_code out of range */ u_int32_t icps_tooshort; /* packet < ICMP_MINLEN */ u_int32_t icps_checksum; /* bad checksum */ u_int32_t icps_badlen; /* calculated bound mismatch */ u_int32_t icps_reflect; /* number of responses */ u_int32_t icps_inhist[ICMP_MAXTYPE + 1]; u_int32_t icps_bmcastecho;/* b/mcast echo requests dropped */ u_int32_t icps_bmcasttstamp; /* b/mcast tstamp requests dropped */ }; /* * Names for ICMP sysctl objects */ #define ICMPCTL_MASKREPL 1 /* allow replies to netmask requests */ #define ICMPCTL_STATS 2 /* statistics (read-only) */ #define ICMPCTL_ICMPLIM 3 #define ICMPCTL_TIMESTAMP 4 /* allow replies to time stamp requests */ #define ICMPCTL_MAXID 5 #ifdef BSD_KERNEL_PRIVATE #define ICMPCTL_NAMES { \ { 0, 0 }, \ { "maskrepl", CTLTYPE_INT }, \ { "stats", CTLTYPE_STRUCT }, \ { "icmplim", CTLTYPE_INT }, \ { "icmptimestamp", CTLTYPE_INT }, \ } SYSCTL_DECL(_net_inet_icmp); #ifdef ICMP_BANDLIM extern boolean_t badport_bandlim(int which); #endif #define BANDLIM_ICMP_UNREACH 0 #define BANDLIM_ICMP_ECHO 1 #define BANDLIM_ICMP_TSTAMP 2 #define BANDLIM_MAX 4 extern struct icmpstat icmpstat; #endif /* BSD_KERNEL_PRIVATE */ #endif /* _NETINET_ICMP_VAR_H_ */
/* * Copyright (c) 2000-2013 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ /* * Copyright (c) 1982, 1986, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#)icmp_var.h 8.1 (Berkeley) 6/10/93 * $FreeBSD: src/sys/netinet/icmp_var.h,v 1.15.2.1 2001/02/24 21:35:18 bmilekic Exp $ */ #ifndef _NETINET_ICMP_VAR_H_ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wreserved-id-macro" #define _NETINET_ICMP_VAR_H_ #pragma clang diagnostic pop #include <sys/appleapiopts.h> /* * Variables related to this implementation * of the internet control message protocol. */ struct icmpstat { /* statistics related to icmp packets generated */ u_int32_t icps_error; /* # of calls to icmp_error */ u_int32_t icps_oldshort; /* no error 'cuz old ip too short */ u_int32_t icps_oldicmp; /* no error 'cuz old was icmp */ u_int32_t icps_outhist[ICMP_MAXTYPE + 1]; /* statistics related to input messages processed */ u_int32_t icps_badcode; /* icmp_code out of range */ u_int32_t icps_tooshort; /* packet < ICMP_MINLEN */ u_int32_t icps_checksum; /* bad checksum */ u_int32_t icps_badlen; /* calculated bound mismatch */ u_int32_t icps_reflect; /* number of responses */ u_int32_t icps_inhist[ICMP_MAXTYPE + 1]; u_int32_t icps_bmcastecho;/* b/mcast echo requests dropped */ u_int32_t icps_bmcasttstamp; /* b/mcast tstamp requests dropped */ }; /* * Names for ICMP sysctl objects */ #define ICMPCTL_MASKREPL 1 /* allow replies to netmask requests */ #define ICMPCTL_STATS 2 /* statistics (read-only) */ #define ICMPCTL_ICMPLIM 3 #define ICMPCTL_TIMESTAMP 4 /* allow replies to time stamp requests */ #define ICMPCTL_MAXID 5 #ifdef BSD_KERNEL_PRIVATE #define ICMPCTL_NAMES { \ { 0, 0 }, \ { "maskrepl", CTLTYPE_INT }, \ { "stats", CTLTYPE_STRUCT }, \ { "icmplim", CTLTYPE_INT }, \ { "icmptimestamp", CTLTYPE_INT }, \ } SYSCTL_DECL(_net_inet_icmp); #ifdef ICMP_BANDLIM extern boolean_t badport_bandlim(int which); #endif #define BANDLIM_ICMP_UNREACH 0 #define BANDLIM_ICMP_ECHO 1 #define BANDLIM_ICMP_TSTAMP 2 #define BANDLIM_MAX 4 extern struct icmpstat icmpstat; #endif /* BSD_KERNEL_PRIVATE */ #endif /* _NETINET_ICMP_VAR_H_ */
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/libraries/System.Collections/System.Collections.sln
Microsoft Visual Studio Solution File, Format Version 12.00 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Private.CoreLib", "..\..\coreclr\System.Private.CoreLib\System.Private.CoreLib.csproj", "{4385739F-14A1-4F21-96E3-12EA90580575}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestUtilities", "..\Common\tests\TestUtilities\TestUtilities.csproj", "{38D8F258-655E-459B-B2CE-0DED144AFBF7}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Collections", "ref\System.Collections.csproj", "{77E9C47D-4AC4-4402-8613-40DF427174BD}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Collections", "src\System.Collections.csproj", "{DF501250-4105-4F79-A508-90B3A13A975A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Collections.Tests", "tests\System.Collections.Tests.csproj", "{BB54ED9D-FF71-4D91-B7C0-984AB0976798}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Private.CoreLib.Generators", "..\System.Private.CoreLib\gen\System.Private.CoreLib.Generators.csproj", "{F2E57833-4968-430D-8149-733DE03A7314}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LibraryImportGenerator", "..\System.Runtime.InteropServices\gen\LibraryImportGenerator\LibraryImportGenerator.csproj", "{389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Interop.SourceGeneration", "..\System.Runtime.InteropServices\gen\Microsoft.Interop.SourceGeneration\Microsoft.Interop.SourceGeneration.csproj", "{00398A78-1620-4996-9922-C82D1AF84714}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{C848C534-DD16-4A69-81FF-894456E4B099}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{6CD2C5E3-B5BA-4219-B8EF-9B5D486BF805}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ref", "ref", "{06AE90FB-F007-4E70-BCD2-5CAD106A7C97}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "gen", "gen", "{B958B834-96D2-4B18-AA42-22B312BE9925}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU Debug|x64 = Debug|x64 Debug|x86 = Debug|x86 Release|Any CPU = Release|Any CPU Release|x64 = Release|x64 Release|x86 = Release|x86 Checked|Any CPU = Checked|Any CPU Checked|x64 = Checked|x64 Checked|x86 = Checked|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {4385739F-14A1-4F21-96E3-12EA90580575}.Debug|Any CPU.ActiveCfg = Debug|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Debug|Any CPU.Build.0 = Debug|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Debug|x64.ActiveCfg = Debug|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Debug|x64.Build.0 = Debug|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Debug|x86.ActiveCfg = Debug|x86 {4385739F-14A1-4F21-96E3-12EA90580575}.Debug|x86.Build.0 = Debug|x86 {4385739F-14A1-4F21-96E3-12EA90580575}.Release|Any CPU.ActiveCfg = Release|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Release|Any CPU.Build.0 = Release|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Release|x64.ActiveCfg = Release|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Release|x64.Build.0 = Release|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Release|x86.ActiveCfg = Release|x86 {4385739F-14A1-4F21-96E3-12EA90580575}.Release|x86.Build.0 = Release|x86 {4385739F-14A1-4F21-96E3-12EA90580575}.Checked|Any CPU.ActiveCfg = Checked|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Checked|Any CPU.Build.0 = Checked|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Checked|x64.ActiveCfg = Checked|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Checked|x64.Build.0 = Checked|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Checked|x86.ActiveCfg = Checked|x86 {4385739F-14A1-4F21-96E3-12EA90580575}.Checked|x86.Build.0 = Checked|x86 {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Debug|Any CPU.Build.0 = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Debug|x64.ActiveCfg = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Debug|x64.Build.0 = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Debug|x86.ActiveCfg = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Debug|x86.Build.0 = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Release|Any CPU.ActiveCfg = Release|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Release|Any CPU.Build.0 = Release|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Release|x64.ActiveCfg = Release|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Release|x64.Build.0 = Release|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Release|x86.ActiveCfg = Release|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Release|x86.Build.0 = Release|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Checked|Any CPU.ActiveCfg = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Checked|Any CPU.Build.0 = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Checked|x64.ActiveCfg = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Checked|x64.Build.0 = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Checked|x86.ActiveCfg = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Checked|x86.Build.0 = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Debug|Any CPU.Build.0 = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Debug|x64.ActiveCfg = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Debug|x64.Build.0 = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Debug|x86.ActiveCfg = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Debug|x86.Build.0 = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Release|Any CPU.ActiveCfg = Release|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Release|Any CPU.Build.0 = Release|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Release|x64.ActiveCfg = Release|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Release|x64.Build.0 = Release|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Release|x86.ActiveCfg = Release|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Release|x86.Build.0 = Release|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Checked|Any CPU.ActiveCfg = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Checked|Any CPU.Build.0 = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Checked|x64.ActiveCfg = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Checked|x64.Build.0 = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Checked|x86.ActiveCfg = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Checked|x86.Build.0 = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Debug|Any CPU.Build.0 = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Debug|x64.ActiveCfg = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Debug|x64.Build.0 = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Debug|x86.ActiveCfg = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Debug|x86.Build.0 = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Release|Any CPU.ActiveCfg = Release|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Release|Any CPU.Build.0 = Release|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Release|x64.ActiveCfg = Release|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Release|x64.Build.0 = Release|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Release|x86.ActiveCfg = Release|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Release|x86.Build.0 = Release|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Checked|Any CPU.ActiveCfg = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Checked|Any CPU.Build.0 = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Checked|x64.ActiveCfg = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Checked|x64.Build.0 = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Checked|x86.ActiveCfg = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Checked|x86.Build.0 = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Debug|Any CPU.Build.0 = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Debug|x64.ActiveCfg = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Debug|x64.Build.0 = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Debug|x86.ActiveCfg = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Debug|x86.Build.0 = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Release|Any CPU.ActiveCfg = Release|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Release|Any CPU.Build.0 = Release|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Release|x64.ActiveCfg = Release|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Release|x64.Build.0 = Release|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Release|x86.ActiveCfg = Release|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Release|x86.Build.0 = Release|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Checked|Any CPU.ActiveCfg = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Checked|Any CPU.Build.0 = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Checked|x64.ActiveCfg = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Checked|x64.Build.0 = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Checked|x86.ActiveCfg = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Checked|x86.Build.0 = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Debug|Any CPU.Build.0 = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Debug|x64.ActiveCfg = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Debug|x64.Build.0 = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Debug|x86.ActiveCfg = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Debug|x86.Build.0 = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Release|Any CPU.ActiveCfg = Release|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Release|Any CPU.Build.0 = Release|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Release|x64.ActiveCfg = Release|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Release|x64.Build.0 = Release|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Release|x86.ActiveCfg = Release|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Release|x86.Build.0 = Release|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Checked|Any CPU.ActiveCfg = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Checked|Any CPU.Build.0 = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Checked|x64.ActiveCfg = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Checked|x64.Build.0 = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Checked|x86.ActiveCfg = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Checked|x86.Build.0 = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Debug|Any CPU.Build.0 = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Debug|x64.ActiveCfg = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Debug|x64.Build.0 = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Debug|x86.ActiveCfg = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Debug|x86.Build.0 = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Release|Any CPU.ActiveCfg = Release|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Release|Any CPU.Build.0 = Release|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Release|x64.ActiveCfg = Release|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Release|x64.Build.0 = Release|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Release|x86.ActiveCfg = Release|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Release|x86.Build.0 = Release|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Checked|Any CPU.ActiveCfg = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Checked|Any CPU.Build.0 = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Checked|x64.ActiveCfg = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Checked|x64.Build.0 = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Checked|x86.ActiveCfg = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Checked|x86.Build.0 = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Debug|Any CPU.Build.0 = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Debug|x64.ActiveCfg = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Debug|x64.Build.0 = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Debug|x86.ActiveCfg = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Debug|x86.Build.0 = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Release|Any CPU.ActiveCfg = Release|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Release|Any CPU.Build.0 = Release|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Release|x64.ActiveCfg = Release|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Release|x64.Build.0 = Release|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Release|x86.ActiveCfg = Release|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Release|x86.Build.0 = Release|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Checked|Any CPU.ActiveCfg = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Checked|Any CPU.Build.0 = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Checked|x64.ActiveCfg = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Checked|x64.Build.0 = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Checked|x86.ActiveCfg = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Checked|x86.Build.0 = Debug|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution {4385739F-14A1-4F21-96E3-12EA90580575} = {C848C534-DD16-4A69-81FF-894456E4B099} {DF501250-4105-4F79-A508-90B3A13A975A} = {C848C534-DD16-4A69-81FF-894456E4B099} {38D8F258-655E-459B-B2CE-0DED144AFBF7} = {6CD2C5E3-B5BA-4219-B8EF-9B5D486BF805} {BB54ED9D-FF71-4D91-B7C0-984AB0976798} = {6CD2C5E3-B5BA-4219-B8EF-9B5D486BF805} {77E9C47D-4AC4-4402-8613-40DF427174BD} = {06AE90FB-F007-4E70-BCD2-5CAD106A7C97} {F2E57833-4968-430D-8149-733DE03A7314} = {B958B834-96D2-4B18-AA42-22B312BE9925} {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A} = {B958B834-96D2-4B18-AA42-22B312BE9925} {00398A78-1620-4996-9922-C82D1AF84714} = {B958B834-96D2-4B18-AA42-22B312BE9925} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {FDD40D53-AF3E-4A20-BE17-7555EB5494F9} EndGlobalSection EndGlobal
Microsoft Visual Studio Solution File, Format Version 12.00 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Private.CoreLib", "..\..\coreclr\System.Private.CoreLib\System.Private.CoreLib.csproj", "{4385739F-14A1-4F21-96E3-12EA90580575}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestUtilities", "..\Common\tests\TestUtilities\TestUtilities.csproj", "{38D8F258-655E-459B-B2CE-0DED144AFBF7}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Collections", "ref\System.Collections.csproj", "{77E9C47D-4AC4-4402-8613-40DF427174BD}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Collections", "src\System.Collections.csproj", "{DF501250-4105-4F79-A508-90B3A13A975A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Collections.Tests", "tests\System.Collections.Tests.csproj", "{BB54ED9D-FF71-4D91-B7C0-984AB0976798}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Private.CoreLib.Generators", "..\System.Private.CoreLib\gen\System.Private.CoreLib.Generators.csproj", "{F2E57833-4968-430D-8149-733DE03A7314}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LibraryImportGenerator", "..\System.Runtime.InteropServices\gen\LibraryImportGenerator\LibraryImportGenerator.csproj", "{389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Interop.SourceGeneration", "..\System.Runtime.InteropServices\gen\Microsoft.Interop.SourceGeneration\Microsoft.Interop.SourceGeneration.csproj", "{00398A78-1620-4996-9922-C82D1AF84714}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{C848C534-DD16-4A69-81FF-894456E4B099}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{6CD2C5E3-B5BA-4219-B8EF-9B5D486BF805}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ref", "ref", "{06AE90FB-F007-4E70-BCD2-5CAD106A7C97}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "gen", "gen", "{B958B834-96D2-4B18-AA42-22B312BE9925}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU Debug|x64 = Debug|x64 Debug|x86 = Debug|x86 Release|Any CPU = Release|Any CPU Release|x64 = Release|x64 Release|x86 = Release|x86 Checked|Any CPU = Checked|Any CPU Checked|x64 = Checked|x64 Checked|x86 = Checked|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {4385739F-14A1-4F21-96E3-12EA90580575}.Debug|Any CPU.ActiveCfg = Debug|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Debug|Any CPU.Build.0 = Debug|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Debug|x64.ActiveCfg = Debug|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Debug|x64.Build.0 = Debug|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Debug|x86.ActiveCfg = Debug|x86 {4385739F-14A1-4F21-96E3-12EA90580575}.Debug|x86.Build.0 = Debug|x86 {4385739F-14A1-4F21-96E3-12EA90580575}.Release|Any CPU.ActiveCfg = Release|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Release|Any CPU.Build.0 = Release|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Release|x64.ActiveCfg = Release|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Release|x64.Build.0 = Release|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Release|x86.ActiveCfg = Release|x86 {4385739F-14A1-4F21-96E3-12EA90580575}.Release|x86.Build.0 = Release|x86 {4385739F-14A1-4F21-96E3-12EA90580575}.Checked|Any CPU.ActiveCfg = Checked|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Checked|Any CPU.Build.0 = Checked|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Checked|x64.ActiveCfg = Checked|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Checked|x64.Build.0 = Checked|x64 {4385739F-14A1-4F21-96E3-12EA90580575}.Checked|x86.ActiveCfg = Checked|x86 {4385739F-14A1-4F21-96E3-12EA90580575}.Checked|x86.Build.0 = Checked|x86 {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Debug|Any CPU.Build.0 = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Debug|x64.ActiveCfg = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Debug|x64.Build.0 = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Debug|x86.ActiveCfg = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Debug|x86.Build.0 = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Release|Any CPU.ActiveCfg = Release|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Release|Any CPU.Build.0 = Release|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Release|x64.ActiveCfg = Release|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Release|x64.Build.0 = Release|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Release|x86.ActiveCfg = Release|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Release|x86.Build.0 = Release|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Checked|Any CPU.ActiveCfg = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Checked|Any CPU.Build.0 = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Checked|x64.ActiveCfg = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Checked|x64.Build.0 = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Checked|x86.ActiveCfg = Debug|Any CPU {38D8F258-655E-459B-B2CE-0DED144AFBF7}.Checked|x86.Build.0 = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Debug|Any CPU.Build.0 = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Debug|x64.ActiveCfg = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Debug|x64.Build.0 = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Debug|x86.ActiveCfg = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Debug|x86.Build.0 = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Release|Any CPU.ActiveCfg = Release|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Release|Any CPU.Build.0 = Release|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Release|x64.ActiveCfg = Release|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Release|x64.Build.0 = Release|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Release|x86.ActiveCfg = Release|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Release|x86.Build.0 = Release|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Checked|Any CPU.ActiveCfg = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Checked|Any CPU.Build.0 = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Checked|x64.ActiveCfg = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Checked|x64.Build.0 = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Checked|x86.ActiveCfg = Debug|Any CPU {77E9C47D-4AC4-4402-8613-40DF427174BD}.Checked|x86.Build.0 = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Debug|Any CPU.Build.0 = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Debug|x64.ActiveCfg = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Debug|x64.Build.0 = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Debug|x86.ActiveCfg = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Debug|x86.Build.0 = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Release|Any CPU.ActiveCfg = Release|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Release|Any CPU.Build.0 = Release|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Release|x64.ActiveCfg = Release|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Release|x64.Build.0 = Release|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Release|x86.ActiveCfg = Release|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Release|x86.Build.0 = Release|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Checked|Any CPU.ActiveCfg = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Checked|Any CPU.Build.0 = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Checked|x64.ActiveCfg = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Checked|x64.Build.0 = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Checked|x86.ActiveCfg = Debug|Any CPU {DF501250-4105-4F79-A508-90B3A13A975A}.Checked|x86.Build.0 = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Debug|Any CPU.Build.0 = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Debug|x64.ActiveCfg = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Debug|x64.Build.0 = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Debug|x86.ActiveCfg = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Debug|x86.Build.0 = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Release|Any CPU.ActiveCfg = Release|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Release|Any CPU.Build.0 = Release|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Release|x64.ActiveCfg = Release|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Release|x64.Build.0 = Release|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Release|x86.ActiveCfg = Release|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Release|x86.Build.0 = Release|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Checked|Any CPU.ActiveCfg = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Checked|Any CPU.Build.0 = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Checked|x64.ActiveCfg = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Checked|x64.Build.0 = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Checked|x86.ActiveCfg = Debug|Any CPU {BB54ED9D-FF71-4D91-B7C0-984AB0976798}.Checked|x86.Build.0 = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Debug|Any CPU.Build.0 = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Debug|x64.ActiveCfg = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Debug|x64.Build.0 = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Debug|x86.ActiveCfg = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Debug|x86.Build.0 = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Release|Any CPU.ActiveCfg = Release|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Release|Any CPU.Build.0 = Release|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Release|x64.ActiveCfg = Release|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Release|x64.Build.0 = Release|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Release|x86.ActiveCfg = Release|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Release|x86.Build.0 = Release|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Checked|Any CPU.ActiveCfg = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Checked|Any CPU.Build.0 = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Checked|x64.ActiveCfg = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Checked|x64.Build.0 = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Checked|x86.ActiveCfg = Debug|Any CPU {F2E57833-4968-430D-8149-733DE03A7314}.Checked|x86.Build.0 = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Debug|Any CPU.Build.0 = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Debug|x64.ActiveCfg = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Debug|x64.Build.0 = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Debug|x86.ActiveCfg = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Debug|x86.Build.0 = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Release|Any CPU.ActiveCfg = Release|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Release|Any CPU.Build.0 = Release|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Release|x64.ActiveCfg = Release|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Release|x64.Build.0 = Release|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Release|x86.ActiveCfg = Release|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Release|x86.Build.0 = Release|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Checked|Any CPU.ActiveCfg = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Checked|Any CPU.Build.0 = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Checked|x64.ActiveCfg = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Checked|x64.Build.0 = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Checked|x86.ActiveCfg = Debug|Any CPU {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A}.Checked|x86.Build.0 = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Debug|Any CPU.Build.0 = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Debug|x64.ActiveCfg = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Debug|x64.Build.0 = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Debug|x86.ActiveCfg = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Debug|x86.Build.0 = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Release|Any CPU.ActiveCfg = Release|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Release|Any CPU.Build.0 = Release|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Release|x64.ActiveCfg = Release|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Release|x64.Build.0 = Release|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Release|x86.ActiveCfg = Release|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Release|x86.Build.0 = Release|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Checked|Any CPU.ActiveCfg = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Checked|Any CPU.Build.0 = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Checked|x64.ActiveCfg = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Checked|x64.Build.0 = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Checked|x86.ActiveCfg = Debug|Any CPU {00398A78-1620-4996-9922-C82D1AF84714}.Checked|x86.Build.0 = Debug|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution {4385739F-14A1-4F21-96E3-12EA90580575} = {C848C534-DD16-4A69-81FF-894456E4B099} {DF501250-4105-4F79-A508-90B3A13A975A} = {C848C534-DD16-4A69-81FF-894456E4B099} {38D8F258-655E-459B-B2CE-0DED144AFBF7} = {6CD2C5E3-B5BA-4219-B8EF-9B5D486BF805} {BB54ED9D-FF71-4D91-B7C0-984AB0976798} = {6CD2C5E3-B5BA-4219-B8EF-9B5D486BF805} {77E9C47D-4AC4-4402-8613-40DF427174BD} = {06AE90FB-F007-4E70-BCD2-5CAD106A7C97} {F2E57833-4968-430D-8149-733DE03A7314} = {B958B834-96D2-4B18-AA42-22B312BE9925} {389B3CD7-FF7C-4004-A6BA-29B39B4BDF3A} = {B958B834-96D2-4B18-AA42-22B312BE9925} {00398A78-1620-4996-9922-C82D1AF84714} = {B958B834-96D2-4B18-AA42-22B312BE9925} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {FDD40D53-AF3E-4A20-BE17-7555EB5494F9} EndGlobalSection EndGlobal
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/BuildWasmApps/testassets/resx/words.ja-JP.resx
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="bye" xml:space="preserve"> <value>さようなら</value> </data> <assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> <data name="hello" xml:space="preserve"> <value>こんにちは</value> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="bye" xml:space="preserve"> <value>さようなら</value> </data> <assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> <data name="hello" xml:space="preserve"> <value>こんにちは</value> </data> </root>
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/libraries/Microsoft.Extensions.Configuration.Ini/tests/Microsoft.Extensions.Configuration.Ini.Tests.csproj
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFrameworks>$(NetCoreAppCurrent);$(NetFrameworkMinimum)</TargetFrameworks> <EnableDefaultItems>true</EnableDefaultItems> </PropertyGroup> <ItemGroup> <Compile Include="$(LibrariesProjectRoot)Microsoft.Extensions.Configuration\tests\ConfigurationProviderTestBase.cs" Link="Microsoft.Extensions.Configuration\tests\ConfigurationProviderTestBase.cs" /> <Compile Include="$(LibrariesProjectRoot)Microsoft.Extensions.Configuration\tests\Common\ConfigurationProviderExtensions.cs" Link="Microsoft.Extensions.Configuration\tests\Common\ConfigurationProviderExtensions.cs" /> <Compile Include="$(LibrariesProjectRoot)Microsoft.Extensions.Configuration\tests\Common\TestStreamHelpers.cs" Link="Microsoft.Extensions.Configuration\tests\Common\TestStreamHelpers.cs" /> </ItemGroup> <ItemGroup> <ProjectReference Include="$(LibrariesProjectRoot)Microsoft.Extensions.Configuration.Binder\src\Microsoft.Extensions.Configuration.Binder.csproj" /> <ProjectReference Include="..\src\Microsoft.Extensions.Configuration.Ini.csproj" SkipUseReferenceAssembly="true" /> </ItemGroup> </Project>
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFrameworks>$(NetCoreAppCurrent);$(NetFrameworkMinimum)</TargetFrameworks> <EnableDefaultItems>true</EnableDefaultItems> </PropertyGroup> <ItemGroup> <Compile Include="$(LibrariesProjectRoot)Microsoft.Extensions.Configuration\tests\ConfigurationProviderTestBase.cs" Link="Microsoft.Extensions.Configuration\tests\ConfigurationProviderTestBase.cs" /> <Compile Include="$(LibrariesProjectRoot)Microsoft.Extensions.Configuration\tests\Common\ConfigurationProviderExtensions.cs" Link="Microsoft.Extensions.Configuration\tests\Common\ConfigurationProviderExtensions.cs" /> <Compile Include="$(LibrariesProjectRoot)Microsoft.Extensions.Configuration\tests\Common\TestStreamHelpers.cs" Link="Microsoft.Extensions.Configuration\tests\Common\TestStreamHelpers.cs" /> </ItemGroup> <ItemGroup> <ProjectReference Include="$(LibrariesProjectRoot)Microsoft.Extensions.Configuration.Binder\src\Microsoft.Extensions.Configuration.Binder.csproj" /> <ProjectReference Include="..\src\Microsoft.Extensions.Configuration.Ini.csproj" SkipUseReferenceAssembly="true" /> </ItemGroup> </Project>
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/CoreMangLib/system/delegate/delegate/delegateequals1.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Globalization; //test case for delegate Equals method. namespace DelegateTest { delegate bool booldelegate(); public class DelegateEquals { object starkWork; public static int Main() { DelegateEquals DelegateEquals = new DelegateEquals(); TestLibrary.TestFramework.BeginTestCase("DelegateEquals"); if (DelegateEquals.RunTests()) { TestLibrary.TestFramework.EndTestCase(); TestLibrary.TestFramework.LogInformation("PASS"); return 100; } else { TestLibrary.TestFramework.EndTestCase(); TestLibrary.TestFramework.LogInformation("FAIL"); return 0; } } public bool RunTests() { bool retVal = true; TestLibrary.TestFramework.LogInformation("[Positive]"); retVal = PosTest1() && retVal; retVal = PosTest2() && retVal; retVal = PosTest3() && retVal; retVal = PosTest4() && retVal; retVal = PosTest6() && retVal; retVal = PosTest7() && retVal; return retVal; } // Returns true if the expected result is right // Returns false if the expected result is wrong public bool PosTest1() { bool retVal = true; //Type,target, method, and invocation list TestLibrary.TestFramework.BeginScenario("PosTest1: Use one delegate object to instance the other delegate object,then use equals method to compare"); try { DelegateEquals delctor = new DelegateEquals(); delctor.starkWork = new booldelegate(new TestClass(1).StartWork_Bool); booldelegate workDelegate = (booldelegate)delctor.starkWork; if(GetCompareResult(workDelegate ,(booldelegate)delctor.starkWork)) { if (!workDelegate.Equals((booldelegate)delctor.starkWork)) { TestLibrary.TestFramework.LogError("001", "Equals method return error "); retVal = false; } } else { TestLibrary.TestFramework.LogError("002", "compare condition is error "); retVal = false; } workDelegate(); ((booldelegate)delctor.starkWork)(); } catch (Exception e) { TestLibrary.TestFramework.LogError("003", "Unexpected exception: " + e); retVal = false; } return retVal; } // Returns true if the expected result is right // Returns false if the expected result is wrong public bool PosTest2() { bool retVal = true; TestLibrary.TestFramework.BeginScenario("PosTest2: Use the same instance's same instance method to create two different delegate ,then use equals method to compare"); try { DelegateEquals delctor = new DelegateEquals(); TestClass tcInstance = new TestClass(2); delctor.starkWork = new booldelegate(tcInstance.StartWork_Bool); booldelegate workDelegate = new booldelegate(tcInstance.StartWork_Bool); if (GetCompareResult(workDelegate, (booldelegate)delctor.starkWork)) { if (!workDelegate.Equals((booldelegate)delctor.starkWork)) { TestLibrary.TestFramework.LogError("004", "Equals method return error "); retVal = false; } } else { TestLibrary.TestFramework.LogError("005", "compare condition is error "); retVal = false; } workDelegate(); ((booldelegate)delctor.starkWork)(); } catch (Exception e) { TestLibrary.TestFramework.LogError("006", "Unexpected exception: " + e); retVal = false; } return retVal; } // Returns true if the expected result is right // Returns false if the expected result is wrong public bool PosTest3() { bool retVal = true; TestLibrary.TestFramework.BeginScenario("PosTest3: Use the same type's same static method to create two delegate ,then use equals method to compare"); try { DelegateEquals delctor = new DelegateEquals(); delctor.starkWork = new booldelegate(TestClass.Working_Bool); booldelegate workDelegate = new booldelegate(TestClass.Working_Bool); if (GetCompareResult(workDelegate, (booldelegate)delctor.starkWork)) { if (!workDelegate.Equals((booldelegate)delctor.starkWork)) { TestLibrary.TestFramework.LogError("007", "Equals method return error "); retVal = false; } } else { TestLibrary.TestFramework.LogError("008", "compare condition is error "); retVal = false; } workDelegate(); ((booldelegate)delctor.starkWork)(); } catch (Exception e) { TestLibrary.TestFramework.LogError("009", "Unexpected exception: " + e); retVal = false; } return retVal; } // Returns true if the expected result is right // Returns false if the expected result is wrong public bool PosTest4() { bool retVal = true; TestLibrary.TestFramework.BeginScenario("PosTest4: Use the same type's different static method to create two delegate ,then use equals method to compare"); try { DelegateEquals delctor = new DelegateEquals(); delctor.starkWork = new booldelegate(TestClass.Working_Bool); booldelegate workDelegate = new booldelegate(TestClass.Completed_Bool); if (workDelegate.Equals((booldelegate)delctor.starkWork)) { TestLibrary.TestFramework.LogError("010", "Equals method return error "); retVal = false; } workDelegate(); ((booldelegate)delctor.starkWork)(); } catch (Exception e) { TestLibrary.TestFramework.LogError("011", "Unexpected exception: " + e); retVal = false; } return retVal; } // Returns true if the expected result is right // Returns false if the expected result is wrong public bool PosTest6() { bool retVal = true; TestLibrary.TestFramework.BeginScenario("PosTest6: Use the different type's same static method to create two delegate ,then use equals method to compare"); try { DelegateEquals delctor = new DelegateEquals(); booldelegate workDelegate = new booldelegate(TestClass.Completed_Bool); booldelegate workDelegate1 = new booldelegate(TestClass1.Completed_Bool); if (workDelegate.Equals(workDelegate1)) { TestLibrary.TestFramework.LogError("014", "Equals method return error "); retVal = false; } workDelegate(); workDelegate1(); } catch (Exception e) { TestLibrary.TestFramework.LogError("015", "Unexpected exception: " + e); retVal = false; } return retVal; } // Returns true if the expected result is right // Returns false if the expected result is wrong public bool PosTest7() { bool retVal = true; TestLibrary.TestFramework.BeginScenario("PosTest7: Use the different instance's same instance method to create two delegate ,then use equals method to compare"); try { DelegateEquals delctor = new DelegateEquals(); booldelegate workDelegate = new booldelegate(new TestClass(1).StartWork_Bool); booldelegate workDelegate1 = new booldelegate(new TestClass1(2).StartWork_Bool ); if (workDelegate.Equals(workDelegate1)) { TestLibrary.TestFramework.LogError("016", "Equals method return error "); retVal = false; } workDelegate(); workDelegate1(); } catch (Exception e) { TestLibrary.TestFramework.LogError("017", "Unexpected exception: " + e); retVal = false; } return retVal; } //compare delegate's Type,target, method, and invocation list //two delegates have common Type,target, method, and invocation list //return true.otherwise return false private bool GetCompareResult(booldelegate del1, booldelegate del2) { if (!del1.GetType().Equals(del2.GetType())) { return false; } if (!del1.Equals(del2)) { return false; } return true; } } //create testclass for provding test method and test target. class TestClass { private int id; public TestClass(int id) { this.id = id; } public bool StartWork_Bool() { TestLibrary.TestFramework.LogInformation("TestClass's StartWork_Bool method is running. id="+this.id); return true; } public static bool Working_Bool() { TestLibrary.TestFramework.LogInformation("TestClass's Working_Bool method is running ."); return true; } public static bool Completed_Bool() { TestLibrary.TestFramework.LogInformation("TestClass's Completed_Bool method is running ."); return true; } } class TestClass1 { private int id; public TestClass1(int id) { this.id = id; } public bool StartWork_Bool() { TestLibrary.TestFramework.LogInformation("TestClass1's StartWork_Bool method is running. id="+ this.id ); return true; } public static bool Working_Bool() { TestLibrary.TestFramework.LogInformation("TestClass1's Working_Bool method is running ."); return true; } public static bool Completed_Bool() { TestLibrary.TestFramework.LogInformation("TestClass1's Completed_Bool method is running ."); return true; } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Globalization; //test case for delegate Equals method. namespace DelegateTest { delegate bool booldelegate(); public class DelegateEquals { object starkWork; public static int Main() { DelegateEquals DelegateEquals = new DelegateEquals(); TestLibrary.TestFramework.BeginTestCase("DelegateEquals"); if (DelegateEquals.RunTests()) { TestLibrary.TestFramework.EndTestCase(); TestLibrary.TestFramework.LogInformation("PASS"); return 100; } else { TestLibrary.TestFramework.EndTestCase(); TestLibrary.TestFramework.LogInformation("FAIL"); return 0; } } public bool RunTests() { bool retVal = true; TestLibrary.TestFramework.LogInformation("[Positive]"); retVal = PosTest1() && retVal; retVal = PosTest2() && retVal; retVal = PosTest3() && retVal; retVal = PosTest4() && retVal; retVal = PosTest6() && retVal; retVal = PosTest7() && retVal; return retVal; } // Returns true if the expected result is right // Returns false if the expected result is wrong public bool PosTest1() { bool retVal = true; //Type,target, method, and invocation list TestLibrary.TestFramework.BeginScenario("PosTest1: Use one delegate object to instance the other delegate object,then use equals method to compare"); try { DelegateEquals delctor = new DelegateEquals(); delctor.starkWork = new booldelegate(new TestClass(1).StartWork_Bool); booldelegate workDelegate = (booldelegate)delctor.starkWork; if(GetCompareResult(workDelegate ,(booldelegate)delctor.starkWork)) { if (!workDelegate.Equals((booldelegate)delctor.starkWork)) { TestLibrary.TestFramework.LogError("001", "Equals method return error "); retVal = false; } } else { TestLibrary.TestFramework.LogError("002", "compare condition is error "); retVal = false; } workDelegate(); ((booldelegate)delctor.starkWork)(); } catch (Exception e) { TestLibrary.TestFramework.LogError("003", "Unexpected exception: " + e); retVal = false; } return retVal; } // Returns true if the expected result is right // Returns false if the expected result is wrong public bool PosTest2() { bool retVal = true; TestLibrary.TestFramework.BeginScenario("PosTest2: Use the same instance's same instance method to create two different delegate ,then use equals method to compare"); try { DelegateEquals delctor = new DelegateEquals(); TestClass tcInstance = new TestClass(2); delctor.starkWork = new booldelegate(tcInstance.StartWork_Bool); booldelegate workDelegate = new booldelegate(tcInstance.StartWork_Bool); if (GetCompareResult(workDelegate, (booldelegate)delctor.starkWork)) { if (!workDelegate.Equals((booldelegate)delctor.starkWork)) { TestLibrary.TestFramework.LogError("004", "Equals method return error "); retVal = false; } } else { TestLibrary.TestFramework.LogError("005", "compare condition is error "); retVal = false; } workDelegate(); ((booldelegate)delctor.starkWork)(); } catch (Exception e) { TestLibrary.TestFramework.LogError("006", "Unexpected exception: " + e); retVal = false; } return retVal; } // Returns true if the expected result is right // Returns false if the expected result is wrong public bool PosTest3() { bool retVal = true; TestLibrary.TestFramework.BeginScenario("PosTest3: Use the same type's same static method to create two delegate ,then use equals method to compare"); try { DelegateEquals delctor = new DelegateEquals(); delctor.starkWork = new booldelegate(TestClass.Working_Bool); booldelegate workDelegate = new booldelegate(TestClass.Working_Bool); if (GetCompareResult(workDelegate, (booldelegate)delctor.starkWork)) { if (!workDelegate.Equals((booldelegate)delctor.starkWork)) { TestLibrary.TestFramework.LogError("007", "Equals method return error "); retVal = false; } } else { TestLibrary.TestFramework.LogError("008", "compare condition is error "); retVal = false; } workDelegate(); ((booldelegate)delctor.starkWork)(); } catch (Exception e) { TestLibrary.TestFramework.LogError("009", "Unexpected exception: " + e); retVal = false; } return retVal; } // Returns true if the expected result is right // Returns false if the expected result is wrong public bool PosTest4() { bool retVal = true; TestLibrary.TestFramework.BeginScenario("PosTest4: Use the same type's different static method to create two delegate ,then use equals method to compare"); try { DelegateEquals delctor = new DelegateEquals(); delctor.starkWork = new booldelegate(TestClass.Working_Bool); booldelegate workDelegate = new booldelegate(TestClass.Completed_Bool); if (workDelegate.Equals((booldelegate)delctor.starkWork)) { TestLibrary.TestFramework.LogError("010", "Equals method return error "); retVal = false; } workDelegate(); ((booldelegate)delctor.starkWork)(); } catch (Exception e) { TestLibrary.TestFramework.LogError("011", "Unexpected exception: " + e); retVal = false; } return retVal; } // Returns true if the expected result is right // Returns false if the expected result is wrong public bool PosTest6() { bool retVal = true; TestLibrary.TestFramework.BeginScenario("PosTest6: Use the different type's same static method to create two delegate ,then use equals method to compare"); try { DelegateEquals delctor = new DelegateEquals(); booldelegate workDelegate = new booldelegate(TestClass.Completed_Bool); booldelegate workDelegate1 = new booldelegate(TestClass1.Completed_Bool); if (workDelegate.Equals(workDelegate1)) { TestLibrary.TestFramework.LogError("014", "Equals method return error "); retVal = false; } workDelegate(); workDelegate1(); } catch (Exception e) { TestLibrary.TestFramework.LogError("015", "Unexpected exception: " + e); retVal = false; } return retVal; } // Returns true if the expected result is right // Returns false if the expected result is wrong public bool PosTest7() { bool retVal = true; TestLibrary.TestFramework.BeginScenario("PosTest7: Use the different instance's same instance method to create two delegate ,then use equals method to compare"); try { DelegateEquals delctor = new DelegateEquals(); booldelegate workDelegate = new booldelegate(new TestClass(1).StartWork_Bool); booldelegate workDelegate1 = new booldelegate(new TestClass1(2).StartWork_Bool ); if (workDelegate.Equals(workDelegate1)) { TestLibrary.TestFramework.LogError("016", "Equals method return error "); retVal = false; } workDelegate(); workDelegate1(); } catch (Exception e) { TestLibrary.TestFramework.LogError("017", "Unexpected exception: " + e); retVal = false; } return retVal; } //compare delegate's Type,target, method, and invocation list //two delegates have common Type,target, method, and invocation list //return true.otherwise return false private bool GetCompareResult(booldelegate del1, booldelegate del2) { if (!del1.GetType().Equals(del2.GetType())) { return false; } if (!del1.Equals(del2)) { return false; } return true; } } //create testclass for provding test method and test target. class TestClass { private int id; public TestClass(int id) { this.id = id; } public bool StartWork_Bool() { TestLibrary.TestFramework.LogInformation("TestClass's StartWork_Bool method is running. id="+this.id); return true; } public static bool Working_Bool() { TestLibrary.TestFramework.LogInformation("TestClass's Working_Bool method is running ."); return true; } public static bool Completed_Bool() { TestLibrary.TestFramework.LogInformation("TestClass's Completed_Bool method is running ."); return true; } } class TestClass1 { private int id; public TestClass1(int id) { this.id = id; } public bool StartWork_Bool() { TestLibrary.TestFramework.LogInformation("TestClass1's StartWork_Bool method is running. id="+ this.id ); return true; } public static bool Working_Bool() { TestLibrary.TestFramework.LogInformation("TestClass1's Working_Bool method is running ."); return true; } public static bool Completed_Bool() { TestLibrary.TestFramework.LogInformation("TestClass1's Completed_Bool method is running ."); return true; } } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/native/public/mono/metadata/details/object-functions.h
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // // This file does not have ifdef guards, it is meant to be included multiple times with different definitions of MONO_API_FUNCTION #ifndef MONO_API_FUNCTION #error "MONO_API_FUNCTION(ret,name,args) macro not defined before including function declaration header" #endif MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY mono_unichar2 *, mono_string_chars, (MonoString *s)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY int, mono_string_length, (MonoString *s)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_object_new, (MonoDomain *domain, MonoClass *klass)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_object_new_specific, (MonoVTable *vtable)) /* can be used for classes without finalizer in non-profiling mode */ MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_object_new_fast, (MonoVTable *vtable)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_object_new_alloc_specific, (MonoVTable *vtable)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_object_new_from_token, (MonoDomain *domain, MonoImage *image, uint32_t token)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoArray*, mono_array_new, (MonoDomain *domain, MonoClass *eclass, uintptr_t n)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoArray*, mono_array_new_full, (MonoDomain *domain, MonoClass *array_class, uintptr_t *lengths, intptr_t *lower_bounds)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoArray *, mono_array_new_specific, (MonoVTable *vtable, uintptr_t n)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoArray*, mono_array_clone, (MonoArray *array)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY char*, mono_array_addr_with_size, (MonoArray *array, int size, uintptr_t idx)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY uintptr_t, mono_array_length, (MonoArray *array)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_string_empty, (MonoDomain *domain)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_string_empty_wrapper, (void)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_string_new_utf16, (MonoDomain *domain, const mono_unichar2 *text, int32_t len)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_string_new_size, (MonoDomain *domain, int32_t len)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_ldstr, (MonoDomain *domain, MonoImage *image, uint32_t str_index)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_string_is_interned, (MonoString *str)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_string_intern, (MonoString *str)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_string_new, (MonoDomain *domain, const char *text)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_string_new_wrapper, (const char *text)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_string_new_len, (MonoDomain *domain, const char *text, unsigned int length)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_string_new_utf32, (MonoDomain *domain, const mono_unichar4 *text, int32_t len)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY char *, mono_string_to_utf8, (MonoString *string_obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY char *, mono_string_to_utf8_checked, (MonoString *string_obj, MonoError *error)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY mono_unichar2 *, mono_string_to_utf16, (MonoString *string_obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY mono_unichar4 *, mono_string_to_utf32, (MonoString *string_obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString *, mono_string_from_utf16, (/*const*/ mono_unichar2 *data)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString *, mono_string_from_utf32, (/*const*/ mono_unichar4 *data)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY mono_bool, mono_string_equal, (MonoString *s1, MonoString *s2)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY unsigned int, mono_string_hash, (MonoString *s)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY int, mono_object_hash, (MonoObject* obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString *, mono_object_to_string, (MonoObject *obj, MonoObject **exc)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_value_box, (MonoDomain *domain, MonoClass *klass, void* val)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_value_copy, (void* dest, /*const*/ void* src, MonoClass *klass)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_value_copy_array, (MonoArray *dest, int dest_idx, void* src, int count)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoVTable*, mono_object_get_vtable, (MonoObject *obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoDomain*, mono_object_get_domain, (MonoObject *obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoClass*, mono_object_get_class, (MonoObject *obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void*, mono_object_unbox, (MonoObject *obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_object_clone, (MonoObject *obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_object_isinst, (MonoObject *obj, MonoClass *klass)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_object_isinst_mbyref, (MonoObject *obj, MonoClass *klass)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_object_castclass_mbyref, (MonoObject *obj, MonoClass *klass)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY mono_bool, mono_monitor_try_enter, (MonoObject *obj, uint32_t ms)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY mono_bool, mono_monitor_enter, (MonoObject *obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_monitor_enter_v4, (MonoObject *obj, char *lock_taken)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY unsigned int, mono_object_get_size, (MonoObject *o)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_monitor_exit, (MonoObject *obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_raise_exception, (MonoException *ex)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY mono_bool, mono_runtime_set_pending_exception, (MonoException *exc, mono_bool overwrite)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_reraise_exception, (MonoException *ex)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_runtime_object_init, (MonoObject *this_obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_runtime_class_init, (MonoVTable *vtable)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoDomain*, mono_vtable_domain, (MonoVTable *vtable)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoClass*, mono_vtable_class, (MonoVTable *vtable)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoMethod*, mono_object_get_virtual_method, (MonoObject *obj, MonoMethod *method)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject*, mono_runtime_invoke, (MonoMethod *method, void *obj, void **params, MonoObject **exc)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoMethod*, mono_get_delegate_invoke, (MonoClass *klass)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoMethod*, mono_get_delegate_begin_invoke, (MonoClass *klass)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoMethod*, mono_get_delegate_end_invoke, (MonoClass *klass)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject*, mono_runtime_delegate_invoke, (MonoObject *delegate, void **params, MonoObject **exc)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject*, mono_runtime_invoke_array, (MonoMethod *method, void *obj, MonoArray *params, MonoObject **exc)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void*, mono_method_get_unmanaged_thunk, (MonoMethod *method)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoArray*, mono_runtime_get_main_args, (void)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_runtime_exec_managed_code, (MonoDomain *domain, MonoMainThreadFunc main_func, void* main_args)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY int, mono_runtime_run_main, (MonoMethod *method, int argc, char* argv[],MonoObject **exc)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY int, mono_runtime_exec_main, (MonoMethod *method, MonoArray *args, MonoObject **exc)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY int, mono_runtime_set_main_args, (int argc, char* argv[])) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void*, mono_load_remote_field, (MonoObject *this_obj, MonoClass *klass, MonoClassField *field, void **res)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_load_remote_field_new, (MonoObject *this_obj, MonoClass *klass, MonoClassField *field)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_store_remote_field, (MonoObject *this_obj, MonoClass *klass, MonoClassField *field, void* val)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_store_remote_field_new, (MonoObject *this_obj, MonoClass *klass, MonoClassField *field, MonoObject *arg)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_unhandled_exception, (MonoObject *exc)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_print_unhandled_exception, (MonoObject *exc)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void*, mono_compile_method, (MonoMethod *method)) /* accessors for fields and properties */ MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_field_set_value, (MonoObject *obj, MonoClassField *field, void *value)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_field_static_set_value, (MonoVTable *vt, MonoClassField *field, void *value)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_field_get_value, (MonoObject *obj, MonoClassField *field, void *value)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_field_static_get_value, (MonoVTable *vt, MonoClassField *field, void *value)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_field_get_value_object, (MonoDomain *domain, MonoClassField *field, MonoObject *obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_property_set_value, (MonoProperty *prop, void *obj, void **params, MonoObject **exc)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject*, mono_property_get_value, (MonoProperty *prop, void *obj, void **params, MonoObject **exc)) /* GC handles support * * A handle can be created to refer to a managed object and either prevent it * from being garbage collected or moved or to be able to know if it has been * collected or not (weak references). * mono_gchandle_new () is used to prevent an object from being garbage collected * until mono_gchandle_free() is called. Use a TRUE value for the pinned argument to * prevent the object from being moved (this should be avoided as much as possible * and this should be used only for shorts periods of time or performance will suffer). * To create a weakref use mono_gchandle_new_weakref (): track_resurrection should * usually be false (see the GC docs for more details). * mono_gchandle_get_target () can be used to get the object referenced by both kinds * of handle: for a weakref handle, if an object has been collected, it will return NULL. */ MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY uint32_t, mono_gchandle_new, (MonoObject *obj, mono_bool pinned)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY uint32_t, mono_gchandle_new_weakref, (MonoObject *obj, mono_bool track_resurrection)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject*, mono_gchandle_get_target, (uint32_t gchandle)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gchandle_free, (uint32_t gchandle)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoGCHandle, mono_gchandle_new_v2, (MonoObject *obj, mono_bool pinned)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoGCHandle, mono_gchandle_new_weakref_v2, (MonoObject *obj, mono_bool track_resurrection)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject*, mono_gchandle_get_target_v2, (MonoGCHandle gchandle)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gchandle_free_v2, (MonoGCHandle gchandle)) /* Reference queue support * * A reference queue is used to get notifications of when objects are collected. * Call mono_gc_reference_queue_new to create a new queue and pass the callback that * will be invoked when registered objects are collected. * Call mono_gc_reference_queue_add to register a pair of objects and data within a queue. * The callback will be triggered once an object is both unreachable and finalized. */ MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoReferenceQueue*, mono_gc_reference_queue_new, (mono_reference_queue_callback callback)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gc_reference_queue_free, (MonoReferenceQueue *queue)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY mono_bool, mono_gc_reference_queue_add, (MonoReferenceQueue *queue, MonoObject *obj, void *user_data)) /* GC write barriers support */ MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gc_wbarrier_set_field, (MonoObject *obj, void* field_ptr, MonoObject* value)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gc_wbarrier_set_arrayref, (MonoArray *arr, void* slot_ptr, MonoObject* value)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gc_wbarrier_arrayref_copy, (void* dest_ptr, /*const*/ void* src_ptr, int count)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gc_wbarrier_generic_store, (void* ptr, MonoObject* value)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gc_wbarrier_generic_store_atomic, (void *ptr, MonoObject *value)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gc_wbarrier_generic_nostore, (void* ptr)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gc_wbarrier_value_copy, (void* dest, /*const*/ void* src, int count, MonoClass *klass)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gc_wbarrier_object_copy, (MonoObject* obj, MonoObject *src))
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // // This file does not have ifdef guards, it is meant to be included multiple times with different definitions of MONO_API_FUNCTION #ifndef MONO_API_FUNCTION #error "MONO_API_FUNCTION(ret,name,args) macro not defined before including function declaration header" #endif MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY mono_unichar2 *, mono_string_chars, (MonoString *s)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY int, mono_string_length, (MonoString *s)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_object_new, (MonoDomain *domain, MonoClass *klass)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_object_new_specific, (MonoVTable *vtable)) /* can be used for classes without finalizer in non-profiling mode */ MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_object_new_fast, (MonoVTable *vtable)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_object_new_alloc_specific, (MonoVTable *vtable)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_object_new_from_token, (MonoDomain *domain, MonoImage *image, uint32_t token)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoArray*, mono_array_new, (MonoDomain *domain, MonoClass *eclass, uintptr_t n)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoArray*, mono_array_new_full, (MonoDomain *domain, MonoClass *array_class, uintptr_t *lengths, intptr_t *lower_bounds)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoArray *, mono_array_new_specific, (MonoVTable *vtable, uintptr_t n)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoArray*, mono_array_clone, (MonoArray *array)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY char*, mono_array_addr_with_size, (MonoArray *array, int size, uintptr_t idx)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY uintptr_t, mono_array_length, (MonoArray *array)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_string_empty, (MonoDomain *domain)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_string_empty_wrapper, (void)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_string_new_utf16, (MonoDomain *domain, const mono_unichar2 *text, int32_t len)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_string_new_size, (MonoDomain *domain, int32_t len)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_ldstr, (MonoDomain *domain, MonoImage *image, uint32_t str_index)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_string_is_interned, (MonoString *str)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_string_intern, (MonoString *str)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_string_new, (MonoDomain *domain, const char *text)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_string_new_wrapper, (const char *text)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_string_new_len, (MonoDomain *domain, const char *text, unsigned int length)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString*, mono_string_new_utf32, (MonoDomain *domain, const mono_unichar4 *text, int32_t len)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY char *, mono_string_to_utf8, (MonoString *string_obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY char *, mono_string_to_utf8_checked, (MonoString *string_obj, MonoError *error)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY mono_unichar2 *, mono_string_to_utf16, (MonoString *string_obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY mono_unichar4 *, mono_string_to_utf32, (MonoString *string_obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString *, mono_string_from_utf16, (/*const*/ mono_unichar2 *data)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString *, mono_string_from_utf32, (/*const*/ mono_unichar4 *data)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY mono_bool, mono_string_equal, (MonoString *s1, MonoString *s2)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY unsigned int, mono_string_hash, (MonoString *s)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY int, mono_object_hash, (MonoObject* obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoString *, mono_object_to_string, (MonoObject *obj, MonoObject **exc)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_value_box, (MonoDomain *domain, MonoClass *klass, void* val)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_value_copy, (void* dest, /*const*/ void* src, MonoClass *klass)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_value_copy_array, (MonoArray *dest, int dest_idx, void* src, int count)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoVTable*, mono_object_get_vtable, (MonoObject *obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoDomain*, mono_object_get_domain, (MonoObject *obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoClass*, mono_object_get_class, (MonoObject *obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void*, mono_object_unbox, (MonoObject *obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_object_clone, (MonoObject *obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_object_isinst, (MonoObject *obj, MonoClass *klass)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_object_isinst_mbyref, (MonoObject *obj, MonoClass *klass)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_object_castclass_mbyref, (MonoObject *obj, MonoClass *klass)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY mono_bool, mono_monitor_try_enter, (MonoObject *obj, uint32_t ms)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY mono_bool, mono_monitor_enter, (MonoObject *obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_monitor_enter_v4, (MonoObject *obj, char *lock_taken)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY unsigned int, mono_object_get_size, (MonoObject *o)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_monitor_exit, (MonoObject *obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_raise_exception, (MonoException *ex)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY mono_bool, mono_runtime_set_pending_exception, (MonoException *exc, mono_bool overwrite)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_reraise_exception, (MonoException *ex)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_runtime_object_init, (MonoObject *this_obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_runtime_class_init, (MonoVTable *vtable)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoDomain*, mono_vtable_domain, (MonoVTable *vtable)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoClass*, mono_vtable_class, (MonoVTable *vtable)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoMethod*, mono_object_get_virtual_method, (MonoObject *obj, MonoMethod *method)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject*, mono_runtime_invoke, (MonoMethod *method, void *obj, void **params, MonoObject **exc)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoMethod*, mono_get_delegate_invoke, (MonoClass *klass)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoMethod*, mono_get_delegate_begin_invoke, (MonoClass *klass)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoMethod*, mono_get_delegate_end_invoke, (MonoClass *klass)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject*, mono_runtime_delegate_invoke, (MonoObject *delegate, void **params, MonoObject **exc)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject*, mono_runtime_invoke_array, (MonoMethod *method, void *obj, MonoArray *params, MonoObject **exc)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void*, mono_method_get_unmanaged_thunk, (MonoMethod *method)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoArray*, mono_runtime_get_main_args, (void)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_runtime_exec_managed_code, (MonoDomain *domain, MonoMainThreadFunc main_func, void* main_args)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY int, mono_runtime_run_main, (MonoMethod *method, int argc, char* argv[],MonoObject **exc)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY int, mono_runtime_exec_main, (MonoMethod *method, MonoArray *args, MonoObject **exc)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY int, mono_runtime_set_main_args, (int argc, char* argv[])) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void*, mono_load_remote_field, (MonoObject *this_obj, MonoClass *klass, MonoClassField *field, void **res)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_load_remote_field_new, (MonoObject *this_obj, MonoClass *klass, MonoClassField *field)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_store_remote_field, (MonoObject *this_obj, MonoClass *klass, MonoClassField *field, void* val)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_store_remote_field_new, (MonoObject *this_obj, MonoClass *klass, MonoClassField *field, MonoObject *arg)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_unhandled_exception, (MonoObject *exc)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_print_unhandled_exception, (MonoObject *exc)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void*, mono_compile_method, (MonoMethod *method)) /* accessors for fields and properties */ MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_field_set_value, (MonoObject *obj, MonoClassField *field, void *value)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_field_static_set_value, (MonoVTable *vt, MonoClassField *field, void *value)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_field_get_value, (MonoObject *obj, MonoClassField *field, void *value)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_field_static_get_value, (MonoVTable *vt, MonoClassField *field, void *value)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject *, mono_field_get_value_object, (MonoDomain *domain, MonoClassField *field, MonoObject *obj)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_property_set_value, (MonoProperty *prop, void *obj, void **params, MonoObject **exc)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject*, mono_property_get_value, (MonoProperty *prop, void *obj, void **params, MonoObject **exc)) /* GC handles support * * A handle can be created to refer to a managed object and either prevent it * from being garbage collected or moved or to be able to know if it has been * collected or not (weak references). * mono_gchandle_new () is used to prevent an object from being garbage collected * until mono_gchandle_free() is called. Use a TRUE value for the pinned argument to * prevent the object from being moved (this should be avoided as much as possible * and this should be used only for shorts periods of time or performance will suffer). * To create a weakref use mono_gchandle_new_weakref (): track_resurrection should * usually be false (see the GC docs for more details). * mono_gchandle_get_target () can be used to get the object referenced by both kinds * of handle: for a weakref handle, if an object has been collected, it will return NULL. */ MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY uint32_t, mono_gchandle_new, (MonoObject *obj, mono_bool pinned)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY uint32_t, mono_gchandle_new_weakref, (MonoObject *obj, mono_bool track_resurrection)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject*, mono_gchandle_get_target, (uint32_t gchandle)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gchandle_free, (uint32_t gchandle)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoGCHandle, mono_gchandle_new_v2, (MonoObject *obj, mono_bool pinned)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoGCHandle, mono_gchandle_new_weakref_v2, (MonoObject *obj, mono_bool track_resurrection)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoObject*, mono_gchandle_get_target_v2, (MonoGCHandle gchandle)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gchandle_free_v2, (MonoGCHandle gchandle)) /* Reference queue support * * A reference queue is used to get notifications of when objects are collected. * Call mono_gc_reference_queue_new to create a new queue and pass the callback that * will be invoked when registered objects are collected. * Call mono_gc_reference_queue_add to register a pair of objects and data within a queue. * The callback will be triggered once an object is both unreachable and finalized. */ MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY MonoReferenceQueue*, mono_gc_reference_queue_new, (mono_reference_queue_callback callback)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gc_reference_queue_free, (MonoReferenceQueue *queue)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY mono_bool, mono_gc_reference_queue_add, (MonoReferenceQueue *queue, MonoObject *obj, void *user_data)) /* GC write barriers support */ MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gc_wbarrier_set_field, (MonoObject *obj, void* field_ptr, MonoObject* value)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gc_wbarrier_set_arrayref, (MonoArray *arr, void* slot_ptr, MonoObject* value)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gc_wbarrier_arrayref_copy, (void* dest_ptr, /*const*/ void* src_ptr, int count)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gc_wbarrier_generic_store, (void* ptr, MonoObject* value)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gc_wbarrier_generic_store_atomic, (void *ptr, MonoObject *value)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gc_wbarrier_generic_nostore, (void* ptr)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gc_wbarrier_value_copy, (void* dest, /*const*/ void* src, int count, MonoClass *klass)) MONO_API_FUNCTION(MONO_RT_EXTERNAL_ONLY void, mono_gc_wbarrier_object_copy, (MonoObject* obj, MonoObject *src))
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/libraries/System.IO.IsolatedStorage/tests/AssemblyInfo.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Xunit; // We don't want to run the tests in parallel so we don't collide store state. // If we add the identity based constructors we could potentially // create unique identities for every test to allow every test to have // it's own store. [assembly: CollectionBehavior(CollectionBehavior.CollectionPerAssembly, DisableTestParallelization = true)] [assembly: SkipOnPlatform(TestPlatforms.Browser, "System.IO.IsolatedStorage is not supported on Browser")]
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Xunit; // We don't want to run the tests in parallel so we don't collide store state. // If we add the identity based constructors we could potentially // create unique identities for every test to allow every test to have // it's own store. [assembly: CollectionBehavior(CollectionBehavior.CollectionPerAssembly, DisableTestParallelization = true)] [assembly: SkipOnPlatform(TestPlatforms.Browser, "System.IO.IsolatedStorage is not supported on Browser")]
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/libraries/System.Linq.Expressions/tests/Block/ParameterBlockTests.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Collections; using System.Collections.Generic; using Xunit; namespace System.Linq.Expressions.Tests { public class ParameterBlockTests : SharedBlockTests { private static IEnumerable<ParameterExpression> SingleParameter { get { return Enumerable.Repeat(Expression.Variable(typeof(int)), 1); } } [Theory] [PerCompilationType(nameof(ConstantValueData))] public void SingleElementBlock(object value, bool useInterpreter) { Type type = value.GetType(); ConstantExpression constant = Expression.Constant(value, type); BlockExpression block = Expression.Block( SingleParameter, constant ); Assert.Equal(type, block.Type); Expression equal = Expression.Equal(constant, block); Assert.True(Expression.Lambda<Func<bool>>(equal).Compile(useInterpreter)()); } [Theory] [PerCompilationType(nameof(ConstantValueData))] public void DoubleElementBlock(object value, bool useInterpreter) { Type type = value.GetType(); ConstantExpression constant = Expression.Constant(value, type); BlockExpression block = Expression.Block( SingleParameter, Expression.Empty(), constant ); Assert.Equal(type, block.Type); Expression equal = Expression.Equal(constant, block); Assert.True(Expression.Lambda<Func<bool>>(equal).Compile(useInterpreter)()); } [Fact] public void NullExpicitType() { AssertExtensions.Throws<ArgumentNullException>("type", () => Expression.Block(null, SingleParameter, Expression.Constant(0))); AssertExtensions.Throws<ArgumentNullException>("type", () => Expression.Block(null, SingleParameter, Enumerable.Repeat(Expression.Constant(0), 1))); } [Fact] public void NullExpressionList() { AssertExtensions.Throws<ArgumentNullException>("expressions", () => Expression.Block(SingleParameter, default(Expression[]))); AssertExtensions.Throws<ArgumentNullException>("expressions", () => Expression.Block(SingleParameter, default(IEnumerable<Expression>))); AssertExtensions.Throws<ArgumentNullException>("expressions", () => Expression.Block(typeof(int), SingleParameter, default(Expression[]))); AssertExtensions.Throws<ArgumentNullException>("expressions", () => Expression.Block(typeof(int), SingleParameter, default(IEnumerable<Expression>))); } [Theory] [MemberData(nameof(BlockSizes))] public void NullExpressionInExpressionList(int size) { List<Expression> expressionList = Enumerable.Range(0, size).Select(i => (Expression)Expression.Constant(1)).ToList(); for (int i = 0; i < expressionList.Count; ++i) { Expression[] expressions = expressionList.ToArray(); expressions[i] = null; AssertExtensions.Throws<ArgumentNullException>($"expressions[{i}]", () => Expression.Block(SingleParameter, expressions)); AssertExtensions.Throws<ArgumentNullException>($"expressions[{i}]", () => Expression.Block(SingleParameter, expressions.Skip(0))); AssertExtensions.Throws<ArgumentNullException>($"expressions[{i}]", () => Expression.Block(typeof(int), SingleParameter, expressions)); AssertExtensions.Throws<ArgumentNullException>($"expressions[{i}]", () => Expression.Block(typeof(int), SingleParameter, expressions.Skip(0))); } } [Theory] [MemberData(nameof(BlockSizes))] public void UnreadableExpressionInExpressionList(int size) { List<Expression> expressionList = Enumerable.Range(0, size).Select(i => (Expression)Expression.Constant(1)).ToList(); for (int i = 0; i != expressionList.Count; ++i) { Expression[] expressions = expressionList.ToArray(); expressions[i] = UnreadableExpression; AssertExtensions.Throws<ArgumentException>($"expressions[{i}]", () => Expression.Block(SingleParameter, expressions)); AssertExtensions.Throws<ArgumentException>($"expressions[{i}]", () => Expression.Block(SingleParameter, expressions.Skip(0))); AssertExtensions.Throws<ArgumentException>($"expressions[{i}]", () => Expression.Block(typeof(int), SingleParameter, expressions)); AssertExtensions.Throws<ArgumentException>($"expressions[{i}]", () => Expression.Block(typeof(int), SingleParameter, expressions.Skip(0))); } } [Theory] [PerCompilationType(nameof(ObjectAssignableConstantValuesAndSizes))] public void BlockExplicitType(object value, int blockSize, bool useInterpreter) { ConstantExpression constant = Expression.Constant(value, value.GetType()); BlockExpression block = Expression.Block(typeof(object), SingleParameter, PadBlock(blockSize - 1, constant)); Assert.Equal(typeof(object), block.Type); Expression equal = Expression.Equal(constant, block); Assert.True(Expression.Lambda<Func<bool>>(equal).Compile(useInterpreter)()); } [Theory] [MemberData(nameof(BlockSizes))] public void BlockInvalidExplicitType(int blockSize) { ConstantExpression constant = Expression.Constant(0); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, Expression.Constant(0)); AssertExtensions.Throws<ArgumentException>(null, () => Expression.Block(typeof(string), SingleParameter, expressions)); AssertExtensions.Throws<ArgumentException>(null, () => Expression.Block(typeof(string), SingleParameter, expressions.ToArray())); } [Theory] [PerCompilationType(nameof(ConstantValuesAndSizes))] public void BlockFromEmptyParametersSameAsFromParams(object value, int blockSize, bool useInterpreter) { ConstantExpression constant = Expression.Constant(value, value.GetType()); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, constant); BlockExpression fromParamsBlock = Expression.Block(SingleParameter, expressions.ToArray()); BlockExpression fromEnumBlock = Expression.Block(SingleParameter, expressions); Assert.Equal(fromParamsBlock.GetType(), fromEnumBlock.GetType()); Assert.True(Expression.Lambda<Func<bool>>(Expression.Equal(constant, fromParamsBlock)).Compile(useInterpreter)()); Assert.True(Expression.Lambda<Func<bool>>(Expression.Equal(constant, fromEnumBlock)).Compile(useInterpreter)()); } [Theory] [MemberData(nameof(ConstantValuesAndSizes))] public void InvalidExpressionIndex(object value, int blockSize) { BlockExpression block = Expression.Block(SingleParameter, PadBlock(blockSize - 1, Expression.Constant(value, value.GetType()))); AssertExtensions.Throws<ArgumentOutOfRangeException>("index", () => block.Expressions[-1]); AssertExtensions.Throws<ArgumentOutOfRangeException>("index", () => block.Expressions[blockSize]); } [Fact] public void EmptyBlockWithParametersAndNonVoidTypeNotAllowed() { AssertExtensions.Throws<ArgumentException>(null, () => Expression.Block(typeof(int), SingleParameter)); AssertExtensions.Throws<ArgumentException>(null, () => Expression.Block(typeof(int), SingleParameter, Enumerable.Empty<Expression>())); } [Theory] [MemberData(nameof(ConstantValuesAndSizes))] public void ResultPropertyFromParams(object value, int blockSize) { ConstantExpression constant = Expression.Constant(value, value.GetType()); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, constant); BlockExpression block = Expression.Block(SingleParameter, expressions.ToArray()); Assert.Same(constant, block.Result); } [Theory] [MemberData(nameof(ConstantValuesAndSizes))] public void ResultPropertyFromEnumerable(object value, int blockSize) { ConstantExpression constant = Expression.Constant(value, value.GetType()); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, constant); BlockExpression block = Expression.Block(SingleParameter, expressions); Assert.Same(constant, block.Result); } [Theory] [MemberData(nameof(ConstantValuesAndSizes))] public void VariableCountCorrect(object value, int blockSize) { IEnumerable<ParameterExpression> vars = Enumerable.Range(0, blockSize).Select(i => Expression.Variable(value.GetType())); BlockExpression block = Expression.Block(vars, Expression.Constant(value, value.GetType())); Assert.Equal(blockSize, block.Variables.Count); } [Theory] [MemberData(nameof(ConstantValuesAndSizes))] public void RewriteToSameWithSameValues(object value, int blockSize) { ConstantExpression constant = Expression.Constant(value, value.GetType()); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, constant).ToArray(); BlockExpression block = Expression.Block(SingleParameter, expressions); Assert.Same(block, block.Update(block.Variables.ToArray(), expressions)); Assert.Same(block, block.Update(block.Variables.ToArray(), expressions)); Assert.Same(block, NoOpVisitor.Instance.Visit(block)); } [Theory] [MemberData(nameof(ConstantValuesAndSizes))] public void CanFindItems(object value, int blockSize) { ConstantExpression[] values = new ConstantExpression[blockSize]; for (int i = 0; i != values.Length; ++i) values[i] = Expression.Constant(value); BlockExpression block = Expression.Block(SingleParameter, values); IList<Expression> expressions = block.Expressions; for (int i = 0; i != values.Length; ++i) Assert.Equal(i, expressions.IndexOf(values[i])); } [Theory] [MemberData(nameof(ConstantValuesAndSizes))] public void IdentifyNonAbsentItemAsAbsent(object value, int blockSize) { ConstantExpression constant = Expression.Constant(value, value.GetType()); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, constant); BlockExpression block = Expression.Block(SingleParameter, expressions); Assert.Equal(-1, block.Expressions.IndexOf(Expression.Default(typeof(long)))); Assert.DoesNotContain(null, block.Expressions); } [Theory] [MemberData(nameof(ConstantValuesAndSizes))] public void ExpressionsEnumerable(object value, int blockSize) { ConstantExpression[] values = new ConstantExpression[blockSize]; for (int i = 0; i != values.Length; ++i) values[i] = Expression.Constant(value); BlockExpression block = Expression.Block(SingleParameter, values); Assert.True(values.SequenceEqual(block.Expressions)); int index = 0; foreach (Expression exp in ((IEnumerable)block.Expressions)) Assert.Same(exp, values[index++]); } [Theory] [MemberData(nameof(ConstantValuesAndSizes))] public void UpdateWithExpressionsReturnsSame(object value, int blockSize) { ConstantExpression constant = Expression.Constant(value, value.GetType()); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, constant); BlockExpression block = Expression.Block(SingleParameter, expressions); Assert.Same(block, block.Update(block.Variables, block.Expressions)); Assert.Same(block, NoOpVisitor.Instance.Visit(block)); } [Theory] [MemberData(nameof(ConstantValuesAndSizes))] public void Visit(object value, int blockSize) { ConstantExpression constant = Expression.Constant(value, value.GetType()); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, constant); BlockExpression block = Expression.Block(SingleParameter, expressions); Assert.NotSame(block, new TestVistor().Visit(block)); } [Theory] [MemberData(nameof(ObjectAssignableConstantValuesAndSizes))] public void VisitTyped(object value, int blockSize) { ConstantExpression constant = Expression.Constant(value, value.GetType()); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, constant); BlockExpression block = Expression.Block(typeof(object), SingleParameter, expressions); Assert.NotSame(block, new TestVistor().Visit(block)); } [Theory] [MemberData(nameof(BlockSizes))] public void NullVariables(int blockSize) { IEnumerable<Expression> expressions = PadBlock(blockSize - 1, Expression.Constant(0)); IEnumerable<ParameterExpression> vars = Enumerable.Repeat(default(ParameterExpression), 1); AssertExtensions.Throws<ArgumentNullException>("variables[0]", () => Expression.Block(vars, expressions)); AssertExtensions.Throws<ArgumentNullException>("variables[0]", () => Expression.Block(vars, expressions.ToArray())); AssertExtensions.Throws<ArgumentNullException>("variables[0]", () => Expression.Block(typeof(object), vars, expressions)); AssertExtensions.Throws<ArgumentNullException>("variables[0]", () => Expression.Block(typeof(object), vars, expressions.ToArray())); } [Theory] [MemberData(nameof(BlockSizes))] public void ByRefVariables(int blockSize) { IEnumerable<Expression> expressions = PadBlock(blockSize - 1, Expression.Constant(0)); IEnumerable<ParameterExpression> vars = Enumerable.Repeat(Expression.Parameter(typeof(int).MakeByRefType()), 1); AssertExtensions.Throws<ArgumentException>("variables[0]", () => Expression.Block(vars, expressions)); AssertExtensions.Throws<ArgumentException>("variables[0]", () => Expression.Block(vars, expressions.ToArray())); AssertExtensions.Throws<ArgumentException>("variables[0]", () => Expression.Block(typeof(object), vars, expressions)); AssertExtensions.Throws<ArgumentException>("variables[0]", () => Expression.Block(typeof(object), vars, expressions.ToArray())); } [Theory] [MemberData(nameof(BlockSizes))] public void RepeatedVariables(int blockSize) { IEnumerable<Expression> expressions = PadBlock(blockSize - 1, Expression.Constant(0)); ParameterExpression variable = Expression.Variable(typeof(int)); IEnumerable<ParameterExpression> vars = Enumerable.Repeat(variable, 2); AssertExtensions.Throws<ArgumentException>("variables[1]", () => Expression.Block(vars, expressions)); AssertExtensions.Throws<ArgumentException>("variables[1]", () => Expression.Block(vars, expressions.ToArray())); AssertExtensions.Throws<ArgumentException>("variables[1]", () => Expression.Block(typeof(object), vars, expressions)); AssertExtensions.Throws<ArgumentException>("variables[1]", () => Expression.Block(typeof(object), vars, expressions.ToArray())); } [Theory, MemberData(nameof(BlockSizes))] public void UpdateDoesntRepeatEnumeration(int blockSize) { ConstantExpression constant = Expression.Constant(0); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, constant).ToArray(); ParameterExpression[] vars = {Expression.Variable(typeof(int)), Expression.Variable(typeof(string))}; BlockExpression block = Expression.Block(vars, expressions); Assert.Same(block, block.Update(new RunOnceEnumerable<ParameterExpression>(vars), block.Expressions)); vars = new[] {Expression.Variable(typeof(int)), Expression.Variable(typeof(string))}; Assert.NotSame(block, block.Update(new RunOnceEnumerable<ParameterExpression>(vars), block.Expressions)); } [Theory, MemberData(nameof(BlockSizes))] public void UpdateDifferentSizeReturnsDifferent(int blockSize) { ConstantExpression constant = Expression.Constant(0); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, constant).ToArray(); ParameterExpression[] vars = { Expression.Variable(typeof(int)), Expression.Variable(typeof(string)) }; BlockExpression block = Expression.Block(vars, expressions); Assert.NotSame(block, block.Update(vars, block.Expressions.Prepend(Expression.Empty()))); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Collections; using System.Collections.Generic; using Xunit; namespace System.Linq.Expressions.Tests { public class ParameterBlockTests : SharedBlockTests { private static IEnumerable<ParameterExpression> SingleParameter { get { return Enumerable.Repeat(Expression.Variable(typeof(int)), 1); } } [Theory] [PerCompilationType(nameof(ConstantValueData))] public void SingleElementBlock(object value, bool useInterpreter) { Type type = value.GetType(); ConstantExpression constant = Expression.Constant(value, type); BlockExpression block = Expression.Block( SingleParameter, constant ); Assert.Equal(type, block.Type); Expression equal = Expression.Equal(constant, block); Assert.True(Expression.Lambda<Func<bool>>(equal).Compile(useInterpreter)()); } [Theory] [PerCompilationType(nameof(ConstantValueData))] public void DoubleElementBlock(object value, bool useInterpreter) { Type type = value.GetType(); ConstantExpression constant = Expression.Constant(value, type); BlockExpression block = Expression.Block( SingleParameter, Expression.Empty(), constant ); Assert.Equal(type, block.Type); Expression equal = Expression.Equal(constant, block); Assert.True(Expression.Lambda<Func<bool>>(equal).Compile(useInterpreter)()); } [Fact] public void NullExpicitType() { AssertExtensions.Throws<ArgumentNullException>("type", () => Expression.Block(null, SingleParameter, Expression.Constant(0))); AssertExtensions.Throws<ArgumentNullException>("type", () => Expression.Block(null, SingleParameter, Enumerable.Repeat(Expression.Constant(0), 1))); } [Fact] public void NullExpressionList() { AssertExtensions.Throws<ArgumentNullException>("expressions", () => Expression.Block(SingleParameter, default(Expression[]))); AssertExtensions.Throws<ArgumentNullException>("expressions", () => Expression.Block(SingleParameter, default(IEnumerable<Expression>))); AssertExtensions.Throws<ArgumentNullException>("expressions", () => Expression.Block(typeof(int), SingleParameter, default(Expression[]))); AssertExtensions.Throws<ArgumentNullException>("expressions", () => Expression.Block(typeof(int), SingleParameter, default(IEnumerable<Expression>))); } [Theory] [MemberData(nameof(BlockSizes))] public void NullExpressionInExpressionList(int size) { List<Expression> expressionList = Enumerable.Range(0, size).Select(i => (Expression)Expression.Constant(1)).ToList(); for (int i = 0; i < expressionList.Count; ++i) { Expression[] expressions = expressionList.ToArray(); expressions[i] = null; AssertExtensions.Throws<ArgumentNullException>($"expressions[{i}]", () => Expression.Block(SingleParameter, expressions)); AssertExtensions.Throws<ArgumentNullException>($"expressions[{i}]", () => Expression.Block(SingleParameter, expressions.Skip(0))); AssertExtensions.Throws<ArgumentNullException>($"expressions[{i}]", () => Expression.Block(typeof(int), SingleParameter, expressions)); AssertExtensions.Throws<ArgumentNullException>($"expressions[{i}]", () => Expression.Block(typeof(int), SingleParameter, expressions.Skip(0))); } } [Theory] [MemberData(nameof(BlockSizes))] public void UnreadableExpressionInExpressionList(int size) { List<Expression> expressionList = Enumerable.Range(0, size).Select(i => (Expression)Expression.Constant(1)).ToList(); for (int i = 0; i != expressionList.Count; ++i) { Expression[] expressions = expressionList.ToArray(); expressions[i] = UnreadableExpression; AssertExtensions.Throws<ArgumentException>($"expressions[{i}]", () => Expression.Block(SingleParameter, expressions)); AssertExtensions.Throws<ArgumentException>($"expressions[{i}]", () => Expression.Block(SingleParameter, expressions.Skip(0))); AssertExtensions.Throws<ArgumentException>($"expressions[{i}]", () => Expression.Block(typeof(int), SingleParameter, expressions)); AssertExtensions.Throws<ArgumentException>($"expressions[{i}]", () => Expression.Block(typeof(int), SingleParameter, expressions.Skip(0))); } } [Theory] [PerCompilationType(nameof(ObjectAssignableConstantValuesAndSizes))] public void BlockExplicitType(object value, int blockSize, bool useInterpreter) { ConstantExpression constant = Expression.Constant(value, value.GetType()); BlockExpression block = Expression.Block(typeof(object), SingleParameter, PadBlock(blockSize - 1, constant)); Assert.Equal(typeof(object), block.Type); Expression equal = Expression.Equal(constant, block); Assert.True(Expression.Lambda<Func<bool>>(equal).Compile(useInterpreter)()); } [Theory] [MemberData(nameof(BlockSizes))] public void BlockInvalidExplicitType(int blockSize) { ConstantExpression constant = Expression.Constant(0); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, Expression.Constant(0)); AssertExtensions.Throws<ArgumentException>(null, () => Expression.Block(typeof(string), SingleParameter, expressions)); AssertExtensions.Throws<ArgumentException>(null, () => Expression.Block(typeof(string), SingleParameter, expressions.ToArray())); } [Theory] [PerCompilationType(nameof(ConstantValuesAndSizes))] public void BlockFromEmptyParametersSameAsFromParams(object value, int blockSize, bool useInterpreter) { ConstantExpression constant = Expression.Constant(value, value.GetType()); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, constant); BlockExpression fromParamsBlock = Expression.Block(SingleParameter, expressions.ToArray()); BlockExpression fromEnumBlock = Expression.Block(SingleParameter, expressions); Assert.Equal(fromParamsBlock.GetType(), fromEnumBlock.GetType()); Assert.True(Expression.Lambda<Func<bool>>(Expression.Equal(constant, fromParamsBlock)).Compile(useInterpreter)()); Assert.True(Expression.Lambda<Func<bool>>(Expression.Equal(constant, fromEnumBlock)).Compile(useInterpreter)()); } [Theory] [MemberData(nameof(ConstantValuesAndSizes))] public void InvalidExpressionIndex(object value, int blockSize) { BlockExpression block = Expression.Block(SingleParameter, PadBlock(blockSize - 1, Expression.Constant(value, value.GetType()))); AssertExtensions.Throws<ArgumentOutOfRangeException>("index", () => block.Expressions[-1]); AssertExtensions.Throws<ArgumentOutOfRangeException>("index", () => block.Expressions[blockSize]); } [Fact] public void EmptyBlockWithParametersAndNonVoidTypeNotAllowed() { AssertExtensions.Throws<ArgumentException>(null, () => Expression.Block(typeof(int), SingleParameter)); AssertExtensions.Throws<ArgumentException>(null, () => Expression.Block(typeof(int), SingleParameter, Enumerable.Empty<Expression>())); } [Theory] [MemberData(nameof(ConstantValuesAndSizes))] public void ResultPropertyFromParams(object value, int blockSize) { ConstantExpression constant = Expression.Constant(value, value.GetType()); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, constant); BlockExpression block = Expression.Block(SingleParameter, expressions.ToArray()); Assert.Same(constant, block.Result); } [Theory] [MemberData(nameof(ConstantValuesAndSizes))] public void ResultPropertyFromEnumerable(object value, int blockSize) { ConstantExpression constant = Expression.Constant(value, value.GetType()); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, constant); BlockExpression block = Expression.Block(SingleParameter, expressions); Assert.Same(constant, block.Result); } [Theory] [MemberData(nameof(ConstantValuesAndSizes))] public void VariableCountCorrect(object value, int blockSize) { IEnumerable<ParameterExpression> vars = Enumerable.Range(0, blockSize).Select(i => Expression.Variable(value.GetType())); BlockExpression block = Expression.Block(vars, Expression.Constant(value, value.GetType())); Assert.Equal(blockSize, block.Variables.Count); } [Theory] [MemberData(nameof(ConstantValuesAndSizes))] public void RewriteToSameWithSameValues(object value, int blockSize) { ConstantExpression constant = Expression.Constant(value, value.GetType()); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, constant).ToArray(); BlockExpression block = Expression.Block(SingleParameter, expressions); Assert.Same(block, block.Update(block.Variables.ToArray(), expressions)); Assert.Same(block, block.Update(block.Variables.ToArray(), expressions)); Assert.Same(block, NoOpVisitor.Instance.Visit(block)); } [Theory] [MemberData(nameof(ConstantValuesAndSizes))] public void CanFindItems(object value, int blockSize) { ConstantExpression[] values = new ConstantExpression[blockSize]; for (int i = 0; i != values.Length; ++i) values[i] = Expression.Constant(value); BlockExpression block = Expression.Block(SingleParameter, values); IList<Expression> expressions = block.Expressions; for (int i = 0; i != values.Length; ++i) Assert.Equal(i, expressions.IndexOf(values[i])); } [Theory] [MemberData(nameof(ConstantValuesAndSizes))] public void IdentifyNonAbsentItemAsAbsent(object value, int blockSize) { ConstantExpression constant = Expression.Constant(value, value.GetType()); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, constant); BlockExpression block = Expression.Block(SingleParameter, expressions); Assert.Equal(-1, block.Expressions.IndexOf(Expression.Default(typeof(long)))); Assert.DoesNotContain(null, block.Expressions); } [Theory] [MemberData(nameof(ConstantValuesAndSizes))] public void ExpressionsEnumerable(object value, int blockSize) { ConstantExpression[] values = new ConstantExpression[blockSize]; for (int i = 0; i != values.Length; ++i) values[i] = Expression.Constant(value); BlockExpression block = Expression.Block(SingleParameter, values); Assert.True(values.SequenceEqual(block.Expressions)); int index = 0; foreach (Expression exp in ((IEnumerable)block.Expressions)) Assert.Same(exp, values[index++]); } [Theory] [MemberData(nameof(ConstantValuesAndSizes))] public void UpdateWithExpressionsReturnsSame(object value, int blockSize) { ConstantExpression constant = Expression.Constant(value, value.GetType()); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, constant); BlockExpression block = Expression.Block(SingleParameter, expressions); Assert.Same(block, block.Update(block.Variables, block.Expressions)); Assert.Same(block, NoOpVisitor.Instance.Visit(block)); } [Theory] [MemberData(nameof(ConstantValuesAndSizes))] public void Visit(object value, int blockSize) { ConstantExpression constant = Expression.Constant(value, value.GetType()); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, constant); BlockExpression block = Expression.Block(SingleParameter, expressions); Assert.NotSame(block, new TestVistor().Visit(block)); } [Theory] [MemberData(nameof(ObjectAssignableConstantValuesAndSizes))] public void VisitTyped(object value, int blockSize) { ConstantExpression constant = Expression.Constant(value, value.GetType()); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, constant); BlockExpression block = Expression.Block(typeof(object), SingleParameter, expressions); Assert.NotSame(block, new TestVistor().Visit(block)); } [Theory] [MemberData(nameof(BlockSizes))] public void NullVariables(int blockSize) { IEnumerable<Expression> expressions = PadBlock(blockSize - 1, Expression.Constant(0)); IEnumerable<ParameterExpression> vars = Enumerable.Repeat(default(ParameterExpression), 1); AssertExtensions.Throws<ArgumentNullException>("variables[0]", () => Expression.Block(vars, expressions)); AssertExtensions.Throws<ArgumentNullException>("variables[0]", () => Expression.Block(vars, expressions.ToArray())); AssertExtensions.Throws<ArgumentNullException>("variables[0]", () => Expression.Block(typeof(object), vars, expressions)); AssertExtensions.Throws<ArgumentNullException>("variables[0]", () => Expression.Block(typeof(object), vars, expressions.ToArray())); } [Theory] [MemberData(nameof(BlockSizes))] public void ByRefVariables(int blockSize) { IEnumerable<Expression> expressions = PadBlock(blockSize - 1, Expression.Constant(0)); IEnumerable<ParameterExpression> vars = Enumerable.Repeat(Expression.Parameter(typeof(int).MakeByRefType()), 1); AssertExtensions.Throws<ArgumentException>("variables[0]", () => Expression.Block(vars, expressions)); AssertExtensions.Throws<ArgumentException>("variables[0]", () => Expression.Block(vars, expressions.ToArray())); AssertExtensions.Throws<ArgumentException>("variables[0]", () => Expression.Block(typeof(object), vars, expressions)); AssertExtensions.Throws<ArgumentException>("variables[0]", () => Expression.Block(typeof(object), vars, expressions.ToArray())); } [Theory] [MemberData(nameof(BlockSizes))] public void RepeatedVariables(int blockSize) { IEnumerable<Expression> expressions = PadBlock(blockSize - 1, Expression.Constant(0)); ParameterExpression variable = Expression.Variable(typeof(int)); IEnumerable<ParameterExpression> vars = Enumerable.Repeat(variable, 2); AssertExtensions.Throws<ArgumentException>("variables[1]", () => Expression.Block(vars, expressions)); AssertExtensions.Throws<ArgumentException>("variables[1]", () => Expression.Block(vars, expressions.ToArray())); AssertExtensions.Throws<ArgumentException>("variables[1]", () => Expression.Block(typeof(object), vars, expressions)); AssertExtensions.Throws<ArgumentException>("variables[1]", () => Expression.Block(typeof(object), vars, expressions.ToArray())); } [Theory, MemberData(nameof(BlockSizes))] public void UpdateDoesntRepeatEnumeration(int blockSize) { ConstantExpression constant = Expression.Constant(0); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, constant).ToArray(); ParameterExpression[] vars = {Expression.Variable(typeof(int)), Expression.Variable(typeof(string))}; BlockExpression block = Expression.Block(vars, expressions); Assert.Same(block, block.Update(new RunOnceEnumerable<ParameterExpression>(vars), block.Expressions)); vars = new[] {Expression.Variable(typeof(int)), Expression.Variable(typeof(string))}; Assert.NotSame(block, block.Update(new RunOnceEnumerable<ParameterExpression>(vars), block.Expressions)); } [Theory, MemberData(nameof(BlockSizes))] public void UpdateDifferentSizeReturnsDifferent(int blockSize) { ConstantExpression constant = Expression.Constant(0); IEnumerable<Expression> expressions = PadBlock(blockSize - 1, constant).ToArray(); ParameterExpression[] vars = { Expression.Variable(typeof(int)), Expression.Variable(typeof(string)) }; BlockExpression block = Expression.Block(vars, expressions); Assert.NotSame(block, block.Update(vars, block.Expressions.Prepend(Expression.Empty()))); } } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/HardwareIntrinsics/X86/Sse1/MoveLowToHigh_r.csproj
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> </PropertyGroup> <PropertyGroup> <DebugType>Embedded</DebugType> <Optimize /> </PropertyGroup> <ItemGroup> <Compile Include="MoveLowToHigh.cs" /> </ItemGroup> </Project>
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> </PropertyGroup> <PropertyGroup> <DebugType>Embedded</DebugType> <Optimize /> </PropertyGroup> <ItemGroup> <Compile Include="MoveLowToHigh.cs" /> </ItemGroup> </Project>
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/libraries/Common/src/Interop/Windows/Advapi32/Interop.GetSecurityInfoByHandle.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Runtime.InteropServices; internal static partial class Interop { internal static partial class Advapi32 { [GeneratedDllImport(Interop.Libraries.Advapi32, EntryPoint = "GetSecurityInfo")] internal static unsafe partial uint GetSecurityInfoByHandle( SafeHandle handle, /*DWORD*/ uint objectType, /*DWORD*/ uint securityInformation, IntPtr* sidOwner, IntPtr* sidGroup, IntPtr* dacl, IntPtr* sacl, IntPtr* securityDescriptor); } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Runtime.InteropServices; internal static partial class Interop { internal static partial class Advapi32 { [GeneratedDllImport(Interop.Libraries.Advapi32, EntryPoint = "GetSecurityInfo")] internal static unsafe partial uint GetSecurityInfoByHandle( SafeHandle handle, /*DWORD*/ uint objectType, /*DWORD*/ uint securityInformation, IntPtr* sidOwner, IntPtr* sidGroup, IntPtr* dacl, IntPtr* sacl, IntPtr* securityDescriptor); } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/libraries/Common/src/Interop/Windows/SspiCli/Interop.Winnt.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. internal static partial class Interop { internal static class LuidOptions { // Access Control library. internal const uint ANONYMOUS_LOGON_LUID = 0x3e6; } internal static class SecurityIdentifier { internal const int SECURITY_ANONYMOUS_LOGON_RID = 0x00000007; internal const int SECURITY_AUTHENTICATED_USER_RID = 0x0000000B; internal const int SECURITY_LOCAL_SYSTEM_RID = 0x00000012; internal const int SECURITY_BUILTIN_DOMAIN_RID = 0x00000020; } internal static class SecurityGroups { internal const uint SE_GROUP_MANDATORY = 0x00000001; internal const uint SE_GROUP_ENABLED_BY_DEFAULT = 0x00000002; internal const uint SE_GROUP_ENABLED = 0x00000004; internal const uint SE_GROUP_OWNER = 0x00000008; internal const uint SE_GROUP_USE_FOR_DENY_ONLY = 0x00000010; internal const uint SE_GROUP_LOGON_ID = 0xC0000000; internal const uint SE_GROUP_RESOURCE = 0x20000000; } internal static class DuplicateHandleOptions { internal const uint DUPLICATE_CLOSE_SOURCE = 0x00000001; internal const uint DUPLICATE_SAME_ACCESS = 0x00000002; internal const uint DUPLICATE_SAME_ATTRIBUTES = 0x00000004; } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. internal static partial class Interop { internal static class LuidOptions { // Access Control library. internal const uint ANONYMOUS_LOGON_LUID = 0x3e6; } internal static class SecurityIdentifier { internal const int SECURITY_ANONYMOUS_LOGON_RID = 0x00000007; internal const int SECURITY_AUTHENTICATED_USER_RID = 0x0000000B; internal const int SECURITY_LOCAL_SYSTEM_RID = 0x00000012; internal const int SECURITY_BUILTIN_DOMAIN_RID = 0x00000020; } internal static class SecurityGroups { internal const uint SE_GROUP_MANDATORY = 0x00000001; internal const uint SE_GROUP_ENABLED_BY_DEFAULT = 0x00000002; internal const uint SE_GROUP_ENABLED = 0x00000004; internal const uint SE_GROUP_OWNER = 0x00000008; internal const uint SE_GROUP_USE_FOR_DENY_ONLY = 0x00000010; internal const uint SE_GROUP_LOGON_ID = 0xC0000000; internal const uint SE_GROUP_RESOURCE = 0x20000000; } internal static class DuplicateHandleOptions { internal const uint DUPLICATE_CLOSE_SOURCE = 0x00000001; internal const uint DUPLICATE_SAME_ACCESS = 0x00000002; internal const uint DUPLICATE_SAME_ATTRIBUTES = 0x00000004; } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/Directed/tailcall/more_tailcalls.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // Note: This test file is the source of the more_tailcalls.il file. It requires // InlineIL.Fody to compile. It is not used as anything but a reference of that // IL file. using InlineIL; using System; using System.Diagnostics; using System.Reflection; using System.Runtime.CompilerServices; struct S16 { public long A, B; public override string ToString() => $"{A}, {B}"; [MethodImpl(MethodImplOptions.NoInlining)] public string InstanceMethod() => "Instance method"; } struct S32 { public long A, B, C, D; public override string ToString() => $"{A}, {B}, {C}, {D}"; } struct SGC { public object A; public object B; public string C; public string D; public override string ToString() => $"{A}, {B}, {C}, {D}"; } struct SGC2 { public int A; public SGC B; public object C; public int D; public override string ToString() => $"{A}, ({B}), {C}, {D}"; } class HeapInt { public int Value; public HeapInt(int val) => Value = val; public override string ToString() => $"{Value}"; } internal class Program { private static readonly IntPtr s_calcStaticCalli; private static readonly IntPtr s_calcStaticCalliOther; private static readonly IntPtr s_calcStaticCalliRetbuf; private static readonly IntPtr s_calcStaticCalliRetbufOther; private static readonly IntPtr s_emptyCalliOther; private static readonly IntPtr s_instanceMethodOnValueType; static Program() { IL.Emit.Ldftn(new MethodRef(typeof(Program), nameof(CalcStaticCalli))); IL.Pop(out IntPtr calcStaticCalli); s_calcStaticCalli = calcStaticCalli; IL.Emit.Ldftn(new MethodRef(typeof(Program), nameof(CalcStaticCalliOther))); IL.Pop(out IntPtr calcStaticCalliOther); s_calcStaticCalliOther = calcStaticCalliOther; IL.Emit.Ldftn(new MethodRef(typeof(Program), nameof(CalcStaticCalliRetbuf))); IL.Pop(out IntPtr calcStaticCalliRetbuf); s_calcStaticCalliRetbuf = calcStaticCalliRetbuf; IL.Emit.Ldftn(new MethodRef(typeof(Program), nameof(CalcStaticCalliRetbufOther))); IL.Pop(out IntPtr calcStaticCalliRetbufOther); s_calcStaticCalliRetbufOther = calcStaticCalliRetbufOther; IL.Emit.Ldftn(new MethodRef(typeof(Program), nameof(EmptyCalliOther))); IL.Pop(out IntPtr emptyCalliOther); s_emptyCalliOther = emptyCalliOther; IL.Emit.Ldftn(new MethodRef(typeof(S16), nameof(S16.InstanceMethod))); IL.Pop(out IntPtr instanceMethodOnValueType); s_instanceMethodOnValueType = instanceMethodOnValueType; } private static int Main() { const int numCalcIters = 1000000; const int countUpIters = 1000000; int x = numCalcIters; S32 s = default; int expected = 0; while (x != 0) { if (x % 2 == 0) s = default; Calc(ref x, ref s, ref expected); } bool result = true; void Test<T>(Func<T> f, T expected, string name) { Console.Write("{0}: ", name); Stopwatch timer = Stopwatch.StartNew(); T val = f(); timer.Stop(); if (val.Equals(expected)) { Console.WriteLine("OK in {1} ms", name, timer.ElapsedMilliseconds); return; } Console.WriteLine("FAIL (expected {1}, got {2})", name, expected, val); result = false; } void TestCalc<T>(Func<int, int, T> f, T expected, string name) => Test(() => f(numCalcIters, 0), expected, name); ClassImpl c = new ClassImpl(); c.Other = c; InterfaceImpl i = new InterfaceImpl(); i.Other = i; GenInstance<string, int> g = new GenInstance<string, int>(); IGenInterface<string, int> ig = new GenInterfaceImpl<string, int>(); IGenInterface<string, object> ig2 = new GenInterfaceImpl<string, object>(); GenAbstractImpl<string> ga1 = new GenAbstractImpl<string>(); GenAbstractImpl<int> ga2 = new GenAbstractImpl<int>(); long expectedI8 = (long)(((ulong)(uint)expected << 32) | (uint)expected); S16 expectedS16 = new S16 { A = expected, B = expected, }; S32 expectedS32 = new S32 { A = expected, B = expected, C = expected, D = expected, }; int ten = 10; TestCalc(CalcStatic, expected, "Static non-generic"); TestCalc(CalcStaticSmall, (byte)expected, "Static non-generic small"); TestCalc(CalcStaticRetbuf, expectedS32, "Static non-generic retbuf"); TestCalc(CalcStaticLong, expectedI8, "Static non-generic long"); TestCalc(CalcStaticS16, expectedS16, "Static non-generic S16"); TestCalc((x, s) => {CalcStaticVoid(x, s); return s_result;}, expected, "Static void"); TestCalc(new Instance().CalcInstance, expected, "Instance non-generic"); TestCalc(new Instance().CalcInstanceRetbuf, expectedS32, "Instance non-generic retbuf"); TestCalc(c.CalcAbstract, expected, "Abstract class non-generic"); TestCalc(c.CalcAbstractRetbuf, expectedS32, "Abstract class non-generic retbuf"); TestCalc(i.CalcInterface, expected, "Interface non-generic"); TestCalc(i.CalcInterfaceRetbuf, expectedS32, "Interface non-generic retbuf"); TestCalc(CalcStaticCalli, expected, "Static calli"); TestCalc(CalcStaticCalliRetbuf, expectedS32, "Static calli retbuf"); TestCalc(new Instance().CalcInstanceCalli, expected, "Instance calli"); TestCalc(new Instance().CalcInstanceCalliRetbuf, expectedS32, "Instance calli retbuf"); Test(() => EmptyCalli(), "Empty calli", "Static calli without args"); Test(() => ValueTypeInstanceMethodCalli(), "Instance method", "calli to an instance method on a value type"); Test(() => ValueTypeExplicitThisInstanceMethodCalli(), "Instance method", "calli to an instance method on a value type with explicit this"); Test(() => { var v = new InstanceValueType(); v.CountUp(countUpIters); return v.Count; }, countUpIters, "Value type instance call"); Test(() => new Instance().GC("2", 3, "4", 5, "6", "7", "8", 9, ref ten), "2 3 4 5 6 7 8 9 10", "Instance with GC"); Test(() => CountUpHeap(countUpIters, new HeapInt(0)), countUpIters, "Count up with heap int"); Test(() => { int[] val = new int[1]; CountUpRef(countUpIters, ref val[0]); return val[0]; }, countUpIters, "Count up with byref to heap"); Test(() => GenName1Forward("hello"), "System.String hello", "Static generic string"); Test(() => GenName1Forward<object>("hello"), "System.Object hello", "Static generic object"); Test(() => GenName1Forward(5), "System.Int32 5", "Static generic int"); Test(() => GenName2ForwardBoth("hello", (object)"hello2"), "System.String System.Object hello hello2", "Static generic 2 string object"); Test(() => GenName2ForwardBoth("hello", 5), "System.String System.Int32 hello 5", "Static generic 2 string int"); Test(() => GenName2ForwardOne("hello", "hello2"), "System.String System.String hello hello2", "Static generic 1 string"); Test(() => GenName2ForwardOne((object)"hello", "hello2"), "System.Object System.String hello hello2", "Static generic 1 object"); Test(() => GenName2ForwardOne(5, "hello2"), "System.Int32 System.String 5 hello2", "Static generic 1 int"); Test(() => GenName2ForwardNone("hello", "hello2"), "System.Object System.String hello hello2", "Static generic 0"); Test(() => g.NonVirtForward<object, string>("a", 5, "b", "c"), "System.String System.Int32 System.Object System.String a 5 b c", "Instance generic 4"); Test(() => g.VirtForward<object, string>("a", 5, "b", "c"), "System.String System.Int32 System.Object System.String a 5 b c", "Virtual instance generic 4"); Test(() => GenInterfaceForwardF<string, int, string, object>("a", 5, "c", "d", ig), "System.String System.Int32 System.String System.Object a 5 c d", "Interface generic 4"); Test(() => GenInterfaceForwardG<string, int>("a", 5, ig), "System.String System.Int32 a 5", "Interface generic forward G"); Test(() => GenInterfaceForwardNone("a", "b", 5, "d", ig2), "System.String System.Object System.Int32 System.Object a b 5 d", "Interface generic 0"); Test(() => GenInterfaceForward2("a", "b", ig2), "System.String System.Object a b", "Interface generic without generics on method"); Test(() => GenAbstractFString(ga1), "System.String System.Object", "Abstract generic with generic on method 1"); Test(() => GenAbstractFInt(ga2), "System.Int32 System.Object", "Abstract generic with generic on method 2"); Test(() => GenAbstractGString(ga1), "System.String", "Abstract generic without generic on method 1"); Test(() => GenAbstractGInt(ga2), "System.Int32", "Abstract generic without generic on method 2"); int[] a = new int[1_000_000]; a[99] = 1; Test(() => InstantiatingStub1(0, 0, "string", a), a.Length + 1, "Instantiating stub direct"); Test(() => VirtCallThisHasSideEffects(), 1, "Virtual call where computing \"this\" has side effects"); if (result) Console.WriteLine("All tailcall-via-help succeeded"); else Console.WriteLine("One or more failures in tailcall-via-help test"); return result ? 100 : 1; } public static void Calc(ref int x, ref S32 s, ref int acc) { if (x % 2 == 0) acc += (int)(x * 3 + s.A * 7 + s.B * 9 + s.C * -3 + s.D * 4); else acc += (int)(x * 1 + s.A * 9 + s.B * 3 + s.C * -4 + s.D * 5); x--; s.A = 11*x; s.B = 14*x; s.C = -14*x; s.D = 3*x; } [MethodImpl(MethodImplOptions.NoInlining)] private static unsafe int CalcStatic(int x, int acc) { if (x == 0) return acc; S32 s = default; Calc(ref x, ref s, ref acc); IL.Push(x); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticOther))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static int CalcStaticOther(int x, S32 large, int acc) { Calc(ref x, ref large, ref acc); IL.Push(x); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStatic))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static unsafe byte CalcStaticSmall(int x, int acc) { if (x == 0) return (byte)acc; S32 s = default; Calc(ref x, ref s, ref acc); IL.Push(x); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticSmallOther))); return IL.Return<byte>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static byte CalcStaticSmallOther(int x, S32 large, int acc) { Calc(ref x, ref large, ref acc); IL.Push(x); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticSmall))); return IL.Return<byte>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static S32 CalcStaticRetbuf(int x, int acc) { if (x == 0) return new S32 { A = acc, B = acc, C = acc, D = acc, }; S32 s = default; Calc(ref x, ref s, ref acc); IL.Push(x); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticRetbufOther))); return IL.Return<S32>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static S32 CalcStaticRetbufOther(int x, S32 large, int acc) { Calc(ref x, ref large, ref acc); IL.Push(x); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticRetbuf))); return IL.Return<S32>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static long CalcStaticLong(int x, int acc) { if (x == 0) return (long)(((ulong)(uint)acc << 32) | (uint)acc); S32 s = default; Calc(ref x, ref s, ref acc); IL.Push(x); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticLongOther))); return IL.Return<long>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static long CalcStaticLongOther(int x, S32 large, int acc) { Calc(ref x, ref large, ref acc); IL.Push(x); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticLong))); return IL.Return<long>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static S16 CalcStaticS16(int x, int acc) { if (x == 0) return new S16 { A = acc, B = acc }; S32 s = default; Calc(ref x, ref s, ref acc); IL.Push(x); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticS16Other))); return IL.Return<S16>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static S16 CalcStaticS16Other(int x, S32 large, int acc) { Calc(ref x, ref large, ref acc); IL.Push(x); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticS16))); return IL.Return<S16>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static int CalcStaticCalli(int x, int acc) { if (x == 0) return acc; S32 s = default; Calc(ref x, ref s, ref acc); IL.Push(x); IL.Push(s); IL.Push(acc); IL.Push(s_calcStaticCalliOther); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard, typeof(int), typeof(int), typeof(S32), typeof(int))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static int CalcStaticCalliOther(int x, S32 large, int acc) { Calc(ref x, ref large, ref acc); IL.Push(x); IL.Push(acc); IL.Push(s_calcStaticCalli); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard, typeof(int), typeof(int), typeof(int))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string EmptyCalli() { // Force helper-based tailcall out of this function by stackallocing Span<int> values = stackalloc int[Environment.TickCount < 0 ? 30 : 40]; IL.Push(s_emptyCalliOther); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard, typeof(string))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string ValueTypeInstanceMethodCalli() { // Force helper-based tailcall out of this function by stackallocing Span<int> values = stackalloc int[Environment.TickCount < 0 ? 30 : 40]; S16 s16 = new S16(); IL.Push(ref s16); IL.Push(s_instanceMethodOnValueType); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard | CallingConventions.HasThis, typeof(string))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string ValueTypeExplicitThisInstanceMethodCalli() { // Force helper-based tailcall out of this function by stackallocing Span<int> values = stackalloc int[Environment.TickCount < 0 ? 30 : 40]; S16 s16 = new S16(); IL.Push(ref s16); IL.Push(s_instanceMethodOnValueType); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard | CallingConventions.HasThis | CallingConventions.ExplicitThis, typeof(string), typeof(S16).MakeByRefType())); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string EmptyCalliOther() { return "Empty calli"; } [MethodImpl(MethodImplOptions.NoInlining)] private static S32 CalcStaticCalliRetbuf(int x, int acc) { if (x == 0) return new S32 { A = acc, B = acc, C = acc, D = acc, }; S32 s = default; Calc(ref x, ref s, ref acc); IL.Push(x); IL.Push(s); IL.Push(acc); IL.Push(s_calcStaticCalliRetbufOther); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard, typeof(S32), typeof(int), typeof(S32), typeof(int))); return IL.Return<S32>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static S32 CalcStaticCalliRetbufOther(int x, S32 large, int acc) { Calc(ref x, ref large, ref acc); IL.Push(x); IL.Push(acc); IL.Push(s_calcStaticCalliRetbuf); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard, typeof(S32), typeof(int), typeof(int))); return IL.Return<S32>(); } internal static int s_result; [MethodImpl(MethodImplOptions.NoInlining)] private static void CalcStaticVoid(int x, int acc) { if (x == 0) { s_result = acc; return; } S32 s = default; Calc(ref x, ref s, ref acc); IL.Push(x); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticVoidOther))); } [MethodImpl(MethodImplOptions.NoInlining)] private static void CalcStaticVoidOther(int x, S32 large, int acc) { Calc(ref x, ref large, ref acc); IL.Push(x); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticVoid))); } [MethodImpl(MethodImplOptions.NoInlining)] private static int CountUpHeap(int left, HeapInt counter) { if (left == 0) return counter.Value; IL.Push(left - 1); IL.Push(new S32()); IL.Push(new HeapInt(counter.Value + 1)); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CountUpHeapOther))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static int CountUpHeapOther(int left, S32 s, HeapInt counter) { if (left == 0) return counter.Value; IL.Push(left - 1); IL.Push(new HeapInt(counter.Value + 1)); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CountUpHeap))); return IL.Return<int>(); } private static void CountUpRef(int left, ref int counter) { if (left == 0) return; counter++; IL.Push(left - 1); IL.Push(new S32()); IL.Push(ref counter); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CountUpRefOther))); } private static void CountUpRefOther(int left, S32 s, ref int counter) { if (left == 0) return; counter++; IL.Push(left - 1); IL.Push(ref counter); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CountUpRef))); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenName1Forward<T>(T x) { S32 s = default; IL.Push(s); IL.Push(x); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(GenName1)).MakeGenericMethod(typeof(T))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenName1<T>(S32 s, T x) => $"{typeof(T).FullName} {x}"; [MethodImpl(MethodImplOptions.NoInlining)] private static string GenName2ForwardBoth<T1, T2>(T1 x, T2 y) { S32 s = default; IL.Push(s); IL.Push(x); IL.Push(y); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(GenName2)).MakeGenericMethod(typeof(T1), typeof(T2))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenName2ForwardOne<T>(T x, string y) { S32 s = default; IL.Push(s); IL.Push(x); IL.Push(y); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(GenName2)).MakeGenericMethod(typeof(T), typeof(string))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenName2ForwardNone(object x, string y) { S32 s = default; IL.Push(s); IL.Push(x); IL.Push(y); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(GenName2)).MakeGenericMethod(typeof(object), typeof(string))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenName2<T1, T2>(S32 s, T1 a, T2 b) => $"{typeof(T1).FullName} {typeof(T2).FullName} {a} {b}"; [MethodImpl(MethodImplOptions.NoInlining)] private static string GenInterfaceForwardF<T1, T2, T3, T4>(T1 a, T2 b, T3 c, T4 d, IGenInterface<T1, T2> igen) { IL.Push(igen); IL.Push(new S32()); IL.Push(a); IL.Push(b); IL.Push(c); IL.Push(d); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(IGenInterface<T1, T2>), nameof(IGenInterface<T1, T2>.F)).MakeGenericMethod(typeof(T3), typeof(T4))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenInterfaceForwardG<T1, T2>(T1 a, T2 b, IGenInterface<T1, T2> igen) { IL.Push(igen); IL.Push(new S32()); IL.Push(a); IL.Push(b); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(IGenInterface<T1, T2>), nameof(IGenInterface<T1, T2>.G))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenInterfaceForwardNone(string a, object b, int c, object d, IGenInterface<string, object> igen) { IL.Push(igen); IL.Push(new S32()); IL.Push(a); IL.Push(b); IL.Push(c); IL.Push(d); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(IGenInterface<string, object>), nameof(IGenInterface<string, object>.F)).MakeGenericMethod(typeof(int), typeof(object))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenInterfaceForward2(string a, object b, IGenInterface<string, object> igen) { IL.Push(igen); IL.Push(new S32()); IL.Push(a); IL.Push(b); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(IGenInterface<string, object>), nameof(IGenInterface<string, object>.G))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenAbstractFString(GenAbstract<string> ga) { IL.Push(ga); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(GenAbstract<string>), nameof(GenAbstract<string>.F)).MakeGenericMethod(typeof(object))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenAbstractGString(GenAbstract<string> ga) { IL.Push(ga); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(GenAbstract<string>), nameof(GenAbstract<string>.G))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenAbstractFInt(GenAbstract<int> ga) { IL.Push(ga); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(GenAbstract<int>), nameof(GenAbstract<int>.F)).MakeGenericMethod(typeof(object))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenAbstractGInt(GenAbstract<int> ga) { IL.Push(ga); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(GenAbstract<int>), nameof(GenAbstract<int>.G))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static int InstantiatingStub1<T>(int a, int r, T c, Span<int> d) { IL.Push(c); IL.Push(c); IL.Push(c); IL.Push(c); IL.Push(c); IL.Push(c); IL.Push(c); IL.Push(c); IL.Push(a); IL.Push(r); IL.Emit.Ldarg(nameof(d)); IL.Push(r + d[99]); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(InstantiatingStub1Other)).MakeGenericMethod(typeof(T))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static int InstantiatingStub1Other<T>(T c0, T c1, T c2, T c3, T c4, T c5, T c6, T c7, int a, int r, Span<int> d, int result) { if (a == d.Length) return result; else { IL.Push(a + 1); IL.Push(result); IL.Push(c0); IL.Emit.Ldarg(nameof(d)); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(InstantiatingStub1)).MakeGenericMethod(typeof(T))); return IL.Return<int>(); } } class GenericInstance<T> { private GenericInstanceFactory factory; public GenericInstance(GenericInstanceFactory factory) { this.factory = factory; } [MethodImpl(MethodImplOptions.NoInlining)] public virtual int NumberOfInstances() { return factory.counter; } } class GenericInstanceFactory { public int counter = 0; [MethodImpl(MethodImplOptions.NoInlining)] public GenericInstance<string> CreateInstance() { counter++; return new GenericInstance<string>(this); } } [MethodImpl(MethodImplOptions.NoInlining)] private static int VirtCallThisHasSideEffects() { IL.Push(1000); IL.Emit.Localloc(); IL.Emit.Pop(); GenericInstanceFactory fact = new GenericInstanceFactory(); IL.Push(fact); IL.Emit.Call(new MethodRef(typeof(GenericInstanceFactory), nameof(GenericInstanceFactory.CreateInstance))); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(GenericInstance<string>), nameof(GenericInstance<string>.NumberOfInstances))); return IL.Return<int>(); } } class Instance { private static readonly IntPtr s_calcInstanceCalli; private static readonly IntPtr s_calcInstanceCalliOther; private static readonly IntPtr s_calcInstanceCalliRetbuf; private static readonly IntPtr s_calcInstanceCalliRetbufOther; static Instance() { IL.Emit.Ldftn(new MethodRef(typeof(Instance), nameof(CalcInstanceCalli))); IL.Pop(out IntPtr calcInstanceCalli); IL.Emit.Ldftn(new MethodRef(typeof(Instance), nameof(CalcInstanceCalliOther))); IL.Pop(out IntPtr calcInstanceCalliOther); IL.Emit.Ldftn(new MethodRef(typeof(Instance), nameof(CalcInstanceCalliRetbuf))); IL.Pop(out IntPtr calcInstanceCalliRetbuf); IL.Emit.Ldftn(new MethodRef(typeof(Instance), nameof(CalcInstanceCalliRetbufOther))); IL.Pop(out IntPtr calcInstanceCalliRetbufOther); s_calcInstanceCalli = calcInstanceCalli; s_calcInstanceCalliOther = calcInstanceCalliOther; s_calcInstanceCalliRetbuf = calcInstanceCalliRetbuf; s_calcInstanceCalliRetbufOther = calcInstanceCalliRetbufOther; } private int _x; [MethodImpl(MethodImplOptions.NoInlining)] public int CalcInstance(int x, int acc) { if (x != -1234567) _x = x; if (_x == 0) return acc; S32 s = default; Program.Calc(ref _x, ref s, ref acc); IL.Push(this); IL.Push(-1234567); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(Instance), nameof(CalcInstanceOther))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] public int CalcInstanceOther(int x, S32 large, int acc) { Program.Calc(ref _x, ref large, ref acc); IL.Push(this); IL.Push(-1234567); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(Instance), nameof(CalcInstance))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] public S32 CalcInstanceRetbuf(int x, int acc) { if (x != -1234567) _x = x; if (_x == 0) return new S32 { A = acc, B = acc, C = acc, D = acc, }; S32 s = default; Program.Calc(ref _x, ref s, ref acc); IL.Push(this); IL.Push(-1234567); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(Instance), nameof(CalcInstanceRetbufOther))); return IL.Return<S32>(); } [MethodImpl(MethodImplOptions.NoInlining)] public S32 CalcInstanceRetbufOther(int x, S32 large, int acc) { Program.Calc(ref _x, ref large, ref acc); IL.Push(this); IL.Push(-1234567); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(Instance), nameof(CalcInstanceRetbuf))); return IL.Return<S32>(); } [MethodImpl(MethodImplOptions.NoInlining)] public int CalcInstanceCalli(int x, int acc) { if (x != -1234567) _x = x; if (_x == 0) return acc; S32 s = default; Program.Calc(ref _x, ref s, ref acc); IL.Push(this); IL.Push(-1234567); IL.Push(s); IL.Push(acc); IL.Push(s_calcInstanceCalliOther); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard | CallingConventions.HasThis, typeof(int), typeof(int), typeof(S32), typeof(int))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] public int CalcInstanceCalliOther(int x, S32 large, int acc) { Program.Calc(ref _x, ref large, ref acc); IL.Push(this); IL.Push(-1234567); IL.Push(acc); IL.Push(s_calcInstanceCalli); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard | CallingConventions.HasThis, typeof(int), typeof(int), typeof(int))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] public S32 CalcInstanceCalliRetbuf(int x, int acc) { if (x != -1234567) _x = x; if (_x == 0) return new S32 { A = acc, B = acc, C = acc, D = acc, }; S32 s = default; Program.Calc(ref _x, ref s, ref acc); IL.Push(this); IL.Push(-1234567); IL.Push(s); IL.Push(acc); IL.Push(s_calcInstanceCalliRetbufOther); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard | CallingConventions.HasThis, typeof(S32), typeof(int), typeof(S32), typeof(int))); return IL.Return<S32>(); } [MethodImpl(MethodImplOptions.NoInlining)] public S32 CalcInstanceCalliRetbufOther(int x, S32 large, int acc) { Program.Calc(ref _x, ref large, ref acc); IL.Push(this); IL.Push(-1234567); IL.Push(acc); IL.Push(s_calcInstanceCalliRetbuf); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard | CallingConventions.HasThis, typeof(S32), typeof(int), typeof(int))); return IL.Return<S32>(); } [MethodImpl(MethodImplOptions.NoInlining)] public string GC(object a, int b, object c, object d, string e, string f, object g, int h, ref int interior) { IL.Push(this); IL.Push(a); S32 s = new S32(); IL.Push(s); SGC2 sgc = new SGC2 { A = b, B = { A = c, B = d, C = e, D = f, }, C = g, D = h }; IL.Push(sgc); IL.Push(ref interior); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Instance), nameof(GCOther))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private string GCOther(object a, S32 s, SGC2 gc, ref int interior) => $"{a} {gc.A} {gc.B.A} {gc.B.B} {gc.B.C} {gc.B.D} {gc.C} {gc.D} {interior}"; } struct InstanceValueType { public int Count; public void CountUp(int left) { if (left == 0) return; Count++; IL.Push(ref this); IL.Push(left - 1); IL.Push(new S32()); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(InstanceValueType), nameof(CountUpOther))); } private void CountUpOther(int left, S32 s) { if (left == 0) return; Count++; IL.Push(ref this); IL.Push(left - 1); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(InstanceValueType), nameof(CountUp))); } } abstract class BaseClass { public abstract int CalcAbstract(int x, int acc); public abstract int CalcAbstractOther(int x, S32 large, int acc); public abstract S32 CalcAbstractRetbuf(int x, int acc); public abstract S32 CalcAbstractRetbufOther(int x, S32 large, int acc); } class ClassImpl : BaseClass { private int _x; public BaseClass Other { get; set; } [MethodImpl(MethodImplOptions.NoInlining)] public override int CalcAbstract(int x, int acc) { if (x != -1234567) _x = x; if (_x == 0) return acc; S32 s = default; Program.Calc(ref _x, ref s, ref acc); IL.Push(Other); IL.Push(-1234567); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(ClassImpl), nameof(CalcAbstractOther))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] public override int CalcAbstractOther(int x, S32 large, int acc) { Program.Calc(ref _x, ref large, ref acc); IL.Push(Other); IL.Push(-1234567); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(ClassImpl), nameof(CalcAbstract))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] public override S32 CalcAbstractRetbuf(int x, int acc) { if (x != -1234567) _x = x; if (_x == 0) return new S32 { A = acc, B = acc, C = acc, D = acc, }; S32 s = default; Program.Calc(ref _x, ref s, ref acc); IL.Push(Other); IL.Push(-1234567); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(ClassImpl), nameof(CalcAbstractRetbufOther))); return IL.Return<S32>(); } [MethodImpl(MethodImplOptions.NoInlining)] public override S32 CalcAbstractRetbufOther(int x, S32 large, int acc) { Program.Calc(ref _x, ref large, ref acc); IL.Push(Other); IL.Push(-1234567); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(ClassImpl), nameof(CalcAbstractRetbuf))); return IL.Return<S32>(); } } interface IInterface { int CalcInterface(int x, int acc); int CalcInterfaceOther(int x, S32 large, int acc); S32 CalcInterfaceRetbuf(int x, int acc); S32 CalcInterfaceRetbufOther(int x, S32 large, int acc); } class InterfaceImpl : IInterface { private int _x; public IInterface Other { get; set; } [MethodImpl(MethodImplOptions.NoInlining)] public int CalcInterface(int x, int acc) { if (x != -1234567) _x = x; if (_x == 0) return acc; S32 s = default; Program.Calc(ref _x, ref s, ref acc); IL.Push(Other); IL.Push(-1234567); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(IInterface), nameof(CalcInterfaceOther))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] public int CalcInterfaceOther(int x, S32 large, int acc) { Program.Calc(ref _x, ref large, ref acc); IL.Push(Other); IL.Push(-1234567); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(IInterface), nameof(CalcInterface))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] public S32 CalcInterfaceRetbuf(int x, int acc) { if (x != -1234567) _x = x; if (_x == 0) return new S32 { A = acc, B = acc, C = acc, D = acc, }; S32 s = default; Program.Calc(ref _x, ref s, ref acc); IL.Push(Other); IL.Push(-1234567); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(IInterface), nameof(CalcInterfaceRetbufOther))); return IL.Return<S32>(); } [MethodImpl(MethodImplOptions.NoInlining)] public S32 CalcInterfaceRetbufOther(int x, S32 large, int acc) { Program.Calc(ref _x, ref large, ref acc); IL.Push(Other); IL.Push(-1234567); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(IInterface), nameof(CalcInterfaceRetbuf))); return IL.Return<S32>(); } } class GenInstance<T1, T2> { [MethodImpl(MethodImplOptions.NoInlining)] public string NonVirtForward<T3, T4>(T1 a, T2 b, T3 c, T4 d) { IL.Push(this); IL.Push(new S32()); IL.Push(a); IL.Push(b); IL.Push(c); IL.Push(d); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(GenInstance<T1, T2>), nameof(NonVirt)).MakeGenericMethod(typeof(T3), typeof(T4))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] public string VirtForward<T3, T4>(T1 a, T2 b, T3 c, T4 d) { IL.Push(this); IL.Push(new S32()); IL.Push(a); IL.Push(b); IL.Push(c); IL.Push(d); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(GenInstance<T1, T2>), nameof(Virt)).MakeGenericMethod(typeof(T3), typeof(T4))); return IL.Return<string>(); } public string NonVirt<T3, T4>(S32 s, T1 a, T2 b, T3 c, T4 d) => $"{typeof(T1).FullName} {typeof(T2).FullName} {typeof(T3).FullName} {typeof(T4).FullName} {a} {b} {c} {d}"; public virtual string Virt<T3, T4>(S32 s, T1 a, T2 b, T3 c, T4 d) => $"{typeof(T1).FullName} {typeof(T2).FullName} {typeof(T3).FullName} {typeof(T4).FullName} {a} {b} {c} {d}"; } interface IGenInterface<T1, T2> { string F<T3, T4>(S32 s, T1 a, T2 b, T3 c, T4 d); string G(S32 s, T1 a, T2 b); } class GenInterfaceImpl<T1, T2> : IGenInterface<T1, T2> { public string F<T3, T4>(S32 s, T1 a, T2 b, T3 c, T4 d) => $"{typeof(T1).FullName} {typeof(T2).FullName} {typeof(T3).FullName} {typeof(T4).FullName} {a} {b} {c} {d}"; public string G(S32 s, T1 a, T2 b) => $"{typeof(T1).FullName} {typeof(T2).FullName} {a} {b}"; } abstract class GenAbstract<T1> { public abstract string F<T2>(); public abstract string G(); } class GenAbstractImpl<T1> : GenAbstract<T1> { public override string F<T2>() => $"{typeof(T1).FullName} {typeof(T2).FullName}"; public override string G() => $"{typeof(T1).FullName}"; }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // Note: This test file is the source of the more_tailcalls.il file. It requires // InlineIL.Fody to compile. It is not used as anything but a reference of that // IL file. using InlineIL; using System; using System.Diagnostics; using System.Reflection; using System.Runtime.CompilerServices; struct S16 { public long A, B; public override string ToString() => $"{A}, {B}"; [MethodImpl(MethodImplOptions.NoInlining)] public string InstanceMethod() => "Instance method"; } struct S32 { public long A, B, C, D; public override string ToString() => $"{A}, {B}, {C}, {D}"; } struct SGC { public object A; public object B; public string C; public string D; public override string ToString() => $"{A}, {B}, {C}, {D}"; } struct SGC2 { public int A; public SGC B; public object C; public int D; public override string ToString() => $"{A}, ({B}), {C}, {D}"; } class HeapInt { public int Value; public HeapInt(int val) => Value = val; public override string ToString() => $"{Value}"; } internal class Program { private static readonly IntPtr s_calcStaticCalli; private static readonly IntPtr s_calcStaticCalliOther; private static readonly IntPtr s_calcStaticCalliRetbuf; private static readonly IntPtr s_calcStaticCalliRetbufOther; private static readonly IntPtr s_emptyCalliOther; private static readonly IntPtr s_instanceMethodOnValueType; static Program() { IL.Emit.Ldftn(new MethodRef(typeof(Program), nameof(CalcStaticCalli))); IL.Pop(out IntPtr calcStaticCalli); s_calcStaticCalli = calcStaticCalli; IL.Emit.Ldftn(new MethodRef(typeof(Program), nameof(CalcStaticCalliOther))); IL.Pop(out IntPtr calcStaticCalliOther); s_calcStaticCalliOther = calcStaticCalliOther; IL.Emit.Ldftn(new MethodRef(typeof(Program), nameof(CalcStaticCalliRetbuf))); IL.Pop(out IntPtr calcStaticCalliRetbuf); s_calcStaticCalliRetbuf = calcStaticCalliRetbuf; IL.Emit.Ldftn(new MethodRef(typeof(Program), nameof(CalcStaticCalliRetbufOther))); IL.Pop(out IntPtr calcStaticCalliRetbufOther); s_calcStaticCalliRetbufOther = calcStaticCalliRetbufOther; IL.Emit.Ldftn(new MethodRef(typeof(Program), nameof(EmptyCalliOther))); IL.Pop(out IntPtr emptyCalliOther); s_emptyCalliOther = emptyCalliOther; IL.Emit.Ldftn(new MethodRef(typeof(S16), nameof(S16.InstanceMethod))); IL.Pop(out IntPtr instanceMethodOnValueType); s_instanceMethodOnValueType = instanceMethodOnValueType; } private static int Main() { const int numCalcIters = 1000000; const int countUpIters = 1000000; int x = numCalcIters; S32 s = default; int expected = 0; while (x != 0) { if (x % 2 == 0) s = default; Calc(ref x, ref s, ref expected); } bool result = true; void Test<T>(Func<T> f, T expected, string name) { Console.Write("{0}: ", name); Stopwatch timer = Stopwatch.StartNew(); T val = f(); timer.Stop(); if (val.Equals(expected)) { Console.WriteLine("OK in {1} ms", name, timer.ElapsedMilliseconds); return; } Console.WriteLine("FAIL (expected {1}, got {2})", name, expected, val); result = false; } void TestCalc<T>(Func<int, int, T> f, T expected, string name) => Test(() => f(numCalcIters, 0), expected, name); ClassImpl c = new ClassImpl(); c.Other = c; InterfaceImpl i = new InterfaceImpl(); i.Other = i; GenInstance<string, int> g = new GenInstance<string, int>(); IGenInterface<string, int> ig = new GenInterfaceImpl<string, int>(); IGenInterface<string, object> ig2 = new GenInterfaceImpl<string, object>(); GenAbstractImpl<string> ga1 = new GenAbstractImpl<string>(); GenAbstractImpl<int> ga2 = new GenAbstractImpl<int>(); long expectedI8 = (long)(((ulong)(uint)expected << 32) | (uint)expected); S16 expectedS16 = new S16 { A = expected, B = expected, }; S32 expectedS32 = new S32 { A = expected, B = expected, C = expected, D = expected, }; int ten = 10; TestCalc(CalcStatic, expected, "Static non-generic"); TestCalc(CalcStaticSmall, (byte)expected, "Static non-generic small"); TestCalc(CalcStaticRetbuf, expectedS32, "Static non-generic retbuf"); TestCalc(CalcStaticLong, expectedI8, "Static non-generic long"); TestCalc(CalcStaticS16, expectedS16, "Static non-generic S16"); TestCalc((x, s) => {CalcStaticVoid(x, s); return s_result;}, expected, "Static void"); TestCalc(new Instance().CalcInstance, expected, "Instance non-generic"); TestCalc(new Instance().CalcInstanceRetbuf, expectedS32, "Instance non-generic retbuf"); TestCalc(c.CalcAbstract, expected, "Abstract class non-generic"); TestCalc(c.CalcAbstractRetbuf, expectedS32, "Abstract class non-generic retbuf"); TestCalc(i.CalcInterface, expected, "Interface non-generic"); TestCalc(i.CalcInterfaceRetbuf, expectedS32, "Interface non-generic retbuf"); TestCalc(CalcStaticCalli, expected, "Static calli"); TestCalc(CalcStaticCalliRetbuf, expectedS32, "Static calli retbuf"); TestCalc(new Instance().CalcInstanceCalli, expected, "Instance calli"); TestCalc(new Instance().CalcInstanceCalliRetbuf, expectedS32, "Instance calli retbuf"); Test(() => EmptyCalli(), "Empty calli", "Static calli without args"); Test(() => ValueTypeInstanceMethodCalli(), "Instance method", "calli to an instance method on a value type"); Test(() => ValueTypeExplicitThisInstanceMethodCalli(), "Instance method", "calli to an instance method on a value type with explicit this"); Test(() => { var v = new InstanceValueType(); v.CountUp(countUpIters); return v.Count; }, countUpIters, "Value type instance call"); Test(() => new Instance().GC("2", 3, "4", 5, "6", "7", "8", 9, ref ten), "2 3 4 5 6 7 8 9 10", "Instance with GC"); Test(() => CountUpHeap(countUpIters, new HeapInt(0)), countUpIters, "Count up with heap int"); Test(() => { int[] val = new int[1]; CountUpRef(countUpIters, ref val[0]); return val[0]; }, countUpIters, "Count up with byref to heap"); Test(() => GenName1Forward("hello"), "System.String hello", "Static generic string"); Test(() => GenName1Forward<object>("hello"), "System.Object hello", "Static generic object"); Test(() => GenName1Forward(5), "System.Int32 5", "Static generic int"); Test(() => GenName2ForwardBoth("hello", (object)"hello2"), "System.String System.Object hello hello2", "Static generic 2 string object"); Test(() => GenName2ForwardBoth("hello", 5), "System.String System.Int32 hello 5", "Static generic 2 string int"); Test(() => GenName2ForwardOne("hello", "hello2"), "System.String System.String hello hello2", "Static generic 1 string"); Test(() => GenName2ForwardOne((object)"hello", "hello2"), "System.Object System.String hello hello2", "Static generic 1 object"); Test(() => GenName2ForwardOne(5, "hello2"), "System.Int32 System.String 5 hello2", "Static generic 1 int"); Test(() => GenName2ForwardNone("hello", "hello2"), "System.Object System.String hello hello2", "Static generic 0"); Test(() => g.NonVirtForward<object, string>("a", 5, "b", "c"), "System.String System.Int32 System.Object System.String a 5 b c", "Instance generic 4"); Test(() => g.VirtForward<object, string>("a", 5, "b", "c"), "System.String System.Int32 System.Object System.String a 5 b c", "Virtual instance generic 4"); Test(() => GenInterfaceForwardF<string, int, string, object>("a", 5, "c", "d", ig), "System.String System.Int32 System.String System.Object a 5 c d", "Interface generic 4"); Test(() => GenInterfaceForwardG<string, int>("a", 5, ig), "System.String System.Int32 a 5", "Interface generic forward G"); Test(() => GenInterfaceForwardNone("a", "b", 5, "d", ig2), "System.String System.Object System.Int32 System.Object a b 5 d", "Interface generic 0"); Test(() => GenInterfaceForward2("a", "b", ig2), "System.String System.Object a b", "Interface generic without generics on method"); Test(() => GenAbstractFString(ga1), "System.String System.Object", "Abstract generic with generic on method 1"); Test(() => GenAbstractFInt(ga2), "System.Int32 System.Object", "Abstract generic with generic on method 2"); Test(() => GenAbstractGString(ga1), "System.String", "Abstract generic without generic on method 1"); Test(() => GenAbstractGInt(ga2), "System.Int32", "Abstract generic without generic on method 2"); int[] a = new int[1_000_000]; a[99] = 1; Test(() => InstantiatingStub1(0, 0, "string", a), a.Length + 1, "Instantiating stub direct"); Test(() => VirtCallThisHasSideEffects(), 1, "Virtual call where computing \"this\" has side effects"); if (result) Console.WriteLine("All tailcall-via-help succeeded"); else Console.WriteLine("One or more failures in tailcall-via-help test"); return result ? 100 : 1; } public static void Calc(ref int x, ref S32 s, ref int acc) { if (x % 2 == 0) acc += (int)(x * 3 + s.A * 7 + s.B * 9 + s.C * -3 + s.D * 4); else acc += (int)(x * 1 + s.A * 9 + s.B * 3 + s.C * -4 + s.D * 5); x--; s.A = 11*x; s.B = 14*x; s.C = -14*x; s.D = 3*x; } [MethodImpl(MethodImplOptions.NoInlining)] private static unsafe int CalcStatic(int x, int acc) { if (x == 0) return acc; S32 s = default; Calc(ref x, ref s, ref acc); IL.Push(x); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticOther))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static int CalcStaticOther(int x, S32 large, int acc) { Calc(ref x, ref large, ref acc); IL.Push(x); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStatic))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static unsafe byte CalcStaticSmall(int x, int acc) { if (x == 0) return (byte)acc; S32 s = default; Calc(ref x, ref s, ref acc); IL.Push(x); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticSmallOther))); return IL.Return<byte>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static byte CalcStaticSmallOther(int x, S32 large, int acc) { Calc(ref x, ref large, ref acc); IL.Push(x); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticSmall))); return IL.Return<byte>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static S32 CalcStaticRetbuf(int x, int acc) { if (x == 0) return new S32 { A = acc, B = acc, C = acc, D = acc, }; S32 s = default; Calc(ref x, ref s, ref acc); IL.Push(x); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticRetbufOther))); return IL.Return<S32>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static S32 CalcStaticRetbufOther(int x, S32 large, int acc) { Calc(ref x, ref large, ref acc); IL.Push(x); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticRetbuf))); return IL.Return<S32>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static long CalcStaticLong(int x, int acc) { if (x == 0) return (long)(((ulong)(uint)acc << 32) | (uint)acc); S32 s = default; Calc(ref x, ref s, ref acc); IL.Push(x); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticLongOther))); return IL.Return<long>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static long CalcStaticLongOther(int x, S32 large, int acc) { Calc(ref x, ref large, ref acc); IL.Push(x); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticLong))); return IL.Return<long>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static S16 CalcStaticS16(int x, int acc) { if (x == 0) return new S16 { A = acc, B = acc }; S32 s = default; Calc(ref x, ref s, ref acc); IL.Push(x); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticS16Other))); return IL.Return<S16>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static S16 CalcStaticS16Other(int x, S32 large, int acc) { Calc(ref x, ref large, ref acc); IL.Push(x); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticS16))); return IL.Return<S16>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static int CalcStaticCalli(int x, int acc) { if (x == 0) return acc; S32 s = default; Calc(ref x, ref s, ref acc); IL.Push(x); IL.Push(s); IL.Push(acc); IL.Push(s_calcStaticCalliOther); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard, typeof(int), typeof(int), typeof(S32), typeof(int))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static int CalcStaticCalliOther(int x, S32 large, int acc) { Calc(ref x, ref large, ref acc); IL.Push(x); IL.Push(acc); IL.Push(s_calcStaticCalli); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard, typeof(int), typeof(int), typeof(int))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string EmptyCalli() { // Force helper-based tailcall out of this function by stackallocing Span<int> values = stackalloc int[Environment.TickCount < 0 ? 30 : 40]; IL.Push(s_emptyCalliOther); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard, typeof(string))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string ValueTypeInstanceMethodCalli() { // Force helper-based tailcall out of this function by stackallocing Span<int> values = stackalloc int[Environment.TickCount < 0 ? 30 : 40]; S16 s16 = new S16(); IL.Push(ref s16); IL.Push(s_instanceMethodOnValueType); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard | CallingConventions.HasThis, typeof(string))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string ValueTypeExplicitThisInstanceMethodCalli() { // Force helper-based tailcall out of this function by stackallocing Span<int> values = stackalloc int[Environment.TickCount < 0 ? 30 : 40]; S16 s16 = new S16(); IL.Push(ref s16); IL.Push(s_instanceMethodOnValueType); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard | CallingConventions.HasThis | CallingConventions.ExplicitThis, typeof(string), typeof(S16).MakeByRefType())); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string EmptyCalliOther() { return "Empty calli"; } [MethodImpl(MethodImplOptions.NoInlining)] private static S32 CalcStaticCalliRetbuf(int x, int acc) { if (x == 0) return new S32 { A = acc, B = acc, C = acc, D = acc, }; S32 s = default; Calc(ref x, ref s, ref acc); IL.Push(x); IL.Push(s); IL.Push(acc); IL.Push(s_calcStaticCalliRetbufOther); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard, typeof(S32), typeof(int), typeof(S32), typeof(int))); return IL.Return<S32>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static S32 CalcStaticCalliRetbufOther(int x, S32 large, int acc) { Calc(ref x, ref large, ref acc); IL.Push(x); IL.Push(acc); IL.Push(s_calcStaticCalliRetbuf); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard, typeof(S32), typeof(int), typeof(int))); return IL.Return<S32>(); } internal static int s_result; [MethodImpl(MethodImplOptions.NoInlining)] private static void CalcStaticVoid(int x, int acc) { if (x == 0) { s_result = acc; return; } S32 s = default; Calc(ref x, ref s, ref acc); IL.Push(x); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticVoidOther))); } [MethodImpl(MethodImplOptions.NoInlining)] private static void CalcStaticVoidOther(int x, S32 large, int acc) { Calc(ref x, ref large, ref acc); IL.Push(x); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CalcStaticVoid))); } [MethodImpl(MethodImplOptions.NoInlining)] private static int CountUpHeap(int left, HeapInt counter) { if (left == 0) return counter.Value; IL.Push(left - 1); IL.Push(new S32()); IL.Push(new HeapInt(counter.Value + 1)); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CountUpHeapOther))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static int CountUpHeapOther(int left, S32 s, HeapInt counter) { if (left == 0) return counter.Value; IL.Push(left - 1); IL.Push(new HeapInt(counter.Value + 1)); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CountUpHeap))); return IL.Return<int>(); } private static void CountUpRef(int left, ref int counter) { if (left == 0) return; counter++; IL.Push(left - 1); IL.Push(new S32()); IL.Push(ref counter); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CountUpRefOther))); } private static void CountUpRefOther(int left, S32 s, ref int counter) { if (left == 0) return; counter++; IL.Push(left - 1); IL.Push(ref counter); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(CountUpRef))); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenName1Forward<T>(T x) { S32 s = default; IL.Push(s); IL.Push(x); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(GenName1)).MakeGenericMethod(typeof(T))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenName1<T>(S32 s, T x) => $"{typeof(T).FullName} {x}"; [MethodImpl(MethodImplOptions.NoInlining)] private static string GenName2ForwardBoth<T1, T2>(T1 x, T2 y) { S32 s = default; IL.Push(s); IL.Push(x); IL.Push(y); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(GenName2)).MakeGenericMethod(typeof(T1), typeof(T2))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenName2ForwardOne<T>(T x, string y) { S32 s = default; IL.Push(s); IL.Push(x); IL.Push(y); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(GenName2)).MakeGenericMethod(typeof(T), typeof(string))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenName2ForwardNone(object x, string y) { S32 s = default; IL.Push(s); IL.Push(x); IL.Push(y); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(GenName2)).MakeGenericMethod(typeof(object), typeof(string))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenName2<T1, T2>(S32 s, T1 a, T2 b) => $"{typeof(T1).FullName} {typeof(T2).FullName} {a} {b}"; [MethodImpl(MethodImplOptions.NoInlining)] private static string GenInterfaceForwardF<T1, T2, T3, T4>(T1 a, T2 b, T3 c, T4 d, IGenInterface<T1, T2> igen) { IL.Push(igen); IL.Push(new S32()); IL.Push(a); IL.Push(b); IL.Push(c); IL.Push(d); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(IGenInterface<T1, T2>), nameof(IGenInterface<T1, T2>.F)).MakeGenericMethod(typeof(T3), typeof(T4))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenInterfaceForwardG<T1, T2>(T1 a, T2 b, IGenInterface<T1, T2> igen) { IL.Push(igen); IL.Push(new S32()); IL.Push(a); IL.Push(b); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(IGenInterface<T1, T2>), nameof(IGenInterface<T1, T2>.G))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenInterfaceForwardNone(string a, object b, int c, object d, IGenInterface<string, object> igen) { IL.Push(igen); IL.Push(new S32()); IL.Push(a); IL.Push(b); IL.Push(c); IL.Push(d); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(IGenInterface<string, object>), nameof(IGenInterface<string, object>.F)).MakeGenericMethod(typeof(int), typeof(object))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenInterfaceForward2(string a, object b, IGenInterface<string, object> igen) { IL.Push(igen); IL.Push(new S32()); IL.Push(a); IL.Push(b); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(IGenInterface<string, object>), nameof(IGenInterface<string, object>.G))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenAbstractFString(GenAbstract<string> ga) { IL.Push(ga); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(GenAbstract<string>), nameof(GenAbstract<string>.F)).MakeGenericMethod(typeof(object))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenAbstractGString(GenAbstract<string> ga) { IL.Push(ga); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(GenAbstract<string>), nameof(GenAbstract<string>.G))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenAbstractFInt(GenAbstract<int> ga) { IL.Push(ga); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(GenAbstract<int>), nameof(GenAbstract<int>.F)).MakeGenericMethod(typeof(object))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static string GenAbstractGInt(GenAbstract<int> ga) { IL.Push(ga); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(GenAbstract<int>), nameof(GenAbstract<int>.G))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static int InstantiatingStub1<T>(int a, int r, T c, Span<int> d) { IL.Push(c); IL.Push(c); IL.Push(c); IL.Push(c); IL.Push(c); IL.Push(c); IL.Push(c); IL.Push(c); IL.Push(a); IL.Push(r); IL.Emit.Ldarg(nameof(d)); IL.Push(r + d[99]); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(InstantiatingStub1Other)).MakeGenericMethod(typeof(T))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] private static int InstantiatingStub1Other<T>(T c0, T c1, T c2, T c3, T c4, T c5, T c6, T c7, int a, int r, Span<int> d, int result) { if (a == d.Length) return result; else { IL.Push(a + 1); IL.Push(result); IL.Push(c0); IL.Emit.Ldarg(nameof(d)); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Program), nameof(InstantiatingStub1)).MakeGenericMethod(typeof(T))); return IL.Return<int>(); } } class GenericInstance<T> { private GenericInstanceFactory factory; public GenericInstance(GenericInstanceFactory factory) { this.factory = factory; } [MethodImpl(MethodImplOptions.NoInlining)] public virtual int NumberOfInstances() { return factory.counter; } } class GenericInstanceFactory { public int counter = 0; [MethodImpl(MethodImplOptions.NoInlining)] public GenericInstance<string> CreateInstance() { counter++; return new GenericInstance<string>(this); } } [MethodImpl(MethodImplOptions.NoInlining)] private static int VirtCallThisHasSideEffects() { IL.Push(1000); IL.Emit.Localloc(); IL.Emit.Pop(); GenericInstanceFactory fact = new GenericInstanceFactory(); IL.Push(fact); IL.Emit.Call(new MethodRef(typeof(GenericInstanceFactory), nameof(GenericInstanceFactory.CreateInstance))); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(GenericInstance<string>), nameof(GenericInstance<string>.NumberOfInstances))); return IL.Return<int>(); } } class Instance { private static readonly IntPtr s_calcInstanceCalli; private static readonly IntPtr s_calcInstanceCalliOther; private static readonly IntPtr s_calcInstanceCalliRetbuf; private static readonly IntPtr s_calcInstanceCalliRetbufOther; static Instance() { IL.Emit.Ldftn(new MethodRef(typeof(Instance), nameof(CalcInstanceCalli))); IL.Pop(out IntPtr calcInstanceCalli); IL.Emit.Ldftn(new MethodRef(typeof(Instance), nameof(CalcInstanceCalliOther))); IL.Pop(out IntPtr calcInstanceCalliOther); IL.Emit.Ldftn(new MethodRef(typeof(Instance), nameof(CalcInstanceCalliRetbuf))); IL.Pop(out IntPtr calcInstanceCalliRetbuf); IL.Emit.Ldftn(new MethodRef(typeof(Instance), nameof(CalcInstanceCalliRetbufOther))); IL.Pop(out IntPtr calcInstanceCalliRetbufOther); s_calcInstanceCalli = calcInstanceCalli; s_calcInstanceCalliOther = calcInstanceCalliOther; s_calcInstanceCalliRetbuf = calcInstanceCalliRetbuf; s_calcInstanceCalliRetbufOther = calcInstanceCalliRetbufOther; } private int _x; [MethodImpl(MethodImplOptions.NoInlining)] public int CalcInstance(int x, int acc) { if (x != -1234567) _x = x; if (_x == 0) return acc; S32 s = default; Program.Calc(ref _x, ref s, ref acc); IL.Push(this); IL.Push(-1234567); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(Instance), nameof(CalcInstanceOther))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] public int CalcInstanceOther(int x, S32 large, int acc) { Program.Calc(ref _x, ref large, ref acc); IL.Push(this); IL.Push(-1234567); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(Instance), nameof(CalcInstance))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] public S32 CalcInstanceRetbuf(int x, int acc) { if (x != -1234567) _x = x; if (_x == 0) return new S32 { A = acc, B = acc, C = acc, D = acc, }; S32 s = default; Program.Calc(ref _x, ref s, ref acc); IL.Push(this); IL.Push(-1234567); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(Instance), nameof(CalcInstanceRetbufOther))); return IL.Return<S32>(); } [MethodImpl(MethodImplOptions.NoInlining)] public S32 CalcInstanceRetbufOther(int x, S32 large, int acc) { Program.Calc(ref _x, ref large, ref acc); IL.Push(this); IL.Push(-1234567); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(Instance), nameof(CalcInstanceRetbuf))); return IL.Return<S32>(); } [MethodImpl(MethodImplOptions.NoInlining)] public int CalcInstanceCalli(int x, int acc) { if (x != -1234567) _x = x; if (_x == 0) return acc; S32 s = default; Program.Calc(ref _x, ref s, ref acc); IL.Push(this); IL.Push(-1234567); IL.Push(s); IL.Push(acc); IL.Push(s_calcInstanceCalliOther); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard | CallingConventions.HasThis, typeof(int), typeof(int), typeof(S32), typeof(int))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] public int CalcInstanceCalliOther(int x, S32 large, int acc) { Program.Calc(ref _x, ref large, ref acc); IL.Push(this); IL.Push(-1234567); IL.Push(acc); IL.Push(s_calcInstanceCalli); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard | CallingConventions.HasThis, typeof(int), typeof(int), typeof(int))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] public S32 CalcInstanceCalliRetbuf(int x, int acc) { if (x != -1234567) _x = x; if (_x == 0) return new S32 { A = acc, B = acc, C = acc, D = acc, }; S32 s = default; Program.Calc(ref _x, ref s, ref acc); IL.Push(this); IL.Push(-1234567); IL.Push(s); IL.Push(acc); IL.Push(s_calcInstanceCalliRetbufOther); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard | CallingConventions.HasThis, typeof(S32), typeof(int), typeof(S32), typeof(int))); return IL.Return<S32>(); } [MethodImpl(MethodImplOptions.NoInlining)] public S32 CalcInstanceCalliRetbufOther(int x, S32 large, int acc) { Program.Calc(ref _x, ref large, ref acc); IL.Push(this); IL.Push(-1234567); IL.Push(acc); IL.Push(s_calcInstanceCalliRetbuf); IL.Emit.Tail(); IL.Emit.Calli(new StandAloneMethodSig(CallingConventions.Standard | CallingConventions.HasThis, typeof(S32), typeof(int), typeof(int))); return IL.Return<S32>(); } [MethodImpl(MethodImplOptions.NoInlining)] public string GC(object a, int b, object c, object d, string e, string f, object g, int h, ref int interior) { IL.Push(this); IL.Push(a); S32 s = new S32(); IL.Push(s); SGC2 sgc = new SGC2 { A = b, B = { A = c, B = d, C = e, D = f, }, C = g, D = h }; IL.Push(sgc); IL.Push(ref interior); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(Instance), nameof(GCOther))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] private string GCOther(object a, S32 s, SGC2 gc, ref int interior) => $"{a} {gc.A} {gc.B.A} {gc.B.B} {gc.B.C} {gc.B.D} {gc.C} {gc.D} {interior}"; } struct InstanceValueType { public int Count; public void CountUp(int left) { if (left == 0) return; Count++; IL.Push(ref this); IL.Push(left - 1); IL.Push(new S32()); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(InstanceValueType), nameof(CountUpOther))); } private void CountUpOther(int left, S32 s) { if (left == 0) return; Count++; IL.Push(ref this); IL.Push(left - 1); IL.Emit.Tail(); IL.Emit.Call(new MethodRef(typeof(InstanceValueType), nameof(CountUp))); } } abstract class BaseClass { public abstract int CalcAbstract(int x, int acc); public abstract int CalcAbstractOther(int x, S32 large, int acc); public abstract S32 CalcAbstractRetbuf(int x, int acc); public abstract S32 CalcAbstractRetbufOther(int x, S32 large, int acc); } class ClassImpl : BaseClass { private int _x; public BaseClass Other { get; set; } [MethodImpl(MethodImplOptions.NoInlining)] public override int CalcAbstract(int x, int acc) { if (x != -1234567) _x = x; if (_x == 0) return acc; S32 s = default; Program.Calc(ref _x, ref s, ref acc); IL.Push(Other); IL.Push(-1234567); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(ClassImpl), nameof(CalcAbstractOther))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] public override int CalcAbstractOther(int x, S32 large, int acc) { Program.Calc(ref _x, ref large, ref acc); IL.Push(Other); IL.Push(-1234567); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(ClassImpl), nameof(CalcAbstract))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] public override S32 CalcAbstractRetbuf(int x, int acc) { if (x != -1234567) _x = x; if (_x == 0) return new S32 { A = acc, B = acc, C = acc, D = acc, }; S32 s = default; Program.Calc(ref _x, ref s, ref acc); IL.Push(Other); IL.Push(-1234567); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(ClassImpl), nameof(CalcAbstractRetbufOther))); return IL.Return<S32>(); } [MethodImpl(MethodImplOptions.NoInlining)] public override S32 CalcAbstractRetbufOther(int x, S32 large, int acc) { Program.Calc(ref _x, ref large, ref acc); IL.Push(Other); IL.Push(-1234567); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(ClassImpl), nameof(CalcAbstractRetbuf))); return IL.Return<S32>(); } } interface IInterface { int CalcInterface(int x, int acc); int CalcInterfaceOther(int x, S32 large, int acc); S32 CalcInterfaceRetbuf(int x, int acc); S32 CalcInterfaceRetbufOther(int x, S32 large, int acc); } class InterfaceImpl : IInterface { private int _x; public IInterface Other { get; set; } [MethodImpl(MethodImplOptions.NoInlining)] public int CalcInterface(int x, int acc) { if (x != -1234567) _x = x; if (_x == 0) return acc; S32 s = default; Program.Calc(ref _x, ref s, ref acc); IL.Push(Other); IL.Push(-1234567); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(IInterface), nameof(CalcInterfaceOther))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] public int CalcInterfaceOther(int x, S32 large, int acc) { Program.Calc(ref _x, ref large, ref acc); IL.Push(Other); IL.Push(-1234567); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(IInterface), nameof(CalcInterface))); return IL.Return<int>(); } [MethodImpl(MethodImplOptions.NoInlining)] public S32 CalcInterfaceRetbuf(int x, int acc) { if (x != -1234567) _x = x; if (_x == 0) return new S32 { A = acc, B = acc, C = acc, D = acc, }; S32 s = default; Program.Calc(ref _x, ref s, ref acc); IL.Push(Other); IL.Push(-1234567); IL.Push(s); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(IInterface), nameof(CalcInterfaceRetbufOther))); return IL.Return<S32>(); } [MethodImpl(MethodImplOptions.NoInlining)] public S32 CalcInterfaceRetbufOther(int x, S32 large, int acc) { Program.Calc(ref _x, ref large, ref acc); IL.Push(Other); IL.Push(-1234567); IL.Push(acc); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(IInterface), nameof(CalcInterfaceRetbuf))); return IL.Return<S32>(); } } class GenInstance<T1, T2> { [MethodImpl(MethodImplOptions.NoInlining)] public string NonVirtForward<T3, T4>(T1 a, T2 b, T3 c, T4 d) { IL.Push(this); IL.Push(new S32()); IL.Push(a); IL.Push(b); IL.Push(c); IL.Push(d); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(GenInstance<T1, T2>), nameof(NonVirt)).MakeGenericMethod(typeof(T3), typeof(T4))); return IL.Return<string>(); } [MethodImpl(MethodImplOptions.NoInlining)] public string VirtForward<T3, T4>(T1 a, T2 b, T3 c, T4 d) { IL.Push(this); IL.Push(new S32()); IL.Push(a); IL.Push(b); IL.Push(c); IL.Push(d); IL.Emit.Tail(); IL.Emit.Callvirt(new MethodRef(typeof(GenInstance<T1, T2>), nameof(Virt)).MakeGenericMethod(typeof(T3), typeof(T4))); return IL.Return<string>(); } public string NonVirt<T3, T4>(S32 s, T1 a, T2 b, T3 c, T4 d) => $"{typeof(T1).FullName} {typeof(T2).FullName} {typeof(T3).FullName} {typeof(T4).FullName} {a} {b} {c} {d}"; public virtual string Virt<T3, T4>(S32 s, T1 a, T2 b, T3 c, T4 d) => $"{typeof(T1).FullName} {typeof(T2).FullName} {typeof(T3).FullName} {typeof(T4).FullName} {a} {b} {c} {d}"; } interface IGenInterface<T1, T2> { string F<T3, T4>(S32 s, T1 a, T2 b, T3 c, T4 d); string G(S32 s, T1 a, T2 b); } class GenInterfaceImpl<T1, T2> : IGenInterface<T1, T2> { public string F<T3, T4>(S32 s, T1 a, T2 b, T3 c, T4 d) => $"{typeof(T1).FullName} {typeof(T2).FullName} {typeof(T3).FullName} {typeof(T4).FullName} {a} {b} {c} {d}"; public string G(S32 s, T1 a, T2 b) => $"{typeof(T1).FullName} {typeof(T2).FullName} {a} {b}"; } abstract class GenAbstract<T1> { public abstract string F<T2>(); public abstract string G(); } class GenAbstractImpl<T1> : GenAbstract<T1> { public override string F<T2>() => $"{typeof(T1).FullName} {typeof(T2).FullName}"; public override string G() => $"{typeof(T1).FullName}"; }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/coreclr/nativeaot/System.Private.Interop/src/Resources/Strings.resx
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="StructMarshalling_MissingInteropData" xml:space="preserve"> <value>{0} is missing structure marshalling data. To enable structure marshalling data, add a MarshalStructure directive to the application rd.xml file. For more information, please visit http://go.microsoft.com/fwlink/?LinkID=393965</value> </data> <data name="DelegateMarshalling_MissingInteropData" xml:space="preserve"> <value>{0} is missing delegate marshalling data. To enable delegate marshalling data, add a MarshalDelegate directive to the application rd.xml file. For more information, please visit http://go.microsoft.com/fwlink/?LinkID=393965</value> </data> <data name="Argument_OffsetOfFieldNotFound" xml:space="preserve"> <value>Field passed in is not a marshaled member of the type '{0}'.</value> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="StructMarshalling_MissingInteropData" xml:space="preserve"> <value>{0} is missing structure marshalling data. To enable structure marshalling data, add a MarshalStructure directive to the application rd.xml file. For more information, please visit http://go.microsoft.com/fwlink/?LinkID=393965</value> </data> <data name="DelegateMarshalling_MissingInteropData" xml:space="preserve"> <value>{0} is missing delegate marshalling data. To enable delegate marshalling data, add a MarshalDelegate directive to the application rd.xml file. For more information, please visit http://go.microsoft.com/fwlink/?LinkID=393965</value> </data> <data name="Argument_OffsetOfFieldNotFound" xml:space="preserve"> <value>Field passed in is not a marshaled member of the type '{0}'.</value> </data> </root>
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/profiler/native/CMakeLists.txt
cmake_minimum_required(VERSION 3.14.5) project(Profiler) set(SOURCES eltprofiler/slowpatheltprofiler.cpp eventpipeprofiler/eventpipereadingprofiler.cpp eventpipeprofiler/eventpipewritingprofiler.cpp eventpipeprofiler/eventpipemetadatareader.cpp gcallocateprofiler/gcallocateprofiler.cpp gcbasicprofiler/gcbasicprofiler.cpp gcprofiler/gcprofiler.cpp getappdomainstaticaddress/getappdomainstaticaddress.cpp inlining/inlining.cpp metadatagetdispenser/metadatagetdispenser.cpp multiple/multiple.cpp nullprofiler/nullprofiler.cpp rejitprofiler/rejitprofiler.cpp rejitprofiler/ilrewriter.cpp rejitprofiler/sigparse.cpp releaseondetach/releaseondetach.cpp transitions/transitions.cpp profiler.def profiler.cpp classfactory.cpp dllmain.cpp guids.cpp) include_directories(../../../coreclr/pal/prebuilt/inc) if(NOT WIN32) include_directories(../../../coreclr/pal/inc/rt ../../../coreclr/pal/inc ../../../coreclr/inc) add_compile_options(-DPAL_STDCPP_COMPAT) if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") add_compile_options(-Wno-null-arithmetic) else(CMAKE_CXX_COMPILER_ID MATCHES "Clang") add_compile_options(-Wno-conversion-null -Wno-pointer-arith) endif(CMAKE_CXX_COMPILER_ID MATCHES "Clang") endif(NOT WIN32) # add the executable add_library(Profiler SHARED ${SOURCES}) if(WIN32) set(DEPENDENCIES Advapi32.lib oleaut32.lib Ole32.lib) else(WIN32) set(DEPENDENCIES pthread dl) endif(WIN32) target_link_libraries(Profiler PUBLIC ${DEPENDENCIES}) # add the install targets install(TARGETS Profiler DESTINATION bin) if(WIN32) install(FILES $<TARGET_PDB_FILE:${PROJECT_NAME}> DESTINATION bin OPTIONAL) endif(WIN32)
cmake_minimum_required(VERSION 3.14.5) project(Profiler) set(SOURCES eltprofiler/slowpatheltprofiler.cpp eventpipeprofiler/eventpipereadingprofiler.cpp eventpipeprofiler/eventpipewritingprofiler.cpp eventpipeprofiler/eventpipemetadatareader.cpp gcallocateprofiler/gcallocateprofiler.cpp gcbasicprofiler/gcbasicprofiler.cpp gcprofiler/gcprofiler.cpp getappdomainstaticaddress/getappdomainstaticaddress.cpp inlining/inlining.cpp metadatagetdispenser/metadatagetdispenser.cpp multiple/multiple.cpp nullprofiler/nullprofiler.cpp rejitprofiler/rejitprofiler.cpp rejitprofiler/ilrewriter.cpp rejitprofiler/sigparse.cpp releaseondetach/releaseondetach.cpp transitions/transitions.cpp profiler.def profiler.cpp classfactory.cpp dllmain.cpp guids.cpp) include_directories(../../../coreclr/pal/prebuilt/inc) if(NOT WIN32) include_directories(../../../coreclr/pal/inc/rt ../../../coreclr/pal/inc ../../../coreclr/inc) add_compile_options(-DPAL_STDCPP_COMPAT) if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") add_compile_options(-Wno-null-arithmetic) else(CMAKE_CXX_COMPILER_ID MATCHES "Clang") add_compile_options(-Wno-conversion-null -Wno-pointer-arith) endif(CMAKE_CXX_COMPILER_ID MATCHES "Clang") endif(NOT WIN32) # add the executable add_library(Profiler SHARED ${SOURCES}) if(WIN32) set(DEPENDENCIES Advapi32.lib oleaut32.lib Ole32.lib) else(WIN32) set(DEPENDENCIES pthread dl) endif(WIN32) target_link_libraries(Profiler PUBLIC ${DEPENDENCIES}) # add the install targets install(TARGETS Profiler DESTINATION bin) if(WIN32) install(FILES $<TARGET_PDB_FILE:${PROJECT_NAME}> DESTINATION bin OPTIONAL) endif(WIN32)
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/libraries/Microsoft.CSharp/tests/IntegerUnaryOperationTests.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Runtime.CompilerServices; using Xunit; namespace Microsoft.CSharp.RuntimeBinder.Tests { public class IntegerUnaryOperationTests { private static CallSite<Func<CallSite, object, object>> GetUnaryOperationCallSite(ExpressionType operation, bool checkedContext, bool constantArgument) { CSharpArgumentInfo x = CSharpArgumentInfo.Create(constantArgument ? CSharpArgumentInfoFlags.Constant : CSharpArgumentInfoFlags.None, null); CallSiteBinder binder = Binder.UnaryOperation( checkedContext ? CSharpBinderFlags.CheckedContext : CSharpBinderFlags.None, operation, typeof(IntegerBinaryOperationTests), new[] { x }); return CallSite<Func<CallSite, object, object>>.Create(binder); } private static readonly int[] TestInt32Values = { 0, 1, -1, 3, int.MinValue, int.MaxValue }; public static IEnumerable<object[]> Int32TestNegations => from x in TestInt32Values select new object[] {x, ExpressionType.Negate, unchecked(-x), x != int.MinValue}; public static IEnumerable<object[]> Int32TestUnaryPluses => from x in TestInt32Values select new object[] {x, ExpressionType.UnaryPlus, x, true}; public static IEnumerable<object[]> Int32TestOnesComplements => from x in TestInt32Values select new object[] {x, ExpressionType.OnesComplement, ~x, true}; private static readonly uint[] TestUInt32Values = { 0, 1, 3, int.MaxValue, uint.MaxValue }; public static IEnumerable<object[]> UInt32TestNegations => from x in TestUInt32Values select new object[] {x, ExpressionType.Negate, -x, true}; public static IEnumerable<object[]> UInt32TestUnaryPluses => from x in TestUInt32Values select new object[] {x, ExpressionType.UnaryPlus, x, true}; public static IEnumerable<object[]> UInt32TestOnesComplements => from x in TestUInt32Values select new object[] {x, ExpressionType.OnesComplement, ~x, true}; private static readonly long[] TestInt64Values = { 0, 1, -1, 3, long.MinValue, long.MaxValue }; public static IEnumerable<object[]> Int64TestNegations => from x in TestInt64Values select new object[] {x, ExpressionType.Negate, unchecked(-x), x != long.MinValue}; public static IEnumerable<object[]> Int64TestUnaryPluses => from x in TestInt64Values select new object[] {x, ExpressionType.UnaryPlus, x, true}; public static IEnumerable<object[]> Int64TestOnesComplements => from x in TestInt64Values select new object[] { x, ExpressionType.OnesComplement, ~x, true }; private static readonly ulong[] TestUInt64Values = { 0, 1, 3, long.MaxValue, ulong.MaxValue }; public static IEnumerable<object[]> UInt64TestUnaryPluses => from x in TestUInt64Values select new object[] {x, ExpressionType.UnaryPlus, x, true}; public static IEnumerable<object[]> UInt64TestOnesComplements => from x in TestUInt64Values select new object[] {x, ExpressionType.OnesComplement, ~x, true}; [Theory] [MemberData(nameof(Int32TestNegations))] [MemberData(nameof(Int32TestUnaryPluses))] [MemberData(nameof(Int32TestOnesComplements))] [MemberData(nameof(UInt32TestNegations))] [MemberData(nameof(UInt32TestUnaryPluses))] [MemberData(nameof(UInt32TestOnesComplements))] [MemberData(nameof(Int64TestNegations))] [MemberData(nameof(Int64TestUnaryPluses))] [MemberData(nameof(Int64TestOnesComplements))] [MemberData(nameof(UInt64TestUnaryPluses))] [MemberData(nameof(UInt64TestOnesComplements))] public void RuntimeExpressions(object x, ExpressionType type, object result, bool shouldSucceedChecked) { var callsite = GetUnaryOperationCallSite(type, false, false); Assert.Equal(result, callsite.Target(callsite, x)); callsite = GetUnaryOperationCallSite(type, true, false); if (shouldSucceedChecked) { Assert.Equal(result, callsite.Target(callsite, x)); } else { Assert.Throws<OverflowException>(() => callsite.Target(callsite, x)); } } [Theory] [MemberData(nameof(Int32TestNegations))] [MemberData(nameof(Int32TestUnaryPluses))] [MemberData(nameof(Int32TestOnesComplements))] [MemberData(nameof(UInt32TestNegations))] [MemberData(nameof(UInt32TestUnaryPluses))] [MemberData(nameof(UInt32TestOnesComplements))] [MemberData(nameof(Int64TestNegations))] [MemberData(nameof(Int64TestUnaryPluses))] [MemberData(nameof(Int64TestOnesComplements))] [MemberData(nameof(UInt64TestUnaryPluses))] [MemberData(nameof(UInt64TestOnesComplements))] [ActiveIssue("https://github.com/dotnet/runtime/issues/26798", TargetFrameworkMonikers.NetFramework)] public void ConstantExpressions(object x, ExpressionType type, object result, bool shouldSucceedChecked) { var callsite = GetUnaryOperationCallSite(type, false, true); Assert.Equal(result, callsite.Target(callsite, x)); callsite = GetUnaryOperationCallSite(type, true, true); if (shouldSucceedChecked) { Assert.Equal(result, callsite.Target(callsite, x)); } else { Assert.Throws<OverflowException>(() => callsite.Target(callsite, x)); } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Runtime.CompilerServices; using Xunit; namespace Microsoft.CSharp.RuntimeBinder.Tests { public class IntegerUnaryOperationTests { private static CallSite<Func<CallSite, object, object>> GetUnaryOperationCallSite(ExpressionType operation, bool checkedContext, bool constantArgument) { CSharpArgumentInfo x = CSharpArgumentInfo.Create(constantArgument ? CSharpArgumentInfoFlags.Constant : CSharpArgumentInfoFlags.None, null); CallSiteBinder binder = Binder.UnaryOperation( checkedContext ? CSharpBinderFlags.CheckedContext : CSharpBinderFlags.None, operation, typeof(IntegerBinaryOperationTests), new[] { x }); return CallSite<Func<CallSite, object, object>>.Create(binder); } private static readonly int[] TestInt32Values = { 0, 1, -1, 3, int.MinValue, int.MaxValue }; public static IEnumerable<object[]> Int32TestNegations => from x in TestInt32Values select new object[] {x, ExpressionType.Negate, unchecked(-x), x != int.MinValue}; public static IEnumerable<object[]> Int32TestUnaryPluses => from x in TestInt32Values select new object[] {x, ExpressionType.UnaryPlus, x, true}; public static IEnumerable<object[]> Int32TestOnesComplements => from x in TestInt32Values select new object[] {x, ExpressionType.OnesComplement, ~x, true}; private static readonly uint[] TestUInt32Values = { 0, 1, 3, int.MaxValue, uint.MaxValue }; public static IEnumerable<object[]> UInt32TestNegations => from x in TestUInt32Values select new object[] {x, ExpressionType.Negate, -x, true}; public static IEnumerable<object[]> UInt32TestUnaryPluses => from x in TestUInt32Values select new object[] {x, ExpressionType.UnaryPlus, x, true}; public static IEnumerable<object[]> UInt32TestOnesComplements => from x in TestUInt32Values select new object[] {x, ExpressionType.OnesComplement, ~x, true}; private static readonly long[] TestInt64Values = { 0, 1, -1, 3, long.MinValue, long.MaxValue }; public static IEnumerable<object[]> Int64TestNegations => from x in TestInt64Values select new object[] {x, ExpressionType.Negate, unchecked(-x), x != long.MinValue}; public static IEnumerable<object[]> Int64TestUnaryPluses => from x in TestInt64Values select new object[] {x, ExpressionType.UnaryPlus, x, true}; public static IEnumerable<object[]> Int64TestOnesComplements => from x in TestInt64Values select new object[] { x, ExpressionType.OnesComplement, ~x, true }; private static readonly ulong[] TestUInt64Values = { 0, 1, 3, long.MaxValue, ulong.MaxValue }; public static IEnumerable<object[]> UInt64TestUnaryPluses => from x in TestUInt64Values select new object[] {x, ExpressionType.UnaryPlus, x, true}; public static IEnumerable<object[]> UInt64TestOnesComplements => from x in TestUInt64Values select new object[] {x, ExpressionType.OnesComplement, ~x, true}; [Theory] [MemberData(nameof(Int32TestNegations))] [MemberData(nameof(Int32TestUnaryPluses))] [MemberData(nameof(Int32TestOnesComplements))] [MemberData(nameof(UInt32TestNegations))] [MemberData(nameof(UInt32TestUnaryPluses))] [MemberData(nameof(UInt32TestOnesComplements))] [MemberData(nameof(Int64TestNegations))] [MemberData(nameof(Int64TestUnaryPluses))] [MemberData(nameof(Int64TestOnesComplements))] [MemberData(nameof(UInt64TestUnaryPluses))] [MemberData(nameof(UInt64TestOnesComplements))] public void RuntimeExpressions(object x, ExpressionType type, object result, bool shouldSucceedChecked) { var callsite = GetUnaryOperationCallSite(type, false, false); Assert.Equal(result, callsite.Target(callsite, x)); callsite = GetUnaryOperationCallSite(type, true, false); if (shouldSucceedChecked) { Assert.Equal(result, callsite.Target(callsite, x)); } else { Assert.Throws<OverflowException>(() => callsite.Target(callsite, x)); } } [Theory] [MemberData(nameof(Int32TestNegations))] [MemberData(nameof(Int32TestUnaryPluses))] [MemberData(nameof(Int32TestOnesComplements))] [MemberData(nameof(UInt32TestNegations))] [MemberData(nameof(UInt32TestUnaryPluses))] [MemberData(nameof(UInt32TestOnesComplements))] [MemberData(nameof(Int64TestNegations))] [MemberData(nameof(Int64TestUnaryPluses))] [MemberData(nameof(Int64TestOnesComplements))] [MemberData(nameof(UInt64TestUnaryPluses))] [MemberData(nameof(UInt64TestOnesComplements))] [ActiveIssue("https://github.com/dotnet/runtime/issues/26798", TargetFrameworkMonikers.NetFramework)] public void ConstantExpressions(object x, ExpressionType type, object result, bool shouldSucceedChecked) { var callsite = GetUnaryOperationCallSite(type, false, true); Assert.Equal(result, callsite.Target(callsite, x)); callsite = GetUnaryOperationCallSite(type, true, true); if (shouldSucceedChecked) { Assert.Equal(result, callsite.Target(callsite, x)); } else { Assert.Throws<OverflowException>(() => callsite.Target(callsite, x)); } } } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/Regression/CLR-x86-JIT/V1-M12-Beta2/b50026/b50026.ilproj
<Project Sdk="Microsoft.NET.Sdk.IL"> <PropertyGroup> <OutputType>Exe</OutputType> <CLRTestPriority>1</CLRTestPriority> </PropertyGroup> <PropertyGroup> <DebugType>PdbOnly</DebugType> <Optimize>True</Optimize> </PropertyGroup> <ItemGroup> <Compile Include="$(MSBuildProjectName).il" /> </ItemGroup> </Project>
<Project Sdk="Microsoft.NET.Sdk.IL"> <PropertyGroup> <OutputType>Exe</OutputType> <CLRTestPriority>1</CLRTestPriority> </PropertyGroup> <PropertyGroup> <DebugType>PdbOnly</DebugType> <Optimize>True</Optimize> </PropertyGroup> <ItemGroup> <Compile Include="$(MSBuildProjectName).il" /> </ItemGroup> </Project>
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/HardwareIntrinsics/X86/Ssse3/AlignRight.UInt64.0.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /****************************************************************************** * This file is auto-generated from a template file by the GenerateTests.csx * * script in tests\src\JIT\HardwareIntrinsics\X86\Shared. In order to make * * changes, please update the corresponding template and run according to the * * directions listed in the file. * ******************************************************************************/ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Intrinsics; using System.Runtime.Intrinsics.X86; namespace JIT.HardwareIntrinsics.X86 { public static partial class Program { private static void AlignRightUInt640() { var test = new ImmBinaryOpTest__AlignRightUInt640(); if (test.IsSupported) { // Validates basic functionality works, using Unsafe.Read test.RunBasicScenario_UnsafeRead(); if (Sse2.IsSupported) { // Validates basic functionality works, using Load test.RunBasicScenario_Load(); // Validates basic functionality works, using LoadAligned test.RunBasicScenario_LoadAligned(); } // Validates calling via reflection works, using Unsafe.Read test.RunReflectionScenario_UnsafeRead(); if (Sse2.IsSupported) { // Validates calling via reflection works, using Load test.RunReflectionScenario_Load(); // Validates calling via reflection works, using LoadAligned test.RunReflectionScenario_LoadAligned(); } // Validates passing a static member works test.RunClsVarScenario(); // Validates passing a local works, using Unsafe.Read test.RunLclVarScenario_UnsafeRead(); if (Sse2.IsSupported) { // Validates passing a local works, using Load test.RunLclVarScenario_Load(); // Validates passing a local works, using LoadAligned test.RunLclVarScenario_LoadAligned(); } // Validates passing the field of a local class works test.RunClassLclFldScenario(); // Validates passing an instance member of a class works test.RunClassFldScenario(); // Validates passing the field of a local struct works test.RunStructLclFldScenario(); // Validates passing an instance member of a struct works test.RunStructFldScenario(); } else { // Validates we throw on unsupported hardware test.RunUnsupportedScenario(); } if (!test.Succeeded) { throw new Exception("One or more scenarios did not complete as expected."); } } } public sealed unsafe class ImmBinaryOpTest__AlignRightUInt640 { private struct TestStruct { public Vector128<UInt64> _fld1; public Vector128<UInt64> _fld2; public static TestStruct Create() { var testStruct = new TestStruct(); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref testStruct._fld1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref testStruct._fld2), ref Unsafe.As<UInt64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); return testStruct; } public void RunStructFldScenario(ImmBinaryOpTest__AlignRightUInt640 testClass) { var result = Ssse3.AlignRight(_fld1, _fld2, 0); Unsafe.Write(testClass._dataTable.outArrayPtr, result); testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr); } } private static readonly int LargestVectorSize = 16; private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector128<UInt64>>() / sizeof(UInt64); private static readonly int Op2ElementCount = Unsafe.SizeOf<Vector128<UInt64>>() / sizeof(UInt64); private static readonly int RetElementCount = Unsafe.SizeOf<Vector128<UInt64>>() / sizeof(UInt64); private static UInt64[] _data1 = new UInt64[Op1ElementCount]; private static UInt64[] _data2 = new UInt64[Op2ElementCount]; private static Vector128<UInt64> _clsVar1; private static Vector128<UInt64> _clsVar2; private Vector128<UInt64> _fld1; private Vector128<UInt64> _fld2; private SimpleBinaryOpTest__DataTable<UInt64, UInt64, UInt64> _dataTable; static ImmBinaryOpTest__AlignRightUInt640() { for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _clsVar1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _clsVar2), ref Unsafe.As<UInt64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); } public ImmBinaryOpTest__AlignRightUInt640() { Succeeded = true; for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _fld1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _fld2), ref Unsafe.As<UInt64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); } _dataTable = new SimpleBinaryOpTest__DataTable<UInt64, UInt64, UInt64>(_data1, _data2, new UInt64[RetElementCount], LargestVectorSize); } public bool IsSupported => Ssse3.IsSupported; public bool Succeeded { get; set; } public void RunBasicScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead)); var result = Ssse3.AlignRight( Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr), Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray2Ptr), 0 ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunBasicScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_Load)); var result = Ssse3.AlignRight( Sse2.LoadVector128((UInt64*)(_dataTable.inArray1Ptr)), Sse2.LoadVector128((UInt64*)(_dataTable.inArray2Ptr)), 0 ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunBasicScenario_LoadAligned() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_LoadAligned)); var result = Ssse3.AlignRight( Sse2.LoadAlignedVector128((UInt64*)(_dataTable.inArray1Ptr)), Sse2.LoadAlignedVector128((UInt64*)(_dataTable.inArray2Ptr)), 0 ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead)); var result = typeof(Ssse3).GetMethod(nameof(Ssse3.AlignRight), new Type[] { typeof(Vector128<UInt64>), typeof(Vector128<UInt64>), typeof(byte) }) .Invoke(null, new object[] { Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr), Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray2Ptr), (byte)0 }); Unsafe.Write(_dataTable.outArrayPtr, (Vector128<UInt64>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_Load)); var result = typeof(Ssse3).GetMethod(nameof(Ssse3.AlignRight), new Type[] { typeof(Vector128<UInt64>), typeof(Vector128<UInt64>), typeof(byte) }) .Invoke(null, new object[] { Sse2.LoadVector128((UInt64*)(_dataTable.inArray1Ptr)), Sse2.LoadVector128((UInt64*)(_dataTable.inArray2Ptr)), (byte)0 }); Unsafe.Write(_dataTable.outArrayPtr, (Vector128<UInt64>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_LoadAligned() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_LoadAligned)); var result = typeof(Ssse3).GetMethod(nameof(Ssse3.AlignRight), new Type[] { typeof(Vector128<UInt64>), typeof(Vector128<UInt64>), typeof(byte) }) .Invoke(null, new object[] { Sse2.LoadAlignedVector128((UInt64*)(_dataTable.inArray1Ptr)), Sse2.LoadAlignedVector128((UInt64*)(_dataTable.inArray2Ptr)), (byte)0 }); Unsafe.Write(_dataTable.outArrayPtr, (Vector128<UInt64>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunClsVarScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario)); var result = Ssse3.AlignRight( _clsVar1, _clsVar2, 0 ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_clsVar1, _clsVar2, _dataTable.outArrayPtr); } public void RunLclVarScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead)); var left = Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr); var right = Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray2Ptr); var result = Ssse3.AlignRight(left, right, 0); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(left, right, _dataTable.outArrayPtr); } public void RunLclVarScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_Load)); var left = Sse2.LoadVector128((UInt64*)(_dataTable.inArray1Ptr)); var right = Sse2.LoadVector128((UInt64*)(_dataTable.inArray2Ptr)); var result = Ssse3.AlignRight(left, right, 0); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(left, right, _dataTable.outArrayPtr); } public void RunLclVarScenario_LoadAligned() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_LoadAligned)); var left = Sse2.LoadAlignedVector128((UInt64*)(_dataTable.inArray1Ptr)); var right = Sse2.LoadAlignedVector128((UInt64*)(_dataTable.inArray2Ptr)); var result = Ssse3.AlignRight(left, right, 0); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(left, right, _dataTable.outArrayPtr); } public void RunClassLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario)); var test = new ImmBinaryOpTest__AlignRightUInt640(); var result = Ssse3.AlignRight(test._fld1, test._fld2, 0); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } public void RunClassFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario)); var result = Ssse3.AlignRight(_fld1, _fld2, 0); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_fld1, _fld2, _dataTable.outArrayPtr); } public void RunStructLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario)); var test = TestStruct.Create(); var result = Ssse3.AlignRight(test._fld1, test._fld2, 0); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } public void RunStructFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario)); var test = TestStruct.Create(); test.RunStructFldScenario(this); } public void RunUnsupportedScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunUnsupportedScenario)); bool succeeded = false; try { RunBasicScenario_UnsafeRead(); } catch (PlatformNotSupportedException) { succeeded = true; } if (!succeeded) { Succeeded = false; } } private void ValidateResult(Vector128<UInt64> left, Vector128<UInt64> right, void* result, [CallerMemberName] string method = "") { UInt64[] inArray1 = new UInt64[Op1ElementCount]; UInt64[] inArray2 = new UInt64[Op2ElementCount]; UInt64[] outArray = new UInt64[RetElementCount]; Unsafe.WriteUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray1[0]), left); Unsafe.WriteUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray2[0]), right); Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); ValidateResult(inArray1, inArray2, outArray, method); } private void ValidateResult(void* left, void* right, void* result, [CallerMemberName] string method = "") { UInt64[] inArray1 = new UInt64[Op1ElementCount]; UInt64[] inArray2 = new UInt64[Op2ElementCount]; UInt64[] outArray = new UInt64[RetElementCount]; Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(left), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray2[0]), ref Unsafe.AsRef<byte>(right), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); ValidateResult(inArray1, inArray2, outArray, method); } private void ValidateResult(UInt64[] left, UInt64[] right, UInt64[] result, [CallerMemberName] string method = "") { bool succeeded = true; if (result[0] != right[0]) { succeeded = false; } else { for (var i = 1; i < RetElementCount; i++) { if (result[i] != right[i]) { succeeded = false; break; } } } if (!succeeded) { TestLibrary.TestFramework.LogInformation($"{nameof(Ssse3)}.{nameof(Ssse3.AlignRight)}<UInt64>(Vector128<UInt64>.0, Vector128<UInt64>): {method} failed:"); TestLibrary.TestFramework.LogInformation($" left: ({string.Join(", ", left)})"); TestLibrary.TestFramework.LogInformation($" right: ({string.Join(", ", right)})"); TestLibrary.TestFramework.LogInformation($" result: ({string.Join(", ", result)})"); TestLibrary.TestFramework.LogInformation(string.Empty); Succeeded = false; } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /****************************************************************************** * This file is auto-generated from a template file by the GenerateTests.csx * * script in tests\src\JIT\HardwareIntrinsics\X86\Shared. In order to make * * changes, please update the corresponding template and run according to the * * directions listed in the file. * ******************************************************************************/ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Intrinsics; using System.Runtime.Intrinsics.X86; namespace JIT.HardwareIntrinsics.X86 { public static partial class Program { private static void AlignRightUInt640() { var test = new ImmBinaryOpTest__AlignRightUInt640(); if (test.IsSupported) { // Validates basic functionality works, using Unsafe.Read test.RunBasicScenario_UnsafeRead(); if (Sse2.IsSupported) { // Validates basic functionality works, using Load test.RunBasicScenario_Load(); // Validates basic functionality works, using LoadAligned test.RunBasicScenario_LoadAligned(); } // Validates calling via reflection works, using Unsafe.Read test.RunReflectionScenario_UnsafeRead(); if (Sse2.IsSupported) { // Validates calling via reflection works, using Load test.RunReflectionScenario_Load(); // Validates calling via reflection works, using LoadAligned test.RunReflectionScenario_LoadAligned(); } // Validates passing a static member works test.RunClsVarScenario(); // Validates passing a local works, using Unsafe.Read test.RunLclVarScenario_UnsafeRead(); if (Sse2.IsSupported) { // Validates passing a local works, using Load test.RunLclVarScenario_Load(); // Validates passing a local works, using LoadAligned test.RunLclVarScenario_LoadAligned(); } // Validates passing the field of a local class works test.RunClassLclFldScenario(); // Validates passing an instance member of a class works test.RunClassFldScenario(); // Validates passing the field of a local struct works test.RunStructLclFldScenario(); // Validates passing an instance member of a struct works test.RunStructFldScenario(); } else { // Validates we throw on unsupported hardware test.RunUnsupportedScenario(); } if (!test.Succeeded) { throw new Exception("One or more scenarios did not complete as expected."); } } } public sealed unsafe class ImmBinaryOpTest__AlignRightUInt640 { private struct TestStruct { public Vector128<UInt64> _fld1; public Vector128<UInt64> _fld2; public static TestStruct Create() { var testStruct = new TestStruct(); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref testStruct._fld1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref testStruct._fld2), ref Unsafe.As<UInt64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); return testStruct; } public void RunStructFldScenario(ImmBinaryOpTest__AlignRightUInt640 testClass) { var result = Ssse3.AlignRight(_fld1, _fld2, 0); Unsafe.Write(testClass._dataTable.outArrayPtr, result); testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr); } } private static readonly int LargestVectorSize = 16; private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector128<UInt64>>() / sizeof(UInt64); private static readonly int Op2ElementCount = Unsafe.SizeOf<Vector128<UInt64>>() / sizeof(UInt64); private static readonly int RetElementCount = Unsafe.SizeOf<Vector128<UInt64>>() / sizeof(UInt64); private static UInt64[] _data1 = new UInt64[Op1ElementCount]; private static UInt64[] _data2 = new UInt64[Op2ElementCount]; private static Vector128<UInt64> _clsVar1; private static Vector128<UInt64> _clsVar2; private Vector128<UInt64> _fld1; private Vector128<UInt64> _fld2; private SimpleBinaryOpTest__DataTable<UInt64, UInt64, UInt64> _dataTable; static ImmBinaryOpTest__AlignRightUInt640() { for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _clsVar1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _clsVar2), ref Unsafe.As<UInt64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); } public ImmBinaryOpTest__AlignRightUInt640() { Succeeded = true; for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _fld1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _fld2), ref Unsafe.As<UInt64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); } _dataTable = new SimpleBinaryOpTest__DataTable<UInt64, UInt64, UInt64>(_data1, _data2, new UInt64[RetElementCount], LargestVectorSize); } public bool IsSupported => Ssse3.IsSupported; public bool Succeeded { get; set; } public void RunBasicScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead)); var result = Ssse3.AlignRight( Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr), Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray2Ptr), 0 ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunBasicScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_Load)); var result = Ssse3.AlignRight( Sse2.LoadVector128((UInt64*)(_dataTable.inArray1Ptr)), Sse2.LoadVector128((UInt64*)(_dataTable.inArray2Ptr)), 0 ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunBasicScenario_LoadAligned() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_LoadAligned)); var result = Ssse3.AlignRight( Sse2.LoadAlignedVector128((UInt64*)(_dataTable.inArray1Ptr)), Sse2.LoadAlignedVector128((UInt64*)(_dataTable.inArray2Ptr)), 0 ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead)); var result = typeof(Ssse3).GetMethod(nameof(Ssse3.AlignRight), new Type[] { typeof(Vector128<UInt64>), typeof(Vector128<UInt64>), typeof(byte) }) .Invoke(null, new object[] { Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr), Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray2Ptr), (byte)0 }); Unsafe.Write(_dataTable.outArrayPtr, (Vector128<UInt64>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_Load)); var result = typeof(Ssse3).GetMethod(nameof(Ssse3.AlignRight), new Type[] { typeof(Vector128<UInt64>), typeof(Vector128<UInt64>), typeof(byte) }) .Invoke(null, new object[] { Sse2.LoadVector128((UInt64*)(_dataTable.inArray1Ptr)), Sse2.LoadVector128((UInt64*)(_dataTable.inArray2Ptr)), (byte)0 }); Unsafe.Write(_dataTable.outArrayPtr, (Vector128<UInt64>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_LoadAligned() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_LoadAligned)); var result = typeof(Ssse3).GetMethod(nameof(Ssse3.AlignRight), new Type[] { typeof(Vector128<UInt64>), typeof(Vector128<UInt64>), typeof(byte) }) .Invoke(null, new object[] { Sse2.LoadAlignedVector128((UInt64*)(_dataTable.inArray1Ptr)), Sse2.LoadAlignedVector128((UInt64*)(_dataTable.inArray2Ptr)), (byte)0 }); Unsafe.Write(_dataTable.outArrayPtr, (Vector128<UInt64>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunClsVarScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario)); var result = Ssse3.AlignRight( _clsVar1, _clsVar2, 0 ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_clsVar1, _clsVar2, _dataTable.outArrayPtr); } public void RunLclVarScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead)); var left = Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr); var right = Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray2Ptr); var result = Ssse3.AlignRight(left, right, 0); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(left, right, _dataTable.outArrayPtr); } public void RunLclVarScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_Load)); var left = Sse2.LoadVector128((UInt64*)(_dataTable.inArray1Ptr)); var right = Sse2.LoadVector128((UInt64*)(_dataTable.inArray2Ptr)); var result = Ssse3.AlignRight(left, right, 0); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(left, right, _dataTable.outArrayPtr); } public void RunLclVarScenario_LoadAligned() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_LoadAligned)); var left = Sse2.LoadAlignedVector128((UInt64*)(_dataTable.inArray1Ptr)); var right = Sse2.LoadAlignedVector128((UInt64*)(_dataTable.inArray2Ptr)); var result = Ssse3.AlignRight(left, right, 0); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(left, right, _dataTable.outArrayPtr); } public void RunClassLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario)); var test = new ImmBinaryOpTest__AlignRightUInt640(); var result = Ssse3.AlignRight(test._fld1, test._fld2, 0); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } public void RunClassFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario)); var result = Ssse3.AlignRight(_fld1, _fld2, 0); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_fld1, _fld2, _dataTable.outArrayPtr); } public void RunStructLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario)); var test = TestStruct.Create(); var result = Ssse3.AlignRight(test._fld1, test._fld2, 0); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } public void RunStructFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario)); var test = TestStruct.Create(); test.RunStructFldScenario(this); } public void RunUnsupportedScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunUnsupportedScenario)); bool succeeded = false; try { RunBasicScenario_UnsafeRead(); } catch (PlatformNotSupportedException) { succeeded = true; } if (!succeeded) { Succeeded = false; } } private void ValidateResult(Vector128<UInt64> left, Vector128<UInt64> right, void* result, [CallerMemberName] string method = "") { UInt64[] inArray1 = new UInt64[Op1ElementCount]; UInt64[] inArray2 = new UInt64[Op2ElementCount]; UInt64[] outArray = new UInt64[RetElementCount]; Unsafe.WriteUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray1[0]), left); Unsafe.WriteUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray2[0]), right); Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); ValidateResult(inArray1, inArray2, outArray, method); } private void ValidateResult(void* left, void* right, void* result, [CallerMemberName] string method = "") { UInt64[] inArray1 = new UInt64[Op1ElementCount]; UInt64[] inArray2 = new UInt64[Op2ElementCount]; UInt64[] outArray = new UInt64[RetElementCount]; Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(left), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray2[0]), ref Unsafe.AsRef<byte>(right), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); ValidateResult(inArray1, inArray2, outArray, method); } private void ValidateResult(UInt64[] left, UInt64[] right, UInt64[] result, [CallerMemberName] string method = "") { bool succeeded = true; if (result[0] != right[0]) { succeeded = false; } else { for (var i = 1; i < RetElementCount; i++) { if (result[i] != right[i]) { succeeded = false; break; } } } if (!succeeded) { TestLibrary.TestFramework.LogInformation($"{nameof(Ssse3)}.{nameof(Ssse3.AlignRight)}<UInt64>(Vector128<UInt64>.0, Vector128<UInt64>): {method} failed:"); TestLibrary.TestFramework.LogInformation($" left: ({string.Join(", ", left)})"); TestLibrary.TestFramework.LogInformation($" right: ({string.Join(", ", right)})"); TestLibrary.TestFramework.LogInformation($" result: ({string.Join(", ", result)})"); TestLibrary.TestFramework.LogInformation(string.Empty); Succeeded = false; } } } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/libraries/System.Private.Xml/src/System/Xml/XPath/Internal/XPathScanner.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Diagnostics; using System.Globalization; using System.Runtime.CompilerServices; using System.Xml; using System.Xml.XPath; namespace MS.Internal.Xml.XPath { internal struct XPathScanner { private readonly string _xpathExpr; private int _xpathExprIndex; private LexKind _kind; private char _currentChar; private string? _name; private string? _prefix; private string? _stringValue; private double _numberValue; private bool _canBeFunction; public XPathScanner(string xpathExpr) : this() { if (xpathExpr == null) { throw XPathException.Create(SR.Xp_ExprExpected, string.Empty); } _xpathExpr = xpathExpr; _numberValue = double.NaN; NextChar(); NextLex(); } public string SourceText { get { return _xpathExpr; } } private char CurrentChar { get { return _currentChar; } } private bool NextChar() { Debug.Assert(0 <= _xpathExprIndex && _xpathExprIndex <= _xpathExpr.Length); string expr = _xpathExpr; int index = _xpathExprIndex; if ((uint)index < (uint)expr.Length) { _currentChar = expr[index]; _xpathExprIndex = index + 1; return true; } _currentChar = '\0'; return false; } public LexKind Kind { get { return _kind; } } public string Name { get { Debug.Assert(_kind == LexKind.Name || _kind == LexKind.Axe); Debug.Assert(_name != null); return _name; } } public string Prefix { get { Debug.Assert(_kind == LexKind.Name); Debug.Assert(_prefix != null); return _prefix; } } public string StringValue { get { Debug.Assert(_kind == LexKind.String); Debug.Assert(_stringValue != null); return _stringValue; } } public double NumberValue { get { Debug.Assert(_kind == LexKind.Number); Debug.Assert(!double.IsNaN(_numberValue)); return _numberValue; } } // To parse PathExpr we need a way to distinct name from function. // This distinction can't be done without context: "or (1 != 0)" this is a function or 'or' in OrExp public bool CanBeFunction { get { Debug.Assert(_kind == LexKind.Name); return _canBeFunction; } } [MethodImpl(MethodImplOptions.AggressiveInlining)] private void SkipSpace() { if (XmlCharType.IsWhiteSpace(CurrentChar)) { SkipKnownSpace(); } } private void SkipKnownSpace() { Debug.Assert(XmlCharType.IsWhiteSpace(CurrentChar)); while (NextChar() && XmlCharType.IsWhiteSpace(CurrentChar)); } public bool NextLex() { SkipSpace(); switch (CurrentChar) { case '\0': _kind = LexKind.Eof; return false; case ',': case '@': case '(': case ')': case '|': case '*': case '[': case ']': case '+': case '-': case '=': case '#': case '$': _kind = (LexKind)Convert.ToInt32(CurrentChar, CultureInfo.InvariantCulture); NextChar(); break; case '<': _kind = LexKind.Lt; NextChar(); if (CurrentChar == '=') { _kind = LexKind.Le; NextChar(); } break; case '>': _kind = LexKind.Gt; NextChar(); if (CurrentChar == '=') { _kind = LexKind.Ge; NextChar(); } break; case '!': _kind = LexKind.Bang; NextChar(); if (CurrentChar == '=') { _kind = LexKind.Ne; NextChar(); } break; case '.': _kind = LexKind.Dot; NextChar(); if (CurrentChar == '.') { _kind = LexKind.DotDot; NextChar(); } else if (XmlCharType.IsDigit(CurrentChar)) { _kind = LexKind.Number; _numberValue = ScanFraction(); } break; case '/': _kind = LexKind.Slash; NextChar(); if (CurrentChar == '/') { _kind = LexKind.SlashSlash; NextChar(); } break; case '"': case '\'': _kind = LexKind.String; _stringValue = ScanString(); break; default: if (XmlCharType.IsDigit(CurrentChar)) { _kind = LexKind.Number; _numberValue = ScanNumber(); } else if (XmlCharType.IsStartNCNameSingleChar(CurrentChar)) { _kind = LexKind.Name; _name = ScanName(); _prefix = string.Empty; // "foo:bar" is one lexeme not three because it doesn't allow spaces in between // We should distinct it from "foo::" and need process "foo ::" as well if (CurrentChar == ':') { NextChar(); // can be "foo:bar" or "foo::" if (CurrentChar == ':') { // "foo::" NextChar(); _kind = LexKind.Axe; } else { // "foo:*", "foo:bar" or "foo: " _prefix = _name; if (CurrentChar == '*') { NextChar(); _name = "*"; } else if (XmlCharType.IsStartNCNameSingleChar(CurrentChar)) { _name = ScanName(); } else { throw XPathException.Create(SR.Xp_InvalidName, SourceText); } } } else { SkipSpace(); if (CurrentChar == ':') { NextChar(); // it can be "foo ::" or just "foo :" if (CurrentChar == ':') { NextChar(); _kind = LexKind.Axe; } else { throw XPathException.Create(SR.Xp_InvalidName, SourceText); } } } SkipSpace(); _canBeFunction = (CurrentChar == '('); } else { throw XPathException.Create(SR.Xp_InvalidToken, SourceText); } break; } return true; } private double ScanNumber() { Debug.Assert(CurrentChar == '.' || XmlCharType.IsDigit(CurrentChar)); int start = _xpathExprIndex - 1; int len = 0; while (XmlCharType.IsDigit(CurrentChar)) { NextChar(); len++; } if (CurrentChar == '.') { NextChar(); len++; while (XmlCharType.IsDigit(CurrentChar)) { NextChar(); len++; } } return XmlConvert.ToXPathDouble(_xpathExpr.Substring(start, len)); } private double ScanFraction() { Debug.Assert(XmlCharType.IsDigit(CurrentChar)); int start = _xpathExprIndex - 2; Debug.Assert(0 <= start && _xpathExpr[start] == '.'); int len = 1; // '.' while (XmlCharType.IsDigit(CurrentChar)) { NextChar(); len++; } return XmlConvert.ToXPathDouble(_xpathExpr.Substring(start, len)); } private string ScanString() { char endChar = CurrentChar; NextChar(); int start = _xpathExprIndex - 1; int len = 0; while (CurrentChar != endChar) { if (!NextChar()) { throw XPathException.Create(SR.Xp_UnclosedString); } len++; } Debug.Assert(CurrentChar == endChar); NextChar(); return _xpathExpr.Substring(start, len); } private string ScanName() { ReadOnlySpan<char> span = _xpathExpr.AsSpan(_xpathExprIndex - 1); Debug.Assert(!span.IsEmpty); Debug.Assert(span[0] == CurrentChar); Debug.Assert(XmlCharType.IsStartNCNameSingleChar(span[0])); Debug.Assert(XmlCharType.IsNCNameSingleChar(span[0])); int i; for (i = 1; i < span.Length && XmlCharType.IsNCNameSingleChar(span[i]); i++); if ((uint)i < (uint)span.Length) { _currentChar = span[i]; _xpathExprIndex += i; return span.Slice(0, i).ToString(); } _currentChar = '\0'; _xpathExprIndex += i - 1; return span.ToString(); } public enum LexKind { Comma = ',', Slash = '/', At = '@', Dot = '.', LParens = '(', RParens = ')', LBracket = '[', RBracket = ']', Star = '*', Plus = '+', Minus = '-', Eq = '=', Lt = '<', Gt = '>', Bang = '!', Dollar = '$', Apos = '\'', Quote = '"', Union = '|', Ne = 'N', // != Le = 'L', // <= Ge = 'G', // >= And = 'A', // && Or = 'O', // || DotDot = 'D', // .. SlashSlash = 'S', // // Name = 'n', // XML _Name String = 's', // Quoted string constant Number = 'd', // _Number constant Axe = 'a', // Axe (like child::) Eof = 'E', }; } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Diagnostics; using System.Globalization; using System.Runtime.CompilerServices; using System.Xml; using System.Xml.XPath; namespace MS.Internal.Xml.XPath { internal struct XPathScanner { private readonly string _xpathExpr; private int _xpathExprIndex; private LexKind _kind; private char _currentChar; private string? _name; private string? _prefix; private string? _stringValue; private double _numberValue; private bool _canBeFunction; public XPathScanner(string xpathExpr) : this() { if (xpathExpr == null) { throw XPathException.Create(SR.Xp_ExprExpected, string.Empty); } _xpathExpr = xpathExpr; _numberValue = double.NaN; NextChar(); NextLex(); } public string SourceText { get { return _xpathExpr; } } private char CurrentChar { get { return _currentChar; } } private bool NextChar() { Debug.Assert(0 <= _xpathExprIndex && _xpathExprIndex <= _xpathExpr.Length); string expr = _xpathExpr; int index = _xpathExprIndex; if ((uint)index < (uint)expr.Length) { _currentChar = expr[index]; _xpathExprIndex = index + 1; return true; } _currentChar = '\0'; return false; } public LexKind Kind { get { return _kind; } } public string Name { get { Debug.Assert(_kind == LexKind.Name || _kind == LexKind.Axe); Debug.Assert(_name != null); return _name; } } public string Prefix { get { Debug.Assert(_kind == LexKind.Name); Debug.Assert(_prefix != null); return _prefix; } } public string StringValue { get { Debug.Assert(_kind == LexKind.String); Debug.Assert(_stringValue != null); return _stringValue; } } public double NumberValue { get { Debug.Assert(_kind == LexKind.Number); Debug.Assert(!double.IsNaN(_numberValue)); return _numberValue; } } // To parse PathExpr we need a way to distinct name from function. // This distinction can't be done without context: "or (1 != 0)" this is a function or 'or' in OrExp public bool CanBeFunction { get { Debug.Assert(_kind == LexKind.Name); return _canBeFunction; } } [MethodImpl(MethodImplOptions.AggressiveInlining)] private void SkipSpace() { if (XmlCharType.IsWhiteSpace(CurrentChar)) { SkipKnownSpace(); } } private void SkipKnownSpace() { Debug.Assert(XmlCharType.IsWhiteSpace(CurrentChar)); while (NextChar() && XmlCharType.IsWhiteSpace(CurrentChar)); } public bool NextLex() { SkipSpace(); switch (CurrentChar) { case '\0': _kind = LexKind.Eof; return false; case ',': case '@': case '(': case ')': case '|': case '*': case '[': case ']': case '+': case '-': case '=': case '#': case '$': _kind = (LexKind)Convert.ToInt32(CurrentChar, CultureInfo.InvariantCulture); NextChar(); break; case '<': _kind = LexKind.Lt; NextChar(); if (CurrentChar == '=') { _kind = LexKind.Le; NextChar(); } break; case '>': _kind = LexKind.Gt; NextChar(); if (CurrentChar == '=') { _kind = LexKind.Ge; NextChar(); } break; case '!': _kind = LexKind.Bang; NextChar(); if (CurrentChar == '=') { _kind = LexKind.Ne; NextChar(); } break; case '.': _kind = LexKind.Dot; NextChar(); if (CurrentChar == '.') { _kind = LexKind.DotDot; NextChar(); } else if (XmlCharType.IsDigit(CurrentChar)) { _kind = LexKind.Number; _numberValue = ScanFraction(); } break; case '/': _kind = LexKind.Slash; NextChar(); if (CurrentChar == '/') { _kind = LexKind.SlashSlash; NextChar(); } break; case '"': case '\'': _kind = LexKind.String; _stringValue = ScanString(); break; default: if (XmlCharType.IsDigit(CurrentChar)) { _kind = LexKind.Number; _numberValue = ScanNumber(); } else if (XmlCharType.IsStartNCNameSingleChar(CurrentChar)) { _kind = LexKind.Name; _name = ScanName(); _prefix = string.Empty; // "foo:bar" is one lexeme not three because it doesn't allow spaces in between // We should distinct it from "foo::" and need process "foo ::" as well if (CurrentChar == ':') { NextChar(); // can be "foo:bar" or "foo::" if (CurrentChar == ':') { // "foo::" NextChar(); _kind = LexKind.Axe; } else { // "foo:*", "foo:bar" or "foo: " _prefix = _name; if (CurrentChar == '*') { NextChar(); _name = "*"; } else if (XmlCharType.IsStartNCNameSingleChar(CurrentChar)) { _name = ScanName(); } else { throw XPathException.Create(SR.Xp_InvalidName, SourceText); } } } else { SkipSpace(); if (CurrentChar == ':') { NextChar(); // it can be "foo ::" or just "foo :" if (CurrentChar == ':') { NextChar(); _kind = LexKind.Axe; } else { throw XPathException.Create(SR.Xp_InvalidName, SourceText); } } } SkipSpace(); _canBeFunction = (CurrentChar == '('); } else { throw XPathException.Create(SR.Xp_InvalidToken, SourceText); } break; } return true; } private double ScanNumber() { Debug.Assert(CurrentChar == '.' || XmlCharType.IsDigit(CurrentChar)); int start = _xpathExprIndex - 1; int len = 0; while (XmlCharType.IsDigit(CurrentChar)) { NextChar(); len++; } if (CurrentChar == '.') { NextChar(); len++; while (XmlCharType.IsDigit(CurrentChar)) { NextChar(); len++; } } return XmlConvert.ToXPathDouble(_xpathExpr.Substring(start, len)); } private double ScanFraction() { Debug.Assert(XmlCharType.IsDigit(CurrentChar)); int start = _xpathExprIndex - 2; Debug.Assert(0 <= start && _xpathExpr[start] == '.'); int len = 1; // '.' while (XmlCharType.IsDigit(CurrentChar)) { NextChar(); len++; } return XmlConvert.ToXPathDouble(_xpathExpr.Substring(start, len)); } private string ScanString() { char endChar = CurrentChar; NextChar(); int start = _xpathExprIndex - 1; int len = 0; while (CurrentChar != endChar) { if (!NextChar()) { throw XPathException.Create(SR.Xp_UnclosedString); } len++; } Debug.Assert(CurrentChar == endChar); NextChar(); return _xpathExpr.Substring(start, len); } private string ScanName() { ReadOnlySpan<char> span = _xpathExpr.AsSpan(_xpathExprIndex - 1); Debug.Assert(!span.IsEmpty); Debug.Assert(span[0] == CurrentChar); Debug.Assert(XmlCharType.IsStartNCNameSingleChar(span[0])); Debug.Assert(XmlCharType.IsNCNameSingleChar(span[0])); int i; for (i = 1; i < span.Length && XmlCharType.IsNCNameSingleChar(span[i]); i++); if ((uint)i < (uint)span.Length) { _currentChar = span[i]; _xpathExprIndex += i; return span.Slice(0, i).ToString(); } _currentChar = '\0'; _xpathExprIndex += i - 1; return span.ToString(); } public enum LexKind { Comma = ',', Slash = '/', At = '@', Dot = '.', LParens = '(', RParens = ')', LBracket = '[', RBracket = ']', Star = '*', Plus = '+', Minus = '-', Eq = '=', Lt = '<', Gt = '>', Bang = '!', Dollar = '$', Apos = '\'', Quote = '"', Union = '|', Ne = 'N', // != Le = 'L', // <= Ge = 'G', // >= And = 'A', // && Or = 'O', // || DotDot = 'D', // .. SlashSlash = 'S', // // Name = 'n', // XML _Name String = 's', // Quoted string constant Number = 'd', // _Number constant Axe = 'a', // Axe (like child::) Eof = 'E', }; } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/coreclr/pal/src/libunwind/src/mi/mempool.c
/* libunwind - a platform-independent unwind library Copyright (C) 2002-2003, 2005 Hewlett-Packard Co Contributed by David Mosberger-Tang <[email protected]> Copyright (C) 2012 Tommi Rantala <[email protected]> This file is part of libunwind. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "libunwind_i.h" #include <stdalign.h> #include <stdatomic.h> /* From GCC docs: ``Gcc also provides a target specific macro * __BIGGEST_ALIGNMENT__, which is the largest alignment ever used for any data * type on the target machine you are compiling for.'' */ #ifdef __BIGGEST_ALIGNMENT__ # define MAX_ALIGN __BIGGEST_ALIGNMENT__ #else /* Crude hack to check that MAX_ALIGN is power-of-two. * sizeof(long double) = 12 on i386. */ # define MAX_ALIGN_(n) (n < 8 ? 8 : \ n < 16 ? 16 : n) # define MAX_ALIGN MAX_ALIGN_(sizeof (long double)) #endif static alignas(MAX_ALIGN) char sos_memory[SOS_MEMORY_SIZE]; static _Atomic size_t sos_memory_freepos = 0; static size_t pg_size; HIDDEN void * sos_alloc (size_t size) { size_t pos; size = UNW_ALIGN(size, MAX_ALIGN); /* Assume `sos_memory' is suitably aligned. */ assert(((uintptr_t) &sos_memory[0] & (MAX_ALIGN-1)) == 0); pos = atomic_fetch_add (&sos_memory_freepos, size); assert (((uintptr_t) &sos_memory[pos] & (MAX_ALIGN-1)) == 0); assert ((pos+size) <= SOS_MEMORY_SIZE); return &sos_memory[pos]; } /* Must be called while holding the mempool lock. */ static void free_object (struct mempool *pool, void *object) { struct object *obj = object; obj->next = pool->free_list; pool->free_list = obj; ++pool->num_free; } static void add_memory (struct mempool *pool, char *mem, size_t size, size_t obj_size) { char *obj; for (obj = mem; obj <= mem + size - obj_size; obj += obj_size) free_object (pool, obj); } static void expand (struct mempool *pool) { size_t size; char *mem; size = pool->chunk_size; GET_MEMORY (mem, size); if (!mem) { size = UNW_ALIGN(pool->obj_size, pg_size); GET_MEMORY (mem, size); if (!mem) { /* last chance: try to allocate one object from the SOS memory */ size = pool->obj_size; mem = sos_alloc (size); } } add_memory (pool, mem, size, pool->obj_size); } HIDDEN void mempool_init (struct mempool *pool, size_t obj_size, size_t reserve) { if (pg_size == 0) pg_size = getpagesize (); memset (pool, 0, sizeof (*pool)); lock_init (&pool->lock); /* round object-size up to integer multiple of MAX_ALIGN */ obj_size = UNW_ALIGN(obj_size, MAX_ALIGN); if (!reserve) { reserve = pg_size / obj_size / 4; if (!reserve) reserve = 16; } pool->obj_size = obj_size; pool->reserve = reserve; pool->chunk_size = UNW_ALIGN(2*reserve*obj_size, pg_size); expand (pool); } HIDDEN void * mempool_alloc (struct mempool *pool) { intrmask_t saved_mask; struct object *obj; lock_acquire (&pool->lock, saved_mask); { if (pool->num_free <= pool->reserve) expand (pool); assert (pool->num_free > 0); --pool->num_free; obj = pool->free_list; pool->free_list = obj->next; } lock_release (&pool->lock, saved_mask); return obj; } HIDDEN void mempool_free (struct mempool *pool, void *object) { intrmask_t saved_mask; lock_acquire (&pool->lock, saved_mask); { free_object (pool, object); } lock_release (&pool->lock, saved_mask); }
/* libunwind - a platform-independent unwind library Copyright (C) 2002-2003, 2005 Hewlett-Packard Co Contributed by David Mosberger-Tang <[email protected]> Copyright (C) 2012 Tommi Rantala <[email protected]> This file is part of libunwind. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "libunwind_i.h" #include <stdalign.h> #include <stdatomic.h> /* From GCC docs: ``Gcc also provides a target specific macro * __BIGGEST_ALIGNMENT__, which is the largest alignment ever used for any data * type on the target machine you are compiling for.'' */ #ifdef __BIGGEST_ALIGNMENT__ # define MAX_ALIGN __BIGGEST_ALIGNMENT__ #else /* Crude hack to check that MAX_ALIGN is power-of-two. * sizeof(long double) = 12 on i386. */ # define MAX_ALIGN_(n) (n < 8 ? 8 : \ n < 16 ? 16 : n) # define MAX_ALIGN MAX_ALIGN_(sizeof (long double)) #endif static alignas(MAX_ALIGN) char sos_memory[SOS_MEMORY_SIZE]; static _Atomic size_t sos_memory_freepos = 0; static size_t pg_size; HIDDEN void * sos_alloc (size_t size) { size_t pos; size = UNW_ALIGN(size, MAX_ALIGN); /* Assume `sos_memory' is suitably aligned. */ assert(((uintptr_t) &sos_memory[0] & (MAX_ALIGN-1)) == 0); pos = atomic_fetch_add (&sos_memory_freepos, size); assert (((uintptr_t) &sos_memory[pos] & (MAX_ALIGN-1)) == 0); assert ((pos+size) <= SOS_MEMORY_SIZE); return &sos_memory[pos]; } /* Must be called while holding the mempool lock. */ static void free_object (struct mempool *pool, void *object) { struct object *obj = object; obj->next = pool->free_list; pool->free_list = obj; ++pool->num_free; } static void add_memory (struct mempool *pool, char *mem, size_t size, size_t obj_size) { char *obj; for (obj = mem; obj <= mem + size - obj_size; obj += obj_size) free_object (pool, obj); } static void expand (struct mempool *pool) { size_t size; char *mem; size = pool->chunk_size; GET_MEMORY (mem, size); if (!mem) { size = UNW_ALIGN(pool->obj_size, pg_size); GET_MEMORY (mem, size); if (!mem) { /* last chance: try to allocate one object from the SOS memory */ size = pool->obj_size; mem = sos_alloc (size); } } add_memory (pool, mem, size, pool->obj_size); } HIDDEN void mempool_init (struct mempool *pool, size_t obj_size, size_t reserve) { if (pg_size == 0) pg_size = getpagesize (); memset (pool, 0, sizeof (*pool)); lock_init (&pool->lock); /* round object-size up to integer multiple of MAX_ALIGN */ obj_size = UNW_ALIGN(obj_size, MAX_ALIGN); if (!reserve) { reserve = pg_size / obj_size / 4; if (!reserve) reserve = 16; } pool->obj_size = obj_size; pool->reserve = reserve; pool->chunk_size = UNW_ALIGN(2*reserve*obj_size, pg_size); expand (pool); } HIDDEN void * mempool_alloc (struct mempool *pool) { intrmask_t saved_mask; struct object *obj; lock_acquire (&pool->lock, saved_mask); { if (pool->num_free <= pool->reserve) expand (pool); assert (pool->num_free > 0); --pool->num_free; obj = pool->free_list; pool->free_list = obj->next; } lock_release (&pool->lock, saved_mask); return obj; } HIDDEN void mempool_free (struct mempool *pool, void *object) { intrmask_t saved_mask; lock_acquire (&pool->lock, saved_mask); { free_object (pool, object); } lock_release (&pool->lock, saved_mask); }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/HardwareIntrinsics/Arm/AdvSimd/AddPairwise.Vector64.Int16.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /****************************************************************************** * This file is auto-generated from a template file by the GenerateTests.csx * * script in tests\src\JIT\HardwareIntrinsics.Arm\Shared. In order to make * * changes, please update the corresponding template and run according to the * * directions listed in the file. * ******************************************************************************/ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Intrinsics; using System.Runtime.Intrinsics.Arm; namespace JIT.HardwareIntrinsics.Arm { public static partial class Program { private static void AddPairwise_Vector64_Int16() { var test = new SimpleBinaryOpTest__AddPairwise_Vector64_Int16(); if (test.IsSupported) { // Validates basic functionality works, using Unsafe.Read test.RunBasicScenario_UnsafeRead(); if (AdvSimd.IsSupported) { // Validates basic functionality works, using Load test.RunBasicScenario_Load(); } // Validates calling via reflection works, using Unsafe.Read test.RunReflectionScenario_UnsafeRead(); if (AdvSimd.IsSupported) { // Validates calling via reflection works, using Load test.RunReflectionScenario_Load(); } // Validates passing a static member works test.RunClsVarScenario(); if (AdvSimd.IsSupported) { // Validates passing a static member works, using pinning and Load test.RunClsVarScenario_Load(); } // Validates passing a local works, using Unsafe.Read test.RunLclVarScenario_UnsafeRead(); if (AdvSimd.IsSupported) { // Validates passing a local works, using Load test.RunLclVarScenario_Load(); } // Validates passing the field of a local class works test.RunClassLclFldScenario(); if (AdvSimd.IsSupported) { // Validates passing the field of a local class works, using pinning and Load test.RunClassLclFldScenario_Load(); } // Validates passing an instance member of a class works test.RunClassFldScenario(); if (AdvSimd.IsSupported) { // Validates passing an instance member of a class works, using pinning and Load test.RunClassFldScenario_Load(); } // Validates passing the field of a local struct works test.RunStructLclFldScenario(); if (AdvSimd.IsSupported) { // Validates passing the field of a local struct works, using pinning and Load test.RunStructLclFldScenario_Load(); } // Validates passing an instance member of a struct works test.RunStructFldScenario(); if (AdvSimd.IsSupported) { // Validates passing an instance member of a struct works, using pinning and Load test.RunStructFldScenario_Load(); } } else { // Validates we throw on unsupported hardware test.RunUnsupportedScenario(); } if (!test.Succeeded) { throw new Exception("One or more scenarios did not complete as expected."); } } } public sealed unsafe class SimpleBinaryOpTest__AddPairwise_Vector64_Int16 { private struct DataTable { private byte[] inArray1; private byte[] inArray2; private byte[] outArray; private GCHandle inHandle1; private GCHandle inHandle2; private GCHandle outHandle; private ulong alignment; public DataTable(Int16[] inArray1, Int16[] inArray2, Int16[] outArray, int alignment) { int sizeOfinArray1 = inArray1.Length * Unsafe.SizeOf<Int16>(); int sizeOfinArray2 = inArray2.Length * Unsafe.SizeOf<Int16>(); int sizeOfoutArray = outArray.Length * Unsafe.SizeOf<Int16>(); if ((alignment != 16 && alignment != 8) || (alignment * 2) < sizeOfinArray1 || (alignment * 2) < sizeOfinArray2 || (alignment * 2) < sizeOfoutArray) { throw new ArgumentException("Invalid value of alignment"); } this.inArray1 = new byte[alignment * 2]; this.inArray2 = new byte[alignment * 2]; this.outArray = new byte[alignment * 2]; this.inHandle1 = GCHandle.Alloc(this.inArray1, GCHandleType.Pinned); this.inHandle2 = GCHandle.Alloc(this.inArray2, GCHandleType.Pinned); this.outHandle = GCHandle.Alloc(this.outArray, GCHandleType.Pinned); this.alignment = (ulong)alignment; Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray1Ptr), ref Unsafe.As<Int16, byte>(ref inArray1[0]), (uint)sizeOfinArray1); Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray2Ptr), ref Unsafe.As<Int16, byte>(ref inArray2[0]), (uint)sizeOfinArray2); } public void* inArray1Ptr => Align((byte*)(inHandle1.AddrOfPinnedObject().ToPointer()), alignment); public void* inArray2Ptr => Align((byte*)(inHandle2.AddrOfPinnedObject().ToPointer()), alignment); public void* outArrayPtr => Align((byte*)(outHandle.AddrOfPinnedObject().ToPointer()), alignment); public void Dispose() { inHandle1.Free(); inHandle2.Free(); outHandle.Free(); } private static unsafe void* Align(byte* buffer, ulong expectedAlignment) { return (void*)(((ulong)buffer + expectedAlignment - 1) & ~(expectedAlignment - 1)); } } private struct TestStruct { public Vector64<Int16> _fld1; public Vector64<Int16> _fld2; public static TestStruct Create() { var testStruct = new TestStruct(); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt16(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Int16>, byte>(ref testStruct._fld1), ref Unsafe.As<Int16, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector64<Int16>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt16(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Int16>, byte>(ref testStruct._fld2), ref Unsafe.As<Int16, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector64<Int16>>()); return testStruct; } public void RunStructFldScenario(SimpleBinaryOpTest__AddPairwise_Vector64_Int16 testClass) { var result = AdvSimd.AddPairwise(_fld1, _fld2); Unsafe.Write(testClass._dataTable.outArrayPtr, result); testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr); } public void RunStructFldScenario_Load(SimpleBinaryOpTest__AddPairwise_Vector64_Int16 testClass) { fixed (Vector64<Int16>* pFld1 = &_fld1) fixed (Vector64<Int16>* pFld2 = &_fld2) { var result = AdvSimd.AddPairwise( AdvSimd.LoadVector64((Int16*)(pFld1)), AdvSimd.LoadVector64((Int16*)(pFld2)) ); Unsafe.Write(testClass._dataTable.outArrayPtr, result); testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr); } } } private static readonly int LargestVectorSize = 8; private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector64<Int16>>() / sizeof(Int16); private static readonly int Op2ElementCount = Unsafe.SizeOf<Vector64<Int16>>() / sizeof(Int16); private static readonly int RetElementCount = Unsafe.SizeOf<Vector64<Int16>>() / sizeof(Int16); private static Int16[] _data1 = new Int16[Op1ElementCount]; private static Int16[] _data2 = new Int16[Op2ElementCount]; private static Vector64<Int16> _clsVar1; private static Vector64<Int16> _clsVar2; private Vector64<Int16> _fld1; private Vector64<Int16> _fld2; private DataTable _dataTable; static SimpleBinaryOpTest__AddPairwise_Vector64_Int16() { for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt16(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Int16>, byte>(ref _clsVar1), ref Unsafe.As<Int16, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector64<Int16>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt16(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Int16>, byte>(ref _clsVar2), ref Unsafe.As<Int16, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector64<Int16>>()); } public SimpleBinaryOpTest__AddPairwise_Vector64_Int16() { Succeeded = true; for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt16(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Int16>, byte>(ref _fld1), ref Unsafe.As<Int16, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector64<Int16>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt16(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Int16>, byte>(ref _fld2), ref Unsafe.As<Int16, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector64<Int16>>()); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt16(); } for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt16(); } _dataTable = new DataTable(_data1, _data2, new Int16[RetElementCount], LargestVectorSize); } public bool IsSupported => AdvSimd.IsSupported; public bool Succeeded { get; set; } public void RunBasicScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead)); var result = AdvSimd.AddPairwise( Unsafe.Read<Vector64<Int16>>(_dataTable.inArray1Ptr), Unsafe.Read<Vector64<Int16>>(_dataTable.inArray2Ptr) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunBasicScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_Load)); var result = AdvSimd.AddPairwise( AdvSimd.LoadVector64((Int16*)(_dataTable.inArray1Ptr)), AdvSimd.LoadVector64((Int16*)(_dataTable.inArray2Ptr)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead)); var result = typeof(AdvSimd).GetMethod(nameof(AdvSimd.AddPairwise), new Type[] { typeof(Vector64<Int16>), typeof(Vector64<Int16>) }) .Invoke(null, new object[] { Unsafe.Read<Vector64<Int16>>(_dataTable.inArray1Ptr), Unsafe.Read<Vector64<Int16>>(_dataTable.inArray2Ptr) }); Unsafe.Write(_dataTable.outArrayPtr, (Vector64<Int16>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_Load)); var result = typeof(AdvSimd).GetMethod(nameof(AdvSimd.AddPairwise), new Type[] { typeof(Vector64<Int16>), typeof(Vector64<Int16>) }) .Invoke(null, new object[] { AdvSimd.LoadVector64((Int16*)(_dataTable.inArray1Ptr)), AdvSimd.LoadVector64((Int16*)(_dataTable.inArray2Ptr)) }); Unsafe.Write(_dataTable.outArrayPtr, (Vector64<Int16>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunClsVarScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario)); var result = AdvSimd.AddPairwise( _clsVar1, _clsVar2 ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_clsVar1, _clsVar2, _dataTable.outArrayPtr); } public void RunClsVarScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario_Load)); fixed (Vector64<Int16>* pClsVar1 = &_clsVar1) fixed (Vector64<Int16>* pClsVar2 = &_clsVar2) { var result = AdvSimd.AddPairwise( AdvSimd.LoadVector64((Int16*)(pClsVar1)), AdvSimd.LoadVector64((Int16*)(pClsVar2)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_clsVar1, _clsVar2, _dataTable.outArrayPtr); } } public void RunLclVarScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead)); var op1 = Unsafe.Read<Vector64<Int16>>(_dataTable.inArray1Ptr); var op2 = Unsafe.Read<Vector64<Int16>>(_dataTable.inArray2Ptr); var result = AdvSimd.AddPairwise(op1, op2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(op1, op2, _dataTable.outArrayPtr); } public void RunLclVarScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_Load)); var op1 = AdvSimd.LoadVector64((Int16*)(_dataTable.inArray1Ptr)); var op2 = AdvSimd.LoadVector64((Int16*)(_dataTable.inArray2Ptr)); var result = AdvSimd.AddPairwise(op1, op2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(op1, op2, _dataTable.outArrayPtr); } public void RunClassLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario)); var test = new SimpleBinaryOpTest__AddPairwise_Vector64_Int16(); var result = AdvSimd.AddPairwise(test._fld1, test._fld2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } public void RunClassLclFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario_Load)); var test = new SimpleBinaryOpTest__AddPairwise_Vector64_Int16(); fixed (Vector64<Int16>* pFld1 = &test._fld1) fixed (Vector64<Int16>* pFld2 = &test._fld2) { var result = AdvSimd.AddPairwise( AdvSimd.LoadVector64((Int16*)(pFld1)), AdvSimd.LoadVector64((Int16*)(pFld2)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } } public void RunClassFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario)); var result = AdvSimd.AddPairwise(_fld1, _fld2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_fld1, _fld2, _dataTable.outArrayPtr); } public void RunClassFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario_Load)); fixed (Vector64<Int16>* pFld1 = &_fld1) fixed (Vector64<Int16>* pFld2 = &_fld2) { var result = AdvSimd.AddPairwise( AdvSimd.LoadVector64((Int16*)(pFld1)), AdvSimd.LoadVector64((Int16*)(pFld2)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_fld1, _fld2, _dataTable.outArrayPtr); } } public void RunStructLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario)); var test = TestStruct.Create(); var result = AdvSimd.AddPairwise(test._fld1, test._fld2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } public void RunStructLclFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario_Load)); var test = TestStruct.Create(); var result = AdvSimd.AddPairwise( AdvSimd.LoadVector64((Int16*)(&test._fld1)), AdvSimd.LoadVector64((Int16*)(&test._fld2)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } public void RunStructFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario)); var test = TestStruct.Create(); test.RunStructFldScenario(this); } public void RunStructFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario_Load)); var test = TestStruct.Create(); test.RunStructFldScenario_Load(this); } public void RunUnsupportedScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunUnsupportedScenario)); bool succeeded = false; try { RunBasicScenario_UnsafeRead(); } catch (PlatformNotSupportedException) { succeeded = true; } if (!succeeded) { Succeeded = false; } } private void ValidateResult(Vector64<Int16> op1, Vector64<Int16> op2, void* result, [CallerMemberName] string method = "") { Int16[] inArray1 = new Int16[Op1ElementCount]; Int16[] inArray2 = new Int16[Op2ElementCount]; Int16[] outArray = new Int16[RetElementCount]; Unsafe.WriteUnaligned(ref Unsafe.As<Int16, byte>(ref inArray1[0]), op1); Unsafe.WriteUnaligned(ref Unsafe.As<Int16, byte>(ref inArray2[0]), op2); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int16, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector64<Int16>>()); ValidateResult(inArray1, inArray2, outArray, method); } private void ValidateResult(void* op1, void* op2, void* result, [CallerMemberName] string method = "") { Int16[] inArray1 = new Int16[Op1ElementCount]; Int16[] inArray2 = new Int16[Op2ElementCount]; Int16[] outArray = new Int16[RetElementCount]; Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int16, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(op1), (uint)Unsafe.SizeOf<Vector64<Int16>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int16, byte>(ref inArray2[0]), ref Unsafe.AsRef<byte>(op2), (uint)Unsafe.SizeOf<Vector64<Int16>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int16, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector64<Int16>>()); ValidateResult(inArray1, inArray2, outArray, method); } private void ValidateResult(Int16[] left, Int16[] right, Int16[] result, [CallerMemberName] string method = "") { bool succeeded = true; for (var i = 0; i < RetElementCount; i++) { if (Helpers.AddPairwise(left, right, i) != result[i]) { succeeded = false; break; } } if (!succeeded) { TestLibrary.TestFramework.LogInformation($"{nameof(AdvSimd)}.{nameof(AdvSimd.AddPairwise)}<Int16>(Vector64<Int16>, Vector64<Int16>): {method} failed:"); TestLibrary.TestFramework.LogInformation($" left: ({string.Join(", ", left)})"); TestLibrary.TestFramework.LogInformation($" right: ({string.Join(", ", right)})"); TestLibrary.TestFramework.LogInformation($" result: ({string.Join(", ", result)})"); TestLibrary.TestFramework.LogInformation(string.Empty); Succeeded = false; } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /****************************************************************************** * This file is auto-generated from a template file by the GenerateTests.csx * * script in tests\src\JIT\HardwareIntrinsics.Arm\Shared. In order to make * * changes, please update the corresponding template and run according to the * * directions listed in the file. * ******************************************************************************/ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Intrinsics; using System.Runtime.Intrinsics.Arm; namespace JIT.HardwareIntrinsics.Arm { public static partial class Program { private static void AddPairwise_Vector64_Int16() { var test = new SimpleBinaryOpTest__AddPairwise_Vector64_Int16(); if (test.IsSupported) { // Validates basic functionality works, using Unsafe.Read test.RunBasicScenario_UnsafeRead(); if (AdvSimd.IsSupported) { // Validates basic functionality works, using Load test.RunBasicScenario_Load(); } // Validates calling via reflection works, using Unsafe.Read test.RunReflectionScenario_UnsafeRead(); if (AdvSimd.IsSupported) { // Validates calling via reflection works, using Load test.RunReflectionScenario_Load(); } // Validates passing a static member works test.RunClsVarScenario(); if (AdvSimd.IsSupported) { // Validates passing a static member works, using pinning and Load test.RunClsVarScenario_Load(); } // Validates passing a local works, using Unsafe.Read test.RunLclVarScenario_UnsafeRead(); if (AdvSimd.IsSupported) { // Validates passing a local works, using Load test.RunLclVarScenario_Load(); } // Validates passing the field of a local class works test.RunClassLclFldScenario(); if (AdvSimd.IsSupported) { // Validates passing the field of a local class works, using pinning and Load test.RunClassLclFldScenario_Load(); } // Validates passing an instance member of a class works test.RunClassFldScenario(); if (AdvSimd.IsSupported) { // Validates passing an instance member of a class works, using pinning and Load test.RunClassFldScenario_Load(); } // Validates passing the field of a local struct works test.RunStructLclFldScenario(); if (AdvSimd.IsSupported) { // Validates passing the field of a local struct works, using pinning and Load test.RunStructLclFldScenario_Load(); } // Validates passing an instance member of a struct works test.RunStructFldScenario(); if (AdvSimd.IsSupported) { // Validates passing an instance member of a struct works, using pinning and Load test.RunStructFldScenario_Load(); } } else { // Validates we throw on unsupported hardware test.RunUnsupportedScenario(); } if (!test.Succeeded) { throw new Exception("One or more scenarios did not complete as expected."); } } } public sealed unsafe class SimpleBinaryOpTest__AddPairwise_Vector64_Int16 { private struct DataTable { private byte[] inArray1; private byte[] inArray2; private byte[] outArray; private GCHandle inHandle1; private GCHandle inHandle2; private GCHandle outHandle; private ulong alignment; public DataTable(Int16[] inArray1, Int16[] inArray2, Int16[] outArray, int alignment) { int sizeOfinArray1 = inArray1.Length * Unsafe.SizeOf<Int16>(); int sizeOfinArray2 = inArray2.Length * Unsafe.SizeOf<Int16>(); int sizeOfoutArray = outArray.Length * Unsafe.SizeOf<Int16>(); if ((alignment != 16 && alignment != 8) || (alignment * 2) < sizeOfinArray1 || (alignment * 2) < sizeOfinArray2 || (alignment * 2) < sizeOfoutArray) { throw new ArgumentException("Invalid value of alignment"); } this.inArray1 = new byte[alignment * 2]; this.inArray2 = new byte[alignment * 2]; this.outArray = new byte[alignment * 2]; this.inHandle1 = GCHandle.Alloc(this.inArray1, GCHandleType.Pinned); this.inHandle2 = GCHandle.Alloc(this.inArray2, GCHandleType.Pinned); this.outHandle = GCHandle.Alloc(this.outArray, GCHandleType.Pinned); this.alignment = (ulong)alignment; Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray1Ptr), ref Unsafe.As<Int16, byte>(ref inArray1[0]), (uint)sizeOfinArray1); Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray2Ptr), ref Unsafe.As<Int16, byte>(ref inArray2[0]), (uint)sizeOfinArray2); } public void* inArray1Ptr => Align((byte*)(inHandle1.AddrOfPinnedObject().ToPointer()), alignment); public void* inArray2Ptr => Align((byte*)(inHandle2.AddrOfPinnedObject().ToPointer()), alignment); public void* outArrayPtr => Align((byte*)(outHandle.AddrOfPinnedObject().ToPointer()), alignment); public void Dispose() { inHandle1.Free(); inHandle2.Free(); outHandle.Free(); } private static unsafe void* Align(byte* buffer, ulong expectedAlignment) { return (void*)(((ulong)buffer + expectedAlignment - 1) & ~(expectedAlignment - 1)); } } private struct TestStruct { public Vector64<Int16> _fld1; public Vector64<Int16> _fld2; public static TestStruct Create() { var testStruct = new TestStruct(); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt16(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Int16>, byte>(ref testStruct._fld1), ref Unsafe.As<Int16, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector64<Int16>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt16(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Int16>, byte>(ref testStruct._fld2), ref Unsafe.As<Int16, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector64<Int16>>()); return testStruct; } public void RunStructFldScenario(SimpleBinaryOpTest__AddPairwise_Vector64_Int16 testClass) { var result = AdvSimd.AddPairwise(_fld1, _fld2); Unsafe.Write(testClass._dataTable.outArrayPtr, result); testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr); } public void RunStructFldScenario_Load(SimpleBinaryOpTest__AddPairwise_Vector64_Int16 testClass) { fixed (Vector64<Int16>* pFld1 = &_fld1) fixed (Vector64<Int16>* pFld2 = &_fld2) { var result = AdvSimd.AddPairwise( AdvSimd.LoadVector64((Int16*)(pFld1)), AdvSimd.LoadVector64((Int16*)(pFld2)) ); Unsafe.Write(testClass._dataTable.outArrayPtr, result); testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr); } } } private static readonly int LargestVectorSize = 8; private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector64<Int16>>() / sizeof(Int16); private static readonly int Op2ElementCount = Unsafe.SizeOf<Vector64<Int16>>() / sizeof(Int16); private static readonly int RetElementCount = Unsafe.SizeOf<Vector64<Int16>>() / sizeof(Int16); private static Int16[] _data1 = new Int16[Op1ElementCount]; private static Int16[] _data2 = new Int16[Op2ElementCount]; private static Vector64<Int16> _clsVar1; private static Vector64<Int16> _clsVar2; private Vector64<Int16> _fld1; private Vector64<Int16> _fld2; private DataTable _dataTable; static SimpleBinaryOpTest__AddPairwise_Vector64_Int16() { for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt16(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Int16>, byte>(ref _clsVar1), ref Unsafe.As<Int16, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector64<Int16>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt16(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Int16>, byte>(ref _clsVar2), ref Unsafe.As<Int16, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector64<Int16>>()); } public SimpleBinaryOpTest__AddPairwise_Vector64_Int16() { Succeeded = true; for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt16(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Int16>, byte>(ref _fld1), ref Unsafe.As<Int16, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector64<Int16>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt16(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Int16>, byte>(ref _fld2), ref Unsafe.As<Int16, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector64<Int16>>()); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetInt16(); } for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt16(); } _dataTable = new DataTable(_data1, _data2, new Int16[RetElementCount], LargestVectorSize); } public bool IsSupported => AdvSimd.IsSupported; public bool Succeeded { get; set; } public void RunBasicScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead)); var result = AdvSimd.AddPairwise( Unsafe.Read<Vector64<Int16>>(_dataTable.inArray1Ptr), Unsafe.Read<Vector64<Int16>>(_dataTable.inArray2Ptr) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunBasicScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_Load)); var result = AdvSimd.AddPairwise( AdvSimd.LoadVector64((Int16*)(_dataTable.inArray1Ptr)), AdvSimd.LoadVector64((Int16*)(_dataTable.inArray2Ptr)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead)); var result = typeof(AdvSimd).GetMethod(nameof(AdvSimd.AddPairwise), new Type[] { typeof(Vector64<Int16>), typeof(Vector64<Int16>) }) .Invoke(null, new object[] { Unsafe.Read<Vector64<Int16>>(_dataTable.inArray1Ptr), Unsafe.Read<Vector64<Int16>>(_dataTable.inArray2Ptr) }); Unsafe.Write(_dataTable.outArrayPtr, (Vector64<Int16>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_Load)); var result = typeof(AdvSimd).GetMethod(nameof(AdvSimd.AddPairwise), new Type[] { typeof(Vector64<Int16>), typeof(Vector64<Int16>) }) .Invoke(null, new object[] { AdvSimd.LoadVector64((Int16*)(_dataTable.inArray1Ptr)), AdvSimd.LoadVector64((Int16*)(_dataTable.inArray2Ptr)) }); Unsafe.Write(_dataTable.outArrayPtr, (Vector64<Int16>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunClsVarScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario)); var result = AdvSimd.AddPairwise( _clsVar1, _clsVar2 ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_clsVar1, _clsVar2, _dataTable.outArrayPtr); } public void RunClsVarScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario_Load)); fixed (Vector64<Int16>* pClsVar1 = &_clsVar1) fixed (Vector64<Int16>* pClsVar2 = &_clsVar2) { var result = AdvSimd.AddPairwise( AdvSimd.LoadVector64((Int16*)(pClsVar1)), AdvSimd.LoadVector64((Int16*)(pClsVar2)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_clsVar1, _clsVar2, _dataTable.outArrayPtr); } } public void RunLclVarScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead)); var op1 = Unsafe.Read<Vector64<Int16>>(_dataTable.inArray1Ptr); var op2 = Unsafe.Read<Vector64<Int16>>(_dataTable.inArray2Ptr); var result = AdvSimd.AddPairwise(op1, op2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(op1, op2, _dataTable.outArrayPtr); } public void RunLclVarScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_Load)); var op1 = AdvSimd.LoadVector64((Int16*)(_dataTable.inArray1Ptr)); var op2 = AdvSimd.LoadVector64((Int16*)(_dataTable.inArray2Ptr)); var result = AdvSimd.AddPairwise(op1, op2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(op1, op2, _dataTable.outArrayPtr); } public void RunClassLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario)); var test = new SimpleBinaryOpTest__AddPairwise_Vector64_Int16(); var result = AdvSimd.AddPairwise(test._fld1, test._fld2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } public void RunClassLclFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario_Load)); var test = new SimpleBinaryOpTest__AddPairwise_Vector64_Int16(); fixed (Vector64<Int16>* pFld1 = &test._fld1) fixed (Vector64<Int16>* pFld2 = &test._fld2) { var result = AdvSimd.AddPairwise( AdvSimd.LoadVector64((Int16*)(pFld1)), AdvSimd.LoadVector64((Int16*)(pFld2)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } } public void RunClassFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario)); var result = AdvSimd.AddPairwise(_fld1, _fld2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_fld1, _fld2, _dataTable.outArrayPtr); } public void RunClassFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario_Load)); fixed (Vector64<Int16>* pFld1 = &_fld1) fixed (Vector64<Int16>* pFld2 = &_fld2) { var result = AdvSimd.AddPairwise( AdvSimd.LoadVector64((Int16*)(pFld1)), AdvSimd.LoadVector64((Int16*)(pFld2)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_fld1, _fld2, _dataTable.outArrayPtr); } } public void RunStructLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario)); var test = TestStruct.Create(); var result = AdvSimd.AddPairwise(test._fld1, test._fld2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } public void RunStructLclFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario_Load)); var test = TestStruct.Create(); var result = AdvSimd.AddPairwise( AdvSimd.LoadVector64((Int16*)(&test._fld1)), AdvSimd.LoadVector64((Int16*)(&test._fld2)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } public void RunStructFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario)); var test = TestStruct.Create(); test.RunStructFldScenario(this); } public void RunStructFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario_Load)); var test = TestStruct.Create(); test.RunStructFldScenario_Load(this); } public void RunUnsupportedScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunUnsupportedScenario)); bool succeeded = false; try { RunBasicScenario_UnsafeRead(); } catch (PlatformNotSupportedException) { succeeded = true; } if (!succeeded) { Succeeded = false; } } private void ValidateResult(Vector64<Int16> op1, Vector64<Int16> op2, void* result, [CallerMemberName] string method = "") { Int16[] inArray1 = new Int16[Op1ElementCount]; Int16[] inArray2 = new Int16[Op2ElementCount]; Int16[] outArray = new Int16[RetElementCount]; Unsafe.WriteUnaligned(ref Unsafe.As<Int16, byte>(ref inArray1[0]), op1); Unsafe.WriteUnaligned(ref Unsafe.As<Int16, byte>(ref inArray2[0]), op2); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int16, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector64<Int16>>()); ValidateResult(inArray1, inArray2, outArray, method); } private void ValidateResult(void* op1, void* op2, void* result, [CallerMemberName] string method = "") { Int16[] inArray1 = new Int16[Op1ElementCount]; Int16[] inArray2 = new Int16[Op2ElementCount]; Int16[] outArray = new Int16[RetElementCount]; Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int16, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(op1), (uint)Unsafe.SizeOf<Vector64<Int16>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int16, byte>(ref inArray2[0]), ref Unsafe.AsRef<byte>(op2), (uint)Unsafe.SizeOf<Vector64<Int16>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int16, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector64<Int16>>()); ValidateResult(inArray1, inArray2, outArray, method); } private void ValidateResult(Int16[] left, Int16[] right, Int16[] result, [CallerMemberName] string method = "") { bool succeeded = true; for (var i = 0; i < RetElementCount; i++) { if (Helpers.AddPairwise(left, right, i) != result[i]) { succeeded = false; break; } } if (!succeeded) { TestLibrary.TestFramework.LogInformation($"{nameof(AdvSimd)}.{nameof(AdvSimd.AddPairwise)}<Int16>(Vector64<Int16>, Vector64<Int16>): {method} failed:"); TestLibrary.TestFramework.LogInformation($" left: ({string.Join(", ", left)})"); TestLibrary.TestFramework.LogInformation($" right: ({string.Join(", ", right)})"); TestLibrary.TestFramework.LogInformation($" result: ({string.Join(", ", result)})"); TestLibrary.TestFramework.LogInformation(string.Empty); Succeeded = false; } } } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/Methodical/Arrays/huge/huge_b.il
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly extern mscorlib { } .assembly 'huge_b' { } .assembly extern xunit.core {} .namespace JitTest { .class private auto ansi Test extends [mscorlib]System.Object { .method private hidebysig static int32 Main() il managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 70 .locals (bool[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,] matrix, int32 count, int32[] dim) ldstr "Creating 32-dimension array" call void [System.Console]System.Console::WriteLine(string) ldc.i4 32 dup stloc count dup add newarr int32 again: dup dup ldloc count ldc.i4.1 sub dup stloc count dup add dup ldc.i4 20 mul stelem.i4 ldloc count dup add ldc.i4.1 add ldloc count ldc.i4.3 rem dup brtrue cool pop ldc.i4.1 cool: stelem.i4 ldloc count brtrue again ldc.i4.0 stloc count again2: dup ldloc count ldelem.i4 call void [System.Console]System.Console::Write(int32) ldstr " " call void [System.Console]System.Console::Write(string) ldloc count ldc.i4.1 add dup stloc count ldc.i4 64 ceq brfalse again2 stloc dim ldloc dim ldc.i4.0 ldelem.i4 ldloc dim ldc.i4.1 ldelem.i4 ldloc dim ldc.i4.2 ldelem.i4 ldloc dim ldc.i4.3 ldelem.i4 ldloc dim ldc.i4.4 ldelem.i4 ldloc dim ldc.i4.5 ldelem.i4 ldloc dim ldc.i4.6 ldelem.i4 ldloc dim ldc.i4.7 ldelem.i4 ldloc dim ldc.i4.8 ldelem.i4 ldloc dim ldc.i4 9 ldelem.i4 ldloc dim ldc.i4 10 ldelem.i4 ldloc dim ldc.i4 11 ldelem.i4 ldloc dim ldc.i4 12 ldelem.i4 ldloc dim ldc.i4 13 ldelem.i4 ldloc dim ldc.i4 14 ldelem.i4 ldloc dim ldc.i4 15 ldelem.i4 ldloc dim ldc.i4 16 ldelem.i4 ldloc dim ldc.i4 17 ldelem.i4 ldloc dim ldc.i4 18 ldelem.i4 ldloc dim ldc.i4 19 ldelem.i4 ldloc dim ldc.i4 20 ldelem.i4 ldloc dim ldc.i4 21 ldelem.i4 ldloc dim ldc.i4 22 ldelem.i4 ldloc dim ldc.i4 23 ldelem.i4 ldloc dim ldc.i4 24 ldelem.i4 ldloc dim ldc.i4 25 ldelem.i4 ldloc dim ldc.i4 26 ldelem.i4 ldloc dim ldc.i4 27 ldelem.i4 ldloc dim ldc.i4 28 ldelem.i4 ldloc dim ldc.i4 29 ldelem.i4 ldloc dim ldc.i4 30 ldelem.i4 ldloc dim ldc.i4 31 ldelem.i4 ldloc dim ldc.i4 32 ldelem.i4 ldloc dim ldc.i4 33 ldelem.i4 ldloc dim ldc.i4 34 ldelem.i4 ldloc dim ldc.i4 35 ldelem.i4 ldloc dim ldc.i4 36 ldelem.i4 ldloc dim ldc.i4 37 ldelem.i4 ldloc dim ldc.i4 38 ldelem.i4 ldloc dim ldc.i4 39 ldelem.i4 ldloc dim ldc.i4 40 ldelem.i4 ldloc dim ldc.i4 41 ldelem.i4 ldloc dim ldc.i4 42 ldelem.i4 ldloc dim ldc.i4 43 ldelem.i4 ldloc dim ldc.i4 44 ldelem.i4 ldloc dim ldc.i4 45 ldelem.i4 ldloc dim ldc.i4 46 ldelem.i4 ldloc dim ldc.i4 47 ldelem.i4 ldloc dim ldc.i4 48 ldelem.i4 ldloc dim ldc.i4 49 ldelem.i4 ldloc dim ldc.i4 50 ldelem.i4 ldloc dim ldc.i4 51 ldelem.i4 ldloc dim ldc.i4 52 ldelem.i4 ldloc dim ldc.i4 53 ldelem.i4 ldloc dim ldc.i4 54 ldelem.i4 ldloc dim ldc.i4 55 ldelem.i4 ldloc dim ldc.i4 56 ldelem.i4 ldloc dim ldc.i4 57 ldelem.i4 ldloc dim ldc.i4 58 ldelem.i4 ldloc dim ldc.i4 59 ldelem.i4 ldloc dim ldc.i4 60 ldelem.i4 ldloc dim ldc.i4 61 ldelem.i4 ldloc dim ldc.i4 62 ldelem.i4 ldloc dim ldc.i4 63 ldelem.i4 newobj instance void bool[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::.ctor( int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32) stloc matrix ldloc matrix ldloc dim ldc.i4.0 ldelem.i4 ldloc dim ldc.i4.2 ldelem.i4 ldloc dim ldc.i4.4 ldelem.i4 ldloc dim ldc.i4.6 ldelem.i4 ldloc dim ldc.i4.8 ldelem.i4 ldloc dim ldc.i4 10 ldelem.i4 ldloc dim ldc.i4 12 ldelem.i4 ldloc dim ldc.i4 14 ldelem.i4 ldloc dim ldc.i4 16 ldelem.i4 ldloc dim ldc.i4 18 ldelem.i4 ldloc dim ldc.i4 20 ldelem.i4 ldloc dim ldc.i4 22 ldelem.i4 ldloc dim ldc.i4 24 ldelem.i4 ldloc dim ldc.i4 26 ldelem.i4 ldloc dim ldc.i4 28 ldelem.i4 ldloc dim ldc.i4 30 ldelem.i4 ldloc dim ldc.i4 32 ldelem.i4 ldloc dim ldc.i4 34 ldelem.i4 ldloc dim ldc.i4 36 ldelem.i4 ldloc dim ldc.i4 38 ldelem.i4 ldloc dim ldc.i4 40 ldelem.i4 ldloc dim ldc.i4 42 ldelem.i4 ldloc dim ldc.i4 44 ldelem.i4 ldloc dim ldc.i4 46 ldelem.i4 ldloc dim ldc.i4 48 ldelem.i4 ldloc dim ldc.i4 50 ldelem.i4 ldloc dim ldc.i4 52 ldelem.i4 ldloc dim ldc.i4 54 ldelem.i4 ldloc dim ldc.i4 56 ldelem.i4 ldloc dim ldc.i4 58 ldelem.i4 ldloc dim ldc.i4 60 ldelem.i4 ldloc dim ldc.i4 62 ldelem.i4 ldc.i4.1 call instance void bool[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::Set( int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, bool) ldloc matrix ldloc dim ldc.i4.0 ldelem.i4 ldloc dim ldc.i4.2 ldelem.i4 ldloc dim ldc.i4.4 ldelem.i4 ldloc dim ldc.i4.6 ldelem.i4 ldloc dim ldc.i4.8 ldelem.i4 ldloc dim ldc.i4 10 ldelem.i4 ldloc dim ldc.i4 12 ldelem.i4 ldloc dim ldc.i4 14 ldelem.i4 ldloc dim ldc.i4 16 ldelem.i4 ldloc dim ldc.i4 18 ldelem.i4 ldloc dim ldc.i4 20 ldelem.i4 ldloc dim ldc.i4 22 ldelem.i4 ldloc dim ldc.i4 24 ldelem.i4 ldloc dim ldc.i4 26 ldelem.i4 ldloc dim ldc.i4 28 ldelem.i4 ldloc dim ldc.i4 30 ldelem.i4 ldloc dim ldc.i4 32 ldelem.i4 ldloc dim ldc.i4 34 ldelem.i4 ldloc dim ldc.i4 36 ldelem.i4 ldloc dim ldc.i4 38 ldelem.i4 ldloc dim ldc.i4 40 ldelem.i4 ldloc dim ldc.i4 42 ldelem.i4 ldloc dim ldc.i4 44 ldelem.i4 ldloc dim ldc.i4 46 ldelem.i4 ldloc dim ldc.i4 48 ldelem.i4 ldloc dim ldc.i4 50 ldelem.i4 ldloc dim ldc.i4 52 ldelem.i4 ldloc dim ldc.i4 54 ldelem.i4 ldloc dim ldc.i4 56 ldelem.i4 ldloc dim ldc.i4 58 ldelem.i4 ldloc dim ldc.i4 60 ldelem.i4 ldloc dim ldc.i4 62 ldelem.i4 call instance bool bool[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::Get( int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32) brtrue pass1 br throw0 cont1: ldloc matrix ldloc dim ldc.i4.0 ldelem.i4 ldloc dim ldc.i4.2 ldelem.i4 ldloc dim ldc.i4.4 ldelem.i4 ldloc dim ldc.i4.6 ldelem.i4 ldloc dim ldc.i4.8 ldelem.i4 ldloc dim ldc.i4 10 ldelem.i4 ldloc dim ldc.i4 12 ldelem.i4 ldloc dim ldc.i4 14 ldelem.i4 ldloc dim ldc.i4 16 ldelem.i4 ldloc dim ldc.i4 18 ldelem.i4 ldloc dim ldc.i4 20 ldelem.i4 ldloc dim ldc.i4 22 ldelem.i4 ldloc dim ldc.i4 24 ldelem.i4 ldloc dim ldc.i4 26 ldelem.i4 ldloc dim ldc.i4 28 ldelem.i4 ldloc dim ldc.i4 30 ldelem.i4 ldloc dim ldc.i4 32 ldelem.i4 ldloc dim ldc.i4 34 ldelem.i4 ldloc dim ldc.i4 36 ldelem.i4 ldloc dim ldc.i4 38 ldelem.i4 ldloc dim ldc.i4 40 ldelem.i4 ldloc dim ldc.i4 42 ldelem.i4 ldloc dim ldc.i4 44 ldelem.i4 ldloc dim ldc.i4 46 ldelem.i4 ldloc dim ldc.i4 48 ldelem.i4 ldloc dim ldc.i4 50 ldelem.i4 ldloc dim ldc.i4 52 ldelem.i4 ldloc dim ldc.i4 54 ldelem.i4 ldloc dim ldc.i4 56 ldelem.i4 ldloc dim ldc.i4 58 ldelem.i4 ldloc dim ldc.i4 60 ldelem.i4 ldloc dim ldc.i4 62 ldelem.i4 br go1 cont2: br cont3 go1: call instance bool bool[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::Get( int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32) brtrue pass1_5 throw0: newobj instance void [mscorlib]System.Exception::.ctor() throw1: throw pass1: br cont0 pass2: ldloc matrix ldloc dim ldc.i4.0 ldelem.i4 ldloc dim ldc.i4.2 ldelem.i4 ldloc dim ldc.i4.4 ldelem.i4 ldloc dim ldc.i4.6 ldelem.i4 ldloc dim ldc.i4.8 ldelem.i4 ldloc dim ldc.i4 10 ldelem.i4 ldloc dim ldc.i4 12 ldelem.i4 ldloc dim ldc.i4 14 ldelem.i4 ldloc dim ldc.i4 16 ldelem.i4 ldloc dim ldc.i4 18 ldelem.i4 ldloc dim ldc.i4 20 ldelem.i4 ldloc dim ldc.i4 22 ldelem.i4 ldloc dim ldc.i4 24 ldelem.i4 ldloc dim ldc.i4 26 ldelem.i4 ldloc dim ldc.i4 28 ldelem.i4 ldloc dim ldc.i4 30 ldelem.i4 ldloc dim ldc.i4 32 ldelem.i4 ldloc dim ldc.i4 34 ldelem.i4 ldloc dim ldc.i4 36 ldelem.i4 ldloc dim ldc.i4 38 ldelem.i4 ldloc dim ldc.i4 40 ldelem.i4 ldloc dim ldc.i4 42 ldelem.i4 ldloc dim ldc.i4 44 ldelem.i4 ldloc dim ldc.i4 46 ldelem.i4 ldloc dim ldc.i4 48 ldelem.i4 ldloc dim ldc.i4 50 ldelem.i4 ldloc dim ldc.i4 52 ldelem.i4 ldloc dim ldc.i4 54 ldelem.i4 ldloc dim ldc.i4 56 ldelem.i4 ldloc dim ldc.i4 58 ldelem.i4 ldloc dim ldc.i4 60 ldelem.i4 ldloc dim ldc.i4 62 ldelem.i4 ldc.i4.1 call instance void bool[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::Set( int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, bool) ldnull stloc matrix call void [mscorlib]System.GC::Collect() ldc.i4 100 ldstr "TEST PASSED" call void [System.Console]System.Console::Write(string) ret cont0: br cont2 cont3: br cont1 pass1_5: ldloc matrix ldloc dim ldc.i4.0 ldelem.i4 ldloc dim ldc.i4.2 ldelem.i4 ldloc dim ldc.i4.4 ldelem.i4 ldloc dim ldc.i4.6 ldelem.i4 ldloc dim ldc.i4.8 ldelem.i4 ldloc dim ldc.i4 10 ldelem.i4 ldloc dim ldc.i4 12 ldelem.i4 ldloc dim ldc.i4 14 ldelem.i4 ldloc dim ldc.i4 16 ldelem.i4 ldloc dim ldc.i4 18 ldelem.i4 ldloc dim ldc.i4 20 ldelem.i4 ldloc dim ldc.i4 22 ldelem.i4 ldloc dim ldc.i4 24 ldelem.i4 ldloc dim ldc.i4 26 ldelem.i4 ldloc dim ldc.i4 28 ldelem.i4 ldloc dim ldc.i4 30 ldelem.i4 ldloc dim ldc.i4 32 ldelem.i4 ldloc dim ldc.i4 34 ldelem.i4 ldloc dim ldc.i4 36 ldelem.i4 ldloc dim ldc.i4 38 ldelem.i4 ldloc dim ldc.i4 40 ldelem.i4 ldloc dim ldc.i4 42 ldelem.i4 ldloc dim ldc.i4 44 ldelem.i4 ldloc dim ldc.i4 46 ldelem.i4 ldloc dim ldc.i4 48 ldelem.i4 ldloc dim ldc.i4 50 ldelem.i4 ldloc dim ldc.i4 52 ldelem.i4 ldloc dim ldc.i4 54 ldelem.i4 ldloc dim ldc.i4 56 ldelem.i4 ldloc dim ldc.i4 58 ldelem.i4 ldloc dim ldc.i4 60 ldelem.i4 ldloc dim ldc.i4 62 ldelem.i4 call instance bool& bool[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::Address( int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32) ldind.i1 brtrue pass2 newobj instance void [mscorlib]System.Exception::.ctor() br throw1 } // end of method 'Test::Main' .method public hidebysig specialname rtspecialname instance void .ctor() il managed { .maxstack 8 IL_0000: ldarg.0 IL_0001: call instance void [mscorlib]System.Object::.ctor() IL_0006: ret } // end of method 'Test::.ctor' } // end of class 'Test' } // end of namespace 'JitTest'
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. .assembly extern System.Console { .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) .ver 4:0:0:0 } .assembly extern mscorlib { } .assembly 'huge_b' { } .assembly extern xunit.core {} .namespace JitTest { .class private auto ansi Test extends [mscorlib]System.Object { .method private hidebysig static int32 Main() il managed { .custom instance void [xunit.core]Xunit.FactAttribute::.ctor() = ( 01 00 00 00 ) .entrypoint .maxstack 70 .locals (bool[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,] matrix, int32 count, int32[] dim) ldstr "Creating 32-dimension array" call void [System.Console]System.Console::WriteLine(string) ldc.i4 32 dup stloc count dup add newarr int32 again: dup dup ldloc count ldc.i4.1 sub dup stloc count dup add dup ldc.i4 20 mul stelem.i4 ldloc count dup add ldc.i4.1 add ldloc count ldc.i4.3 rem dup brtrue cool pop ldc.i4.1 cool: stelem.i4 ldloc count brtrue again ldc.i4.0 stloc count again2: dup ldloc count ldelem.i4 call void [System.Console]System.Console::Write(int32) ldstr " " call void [System.Console]System.Console::Write(string) ldloc count ldc.i4.1 add dup stloc count ldc.i4 64 ceq brfalse again2 stloc dim ldloc dim ldc.i4.0 ldelem.i4 ldloc dim ldc.i4.1 ldelem.i4 ldloc dim ldc.i4.2 ldelem.i4 ldloc dim ldc.i4.3 ldelem.i4 ldloc dim ldc.i4.4 ldelem.i4 ldloc dim ldc.i4.5 ldelem.i4 ldloc dim ldc.i4.6 ldelem.i4 ldloc dim ldc.i4.7 ldelem.i4 ldloc dim ldc.i4.8 ldelem.i4 ldloc dim ldc.i4 9 ldelem.i4 ldloc dim ldc.i4 10 ldelem.i4 ldloc dim ldc.i4 11 ldelem.i4 ldloc dim ldc.i4 12 ldelem.i4 ldloc dim ldc.i4 13 ldelem.i4 ldloc dim ldc.i4 14 ldelem.i4 ldloc dim ldc.i4 15 ldelem.i4 ldloc dim ldc.i4 16 ldelem.i4 ldloc dim ldc.i4 17 ldelem.i4 ldloc dim ldc.i4 18 ldelem.i4 ldloc dim ldc.i4 19 ldelem.i4 ldloc dim ldc.i4 20 ldelem.i4 ldloc dim ldc.i4 21 ldelem.i4 ldloc dim ldc.i4 22 ldelem.i4 ldloc dim ldc.i4 23 ldelem.i4 ldloc dim ldc.i4 24 ldelem.i4 ldloc dim ldc.i4 25 ldelem.i4 ldloc dim ldc.i4 26 ldelem.i4 ldloc dim ldc.i4 27 ldelem.i4 ldloc dim ldc.i4 28 ldelem.i4 ldloc dim ldc.i4 29 ldelem.i4 ldloc dim ldc.i4 30 ldelem.i4 ldloc dim ldc.i4 31 ldelem.i4 ldloc dim ldc.i4 32 ldelem.i4 ldloc dim ldc.i4 33 ldelem.i4 ldloc dim ldc.i4 34 ldelem.i4 ldloc dim ldc.i4 35 ldelem.i4 ldloc dim ldc.i4 36 ldelem.i4 ldloc dim ldc.i4 37 ldelem.i4 ldloc dim ldc.i4 38 ldelem.i4 ldloc dim ldc.i4 39 ldelem.i4 ldloc dim ldc.i4 40 ldelem.i4 ldloc dim ldc.i4 41 ldelem.i4 ldloc dim ldc.i4 42 ldelem.i4 ldloc dim ldc.i4 43 ldelem.i4 ldloc dim ldc.i4 44 ldelem.i4 ldloc dim ldc.i4 45 ldelem.i4 ldloc dim ldc.i4 46 ldelem.i4 ldloc dim ldc.i4 47 ldelem.i4 ldloc dim ldc.i4 48 ldelem.i4 ldloc dim ldc.i4 49 ldelem.i4 ldloc dim ldc.i4 50 ldelem.i4 ldloc dim ldc.i4 51 ldelem.i4 ldloc dim ldc.i4 52 ldelem.i4 ldloc dim ldc.i4 53 ldelem.i4 ldloc dim ldc.i4 54 ldelem.i4 ldloc dim ldc.i4 55 ldelem.i4 ldloc dim ldc.i4 56 ldelem.i4 ldloc dim ldc.i4 57 ldelem.i4 ldloc dim ldc.i4 58 ldelem.i4 ldloc dim ldc.i4 59 ldelem.i4 ldloc dim ldc.i4 60 ldelem.i4 ldloc dim ldc.i4 61 ldelem.i4 ldloc dim ldc.i4 62 ldelem.i4 ldloc dim ldc.i4 63 ldelem.i4 newobj instance void bool[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::.ctor( int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32) stloc matrix ldloc matrix ldloc dim ldc.i4.0 ldelem.i4 ldloc dim ldc.i4.2 ldelem.i4 ldloc dim ldc.i4.4 ldelem.i4 ldloc dim ldc.i4.6 ldelem.i4 ldloc dim ldc.i4.8 ldelem.i4 ldloc dim ldc.i4 10 ldelem.i4 ldloc dim ldc.i4 12 ldelem.i4 ldloc dim ldc.i4 14 ldelem.i4 ldloc dim ldc.i4 16 ldelem.i4 ldloc dim ldc.i4 18 ldelem.i4 ldloc dim ldc.i4 20 ldelem.i4 ldloc dim ldc.i4 22 ldelem.i4 ldloc dim ldc.i4 24 ldelem.i4 ldloc dim ldc.i4 26 ldelem.i4 ldloc dim ldc.i4 28 ldelem.i4 ldloc dim ldc.i4 30 ldelem.i4 ldloc dim ldc.i4 32 ldelem.i4 ldloc dim ldc.i4 34 ldelem.i4 ldloc dim ldc.i4 36 ldelem.i4 ldloc dim ldc.i4 38 ldelem.i4 ldloc dim ldc.i4 40 ldelem.i4 ldloc dim ldc.i4 42 ldelem.i4 ldloc dim ldc.i4 44 ldelem.i4 ldloc dim ldc.i4 46 ldelem.i4 ldloc dim ldc.i4 48 ldelem.i4 ldloc dim ldc.i4 50 ldelem.i4 ldloc dim ldc.i4 52 ldelem.i4 ldloc dim ldc.i4 54 ldelem.i4 ldloc dim ldc.i4 56 ldelem.i4 ldloc dim ldc.i4 58 ldelem.i4 ldloc dim ldc.i4 60 ldelem.i4 ldloc dim ldc.i4 62 ldelem.i4 ldc.i4.1 call instance void bool[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::Set( int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, bool) ldloc matrix ldloc dim ldc.i4.0 ldelem.i4 ldloc dim ldc.i4.2 ldelem.i4 ldloc dim ldc.i4.4 ldelem.i4 ldloc dim ldc.i4.6 ldelem.i4 ldloc dim ldc.i4.8 ldelem.i4 ldloc dim ldc.i4 10 ldelem.i4 ldloc dim ldc.i4 12 ldelem.i4 ldloc dim ldc.i4 14 ldelem.i4 ldloc dim ldc.i4 16 ldelem.i4 ldloc dim ldc.i4 18 ldelem.i4 ldloc dim ldc.i4 20 ldelem.i4 ldloc dim ldc.i4 22 ldelem.i4 ldloc dim ldc.i4 24 ldelem.i4 ldloc dim ldc.i4 26 ldelem.i4 ldloc dim ldc.i4 28 ldelem.i4 ldloc dim ldc.i4 30 ldelem.i4 ldloc dim ldc.i4 32 ldelem.i4 ldloc dim ldc.i4 34 ldelem.i4 ldloc dim ldc.i4 36 ldelem.i4 ldloc dim ldc.i4 38 ldelem.i4 ldloc dim ldc.i4 40 ldelem.i4 ldloc dim ldc.i4 42 ldelem.i4 ldloc dim ldc.i4 44 ldelem.i4 ldloc dim ldc.i4 46 ldelem.i4 ldloc dim ldc.i4 48 ldelem.i4 ldloc dim ldc.i4 50 ldelem.i4 ldloc dim ldc.i4 52 ldelem.i4 ldloc dim ldc.i4 54 ldelem.i4 ldloc dim ldc.i4 56 ldelem.i4 ldloc dim ldc.i4 58 ldelem.i4 ldloc dim ldc.i4 60 ldelem.i4 ldloc dim ldc.i4 62 ldelem.i4 call instance bool bool[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::Get( int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32) brtrue pass1 br throw0 cont1: ldloc matrix ldloc dim ldc.i4.0 ldelem.i4 ldloc dim ldc.i4.2 ldelem.i4 ldloc dim ldc.i4.4 ldelem.i4 ldloc dim ldc.i4.6 ldelem.i4 ldloc dim ldc.i4.8 ldelem.i4 ldloc dim ldc.i4 10 ldelem.i4 ldloc dim ldc.i4 12 ldelem.i4 ldloc dim ldc.i4 14 ldelem.i4 ldloc dim ldc.i4 16 ldelem.i4 ldloc dim ldc.i4 18 ldelem.i4 ldloc dim ldc.i4 20 ldelem.i4 ldloc dim ldc.i4 22 ldelem.i4 ldloc dim ldc.i4 24 ldelem.i4 ldloc dim ldc.i4 26 ldelem.i4 ldloc dim ldc.i4 28 ldelem.i4 ldloc dim ldc.i4 30 ldelem.i4 ldloc dim ldc.i4 32 ldelem.i4 ldloc dim ldc.i4 34 ldelem.i4 ldloc dim ldc.i4 36 ldelem.i4 ldloc dim ldc.i4 38 ldelem.i4 ldloc dim ldc.i4 40 ldelem.i4 ldloc dim ldc.i4 42 ldelem.i4 ldloc dim ldc.i4 44 ldelem.i4 ldloc dim ldc.i4 46 ldelem.i4 ldloc dim ldc.i4 48 ldelem.i4 ldloc dim ldc.i4 50 ldelem.i4 ldloc dim ldc.i4 52 ldelem.i4 ldloc dim ldc.i4 54 ldelem.i4 ldloc dim ldc.i4 56 ldelem.i4 ldloc dim ldc.i4 58 ldelem.i4 ldloc dim ldc.i4 60 ldelem.i4 ldloc dim ldc.i4 62 ldelem.i4 br go1 cont2: br cont3 go1: call instance bool bool[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::Get( int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32) brtrue pass1_5 throw0: newobj instance void [mscorlib]System.Exception::.ctor() throw1: throw pass1: br cont0 pass2: ldloc matrix ldloc dim ldc.i4.0 ldelem.i4 ldloc dim ldc.i4.2 ldelem.i4 ldloc dim ldc.i4.4 ldelem.i4 ldloc dim ldc.i4.6 ldelem.i4 ldloc dim ldc.i4.8 ldelem.i4 ldloc dim ldc.i4 10 ldelem.i4 ldloc dim ldc.i4 12 ldelem.i4 ldloc dim ldc.i4 14 ldelem.i4 ldloc dim ldc.i4 16 ldelem.i4 ldloc dim ldc.i4 18 ldelem.i4 ldloc dim ldc.i4 20 ldelem.i4 ldloc dim ldc.i4 22 ldelem.i4 ldloc dim ldc.i4 24 ldelem.i4 ldloc dim ldc.i4 26 ldelem.i4 ldloc dim ldc.i4 28 ldelem.i4 ldloc dim ldc.i4 30 ldelem.i4 ldloc dim ldc.i4 32 ldelem.i4 ldloc dim ldc.i4 34 ldelem.i4 ldloc dim ldc.i4 36 ldelem.i4 ldloc dim ldc.i4 38 ldelem.i4 ldloc dim ldc.i4 40 ldelem.i4 ldloc dim ldc.i4 42 ldelem.i4 ldloc dim ldc.i4 44 ldelem.i4 ldloc dim ldc.i4 46 ldelem.i4 ldloc dim ldc.i4 48 ldelem.i4 ldloc dim ldc.i4 50 ldelem.i4 ldloc dim ldc.i4 52 ldelem.i4 ldloc dim ldc.i4 54 ldelem.i4 ldloc dim ldc.i4 56 ldelem.i4 ldloc dim ldc.i4 58 ldelem.i4 ldloc dim ldc.i4 60 ldelem.i4 ldloc dim ldc.i4 62 ldelem.i4 ldc.i4.1 call instance void bool[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::Set( int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, bool) ldnull stloc matrix call void [mscorlib]System.GC::Collect() ldc.i4 100 ldstr "TEST PASSED" call void [System.Console]System.Console::Write(string) ret cont0: br cont2 cont3: br cont1 pass1_5: ldloc matrix ldloc dim ldc.i4.0 ldelem.i4 ldloc dim ldc.i4.2 ldelem.i4 ldloc dim ldc.i4.4 ldelem.i4 ldloc dim ldc.i4.6 ldelem.i4 ldloc dim ldc.i4.8 ldelem.i4 ldloc dim ldc.i4 10 ldelem.i4 ldloc dim ldc.i4 12 ldelem.i4 ldloc dim ldc.i4 14 ldelem.i4 ldloc dim ldc.i4 16 ldelem.i4 ldloc dim ldc.i4 18 ldelem.i4 ldloc dim ldc.i4 20 ldelem.i4 ldloc dim ldc.i4 22 ldelem.i4 ldloc dim ldc.i4 24 ldelem.i4 ldloc dim ldc.i4 26 ldelem.i4 ldloc dim ldc.i4 28 ldelem.i4 ldloc dim ldc.i4 30 ldelem.i4 ldloc dim ldc.i4 32 ldelem.i4 ldloc dim ldc.i4 34 ldelem.i4 ldloc dim ldc.i4 36 ldelem.i4 ldloc dim ldc.i4 38 ldelem.i4 ldloc dim ldc.i4 40 ldelem.i4 ldloc dim ldc.i4 42 ldelem.i4 ldloc dim ldc.i4 44 ldelem.i4 ldloc dim ldc.i4 46 ldelem.i4 ldloc dim ldc.i4 48 ldelem.i4 ldloc dim ldc.i4 50 ldelem.i4 ldloc dim ldc.i4 52 ldelem.i4 ldloc dim ldc.i4 54 ldelem.i4 ldloc dim ldc.i4 56 ldelem.i4 ldloc dim ldc.i4 58 ldelem.i4 ldloc dim ldc.i4 60 ldelem.i4 ldloc dim ldc.i4 62 ldelem.i4 call instance bool& bool[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,]::Address( int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32, int32) ldind.i1 brtrue pass2 newobj instance void [mscorlib]System.Exception::.ctor() br throw1 } // end of method 'Test::Main' .method public hidebysig specialname rtspecialname instance void .ctor() il managed { .maxstack 8 IL_0000: ldarg.0 IL_0001: call instance void [mscorlib]System.Object::.ctor() IL_0006: ret } // end of method 'Test::.ctor' } // end of class 'Test' } // end of namespace 'JitTest'
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/HardwareIntrinsics/X86/Avx1/Blend_ro.csproj
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> </PropertyGroup> <PropertyGroup> <DebugType>Embedded</DebugType> <Optimize>True</Optimize> </PropertyGroup> <ItemGroup> <Compile Include="Blend.cs" /> </ItemGroup> </Project>
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> </PropertyGroup> <PropertyGroup> <DebugType>Embedded</DebugType> <Optimize>True</Optimize> </PropertyGroup> <ItemGroup> <Compile Include="Blend.cs" /> </ItemGroup> </Project>
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/CodeGenBringUpTests/DblAvg6_d.csproj
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <CLRTestPriority>1</CLRTestPriority> </PropertyGroup> <PropertyGroup> <DebugType>Full</DebugType> <Optimize>False</Optimize> </PropertyGroup> <ItemGroup> <Compile Include="DblAvg6.cs" /> </ItemGroup> </Project>
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <CLRTestPriority>1</CLRTestPriority> </PropertyGroup> <PropertyGroup> <DebugType>Full</DebugType> <Optimize>False</Optimize> </PropertyGroup> <ItemGroup> <Compile Include="DblAvg6.cs" /> </ItemGroup> </Project>
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/coreclr/inc/corhlprpriv.cpp
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /**************************************************************************** ** ** ** Corhlprpriv.cpp - signature helpers. ** ** ** ****************************************************************************/ #ifndef SOS_INCLUDE #ifdef _BLD_CLR #include "utilcode.h" #endif #include "corhlprpriv.h" #include <stdlib.h> /************************************************************************************* * * implementation of CQuickMemoryBase * *************************************************************************************/ template <SIZE_T SIZE, SIZE_T INCREMENT> HRESULT CQuickMemoryBase<SIZE, INCREMENT>::ReSizeNoThrow(SIZE_T iItems) { #ifdef _BLD_CLR #ifdef _DEBUG #ifndef DACCESS_COMPILE // Exercise heap for OOM-fault injection purposes // But we can't do this if current thread suspends EE if (!IsSuspendEEThread ()) { BYTE *pTmp = NEW_NOTHROW(iItems); if (!pTmp) { return E_OUTOFMEMORY; } delete [] pTmp; } #endif #endif #endif BYTE *pbBuffNew; if (iItems <= cbTotal) { iSize = iItems; return NOERROR; } #ifdef _BLD_CLR #ifndef DACCESS_COMPILE // not allowed to do allocation if current thread suspends EE if (IsSuspendEEThread ()) return E_OUTOFMEMORY; #endif #endif pbBuffNew = NEW_NOTHROW(iItems + INCREMENT); if (!pbBuffNew) return E_OUTOFMEMORY; if (pbBuff) { memcpy(pbBuffNew, pbBuff, cbTotal); delete [] pbBuff; } else { _ASSERTE(cbTotal == SIZE); memcpy(pbBuffNew, rgData, cbTotal); } cbTotal = iItems + INCREMENT; iSize = iItems; pbBuff = pbBuffNew; return NOERROR; } /************************************************************************************* * * get number of bytes consumed by one argument/return type * *************************************************************************************/ #define CHECK_REMAINDER if(cbTotal >= cbTotalMax){hr=E_FAIL; goto ErrExit;} HRESULT _CountBytesOfOneArg( PCCOR_SIGNATURE pbSig, ULONG *pcbTotal) // Initially, *pcbTotal contains the remaining size of the sig blob { ULONG cb; ULONG cbTotal=0; ULONG cbTotalMax; CorElementType ulElementType; ULONG ulData; ULONG ulTemp; int iData; mdToken tk; ULONG cArg; ULONG callingconv; ULONG cArgsIndex; HRESULT hr = NOERROR; if(pcbTotal==NULL) return E_FAIL; cbTotalMax = *pcbTotal; CHECK_REMAINDER; cbTotal = CorSigUncompressElementType(pbSig, &ulElementType); while (CorIsModifierElementType((CorElementType) ulElementType)) { CHECK_REMAINDER; cbTotal += CorSigUncompressElementType(&pbSig[cbTotal], &ulElementType); } switch (ulElementType) { case ELEMENT_TYPE_SZARRAY: case 0x1e /* obsolete */: // skip over base type CHECK_REMAINDER; cb = cbTotalMax - cbTotal; IfFailGo( _CountBytesOfOneArg(&pbSig[cbTotal], &cb) ); cbTotal += cb; break; case ELEMENT_TYPE_FNPTR: CHECK_REMAINDER; cbTotal += CorSigUncompressData (&pbSig[cbTotal], &callingconv); // remember number of bytes to represent the arg counts CHECK_REMAINDER; cbTotal += CorSigUncompressData (&pbSig[cbTotal], &cArg); // how many bytes to represent the return type CHECK_REMAINDER; cb = cbTotalMax - cbTotal; IfFailGo( _CountBytesOfOneArg( &pbSig[cbTotal], &cb) ); cbTotal += cb; // loop through argument for (cArgsIndex = 0; cArgsIndex < cArg; cArgsIndex++) { CHECK_REMAINDER; cb = cbTotalMax - cbTotal; IfFailGo( _CountBytesOfOneArg( &pbSig[cbTotal], &cb) ); cbTotal += cb; } break; case ELEMENT_TYPE_ARRAY: // syntax : ARRAY BaseType <rank> [i size_1... size_i] [j lowerbound_1 ... lowerbound_j] // skip over base type CHECK_REMAINDER; cb = cbTotalMax - cbTotal; IfFailGo( _CountBytesOfOneArg(&pbSig[cbTotal], &cb) ); cbTotal += cb; // Parse for the rank CHECK_REMAINDER; cbTotal += CorSigUncompressData(&pbSig[cbTotal], &ulData); // if rank == 0, we are done if (ulData == 0) break; // any size of dimension specified? CHECK_REMAINDER; cbTotal += CorSigUncompressData(&pbSig[cbTotal], &ulData); while (ulData--) { CHECK_REMAINDER; cbTotal += CorSigUncompressData(&pbSig[cbTotal], &ulTemp); } // any lower bound specified? CHECK_REMAINDER; cbTotal += CorSigUncompressData(&pbSig[cbTotal], &ulData); while (ulData--) { CHECK_REMAINDER; cbTotal += CorSigUncompressSignedInt(&pbSig[cbTotal], &iData); } break; case ELEMENT_TYPE_VALUETYPE: case ELEMENT_TYPE_CLASS: case ELEMENT_TYPE_CMOD_REQD: case ELEMENT_TYPE_CMOD_OPT: // count the bytes for the token compression CHECK_REMAINDER; cbTotal += CorSigUncompressToken(&pbSig[cbTotal], &tk); if ( ulElementType == ELEMENT_TYPE_CMOD_REQD || ulElementType == ELEMENT_TYPE_CMOD_OPT) { // skip over base type CHECK_REMAINDER; cb = cbTotalMax - cbTotal; IfFailGo( _CountBytesOfOneArg(&pbSig[cbTotal], &cb) ); cbTotal += cb; } break; default: break; } *pcbTotal = cbTotal; ErrExit: return hr; } #undef CHECK_REMAINDER //***************************************************************************** // copy fixed part of VarArg signature to a buffer //***************************************************************************** HRESULT _GetFixedSigOfVarArg( // S_OK or error. PCCOR_SIGNATURE pvSigBlob, // [IN] point to a blob of COM+ method signature ULONG cbSigBlob, // [IN] size of signature CQuickBytes *pqbSig, // [OUT] output buffer for fixed part of VarArg Signature ULONG *pcbSigBlob) // [OUT] number of bytes written to the above output buffer { HRESULT hr = NOERROR; ULONG cbCalling; ULONG cbTyArgsNumber = 0; // number of bytes to store the type arg count (generics only) ULONG cbArgsNumber; // number of bytes to store the original arg count ULONG cbArgsNumberTemp; // number of bytes to store the fixed arg count ULONG cbTotal = 0; // total of number bytes for return type + all fixed arguments ULONG cbCur = 0; // index through the pvSigBlob ULONG cb; ULONG cArg; ULONG cTyArg; ULONG callingconv; ULONG cArgsIndex; CorElementType ulElementType; BYTE *pbSig; _ASSERTE (pvSigBlob && pcbSigBlob); // remember the number of bytes to represent the calling convention cbCalling = CorSigUncompressData (pvSigBlob, &callingconv); if (cbCalling == ((ULONG)(-1))) { return E_INVALIDARG; } _ASSERTE (isCallConv(callingconv, IMAGE_CEE_CS_CALLCONV_VARARG)); cbCur += cbCalling; if (callingconv & IMAGE_CEE_CS_CALLCONV_GENERIC) { cbTyArgsNumber = CorSigUncompressData(&pvSigBlob[cbCur], &cTyArg); if (cbTyArgsNumber == ((ULONG)(-1))) { return E_INVALIDARG; } cbCur += cbTyArgsNumber; } // remember number of bytes to represent the arg counts cbArgsNumber= CorSigUncompressData (&pvSigBlob[cbCur], &cArg); if (cbArgsNumber == ((ULONG)(-1))) { return E_INVALIDARG; } cbCur += cbArgsNumber; // how many bytes to represent the return type cb = cbSigBlob-cbCur; IfFailGo( _CountBytesOfOneArg( &pvSigBlob[cbCur], &cb) ); cbCur += cb; cbTotal += cb; // loop through argument until we found ELEMENT_TYPE_SENTINEL or run // out of arguments for (cArgsIndex = 0; cArgsIndex < cArg; cArgsIndex++) { _ASSERTE(cbCur < cbSigBlob); // peak the outer most ELEMENT_TYPE_* CorSigUncompressElementType (&pvSigBlob[cbCur], &ulElementType); if (ulElementType == ELEMENT_TYPE_SENTINEL) break; cb = cbSigBlob-cbCur; IfFailGo( _CountBytesOfOneArg( &pvSigBlob[cbCur], &cb) ); cbTotal += cb; cbCur += cb; } cbArgsNumberTemp = CorSigCompressData(cArgsIndex, &cArg); // now cbCalling : the number of bytes needed to store the calling convention // cbArgNumberTemp : number of bytes to store the fixed arg count // cbTotal : the number of bytes to store the ret and fixed arguments *pcbSigBlob = cbCalling + cbArgsNumberTemp + cbTotal; // resize the buffer IfFailGo( pqbSig->ReSizeNoThrow(*pcbSigBlob) ); pbSig = (BYTE *)pqbSig->Ptr(); // copy over the calling convention cb = CorSigCompressData(callingconv, pbSig); // copy over the fixed arg count cbArgsNumberTemp = CorSigCompressData(cArgsIndex, &pbSig[cb]); // copy over the fixed args + ret type memcpy(&pbSig[cb + cbArgsNumberTemp], &pvSigBlob[cbCalling + cbArgsNumber], cbTotal); ErrExit: return hr; } #endif // !SOS_INCLUDE
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /**************************************************************************** ** ** ** Corhlprpriv.cpp - signature helpers. ** ** ** ****************************************************************************/ #ifndef SOS_INCLUDE #ifdef _BLD_CLR #include "utilcode.h" #endif #include "corhlprpriv.h" #include <stdlib.h> /************************************************************************************* * * implementation of CQuickMemoryBase * *************************************************************************************/ template <SIZE_T SIZE, SIZE_T INCREMENT> HRESULT CQuickMemoryBase<SIZE, INCREMENT>::ReSizeNoThrow(SIZE_T iItems) { #ifdef _BLD_CLR #ifdef _DEBUG #ifndef DACCESS_COMPILE // Exercise heap for OOM-fault injection purposes // But we can't do this if current thread suspends EE if (!IsSuspendEEThread ()) { BYTE *pTmp = NEW_NOTHROW(iItems); if (!pTmp) { return E_OUTOFMEMORY; } delete [] pTmp; } #endif #endif #endif BYTE *pbBuffNew; if (iItems <= cbTotal) { iSize = iItems; return NOERROR; } #ifdef _BLD_CLR #ifndef DACCESS_COMPILE // not allowed to do allocation if current thread suspends EE if (IsSuspendEEThread ()) return E_OUTOFMEMORY; #endif #endif pbBuffNew = NEW_NOTHROW(iItems + INCREMENT); if (!pbBuffNew) return E_OUTOFMEMORY; if (pbBuff) { memcpy(pbBuffNew, pbBuff, cbTotal); delete [] pbBuff; } else { _ASSERTE(cbTotal == SIZE); memcpy(pbBuffNew, rgData, cbTotal); } cbTotal = iItems + INCREMENT; iSize = iItems; pbBuff = pbBuffNew; return NOERROR; } /************************************************************************************* * * get number of bytes consumed by one argument/return type * *************************************************************************************/ #define CHECK_REMAINDER if(cbTotal >= cbTotalMax){hr=E_FAIL; goto ErrExit;} HRESULT _CountBytesOfOneArg( PCCOR_SIGNATURE pbSig, ULONG *pcbTotal) // Initially, *pcbTotal contains the remaining size of the sig blob { ULONG cb; ULONG cbTotal=0; ULONG cbTotalMax; CorElementType ulElementType; ULONG ulData; ULONG ulTemp; int iData; mdToken tk; ULONG cArg; ULONG callingconv; ULONG cArgsIndex; HRESULT hr = NOERROR; if(pcbTotal==NULL) return E_FAIL; cbTotalMax = *pcbTotal; CHECK_REMAINDER; cbTotal = CorSigUncompressElementType(pbSig, &ulElementType); while (CorIsModifierElementType((CorElementType) ulElementType)) { CHECK_REMAINDER; cbTotal += CorSigUncompressElementType(&pbSig[cbTotal], &ulElementType); } switch (ulElementType) { case ELEMENT_TYPE_SZARRAY: case 0x1e /* obsolete */: // skip over base type CHECK_REMAINDER; cb = cbTotalMax - cbTotal; IfFailGo( _CountBytesOfOneArg(&pbSig[cbTotal], &cb) ); cbTotal += cb; break; case ELEMENT_TYPE_FNPTR: CHECK_REMAINDER; cbTotal += CorSigUncompressData (&pbSig[cbTotal], &callingconv); // remember number of bytes to represent the arg counts CHECK_REMAINDER; cbTotal += CorSigUncompressData (&pbSig[cbTotal], &cArg); // how many bytes to represent the return type CHECK_REMAINDER; cb = cbTotalMax - cbTotal; IfFailGo( _CountBytesOfOneArg( &pbSig[cbTotal], &cb) ); cbTotal += cb; // loop through argument for (cArgsIndex = 0; cArgsIndex < cArg; cArgsIndex++) { CHECK_REMAINDER; cb = cbTotalMax - cbTotal; IfFailGo( _CountBytesOfOneArg( &pbSig[cbTotal], &cb) ); cbTotal += cb; } break; case ELEMENT_TYPE_ARRAY: // syntax : ARRAY BaseType <rank> [i size_1... size_i] [j lowerbound_1 ... lowerbound_j] // skip over base type CHECK_REMAINDER; cb = cbTotalMax - cbTotal; IfFailGo( _CountBytesOfOneArg(&pbSig[cbTotal], &cb) ); cbTotal += cb; // Parse for the rank CHECK_REMAINDER; cbTotal += CorSigUncompressData(&pbSig[cbTotal], &ulData); // if rank == 0, we are done if (ulData == 0) break; // any size of dimension specified? CHECK_REMAINDER; cbTotal += CorSigUncompressData(&pbSig[cbTotal], &ulData); while (ulData--) { CHECK_REMAINDER; cbTotal += CorSigUncompressData(&pbSig[cbTotal], &ulTemp); } // any lower bound specified? CHECK_REMAINDER; cbTotal += CorSigUncompressData(&pbSig[cbTotal], &ulData); while (ulData--) { CHECK_REMAINDER; cbTotal += CorSigUncompressSignedInt(&pbSig[cbTotal], &iData); } break; case ELEMENT_TYPE_VALUETYPE: case ELEMENT_TYPE_CLASS: case ELEMENT_TYPE_CMOD_REQD: case ELEMENT_TYPE_CMOD_OPT: // count the bytes for the token compression CHECK_REMAINDER; cbTotal += CorSigUncompressToken(&pbSig[cbTotal], &tk); if ( ulElementType == ELEMENT_TYPE_CMOD_REQD || ulElementType == ELEMENT_TYPE_CMOD_OPT) { // skip over base type CHECK_REMAINDER; cb = cbTotalMax - cbTotal; IfFailGo( _CountBytesOfOneArg(&pbSig[cbTotal], &cb) ); cbTotal += cb; } break; default: break; } *pcbTotal = cbTotal; ErrExit: return hr; } #undef CHECK_REMAINDER //***************************************************************************** // copy fixed part of VarArg signature to a buffer //***************************************************************************** HRESULT _GetFixedSigOfVarArg( // S_OK or error. PCCOR_SIGNATURE pvSigBlob, // [IN] point to a blob of COM+ method signature ULONG cbSigBlob, // [IN] size of signature CQuickBytes *pqbSig, // [OUT] output buffer for fixed part of VarArg Signature ULONG *pcbSigBlob) // [OUT] number of bytes written to the above output buffer { HRESULT hr = NOERROR; ULONG cbCalling; ULONG cbTyArgsNumber = 0; // number of bytes to store the type arg count (generics only) ULONG cbArgsNumber; // number of bytes to store the original arg count ULONG cbArgsNumberTemp; // number of bytes to store the fixed arg count ULONG cbTotal = 0; // total of number bytes for return type + all fixed arguments ULONG cbCur = 0; // index through the pvSigBlob ULONG cb; ULONG cArg; ULONG cTyArg; ULONG callingconv; ULONG cArgsIndex; CorElementType ulElementType; BYTE *pbSig; _ASSERTE (pvSigBlob && pcbSigBlob); // remember the number of bytes to represent the calling convention cbCalling = CorSigUncompressData (pvSigBlob, &callingconv); if (cbCalling == ((ULONG)(-1))) { return E_INVALIDARG; } _ASSERTE (isCallConv(callingconv, IMAGE_CEE_CS_CALLCONV_VARARG)); cbCur += cbCalling; if (callingconv & IMAGE_CEE_CS_CALLCONV_GENERIC) { cbTyArgsNumber = CorSigUncompressData(&pvSigBlob[cbCur], &cTyArg); if (cbTyArgsNumber == ((ULONG)(-1))) { return E_INVALIDARG; } cbCur += cbTyArgsNumber; } // remember number of bytes to represent the arg counts cbArgsNumber= CorSigUncompressData (&pvSigBlob[cbCur], &cArg); if (cbArgsNumber == ((ULONG)(-1))) { return E_INVALIDARG; } cbCur += cbArgsNumber; // how many bytes to represent the return type cb = cbSigBlob-cbCur; IfFailGo( _CountBytesOfOneArg( &pvSigBlob[cbCur], &cb) ); cbCur += cb; cbTotal += cb; // loop through argument until we found ELEMENT_TYPE_SENTINEL or run // out of arguments for (cArgsIndex = 0; cArgsIndex < cArg; cArgsIndex++) { _ASSERTE(cbCur < cbSigBlob); // peak the outer most ELEMENT_TYPE_* CorSigUncompressElementType (&pvSigBlob[cbCur], &ulElementType); if (ulElementType == ELEMENT_TYPE_SENTINEL) break; cb = cbSigBlob-cbCur; IfFailGo( _CountBytesOfOneArg( &pvSigBlob[cbCur], &cb) ); cbTotal += cb; cbCur += cb; } cbArgsNumberTemp = CorSigCompressData(cArgsIndex, &cArg); // now cbCalling : the number of bytes needed to store the calling convention // cbArgNumberTemp : number of bytes to store the fixed arg count // cbTotal : the number of bytes to store the ret and fixed arguments *pcbSigBlob = cbCalling + cbArgsNumberTemp + cbTotal; // resize the buffer IfFailGo( pqbSig->ReSizeNoThrow(*pcbSigBlob) ); pbSig = (BYTE *)pqbSig->Ptr(); // copy over the calling convention cb = CorSigCompressData(callingconv, pbSig); // copy over the fixed arg count cbArgsNumberTemp = CorSigCompressData(cArgsIndex, &pbSig[cb]); // copy over the fixed args + ret type memcpy(&pbSig[cb + cbArgsNumberTemp], &pvSigBlob[cbCalling + cbArgsNumber], cbTotal); ErrExit: return hr; } #endif // !SOS_INCLUDE
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/libraries/System.Data.Odbc/src/System/Data/Odbc/OdbcMetaDataFactory.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.IO; using System.Data.Common; using System.Data.ProviderBase; using System.Diagnostics; using System.Text; namespace System.Data.Odbc { internal sealed class OdbcMetaDataFactory : DbMetaDataFactory { private readonly struct SchemaFunctionName { internal SchemaFunctionName(string schemaName, ODBC32.SQL_API odbcFunction) { _schemaName = schemaName; _odbcFunction = odbcFunction; } internal readonly string _schemaName; internal readonly ODBC32.SQL_API _odbcFunction; } private const string _collectionName = "CollectionName"; private const string _populationMechanism = "PopulationMechanism"; private const string _prepareCollection = "PrepareCollection"; private readonly SchemaFunctionName[] _schemaMapping; internal static readonly char[] KeywordSeparatorChar = new char[1] { ',' }; internal OdbcMetaDataFactory(Stream XMLStream, string serverVersion, string serverVersionNormalized, OdbcConnection connection) : base(XMLStream, serverVersion, serverVersionNormalized) { // set up the colletion name ODBC function mapping guid mapping _schemaMapping = new SchemaFunctionName[] { new SchemaFunctionName(DbMetaDataCollectionNames.DataTypes, ODBC32.SQL_API.SQLGETTYPEINFO), new SchemaFunctionName(OdbcMetaDataCollectionNames.Columns, ODBC32.SQL_API.SQLCOLUMNS), new SchemaFunctionName(OdbcMetaDataCollectionNames.Indexes, ODBC32.SQL_API.SQLSTATISTICS), new SchemaFunctionName(OdbcMetaDataCollectionNames.Procedures, ODBC32.SQL_API.SQLPROCEDURES), new SchemaFunctionName(OdbcMetaDataCollectionNames.ProcedureColumns, ODBC32.SQL_API.SQLPROCEDURECOLUMNS), new SchemaFunctionName(OdbcMetaDataCollectionNames.ProcedureParameters, ODBC32.SQL_API.SQLPROCEDURECOLUMNS), new SchemaFunctionName(OdbcMetaDataCollectionNames.Tables, ODBC32.SQL_API.SQLTABLES), new SchemaFunctionName(OdbcMetaDataCollectionNames.Views, ODBC32.SQL_API.SQLTABLES)}; // verify the existance of the table in the data set DataTable? metaDataCollectionsTable = CollectionDataSet.Tables[DbMetaDataCollectionNames.MetaDataCollections]; if (metaDataCollectionsTable == null) { throw ADP.UnableToBuildCollection(DbMetaDataCollectionNames.MetaDataCollections); } // copy the table filtering out any rows that don't apply to the current version of the provider metaDataCollectionsTable = CloneAndFilterCollection(DbMetaDataCollectionNames.MetaDataCollections, null); // verify the existance of the table in the data set DataTable? restrictionsTable = CollectionDataSet.Tables[DbMetaDataCollectionNames.Restrictions]; if (restrictionsTable != null) { // copy the table filtering out any rows that don't apply to the current version of the provider restrictionsTable = CloneAndFilterCollection(DbMetaDataCollectionNames.Restrictions, null); } // need to filter out any of the collections where // 1) it is populated using prepare collection // 2) it is in the collection to odbc function mapping above // 3) the provider does not support the necessary odbc function DataColumn populationMechanism = metaDataCollectionsTable.Columns[_populationMechanism]!; DataColumn collectionName = metaDataCollectionsTable.Columns[_collectionName]!; DataColumn? restrictionCollectionName = null; if (restrictionsTable != null) { restrictionCollectionName = restrictionsTable.Columns[_collectionName]; } Debug.Assert(restrictionCollectionName != null); foreach (DataRow collection in metaDataCollectionsTable.Rows) { if ((string)collection[populationMechanism] == _prepareCollection) { // is the collection in the mapping int mapping = -1; for (int i = 0; i < _schemaMapping.Length; i++) { if (_schemaMapping[i]._schemaName == (string)collection[collectionName]) { mapping = i; break; } } // no go on to the next collection if (mapping == -1) { continue; } // does the provider support the necessary odbc function // if not delete the row from the table if (connection.SQLGetFunctions(_schemaMapping[mapping]._odbcFunction) == false) { // but first delete any related restrictions if (restrictionsTable != null) { foreach (DataRow restriction in restrictionsTable.Rows) { if ((string)collection[collectionName] == (string)restriction[restrictionCollectionName]) { restriction.Delete(); } } restrictionsTable.AcceptChanges(); } collection.Delete(); } } } // replace the original table with the updated one metaDataCollectionsTable.AcceptChanges(); CollectionDataSet.Tables.Remove(CollectionDataSet.Tables[DbMetaDataCollectionNames.MetaDataCollections]!); CollectionDataSet.Tables.Add(metaDataCollectionsTable); if (restrictionsTable != null) { CollectionDataSet.Tables.Remove(CollectionDataSet.Tables[DbMetaDataCollectionNames.Restrictions]!); CollectionDataSet.Tables.Add(restrictionsTable); } } private object BooleanFromODBC(object odbcSource) { if (odbcSource != DBNull.Value) { //convert to Int32 before doing the comparison //some odbc drivers report the odbcSource value as unsigned, in which case we will //have upgraded the type to Int32, and thus can't cast directly to short if (Convert.ToInt32(odbcSource, null) == 0) { return false; } else { return true; } } return DBNull.Value; } private OdbcCommand GetCommand(OdbcConnection connection) { OdbcCommand command = connection.CreateCommand(); // You need to make sure you pick up the transaction from the connection, // or odd things can happen... command.Transaction = connection.LocalTransaction; return command; } private DataTable DataTableFromDataReader(IDataReader reader, string tableName) { // set up the column structure of the data table from the reader object[] values; DataTable resultTable = NewDataTableFromReader(reader, out values, tableName); // populate the data table from the data reader while (reader.Read()) { reader.GetValues(values); resultTable.Rows.Add(values); } return resultTable; } private void DataTableFromDataReaderDataTypes(DataTable dataTypesTable, OdbcDataReader dataReader, OdbcConnection connection) { DataTable? schemaTable; // // Build a DataTable from the reader schemaTable = dataReader.GetSchemaTable(); // vstfdevdiv:479715 Handle cases where reader is empty if (null == schemaTable) { throw ADP.OdbcNoTypesFromProvider(); } object[] getTypeInfoValues = new object[schemaTable.Rows.Count]; DataRow dataTypesRow; DataColumn typeNameColumn = dataTypesTable.Columns[DbMetaDataColumnNames.TypeName]!; DataColumn providerDbTypeColumn = dataTypesTable.Columns[DbMetaDataColumnNames.ProviderDbType]!; DataColumn columnSizeColumn = dataTypesTable.Columns[DbMetaDataColumnNames.ColumnSize]!; DataColumn createParametersColumn = dataTypesTable.Columns[DbMetaDataColumnNames.CreateParameters]!; DataColumn dataTypeColumn = dataTypesTable.Columns[DbMetaDataColumnNames.DataType]!; DataColumn isAutoIncermentableColumn = dataTypesTable.Columns[DbMetaDataColumnNames.IsAutoIncrementable]!; DataColumn isCaseSensitiveColumn = dataTypesTable.Columns[DbMetaDataColumnNames.IsCaseSensitive]!; DataColumn isFixedLengthColumn = dataTypesTable.Columns[DbMetaDataColumnNames.IsFixedLength]!; DataColumn isFixedPrecisionScaleColumn = dataTypesTable.Columns[DbMetaDataColumnNames.IsFixedPrecisionScale]!; DataColumn isLongColumn = dataTypesTable.Columns[DbMetaDataColumnNames.IsLong]!; DataColumn isNullableColumn = dataTypesTable.Columns[DbMetaDataColumnNames.IsNullable]!; DataColumn isSearchableColumn = dataTypesTable.Columns[DbMetaDataColumnNames.IsSearchable]!; DataColumn isSearchableWithLikeColumn = dataTypesTable.Columns[DbMetaDataColumnNames.IsSearchableWithLike]!; DataColumn isUnsignedColumn = dataTypesTable.Columns[DbMetaDataColumnNames.IsUnsigned]!; DataColumn maximumScaleColumn = dataTypesTable.Columns[DbMetaDataColumnNames.MaximumScale]!; DataColumn minimumScaleColumn = dataTypesTable.Columns[DbMetaDataColumnNames.MinimumScale]!; DataColumn literalPrefixColumn = dataTypesTable.Columns[DbMetaDataColumnNames.LiteralPrefix]!; DataColumn literalSuffixColumn = dataTypesTable.Columns[DbMetaDataColumnNames.LiteralSuffix]!; DataColumn SQLTypeNameColumn = dataTypesTable.Columns[OdbcMetaDataColumnNames.SQLType]!; const int indexTYPE_NAME = 0; const int indexDATA_TYPE = 1; const int indexCOLUMN_SIZE = 2; const int indexCREATE_PARAMS = 5; const int indexAUTO_UNIQUE_VALUE = 11; const int indexCASE_SENSITIVE = 7; const int indexFIXED_PREC_SCALE = 10; const int indexNULLABLE = 6; const int indexSEARCHABLE = 8; const int indexUNSIGNED_ATTRIBUTE = 9; const int indexMAXIMUM_SCALE = 14; const int indexMINIMUM_SCALE = 13; const int indexLITERAL_PREFIX = 3; const int indexLITERAL_SUFFIX = 4; const int SQL_DATE_V2 = 9; const int SQL_TIME_V2 = 10; TypeMap? typeMap; while (dataReader.Read()) { dataReader.GetValues(getTypeInfoValues); dataTypesRow = dataTypesTable.NewRow(); ODBC32.SQL_TYPE sqlType; dataTypesRow[typeNameColumn] = getTypeInfoValues[indexTYPE_NAME]; dataTypesRow[SQLTypeNameColumn] = getTypeInfoValues[indexDATA_TYPE]; sqlType = (ODBC32.SQL_TYPE)(int)Convert.ChangeType(getTypeInfoValues[indexDATA_TYPE], typeof(int), null); // if the driver is pre version 3 and it returned the v2 SQL_DATE or SQL_TIME types they need // to be mapped to their v3 equivalent if (connection.IsV3Driver == false) { if ((int)sqlType == SQL_DATE_V2) { sqlType = ODBC32.SQL_TYPE.TYPE_DATE; } else if ((int)sqlType == SQL_TIME_V2) { sqlType = ODBC32.SQL_TYPE.TYPE_TIME; } } try { typeMap = TypeMap.FromSqlType(sqlType); } // FromSqlType will throw an argument exception if it does not recognize the SqlType. // This is not an error since the GetTypeInfo DATA_TYPE may be a SQL data type or a driver specific // type. If there is no TypeMap for the type its not an error but it will degrade our level of // understanding of/ support for the type. catch (ArgumentException) { typeMap = null; } // if we have a type map we can determine the dbType and the CLR type if not leave them null if (typeMap != null) { dataTypesRow[providerDbTypeColumn] = typeMap._odbcType; dataTypesRow[dataTypeColumn] = typeMap._type.FullName; // setting isLong and isFixedLength only if we have a type map because for provider // specific types we have no idea what the types attributes are if GetTypeInfo did not // tell us switch (sqlType) { case ODBC32.SQL_TYPE.LONGVARCHAR: case ODBC32.SQL_TYPE.WLONGVARCHAR: case ODBC32.SQL_TYPE.LONGVARBINARY: case ODBC32.SQL_TYPE.SS_XML: dataTypesRow[isLongColumn] = true; dataTypesRow[isFixedLengthColumn] = false; break; case ODBC32.SQL_TYPE.VARCHAR: case ODBC32.SQL_TYPE.WVARCHAR: case ODBC32.SQL_TYPE.VARBINARY: dataTypesRow[isLongColumn] = false; dataTypesRow[isFixedLengthColumn] = false; break; case ODBC32.SQL_TYPE.CHAR: case ODBC32.SQL_TYPE.WCHAR: case ODBC32.SQL_TYPE.DECIMAL: case ODBC32.SQL_TYPE.NUMERIC: case ODBC32.SQL_TYPE.SMALLINT: case ODBC32.SQL_TYPE.INTEGER: case ODBC32.SQL_TYPE.REAL: case ODBC32.SQL_TYPE.FLOAT: case ODBC32.SQL_TYPE.DOUBLE: case ODBC32.SQL_TYPE.BIT: case ODBC32.SQL_TYPE.TINYINT: case ODBC32.SQL_TYPE.BIGINT: case ODBC32.SQL_TYPE.TYPE_DATE: case ODBC32.SQL_TYPE.TYPE_TIME: case ODBC32.SQL_TYPE.TIMESTAMP: case ODBC32.SQL_TYPE.TYPE_TIMESTAMP: case ODBC32.SQL_TYPE.GUID: case ODBC32.SQL_TYPE.SS_VARIANT: case ODBC32.SQL_TYPE.SS_UTCDATETIME: case ODBC32.SQL_TYPE.SS_TIME_EX: case ODBC32.SQL_TYPE.BINARY: dataTypesRow[isLongColumn] = false; dataTypesRow[isFixedLengthColumn] = true; break; case ODBC32.SQL_TYPE.SS_UDT: default: // for User defined types don't know if its long or if it is // varaible length or not so leave the fields null break; } } dataTypesRow[columnSizeColumn] = getTypeInfoValues[indexCOLUMN_SIZE]; dataTypesRow[createParametersColumn] = getTypeInfoValues[indexCREATE_PARAMS]; if ((getTypeInfoValues[indexAUTO_UNIQUE_VALUE] == DBNull.Value) || (Convert.ToInt16(getTypeInfoValues[indexAUTO_UNIQUE_VALUE], null) == 0)) { dataTypesRow[isAutoIncermentableColumn] = false; } else { dataTypesRow[isAutoIncermentableColumn] = true; } dataTypesRow[isCaseSensitiveColumn] = BooleanFromODBC(getTypeInfoValues[indexCASE_SENSITIVE]); dataTypesRow[isFixedPrecisionScaleColumn] = BooleanFromODBC(getTypeInfoValues[indexFIXED_PREC_SCALE]); if (getTypeInfoValues[indexNULLABLE] != DBNull.Value) { //Use Convert.ToInt16 instead of direct cast to short because the value will be Int32 in some cases switch ((ODBC32.SQL_NULLABILITY)Convert.ToInt16(getTypeInfoValues[indexNULLABLE], null)) { case ODBC32.SQL_NULLABILITY.NO_NULLS: dataTypesRow[isNullableColumn] = false; break; case ODBC32.SQL_NULLABILITY.NULLABLE: dataTypesRow[isNullableColumn] = true; break; case ODBC32.SQL_NULLABILITY.UNKNOWN: dataTypesRow[isNullableColumn] = DBNull.Value; break; } } if (DBNull.Value != getTypeInfoValues[indexSEARCHABLE]) { //Use Convert.ToInt16 instead of direct cast to short because the value will be Int32 in some cases short searchableValue = Convert.ToInt16(getTypeInfoValues[indexSEARCHABLE], null); switch (searchableValue) { case (short)ODBC32.SQL_SEARCHABLE.UNSEARCHABLE: dataTypesRow[isSearchableColumn] = false; dataTypesRow[isSearchableWithLikeColumn] = false; break; case (short)ODBC32.SQL_SEARCHABLE.LIKE_ONLY: dataTypesRow[isSearchableColumn] = false; dataTypesRow[isSearchableWithLikeColumn] = true; break; case (short)ODBC32.SQL_SEARCHABLE.ALL_EXCEPT_LIKE: dataTypesRow[isSearchableColumn] = true; dataTypesRow[isSearchableWithLikeColumn] = false; break; case (short)ODBC32.SQL_SEARCHABLE.SEARCHABLE: dataTypesRow[isSearchableColumn] = true; dataTypesRow[isSearchableWithLikeColumn] = true; break; } } dataTypesRow[isUnsignedColumn] = BooleanFromODBC(getTypeInfoValues[indexUNSIGNED_ATTRIBUTE]); //For assignment to the DataSet, don't cast the data types -- let the DataSet take care of any conversion if (getTypeInfoValues[indexMAXIMUM_SCALE] != DBNull.Value) { dataTypesRow[maximumScaleColumn] = getTypeInfoValues[indexMAXIMUM_SCALE]; } if (getTypeInfoValues[indexMINIMUM_SCALE] != DBNull.Value) { dataTypesRow[minimumScaleColumn] = getTypeInfoValues[indexMINIMUM_SCALE]; } if (getTypeInfoValues[indexLITERAL_PREFIX] != DBNull.Value) { dataTypesRow[literalPrefixColumn] = getTypeInfoValues[indexLITERAL_PREFIX]; } if (getTypeInfoValues[indexLITERAL_SUFFIX] != DBNull.Value) { dataTypesRow[literalSuffixColumn] = getTypeInfoValues[indexLITERAL_SUFFIX]; } dataTypesTable.Rows.Add(dataTypesRow); } } private DataTable DataTableFromDataReaderIndex(IDataReader reader, string tableName, string? restrictionIndexName) { // set up the column structure of the data table from the reader object[] values; DataTable resultTable = NewDataTableFromReader(reader, out values, tableName); // populate the data table from the data reader int positionOfType = 6; int positionOfIndexName = 5; while (reader.Read()) { reader.GetValues(values); if (IncludeIndexRow(values[positionOfIndexName], restrictionIndexName, Convert.ToInt16(values[positionOfType], null)) == true) { resultTable.Rows.Add(values); } } return resultTable; } private DataTable DataTableFromDataReaderProcedureColumns(IDataReader reader, string tableName, bool isColumn) { // set up the column structure of the data table from the reader object[] values; DataTable resultTable = NewDataTableFromReader(reader, out values, tableName); // populate the data table from the data reader int positionOfColumnType = 4; while (reader.Read()) { reader.GetValues(values); // the column type should always be short but need to check just in case if (values[positionOfColumnType].GetType() == typeof(short)) { if ((((short)values[positionOfColumnType] == ODBC32.SQL_RESULT_COL) && (isColumn == true)) || (((short)values[positionOfColumnType] != ODBC32.SQL_RESULT_COL) && (isColumn == false))) { resultTable.Rows.Add(values); } } } return resultTable; } private DataTable DataTableFromDataReaderProcedures(IDataReader reader, string tableName, short procedureType) { // Build a DataTable from the reader // set up the column structure of the data table from the reader object[] values; DataTable resultTable = NewDataTableFromReader(reader, out values, tableName); // populate the data table from the data reader int positionOfProcedureType = 7; while (reader.Read()) { reader.GetValues(values); // the column type should always be short but need to check just in case its null if (values[positionOfProcedureType].GetType() == typeof(short)) { if ((short)values[positionOfProcedureType] == procedureType) { resultTable.Rows.Add(values); } } } return resultTable; } private void FillOutRestrictions(int restrictionsCount, string?[]? restrictions, object?[] allRestrictions, string collectionName) { Debug.Assert(allRestrictions.Length >= restrictionsCount); int i = 0; // if we have restrictions put them in the restrictions array if (restrictions != null) { if (restrictions.Length > restrictionsCount) { throw ADP.TooManyRestrictions(collectionName); } for (i = 0; i < restrictions.Length; i++) { if (restrictions[i] != null) { allRestrictions[i] = restrictions[i]; } } } // initalize the rest to no restrictions for (; i < restrictionsCount; i++) { allRestrictions[i] = null; } } private DataTable GetColumnsCollection(string?[]? restrictions, OdbcConnection connection) { OdbcCommand? command = null; OdbcDataReader? dataReader = null; DataTable? resultTable = null; const int columnsRestrictionsCount = 4; try { command = GetCommand(connection); string[] allRestrictions = new string[columnsRestrictionsCount]; FillOutRestrictions(columnsRestrictionsCount, restrictions, allRestrictions, OdbcMetaDataCollectionNames.Columns); dataReader = command.ExecuteReaderFromSQLMethod(allRestrictions, ODBC32.SQL_API.SQLCOLUMNS); resultTable = DataTableFromDataReader(dataReader, OdbcMetaDataCollectionNames.Columns); } finally { if (dataReader != null) { dataReader.Dispose(); }; if (command != null) { command.Dispose(); }; } return resultTable; } private DataTable GetDataSourceInformationCollection(string?[]? restrictions, OdbcConnection connection) { if (ADP.IsEmptyArray(restrictions) == false) { throw ADP.TooManyRestrictions(DbMetaDataCollectionNames.DataSourceInformation); } // verify that the data source information table is in the data set DataTable? dataSourceInformationTable = CollectionDataSet.Tables[DbMetaDataCollectionNames.DataSourceInformation]; if (dataSourceInformationTable == null) { throw ADP.UnableToBuildCollection(DbMetaDataCollectionNames.DataSourceInformation); } // copy the table filtering out any rows that don't apply to the current version of the provider dataSourceInformationTable = CloneAndFilterCollection(DbMetaDataCollectionNames.DataSourceInformation, null); // after filtering there better be just one row if (dataSourceInformationTable.Rows.Count != 1) { throw ADP.IncorrectNumberOfDataSourceInformationRows(); } DataRow dataSourceInformation = dataSourceInformationTable.Rows[0]; string? stringValue; short int16Value; int int32Value; ODBC32.SQLRETURN retcode; // update the catalog separator stringValue = connection.GetInfoStringUnhandled(ODBC32.SQL_INFO.CATALOG_NAME_SEPARATOR); if (!string.IsNullOrEmpty(stringValue)) { StringBuilder patternEscaped = new StringBuilder(); ADP.EscapeSpecialCharacters(stringValue, patternEscaped); dataSourceInformation[DbMetaDataColumnNames.CompositeIdentifierSeparatorPattern] = patternEscaped.ToString(); } // get the DBMS Name stringValue = connection.GetInfoStringUnhandled(ODBC32.SQL_INFO.DBMS_NAME); if (stringValue != null) { dataSourceInformation[DbMetaDataColumnNames.DataSourceProductName] = stringValue; } // update the server version strings dataSourceInformation[DbMetaDataColumnNames.DataSourceProductVersion] = ServerVersion; dataSourceInformation[DbMetaDataColumnNames.DataSourceProductVersionNormalized] = ServerVersionNormalized; // values that are the same for all ODBC drivers. See bug 105333 dataSourceInformation[DbMetaDataColumnNames.ParameterMarkerFormat] = "?"; dataSourceInformation[DbMetaDataColumnNames.ParameterMarkerPattern] = "\\?"; dataSourceInformation[DbMetaDataColumnNames.ParameterNameMaxLength] = 0; // determine the supportedJoinOperators // leave the column null if the GetInfo fails. There is no explicit value for // unknown. if (connection.IsV3Driver) { retcode = connection.GetInfoInt32Unhandled(ODBC32.SQL_INFO.SQL_OJ_CAPABILITIES_30, out int32Value); } else { retcode = connection.GetInfoInt32Unhandled(ODBC32.SQL_INFO.SQL_OJ_CAPABILITIES_20, out int32Value); } if ((retcode == ODBC32.SQLRETURN.SUCCESS) || (retcode == ODBC32.SQLRETURN.SUCCESS_WITH_INFO)) { Common.SupportedJoinOperators supportedJoinOperators = Common.SupportedJoinOperators.None; if ((int32Value & (int)ODBC32.SQL_OJ_CAPABILITIES.LEFT) != 0) { supportedJoinOperators = supportedJoinOperators | Common.SupportedJoinOperators.LeftOuter; } if ((int32Value & (int)ODBC32.SQL_OJ_CAPABILITIES.RIGHT) != 0) { supportedJoinOperators = supportedJoinOperators | Common.SupportedJoinOperators.RightOuter; } if ((int32Value & (int)ODBC32.SQL_OJ_CAPABILITIES.FULL) != 0) { supportedJoinOperators = supportedJoinOperators | Common.SupportedJoinOperators.FullOuter; } if ((int32Value & (int)ODBC32.SQL_OJ_CAPABILITIES.INNER) != 0) { supportedJoinOperators = supportedJoinOperators | Common.SupportedJoinOperators.Inner; } dataSourceInformation[DbMetaDataColumnNames.SupportedJoinOperators] = supportedJoinOperators; } // determine the GroupByBehavior retcode = connection.GetInfoInt16Unhandled(ODBC32.SQL_INFO.GROUP_BY, out int16Value); Common.GroupByBehavior groupByBehavior = Common.GroupByBehavior.Unknown; if ((retcode == ODBC32.SQLRETURN.SUCCESS) || (retcode == ODBC32.SQLRETURN.SUCCESS_WITH_INFO)) { switch (int16Value) { case (short)ODBC32.SQL_GROUP_BY.NOT_SUPPORTED: groupByBehavior = Common.GroupByBehavior.NotSupported; break; case (short)ODBC32.SQL_GROUP_BY.GROUP_BY_EQUALS_SELECT: groupByBehavior = Common.GroupByBehavior.ExactMatch; break; case (short)ODBC32.SQL_GROUP_BY.GROUP_BY_CONTAINS_SELECT: groupByBehavior = Common.GroupByBehavior.MustContainAll; break; case (short)ODBC32.SQL_GROUP_BY.NO_RELATION: groupByBehavior = Common.GroupByBehavior.Unrelated; break; /* COLLATE is new in ODBC 3.0 and GroupByBehavior does not have a value for it. case ODBC32.SQL_GROUP_BY.COLLATE: groupByBehavior = Common.GroupByBehavior.Unknown; break; */ } } dataSourceInformation[DbMetaDataColumnNames.GroupByBehavior] = groupByBehavior; // determine the identifier case retcode = connection.GetInfoInt16Unhandled(ODBC32.SQL_INFO.IDENTIFIER_CASE, out int16Value); Common.IdentifierCase identifierCase = Common.IdentifierCase.Unknown; if ((retcode == ODBC32.SQLRETURN.SUCCESS) || (retcode == ODBC32.SQLRETURN.SUCCESS_WITH_INFO)) { switch (int16Value) { case (short)ODBC32.SQL_IDENTIFIER_CASE.SENSITIVE: identifierCase = Common.IdentifierCase.Sensitive; break; case (short)ODBC32.SQL_IDENTIFIER_CASE.UPPER: case (short)ODBC32.SQL_IDENTIFIER_CASE.LOWER: case (short)ODBC32.SQL_IDENTIFIER_CASE.MIXED: identifierCase = Common.IdentifierCase.Insensitive; break; } } dataSourceInformation[DbMetaDataColumnNames.IdentifierCase] = identifierCase; // OrderByColumnsInSelect stringValue = connection.GetInfoStringUnhandled(ODBC32.SQL_INFO.ORDER_BY_COLUMNS_IN_SELECT); if (stringValue != null) { if (stringValue == "Y") { dataSourceInformation[DbMetaDataColumnNames.OrderByColumnsInSelect] = true; } else if (stringValue == "N") { dataSourceInformation[DbMetaDataColumnNames.OrderByColumnsInSelect] = false; } } // build the QuotedIdentifierPattern using the quote prefix and suffix from the provider and // assuming that the quote suffix is escaped via repetition (i.e " becomes "") stringValue = connection.QuoteChar(ADP.GetSchema); if (stringValue != null) { // by spec a blank identifier quote char indicates that the provider does not suppport // quoted identifiers if (stringValue != " ") { // only know how to build the pattern if the quote characters is 1 character // in all other cases just leave the field null if (stringValue.Length == 1) { StringBuilder scratchStringBuilder = new StringBuilder(); ADP.EscapeSpecialCharacters(stringValue, scratchStringBuilder); string escapedQuoteSuffixString = scratchStringBuilder.ToString(); scratchStringBuilder.Length = 0; ADP.EscapeSpecialCharacters(stringValue, scratchStringBuilder); scratchStringBuilder.Append("(([^"); scratchStringBuilder.Append(escapedQuoteSuffixString); scratchStringBuilder.Append("]|"); scratchStringBuilder.Append(escapedQuoteSuffixString); scratchStringBuilder.Append(escapedQuoteSuffixString); scratchStringBuilder.Append(")*)"); scratchStringBuilder.Append(escapedQuoteSuffixString); dataSourceInformation[DbMetaDataColumnNames.QuotedIdentifierPattern] = scratchStringBuilder.ToString(); } } } // determine the quoted identifier case retcode = connection.GetInfoInt16Unhandled(ODBC32.SQL_INFO.QUOTED_IDENTIFIER_CASE, out int16Value); Common.IdentifierCase quotedIdentifierCase = Common.IdentifierCase.Unknown; if ((retcode == ODBC32.SQLRETURN.SUCCESS) || (retcode == ODBC32.SQLRETURN.SUCCESS_WITH_INFO)) { switch (int16Value) { case (short)ODBC32.SQL_IDENTIFIER_CASE.SENSITIVE: quotedIdentifierCase = Common.IdentifierCase.Sensitive; break; case (short)ODBC32.SQL_IDENTIFIER_CASE.UPPER: case (short)ODBC32.SQL_IDENTIFIER_CASE.LOWER: case (short)ODBC32.SQL_IDENTIFIER_CASE.MIXED: quotedIdentifierCase = Common.IdentifierCase.Insensitive; break; } } dataSourceInformation[DbMetaDataColumnNames.QuotedIdentifierCase] = quotedIdentifierCase; dataSourceInformationTable.AcceptChanges(); return dataSourceInformationTable; } private DataTable GetDataTypesCollection(string?[]? restrictions, OdbcConnection connection) { if (ADP.IsEmptyArray(restrictions) == false) { throw ADP.TooManyRestrictions(DbMetaDataCollectionNames.DataTypes); } // verify the existance of the table in the data set DataTable? dataTypesTable = CollectionDataSet.Tables[DbMetaDataCollectionNames.DataTypes]; if (dataTypesTable == null) { throw ADP.UnableToBuildCollection(DbMetaDataCollectionNames.DataTypes); } // copy the data table it dataTypesTable = CloneAndFilterCollection(DbMetaDataCollectionNames.DataTypes, null); OdbcCommand? command = null; OdbcDataReader? dataReader = null; object[] allArguments = new object[1]; allArguments[0] = ODBC32.SQL_ALL_TYPES; try { command = GetCommand(connection); dataReader = command.ExecuteReaderFromSQLMethod(allArguments, ODBC32.SQL_API.SQLGETTYPEINFO); DataTableFromDataReaderDataTypes(dataTypesTable, dataReader, connection); } finally { if (dataReader != null) { dataReader.Dispose(); }; if (command != null) { command.Dispose(); }; } dataTypesTable.AcceptChanges(); return dataTypesTable; } private DataTable GetIndexCollection(string?[]? restrictions, OdbcConnection connection) { OdbcCommand? command = null; OdbcDataReader? dataReader = null; DataTable? resultTable = null; const int nativeRestrictionsCount = 5; const int indexRestrictionsCount = 4; const int indexOfTableName = 2; const int indexOfIndexName = 3; try { command = GetCommand(connection); object[] allRestrictions = new object[nativeRestrictionsCount]; FillOutRestrictions(indexRestrictionsCount, restrictions, allRestrictions, OdbcMetaDataCollectionNames.Indexes); if (allRestrictions[indexOfTableName] == null) { throw ODBC.GetSchemaRestrictionRequired(); } allRestrictions[3] = (short)ODBC32.SQL_INDEX.ALL; allRestrictions[4] = (short)ODBC32.SQL_STATISTICS_RESERVED.ENSURE; dataReader = command.ExecuteReaderFromSQLMethod(allRestrictions, ODBC32.SQL_API.SQLSTATISTICS); string? indexName = null; if (restrictions != null) { if (restrictions.Length >= indexOfIndexName + 1) { indexName = restrictions[indexOfIndexName]; } } resultTable = DataTableFromDataReaderIndex(dataReader, OdbcMetaDataCollectionNames.Indexes, indexName); } finally { if (dataReader != null) { dataReader.Dispose(); }; if (command != null) { command.Dispose(); }; } return resultTable; } private DataTable GetProcedureColumnsCollection(string?[]? restrictions, OdbcConnection connection, bool isColumns) { OdbcCommand? command = null; OdbcDataReader? dataReader = null; DataTable? resultTable = null; const int procedureColumnsRestrictionsCount = 4; try { command = GetCommand(connection); string[] allRestrictions = new string[procedureColumnsRestrictionsCount]; FillOutRestrictions(procedureColumnsRestrictionsCount, restrictions, allRestrictions, OdbcMetaDataCollectionNames.Columns); dataReader = command.ExecuteReaderFromSQLMethod(allRestrictions, ODBC32.SQL_API.SQLPROCEDURECOLUMNS); string collectionName; if (isColumns == true) { collectionName = OdbcMetaDataCollectionNames.ProcedureColumns; } else { collectionName = OdbcMetaDataCollectionNames.ProcedureParameters; } resultTable = DataTableFromDataReaderProcedureColumns(dataReader, collectionName, isColumns); } finally { if (dataReader != null) { dataReader.Dispose(); }; if (command != null) { command.Dispose(); }; } return resultTable; } private DataTable GetProceduresCollection(string?[]? restrictions, OdbcConnection connection) { OdbcCommand? command = null; OdbcDataReader? dataReader = null; DataTable? resultTable = null; const int columnsRestrictionsCount = 4; const int indexOfProcedureType = 3; try { command = GetCommand(connection); string?[] allRestrictions = new string[columnsRestrictionsCount]; FillOutRestrictions(columnsRestrictionsCount, restrictions, allRestrictions, OdbcMetaDataCollectionNames.Procedures); dataReader = command.ExecuteReaderFromSQLMethod(allRestrictions, ODBC32.SQL_API.SQLPROCEDURES); if (allRestrictions[indexOfProcedureType] == null) { resultTable = DataTableFromDataReader(dataReader, OdbcMetaDataCollectionNames.Procedures); } else { short procedureType; if ((restrictions![indexOfProcedureType] == "SQL_PT_UNKNOWN") || (restrictions[indexOfProcedureType] == "0" /*ODBC32.SQL_PROCEDURETYPE.UNKNOWN*/)) { procedureType = (short)ODBC32.SQL_PROCEDURETYPE.UNKNOWN; } else if ((restrictions[indexOfProcedureType] == "SQL_PT_PROCEDURE") || (restrictions[indexOfProcedureType] == "1" /*ODBC32.SQL_PROCEDURETYPE.PROCEDURE*/)) { procedureType = (short)ODBC32.SQL_PROCEDURETYPE.PROCEDURE; } else if ((restrictions[indexOfProcedureType] == "SQL_PT_FUNCTION") || (restrictions[indexOfProcedureType] == "2" /*ODBC32.SQL_PROCEDURETYPE.FUNCTION*/)) { procedureType = (short)ODBC32.SQL_PROCEDURETYPE.FUNCTION; } else { throw ADP.InvalidRestrictionValue(OdbcMetaDataCollectionNames.Procedures, "PROCEDURE_TYPE", restrictions[indexOfProcedureType]); } resultTable = DataTableFromDataReaderProcedures(dataReader, OdbcMetaDataCollectionNames.Procedures, procedureType); } } finally { if (dataReader != null) { dataReader.Dispose(); }; if (command != null) { command.Dispose(); }; } return resultTable; } private DataTable GetReservedWordsCollection(string?[]? restrictions, OdbcConnection connection) { if (ADP.IsEmptyArray(restrictions) == false) { throw ADP.TooManyRestrictions(DbMetaDataCollectionNames.ReservedWords); } // verify the existance of the table in the data set DataTable? reservedWordsTable = CollectionDataSet.Tables[DbMetaDataCollectionNames.ReservedWords]; if (reservedWordsTable == null) { throw ADP.UnableToBuildCollection(DbMetaDataCollectionNames.ReservedWords); } // copy the table filtering out any rows that don't apply to tho current version of the prrovider reservedWordsTable = CloneAndFilterCollection(DbMetaDataCollectionNames.ReservedWords, null); DataColumn? reservedWordColumn = reservedWordsTable.Columns[DbMetaDataColumnNames.ReservedWord]; if (reservedWordColumn == null) { throw ADP.UnableToBuildCollection(DbMetaDataCollectionNames.ReservedWords); } string? keywords = connection.GetInfoStringUnhandled(ODBC32.SQL_INFO.KEYWORDS); if (null != keywords) { string[] values = keywords.Split(KeywordSeparatorChar); for (int i = 0; i < values.Length; ++i) { DataRow row = reservedWordsTable.NewRow(); row[reservedWordColumn] = values[i]; reservedWordsTable.Rows.Add(row); row.AcceptChanges(); } } return reservedWordsTable; } private DataTable GetTablesCollection(string?[]? restrictions, OdbcConnection connection, bool isTables) { OdbcCommand? command = null; OdbcDataReader? dataReader = null; DataTable? resultTable = null; const int tablesRestrictionsCount = 3; const string includedTableTypesTables = "TABLE,SYSTEM TABLE"; const string includedTableTypesViews = "VIEW"; string includedTableTypes; string dataTableName; try { //command = (OdbcCommand) connection.CreateCommand(); command = GetCommand(connection); string[] allArguments = new string[tablesRestrictionsCount + 1]; if (isTables == true) { includedTableTypes = includedTableTypesTables; dataTableName = OdbcMetaDataCollectionNames.Tables; } else { includedTableTypes = includedTableTypesViews; dataTableName = OdbcMetaDataCollectionNames.Views; } FillOutRestrictions(tablesRestrictionsCount, restrictions, allArguments, dataTableName); allArguments[tablesRestrictionsCount] = includedTableTypes; dataReader = command.ExecuteReaderFromSQLMethod(allArguments, ODBC32.SQL_API.SQLTABLES); resultTable = DataTableFromDataReader(dataReader, dataTableName); } finally { if (dataReader != null) { dataReader.Dispose(); }; if (command != null) { command.Dispose(); }; } return resultTable; } private bool IncludeIndexRow(object rowIndexName, string? restrictionIndexName, short rowIndexType) { // never include table statictics rows if (rowIndexType == (short)ODBC32.SQL_STATISTICSTYPE.TABLE_STAT) { return false; } if ((restrictionIndexName != null) && (restrictionIndexName != (string)rowIndexName)) { return false; } return true; } private DataTable NewDataTableFromReader(IDataReader reader, out object[] values, string tableName) { DataTable resultTable = new DataTable(tableName); resultTable.Locale = System.Globalization.CultureInfo.InvariantCulture; DataTable schemaTable = reader.GetSchemaTable()!; foreach (DataRow row in schemaTable.Rows) { resultTable.Columns.Add(row["ColumnName"] as string, (Type)row["DataType"]); } values = new object[resultTable.Columns.Count]; return resultTable; } protected override DataTable PrepareCollection(string collectionName, string?[]? restrictions, DbConnection connection) { DataTable? resultTable = null; OdbcConnection odbcConnection = (OdbcConnection)connection; if (collectionName == OdbcMetaDataCollectionNames.Tables) { resultTable = GetTablesCollection(restrictions, odbcConnection, true); } else if (collectionName == OdbcMetaDataCollectionNames.Views) { resultTable = GetTablesCollection(restrictions, odbcConnection, false); } else if (collectionName == OdbcMetaDataCollectionNames.Columns) { resultTable = GetColumnsCollection(restrictions, odbcConnection); } else if (collectionName == OdbcMetaDataCollectionNames.Procedures) { resultTable = GetProceduresCollection(restrictions, odbcConnection); } else if (collectionName == OdbcMetaDataCollectionNames.ProcedureColumns) { resultTable = GetProcedureColumnsCollection(restrictions, odbcConnection, true); } else if (collectionName == OdbcMetaDataCollectionNames.ProcedureParameters) { resultTable = GetProcedureColumnsCollection(restrictions, odbcConnection, false); } else if (collectionName == OdbcMetaDataCollectionNames.Indexes) { resultTable = GetIndexCollection(restrictions, odbcConnection); } else if (collectionName == DbMetaDataCollectionNames.DataTypes) { resultTable = GetDataTypesCollection(restrictions, odbcConnection); } else if (collectionName == DbMetaDataCollectionNames.DataSourceInformation) { resultTable = GetDataSourceInformationCollection(restrictions, odbcConnection); } else if (collectionName == DbMetaDataCollectionNames.ReservedWords) { resultTable = GetReservedWordsCollection(restrictions, odbcConnection); } if (resultTable == null) { throw ADP.UnableToBuildCollection(collectionName); } return resultTable; } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.IO; using System.Data.Common; using System.Data.ProviderBase; using System.Diagnostics; using System.Text; namespace System.Data.Odbc { internal sealed class OdbcMetaDataFactory : DbMetaDataFactory { private readonly struct SchemaFunctionName { internal SchemaFunctionName(string schemaName, ODBC32.SQL_API odbcFunction) { _schemaName = schemaName; _odbcFunction = odbcFunction; } internal readonly string _schemaName; internal readonly ODBC32.SQL_API _odbcFunction; } private const string _collectionName = "CollectionName"; private const string _populationMechanism = "PopulationMechanism"; private const string _prepareCollection = "PrepareCollection"; private readonly SchemaFunctionName[] _schemaMapping; internal static readonly char[] KeywordSeparatorChar = new char[1] { ',' }; internal OdbcMetaDataFactory(Stream XMLStream, string serverVersion, string serverVersionNormalized, OdbcConnection connection) : base(XMLStream, serverVersion, serverVersionNormalized) { // set up the colletion name ODBC function mapping guid mapping _schemaMapping = new SchemaFunctionName[] { new SchemaFunctionName(DbMetaDataCollectionNames.DataTypes, ODBC32.SQL_API.SQLGETTYPEINFO), new SchemaFunctionName(OdbcMetaDataCollectionNames.Columns, ODBC32.SQL_API.SQLCOLUMNS), new SchemaFunctionName(OdbcMetaDataCollectionNames.Indexes, ODBC32.SQL_API.SQLSTATISTICS), new SchemaFunctionName(OdbcMetaDataCollectionNames.Procedures, ODBC32.SQL_API.SQLPROCEDURES), new SchemaFunctionName(OdbcMetaDataCollectionNames.ProcedureColumns, ODBC32.SQL_API.SQLPROCEDURECOLUMNS), new SchemaFunctionName(OdbcMetaDataCollectionNames.ProcedureParameters, ODBC32.SQL_API.SQLPROCEDURECOLUMNS), new SchemaFunctionName(OdbcMetaDataCollectionNames.Tables, ODBC32.SQL_API.SQLTABLES), new SchemaFunctionName(OdbcMetaDataCollectionNames.Views, ODBC32.SQL_API.SQLTABLES)}; // verify the existance of the table in the data set DataTable? metaDataCollectionsTable = CollectionDataSet.Tables[DbMetaDataCollectionNames.MetaDataCollections]; if (metaDataCollectionsTable == null) { throw ADP.UnableToBuildCollection(DbMetaDataCollectionNames.MetaDataCollections); } // copy the table filtering out any rows that don't apply to the current version of the provider metaDataCollectionsTable = CloneAndFilterCollection(DbMetaDataCollectionNames.MetaDataCollections, null); // verify the existance of the table in the data set DataTable? restrictionsTable = CollectionDataSet.Tables[DbMetaDataCollectionNames.Restrictions]; if (restrictionsTable != null) { // copy the table filtering out any rows that don't apply to the current version of the provider restrictionsTable = CloneAndFilterCollection(DbMetaDataCollectionNames.Restrictions, null); } // need to filter out any of the collections where // 1) it is populated using prepare collection // 2) it is in the collection to odbc function mapping above // 3) the provider does not support the necessary odbc function DataColumn populationMechanism = metaDataCollectionsTable.Columns[_populationMechanism]!; DataColumn collectionName = metaDataCollectionsTable.Columns[_collectionName]!; DataColumn? restrictionCollectionName = null; if (restrictionsTable != null) { restrictionCollectionName = restrictionsTable.Columns[_collectionName]; } Debug.Assert(restrictionCollectionName != null); foreach (DataRow collection in metaDataCollectionsTable.Rows) { if ((string)collection[populationMechanism] == _prepareCollection) { // is the collection in the mapping int mapping = -1; for (int i = 0; i < _schemaMapping.Length; i++) { if (_schemaMapping[i]._schemaName == (string)collection[collectionName]) { mapping = i; break; } } // no go on to the next collection if (mapping == -1) { continue; } // does the provider support the necessary odbc function // if not delete the row from the table if (connection.SQLGetFunctions(_schemaMapping[mapping]._odbcFunction) == false) { // but first delete any related restrictions if (restrictionsTable != null) { foreach (DataRow restriction in restrictionsTable.Rows) { if ((string)collection[collectionName] == (string)restriction[restrictionCollectionName]) { restriction.Delete(); } } restrictionsTable.AcceptChanges(); } collection.Delete(); } } } // replace the original table with the updated one metaDataCollectionsTable.AcceptChanges(); CollectionDataSet.Tables.Remove(CollectionDataSet.Tables[DbMetaDataCollectionNames.MetaDataCollections]!); CollectionDataSet.Tables.Add(metaDataCollectionsTable); if (restrictionsTable != null) { CollectionDataSet.Tables.Remove(CollectionDataSet.Tables[DbMetaDataCollectionNames.Restrictions]!); CollectionDataSet.Tables.Add(restrictionsTable); } } private object BooleanFromODBC(object odbcSource) { if (odbcSource != DBNull.Value) { //convert to Int32 before doing the comparison //some odbc drivers report the odbcSource value as unsigned, in which case we will //have upgraded the type to Int32, and thus can't cast directly to short if (Convert.ToInt32(odbcSource, null) == 0) { return false; } else { return true; } } return DBNull.Value; } private OdbcCommand GetCommand(OdbcConnection connection) { OdbcCommand command = connection.CreateCommand(); // You need to make sure you pick up the transaction from the connection, // or odd things can happen... command.Transaction = connection.LocalTransaction; return command; } private DataTable DataTableFromDataReader(IDataReader reader, string tableName) { // set up the column structure of the data table from the reader object[] values; DataTable resultTable = NewDataTableFromReader(reader, out values, tableName); // populate the data table from the data reader while (reader.Read()) { reader.GetValues(values); resultTable.Rows.Add(values); } return resultTable; } private void DataTableFromDataReaderDataTypes(DataTable dataTypesTable, OdbcDataReader dataReader, OdbcConnection connection) { DataTable? schemaTable; // // Build a DataTable from the reader schemaTable = dataReader.GetSchemaTable(); // vstfdevdiv:479715 Handle cases where reader is empty if (null == schemaTable) { throw ADP.OdbcNoTypesFromProvider(); } object[] getTypeInfoValues = new object[schemaTable.Rows.Count]; DataRow dataTypesRow; DataColumn typeNameColumn = dataTypesTable.Columns[DbMetaDataColumnNames.TypeName]!; DataColumn providerDbTypeColumn = dataTypesTable.Columns[DbMetaDataColumnNames.ProviderDbType]!; DataColumn columnSizeColumn = dataTypesTable.Columns[DbMetaDataColumnNames.ColumnSize]!; DataColumn createParametersColumn = dataTypesTable.Columns[DbMetaDataColumnNames.CreateParameters]!; DataColumn dataTypeColumn = dataTypesTable.Columns[DbMetaDataColumnNames.DataType]!; DataColumn isAutoIncermentableColumn = dataTypesTable.Columns[DbMetaDataColumnNames.IsAutoIncrementable]!; DataColumn isCaseSensitiveColumn = dataTypesTable.Columns[DbMetaDataColumnNames.IsCaseSensitive]!; DataColumn isFixedLengthColumn = dataTypesTable.Columns[DbMetaDataColumnNames.IsFixedLength]!; DataColumn isFixedPrecisionScaleColumn = dataTypesTable.Columns[DbMetaDataColumnNames.IsFixedPrecisionScale]!; DataColumn isLongColumn = dataTypesTable.Columns[DbMetaDataColumnNames.IsLong]!; DataColumn isNullableColumn = dataTypesTable.Columns[DbMetaDataColumnNames.IsNullable]!; DataColumn isSearchableColumn = dataTypesTable.Columns[DbMetaDataColumnNames.IsSearchable]!; DataColumn isSearchableWithLikeColumn = dataTypesTable.Columns[DbMetaDataColumnNames.IsSearchableWithLike]!; DataColumn isUnsignedColumn = dataTypesTable.Columns[DbMetaDataColumnNames.IsUnsigned]!; DataColumn maximumScaleColumn = dataTypesTable.Columns[DbMetaDataColumnNames.MaximumScale]!; DataColumn minimumScaleColumn = dataTypesTable.Columns[DbMetaDataColumnNames.MinimumScale]!; DataColumn literalPrefixColumn = dataTypesTable.Columns[DbMetaDataColumnNames.LiteralPrefix]!; DataColumn literalSuffixColumn = dataTypesTable.Columns[DbMetaDataColumnNames.LiteralSuffix]!; DataColumn SQLTypeNameColumn = dataTypesTable.Columns[OdbcMetaDataColumnNames.SQLType]!; const int indexTYPE_NAME = 0; const int indexDATA_TYPE = 1; const int indexCOLUMN_SIZE = 2; const int indexCREATE_PARAMS = 5; const int indexAUTO_UNIQUE_VALUE = 11; const int indexCASE_SENSITIVE = 7; const int indexFIXED_PREC_SCALE = 10; const int indexNULLABLE = 6; const int indexSEARCHABLE = 8; const int indexUNSIGNED_ATTRIBUTE = 9; const int indexMAXIMUM_SCALE = 14; const int indexMINIMUM_SCALE = 13; const int indexLITERAL_PREFIX = 3; const int indexLITERAL_SUFFIX = 4; const int SQL_DATE_V2 = 9; const int SQL_TIME_V2 = 10; TypeMap? typeMap; while (dataReader.Read()) { dataReader.GetValues(getTypeInfoValues); dataTypesRow = dataTypesTable.NewRow(); ODBC32.SQL_TYPE sqlType; dataTypesRow[typeNameColumn] = getTypeInfoValues[indexTYPE_NAME]; dataTypesRow[SQLTypeNameColumn] = getTypeInfoValues[indexDATA_TYPE]; sqlType = (ODBC32.SQL_TYPE)(int)Convert.ChangeType(getTypeInfoValues[indexDATA_TYPE], typeof(int), null); // if the driver is pre version 3 and it returned the v2 SQL_DATE or SQL_TIME types they need // to be mapped to their v3 equivalent if (connection.IsV3Driver == false) { if ((int)sqlType == SQL_DATE_V2) { sqlType = ODBC32.SQL_TYPE.TYPE_DATE; } else if ((int)sqlType == SQL_TIME_V2) { sqlType = ODBC32.SQL_TYPE.TYPE_TIME; } } try { typeMap = TypeMap.FromSqlType(sqlType); } // FromSqlType will throw an argument exception if it does not recognize the SqlType. // This is not an error since the GetTypeInfo DATA_TYPE may be a SQL data type or a driver specific // type. If there is no TypeMap for the type its not an error but it will degrade our level of // understanding of/ support for the type. catch (ArgumentException) { typeMap = null; } // if we have a type map we can determine the dbType and the CLR type if not leave them null if (typeMap != null) { dataTypesRow[providerDbTypeColumn] = typeMap._odbcType; dataTypesRow[dataTypeColumn] = typeMap._type.FullName; // setting isLong and isFixedLength only if we have a type map because for provider // specific types we have no idea what the types attributes are if GetTypeInfo did not // tell us switch (sqlType) { case ODBC32.SQL_TYPE.LONGVARCHAR: case ODBC32.SQL_TYPE.WLONGVARCHAR: case ODBC32.SQL_TYPE.LONGVARBINARY: case ODBC32.SQL_TYPE.SS_XML: dataTypesRow[isLongColumn] = true; dataTypesRow[isFixedLengthColumn] = false; break; case ODBC32.SQL_TYPE.VARCHAR: case ODBC32.SQL_TYPE.WVARCHAR: case ODBC32.SQL_TYPE.VARBINARY: dataTypesRow[isLongColumn] = false; dataTypesRow[isFixedLengthColumn] = false; break; case ODBC32.SQL_TYPE.CHAR: case ODBC32.SQL_TYPE.WCHAR: case ODBC32.SQL_TYPE.DECIMAL: case ODBC32.SQL_TYPE.NUMERIC: case ODBC32.SQL_TYPE.SMALLINT: case ODBC32.SQL_TYPE.INTEGER: case ODBC32.SQL_TYPE.REAL: case ODBC32.SQL_TYPE.FLOAT: case ODBC32.SQL_TYPE.DOUBLE: case ODBC32.SQL_TYPE.BIT: case ODBC32.SQL_TYPE.TINYINT: case ODBC32.SQL_TYPE.BIGINT: case ODBC32.SQL_TYPE.TYPE_DATE: case ODBC32.SQL_TYPE.TYPE_TIME: case ODBC32.SQL_TYPE.TIMESTAMP: case ODBC32.SQL_TYPE.TYPE_TIMESTAMP: case ODBC32.SQL_TYPE.GUID: case ODBC32.SQL_TYPE.SS_VARIANT: case ODBC32.SQL_TYPE.SS_UTCDATETIME: case ODBC32.SQL_TYPE.SS_TIME_EX: case ODBC32.SQL_TYPE.BINARY: dataTypesRow[isLongColumn] = false; dataTypesRow[isFixedLengthColumn] = true; break; case ODBC32.SQL_TYPE.SS_UDT: default: // for User defined types don't know if its long or if it is // varaible length or not so leave the fields null break; } } dataTypesRow[columnSizeColumn] = getTypeInfoValues[indexCOLUMN_SIZE]; dataTypesRow[createParametersColumn] = getTypeInfoValues[indexCREATE_PARAMS]; if ((getTypeInfoValues[indexAUTO_UNIQUE_VALUE] == DBNull.Value) || (Convert.ToInt16(getTypeInfoValues[indexAUTO_UNIQUE_VALUE], null) == 0)) { dataTypesRow[isAutoIncermentableColumn] = false; } else { dataTypesRow[isAutoIncermentableColumn] = true; } dataTypesRow[isCaseSensitiveColumn] = BooleanFromODBC(getTypeInfoValues[indexCASE_SENSITIVE]); dataTypesRow[isFixedPrecisionScaleColumn] = BooleanFromODBC(getTypeInfoValues[indexFIXED_PREC_SCALE]); if (getTypeInfoValues[indexNULLABLE] != DBNull.Value) { //Use Convert.ToInt16 instead of direct cast to short because the value will be Int32 in some cases switch ((ODBC32.SQL_NULLABILITY)Convert.ToInt16(getTypeInfoValues[indexNULLABLE], null)) { case ODBC32.SQL_NULLABILITY.NO_NULLS: dataTypesRow[isNullableColumn] = false; break; case ODBC32.SQL_NULLABILITY.NULLABLE: dataTypesRow[isNullableColumn] = true; break; case ODBC32.SQL_NULLABILITY.UNKNOWN: dataTypesRow[isNullableColumn] = DBNull.Value; break; } } if (DBNull.Value != getTypeInfoValues[indexSEARCHABLE]) { //Use Convert.ToInt16 instead of direct cast to short because the value will be Int32 in some cases short searchableValue = Convert.ToInt16(getTypeInfoValues[indexSEARCHABLE], null); switch (searchableValue) { case (short)ODBC32.SQL_SEARCHABLE.UNSEARCHABLE: dataTypesRow[isSearchableColumn] = false; dataTypesRow[isSearchableWithLikeColumn] = false; break; case (short)ODBC32.SQL_SEARCHABLE.LIKE_ONLY: dataTypesRow[isSearchableColumn] = false; dataTypesRow[isSearchableWithLikeColumn] = true; break; case (short)ODBC32.SQL_SEARCHABLE.ALL_EXCEPT_LIKE: dataTypesRow[isSearchableColumn] = true; dataTypesRow[isSearchableWithLikeColumn] = false; break; case (short)ODBC32.SQL_SEARCHABLE.SEARCHABLE: dataTypesRow[isSearchableColumn] = true; dataTypesRow[isSearchableWithLikeColumn] = true; break; } } dataTypesRow[isUnsignedColumn] = BooleanFromODBC(getTypeInfoValues[indexUNSIGNED_ATTRIBUTE]); //For assignment to the DataSet, don't cast the data types -- let the DataSet take care of any conversion if (getTypeInfoValues[indexMAXIMUM_SCALE] != DBNull.Value) { dataTypesRow[maximumScaleColumn] = getTypeInfoValues[indexMAXIMUM_SCALE]; } if (getTypeInfoValues[indexMINIMUM_SCALE] != DBNull.Value) { dataTypesRow[minimumScaleColumn] = getTypeInfoValues[indexMINIMUM_SCALE]; } if (getTypeInfoValues[indexLITERAL_PREFIX] != DBNull.Value) { dataTypesRow[literalPrefixColumn] = getTypeInfoValues[indexLITERAL_PREFIX]; } if (getTypeInfoValues[indexLITERAL_SUFFIX] != DBNull.Value) { dataTypesRow[literalSuffixColumn] = getTypeInfoValues[indexLITERAL_SUFFIX]; } dataTypesTable.Rows.Add(dataTypesRow); } } private DataTable DataTableFromDataReaderIndex(IDataReader reader, string tableName, string? restrictionIndexName) { // set up the column structure of the data table from the reader object[] values; DataTable resultTable = NewDataTableFromReader(reader, out values, tableName); // populate the data table from the data reader int positionOfType = 6; int positionOfIndexName = 5; while (reader.Read()) { reader.GetValues(values); if (IncludeIndexRow(values[positionOfIndexName], restrictionIndexName, Convert.ToInt16(values[positionOfType], null)) == true) { resultTable.Rows.Add(values); } } return resultTable; } private DataTable DataTableFromDataReaderProcedureColumns(IDataReader reader, string tableName, bool isColumn) { // set up the column structure of the data table from the reader object[] values; DataTable resultTable = NewDataTableFromReader(reader, out values, tableName); // populate the data table from the data reader int positionOfColumnType = 4; while (reader.Read()) { reader.GetValues(values); // the column type should always be short but need to check just in case if (values[positionOfColumnType].GetType() == typeof(short)) { if ((((short)values[positionOfColumnType] == ODBC32.SQL_RESULT_COL) && (isColumn == true)) || (((short)values[positionOfColumnType] != ODBC32.SQL_RESULT_COL) && (isColumn == false))) { resultTable.Rows.Add(values); } } } return resultTable; } private DataTable DataTableFromDataReaderProcedures(IDataReader reader, string tableName, short procedureType) { // Build a DataTable from the reader // set up the column structure of the data table from the reader object[] values; DataTable resultTable = NewDataTableFromReader(reader, out values, tableName); // populate the data table from the data reader int positionOfProcedureType = 7; while (reader.Read()) { reader.GetValues(values); // the column type should always be short but need to check just in case its null if (values[positionOfProcedureType].GetType() == typeof(short)) { if ((short)values[positionOfProcedureType] == procedureType) { resultTable.Rows.Add(values); } } } return resultTable; } private void FillOutRestrictions(int restrictionsCount, string?[]? restrictions, object?[] allRestrictions, string collectionName) { Debug.Assert(allRestrictions.Length >= restrictionsCount); int i = 0; // if we have restrictions put them in the restrictions array if (restrictions != null) { if (restrictions.Length > restrictionsCount) { throw ADP.TooManyRestrictions(collectionName); } for (i = 0; i < restrictions.Length; i++) { if (restrictions[i] != null) { allRestrictions[i] = restrictions[i]; } } } // initalize the rest to no restrictions for (; i < restrictionsCount; i++) { allRestrictions[i] = null; } } private DataTable GetColumnsCollection(string?[]? restrictions, OdbcConnection connection) { OdbcCommand? command = null; OdbcDataReader? dataReader = null; DataTable? resultTable = null; const int columnsRestrictionsCount = 4; try { command = GetCommand(connection); string[] allRestrictions = new string[columnsRestrictionsCount]; FillOutRestrictions(columnsRestrictionsCount, restrictions, allRestrictions, OdbcMetaDataCollectionNames.Columns); dataReader = command.ExecuteReaderFromSQLMethod(allRestrictions, ODBC32.SQL_API.SQLCOLUMNS); resultTable = DataTableFromDataReader(dataReader, OdbcMetaDataCollectionNames.Columns); } finally { if (dataReader != null) { dataReader.Dispose(); }; if (command != null) { command.Dispose(); }; } return resultTable; } private DataTable GetDataSourceInformationCollection(string?[]? restrictions, OdbcConnection connection) { if (ADP.IsEmptyArray(restrictions) == false) { throw ADP.TooManyRestrictions(DbMetaDataCollectionNames.DataSourceInformation); } // verify that the data source information table is in the data set DataTable? dataSourceInformationTable = CollectionDataSet.Tables[DbMetaDataCollectionNames.DataSourceInformation]; if (dataSourceInformationTable == null) { throw ADP.UnableToBuildCollection(DbMetaDataCollectionNames.DataSourceInformation); } // copy the table filtering out any rows that don't apply to the current version of the provider dataSourceInformationTable = CloneAndFilterCollection(DbMetaDataCollectionNames.DataSourceInformation, null); // after filtering there better be just one row if (dataSourceInformationTable.Rows.Count != 1) { throw ADP.IncorrectNumberOfDataSourceInformationRows(); } DataRow dataSourceInformation = dataSourceInformationTable.Rows[0]; string? stringValue; short int16Value; int int32Value; ODBC32.SQLRETURN retcode; // update the catalog separator stringValue = connection.GetInfoStringUnhandled(ODBC32.SQL_INFO.CATALOG_NAME_SEPARATOR); if (!string.IsNullOrEmpty(stringValue)) { StringBuilder patternEscaped = new StringBuilder(); ADP.EscapeSpecialCharacters(stringValue, patternEscaped); dataSourceInformation[DbMetaDataColumnNames.CompositeIdentifierSeparatorPattern] = patternEscaped.ToString(); } // get the DBMS Name stringValue = connection.GetInfoStringUnhandled(ODBC32.SQL_INFO.DBMS_NAME); if (stringValue != null) { dataSourceInformation[DbMetaDataColumnNames.DataSourceProductName] = stringValue; } // update the server version strings dataSourceInformation[DbMetaDataColumnNames.DataSourceProductVersion] = ServerVersion; dataSourceInformation[DbMetaDataColumnNames.DataSourceProductVersionNormalized] = ServerVersionNormalized; // values that are the same for all ODBC drivers. See bug 105333 dataSourceInformation[DbMetaDataColumnNames.ParameterMarkerFormat] = "?"; dataSourceInformation[DbMetaDataColumnNames.ParameterMarkerPattern] = "\\?"; dataSourceInformation[DbMetaDataColumnNames.ParameterNameMaxLength] = 0; // determine the supportedJoinOperators // leave the column null if the GetInfo fails. There is no explicit value for // unknown. if (connection.IsV3Driver) { retcode = connection.GetInfoInt32Unhandled(ODBC32.SQL_INFO.SQL_OJ_CAPABILITIES_30, out int32Value); } else { retcode = connection.GetInfoInt32Unhandled(ODBC32.SQL_INFO.SQL_OJ_CAPABILITIES_20, out int32Value); } if ((retcode == ODBC32.SQLRETURN.SUCCESS) || (retcode == ODBC32.SQLRETURN.SUCCESS_WITH_INFO)) { Common.SupportedJoinOperators supportedJoinOperators = Common.SupportedJoinOperators.None; if ((int32Value & (int)ODBC32.SQL_OJ_CAPABILITIES.LEFT) != 0) { supportedJoinOperators = supportedJoinOperators | Common.SupportedJoinOperators.LeftOuter; } if ((int32Value & (int)ODBC32.SQL_OJ_CAPABILITIES.RIGHT) != 0) { supportedJoinOperators = supportedJoinOperators | Common.SupportedJoinOperators.RightOuter; } if ((int32Value & (int)ODBC32.SQL_OJ_CAPABILITIES.FULL) != 0) { supportedJoinOperators = supportedJoinOperators | Common.SupportedJoinOperators.FullOuter; } if ((int32Value & (int)ODBC32.SQL_OJ_CAPABILITIES.INNER) != 0) { supportedJoinOperators = supportedJoinOperators | Common.SupportedJoinOperators.Inner; } dataSourceInformation[DbMetaDataColumnNames.SupportedJoinOperators] = supportedJoinOperators; } // determine the GroupByBehavior retcode = connection.GetInfoInt16Unhandled(ODBC32.SQL_INFO.GROUP_BY, out int16Value); Common.GroupByBehavior groupByBehavior = Common.GroupByBehavior.Unknown; if ((retcode == ODBC32.SQLRETURN.SUCCESS) || (retcode == ODBC32.SQLRETURN.SUCCESS_WITH_INFO)) { switch (int16Value) { case (short)ODBC32.SQL_GROUP_BY.NOT_SUPPORTED: groupByBehavior = Common.GroupByBehavior.NotSupported; break; case (short)ODBC32.SQL_GROUP_BY.GROUP_BY_EQUALS_SELECT: groupByBehavior = Common.GroupByBehavior.ExactMatch; break; case (short)ODBC32.SQL_GROUP_BY.GROUP_BY_CONTAINS_SELECT: groupByBehavior = Common.GroupByBehavior.MustContainAll; break; case (short)ODBC32.SQL_GROUP_BY.NO_RELATION: groupByBehavior = Common.GroupByBehavior.Unrelated; break; /* COLLATE is new in ODBC 3.0 and GroupByBehavior does not have a value for it. case ODBC32.SQL_GROUP_BY.COLLATE: groupByBehavior = Common.GroupByBehavior.Unknown; break; */ } } dataSourceInformation[DbMetaDataColumnNames.GroupByBehavior] = groupByBehavior; // determine the identifier case retcode = connection.GetInfoInt16Unhandled(ODBC32.SQL_INFO.IDENTIFIER_CASE, out int16Value); Common.IdentifierCase identifierCase = Common.IdentifierCase.Unknown; if ((retcode == ODBC32.SQLRETURN.SUCCESS) || (retcode == ODBC32.SQLRETURN.SUCCESS_WITH_INFO)) { switch (int16Value) { case (short)ODBC32.SQL_IDENTIFIER_CASE.SENSITIVE: identifierCase = Common.IdentifierCase.Sensitive; break; case (short)ODBC32.SQL_IDENTIFIER_CASE.UPPER: case (short)ODBC32.SQL_IDENTIFIER_CASE.LOWER: case (short)ODBC32.SQL_IDENTIFIER_CASE.MIXED: identifierCase = Common.IdentifierCase.Insensitive; break; } } dataSourceInformation[DbMetaDataColumnNames.IdentifierCase] = identifierCase; // OrderByColumnsInSelect stringValue = connection.GetInfoStringUnhandled(ODBC32.SQL_INFO.ORDER_BY_COLUMNS_IN_SELECT); if (stringValue != null) { if (stringValue == "Y") { dataSourceInformation[DbMetaDataColumnNames.OrderByColumnsInSelect] = true; } else if (stringValue == "N") { dataSourceInformation[DbMetaDataColumnNames.OrderByColumnsInSelect] = false; } } // build the QuotedIdentifierPattern using the quote prefix and suffix from the provider and // assuming that the quote suffix is escaped via repetition (i.e " becomes "") stringValue = connection.QuoteChar(ADP.GetSchema); if (stringValue != null) { // by spec a blank identifier quote char indicates that the provider does not suppport // quoted identifiers if (stringValue != " ") { // only know how to build the pattern if the quote characters is 1 character // in all other cases just leave the field null if (stringValue.Length == 1) { StringBuilder scratchStringBuilder = new StringBuilder(); ADP.EscapeSpecialCharacters(stringValue, scratchStringBuilder); string escapedQuoteSuffixString = scratchStringBuilder.ToString(); scratchStringBuilder.Length = 0; ADP.EscapeSpecialCharacters(stringValue, scratchStringBuilder); scratchStringBuilder.Append("(([^"); scratchStringBuilder.Append(escapedQuoteSuffixString); scratchStringBuilder.Append("]|"); scratchStringBuilder.Append(escapedQuoteSuffixString); scratchStringBuilder.Append(escapedQuoteSuffixString); scratchStringBuilder.Append(")*)"); scratchStringBuilder.Append(escapedQuoteSuffixString); dataSourceInformation[DbMetaDataColumnNames.QuotedIdentifierPattern] = scratchStringBuilder.ToString(); } } } // determine the quoted identifier case retcode = connection.GetInfoInt16Unhandled(ODBC32.SQL_INFO.QUOTED_IDENTIFIER_CASE, out int16Value); Common.IdentifierCase quotedIdentifierCase = Common.IdentifierCase.Unknown; if ((retcode == ODBC32.SQLRETURN.SUCCESS) || (retcode == ODBC32.SQLRETURN.SUCCESS_WITH_INFO)) { switch (int16Value) { case (short)ODBC32.SQL_IDENTIFIER_CASE.SENSITIVE: quotedIdentifierCase = Common.IdentifierCase.Sensitive; break; case (short)ODBC32.SQL_IDENTIFIER_CASE.UPPER: case (short)ODBC32.SQL_IDENTIFIER_CASE.LOWER: case (short)ODBC32.SQL_IDENTIFIER_CASE.MIXED: quotedIdentifierCase = Common.IdentifierCase.Insensitive; break; } } dataSourceInformation[DbMetaDataColumnNames.QuotedIdentifierCase] = quotedIdentifierCase; dataSourceInformationTable.AcceptChanges(); return dataSourceInformationTable; } private DataTable GetDataTypesCollection(string?[]? restrictions, OdbcConnection connection) { if (ADP.IsEmptyArray(restrictions) == false) { throw ADP.TooManyRestrictions(DbMetaDataCollectionNames.DataTypes); } // verify the existance of the table in the data set DataTable? dataTypesTable = CollectionDataSet.Tables[DbMetaDataCollectionNames.DataTypes]; if (dataTypesTable == null) { throw ADP.UnableToBuildCollection(DbMetaDataCollectionNames.DataTypes); } // copy the data table it dataTypesTable = CloneAndFilterCollection(DbMetaDataCollectionNames.DataTypes, null); OdbcCommand? command = null; OdbcDataReader? dataReader = null; object[] allArguments = new object[1]; allArguments[0] = ODBC32.SQL_ALL_TYPES; try { command = GetCommand(connection); dataReader = command.ExecuteReaderFromSQLMethod(allArguments, ODBC32.SQL_API.SQLGETTYPEINFO); DataTableFromDataReaderDataTypes(dataTypesTable, dataReader, connection); } finally { if (dataReader != null) { dataReader.Dispose(); }; if (command != null) { command.Dispose(); }; } dataTypesTable.AcceptChanges(); return dataTypesTable; } private DataTable GetIndexCollection(string?[]? restrictions, OdbcConnection connection) { OdbcCommand? command = null; OdbcDataReader? dataReader = null; DataTable? resultTable = null; const int nativeRestrictionsCount = 5; const int indexRestrictionsCount = 4; const int indexOfTableName = 2; const int indexOfIndexName = 3; try { command = GetCommand(connection); object[] allRestrictions = new object[nativeRestrictionsCount]; FillOutRestrictions(indexRestrictionsCount, restrictions, allRestrictions, OdbcMetaDataCollectionNames.Indexes); if (allRestrictions[indexOfTableName] == null) { throw ODBC.GetSchemaRestrictionRequired(); } allRestrictions[3] = (short)ODBC32.SQL_INDEX.ALL; allRestrictions[4] = (short)ODBC32.SQL_STATISTICS_RESERVED.ENSURE; dataReader = command.ExecuteReaderFromSQLMethod(allRestrictions, ODBC32.SQL_API.SQLSTATISTICS); string? indexName = null; if (restrictions != null) { if (restrictions.Length >= indexOfIndexName + 1) { indexName = restrictions[indexOfIndexName]; } } resultTable = DataTableFromDataReaderIndex(dataReader, OdbcMetaDataCollectionNames.Indexes, indexName); } finally { if (dataReader != null) { dataReader.Dispose(); }; if (command != null) { command.Dispose(); }; } return resultTable; } private DataTable GetProcedureColumnsCollection(string?[]? restrictions, OdbcConnection connection, bool isColumns) { OdbcCommand? command = null; OdbcDataReader? dataReader = null; DataTable? resultTable = null; const int procedureColumnsRestrictionsCount = 4; try { command = GetCommand(connection); string[] allRestrictions = new string[procedureColumnsRestrictionsCount]; FillOutRestrictions(procedureColumnsRestrictionsCount, restrictions, allRestrictions, OdbcMetaDataCollectionNames.Columns); dataReader = command.ExecuteReaderFromSQLMethod(allRestrictions, ODBC32.SQL_API.SQLPROCEDURECOLUMNS); string collectionName; if (isColumns == true) { collectionName = OdbcMetaDataCollectionNames.ProcedureColumns; } else { collectionName = OdbcMetaDataCollectionNames.ProcedureParameters; } resultTable = DataTableFromDataReaderProcedureColumns(dataReader, collectionName, isColumns); } finally { if (dataReader != null) { dataReader.Dispose(); }; if (command != null) { command.Dispose(); }; } return resultTable; } private DataTable GetProceduresCollection(string?[]? restrictions, OdbcConnection connection) { OdbcCommand? command = null; OdbcDataReader? dataReader = null; DataTable? resultTable = null; const int columnsRestrictionsCount = 4; const int indexOfProcedureType = 3; try { command = GetCommand(connection); string?[] allRestrictions = new string[columnsRestrictionsCount]; FillOutRestrictions(columnsRestrictionsCount, restrictions, allRestrictions, OdbcMetaDataCollectionNames.Procedures); dataReader = command.ExecuteReaderFromSQLMethod(allRestrictions, ODBC32.SQL_API.SQLPROCEDURES); if (allRestrictions[indexOfProcedureType] == null) { resultTable = DataTableFromDataReader(dataReader, OdbcMetaDataCollectionNames.Procedures); } else { short procedureType; if ((restrictions![indexOfProcedureType] == "SQL_PT_UNKNOWN") || (restrictions[indexOfProcedureType] == "0" /*ODBC32.SQL_PROCEDURETYPE.UNKNOWN*/)) { procedureType = (short)ODBC32.SQL_PROCEDURETYPE.UNKNOWN; } else if ((restrictions[indexOfProcedureType] == "SQL_PT_PROCEDURE") || (restrictions[indexOfProcedureType] == "1" /*ODBC32.SQL_PROCEDURETYPE.PROCEDURE*/)) { procedureType = (short)ODBC32.SQL_PROCEDURETYPE.PROCEDURE; } else if ((restrictions[indexOfProcedureType] == "SQL_PT_FUNCTION") || (restrictions[indexOfProcedureType] == "2" /*ODBC32.SQL_PROCEDURETYPE.FUNCTION*/)) { procedureType = (short)ODBC32.SQL_PROCEDURETYPE.FUNCTION; } else { throw ADP.InvalidRestrictionValue(OdbcMetaDataCollectionNames.Procedures, "PROCEDURE_TYPE", restrictions[indexOfProcedureType]); } resultTable = DataTableFromDataReaderProcedures(dataReader, OdbcMetaDataCollectionNames.Procedures, procedureType); } } finally { if (dataReader != null) { dataReader.Dispose(); }; if (command != null) { command.Dispose(); }; } return resultTable; } private DataTable GetReservedWordsCollection(string?[]? restrictions, OdbcConnection connection) { if (ADP.IsEmptyArray(restrictions) == false) { throw ADP.TooManyRestrictions(DbMetaDataCollectionNames.ReservedWords); } // verify the existance of the table in the data set DataTable? reservedWordsTable = CollectionDataSet.Tables[DbMetaDataCollectionNames.ReservedWords]; if (reservedWordsTable == null) { throw ADP.UnableToBuildCollection(DbMetaDataCollectionNames.ReservedWords); } // copy the table filtering out any rows that don't apply to tho current version of the prrovider reservedWordsTable = CloneAndFilterCollection(DbMetaDataCollectionNames.ReservedWords, null); DataColumn? reservedWordColumn = reservedWordsTable.Columns[DbMetaDataColumnNames.ReservedWord]; if (reservedWordColumn == null) { throw ADP.UnableToBuildCollection(DbMetaDataCollectionNames.ReservedWords); } string? keywords = connection.GetInfoStringUnhandled(ODBC32.SQL_INFO.KEYWORDS); if (null != keywords) { string[] values = keywords.Split(KeywordSeparatorChar); for (int i = 0; i < values.Length; ++i) { DataRow row = reservedWordsTable.NewRow(); row[reservedWordColumn] = values[i]; reservedWordsTable.Rows.Add(row); row.AcceptChanges(); } } return reservedWordsTable; } private DataTable GetTablesCollection(string?[]? restrictions, OdbcConnection connection, bool isTables) { OdbcCommand? command = null; OdbcDataReader? dataReader = null; DataTable? resultTable = null; const int tablesRestrictionsCount = 3; const string includedTableTypesTables = "TABLE,SYSTEM TABLE"; const string includedTableTypesViews = "VIEW"; string includedTableTypes; string dataTableName; try { //command = (OdbcCommand) connection.CreateCommand(); command = GetCommand(connection); string[] allArguments = new string[tablesRestrictionsCount + 1]; if (isTables == true) { includedTableTypes = includedTableTypesTables; dataTableName = OdbcMetaDataCollectionNames.Tables; } else { includedTableTypes = includedTableTypesViews; dataTableName = OdbcMetaDataCollectionNames.Views; } FillOutRestrictions(tablesRestrictionsCount, restrictions, allArguments, dataTableName); allArguments[tablesRestrictionsCount] = includedTableTypes; dataReader = command.ExecuteReaderFromSQLMethod(allArguments, ODBC32.SQL_API.SQLTABLES); resultTable = DataTableFromDataReader(dataReader, dataTableName); } finally { if (dataReader != null) { dataReader.Dispose(); }; if (command != null) { command.Dispose(); }; } return resultTable; } private bool IncludeIndexRow(object rowIndexName, string? restrictionIndexName, short rowIndexType) { // never include table statictics rows if (rowIndexType == (short)ODBC32.SQL_STATISTICSTYPE.TABLE_STAT) { return false; } if ((restrictionIndexName != null) && (restrictionIndexName != (string)rowIndexName)) { return false; } return true; } private DataTable NewDataTableFromReader(IDataReader reader, out object[] values, string tableName) { DataTable resultTable = new DataTable(tableName); resultTable.Locale = System.Globalization.CultureInfo.InvariantCulture; DataTable schemaTable = reader.GetSchemaTable()!; foreach (DataRow row in schemaTable.Rows) { resultTable.Columns.Add(row["ColumnName"] as string, (Type)row["DataType"]); } values = new object[resultTable.Columns.Count]; return resultTable; } protected override DataTable PrepareCollection(string collectionName, string?[]? restrictions, DbConnection connection) { DataTable? resultTable = null; OdbcConnection odbcConnection = (OdbcConnection)connection; if (collectionName == OdbcMetaDataCollectionNames.Tables) { resultTable = GetTablesCollection(restrictions, odbcConnection, true); } else if (collectionName == OdbcMetaDataCollectionNames.Views) { resultTable = GetTablesCollection(restrictions, odbcConnection, false); } else if (collectionName == OdbcMetaDataCollectionNames.Columns) { resultTable = GetColumnsCollection(restrictions, odbcConnection); } else if (collectionName == OdbcMetaDataCollectionNames.Procedures) { resultTable = GetProceduresCollection(restrictions, odbcConnection); } else if (collectionName == OdbcMetaDataCollectionNames.ProcedureColumns) { resultTable = GetProcedureColumnsCollection(restrictions, odbcConnection, true); } else if (collectionName == OdbcMetaDataCollectionNames.ProcedureParameters) { resultTable = GetProcedureColumnsCollection(restrictions, odbcConnection, false); } else if (collectionName == OdbcMetaDataCollectionNames.Indexes) { resultTable = GetIndexCollection(restrictions, odbcConnection); } else if (collectionName == DbMetaDataCollectionNames.DataTypes) { resultTable = GetDataTypesCollection(restrictions, odbcConnection); } else if (collectionName == DbMetaDataCollectionNames.DataSourceInformation) { resultTable = GetDataSourceInformationCollection(restrictions, odbcConnection); } else if (collectionName == DbMetaDataCollectionNames.ReservedWords) { resultTable = GetReservedWordsCollection(restrictions, odbcConnection); } if (resultTable == null) { throw ADP.UnableToBuildCollection(collectionName); } return resultTable; } } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/Regression/JitBlue/Runtime_764/Runtime_764.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Runtime.CompilerServices; // Regression test case for importer bug. // If Release is inlined into Main, the importer may unsafely re-order trees. public struct Ptr<T> where T: class { private T _value; public Ptr(T value) { _value = value; } public T Release() { T tmp = _value; _value = null; return tmp; } } class Runtime_764 { private static int Main(string[] args) { Ptr<string> ptr = new Ptr<string>("Hello, world"); bool res = false; while (res) { } string summary = ptr.Release(); if (summary == null) { Console.WriteLine("FAILED"); return -1; } else { Console.WriteLine("PASSED"); return 100; } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Runtime.CompilerServices; // Regression test case for importer bug. // If Release is inlined into Main, the importer may unsafely re-order trees. public struct Ptr<T> where T: class { private T _value; public Ptr(T value) { _value = value; } public T Release() { T tmp = _value; _value = null; return tmp; } } class Runtime_764 { private static int Main(string[] args) { Ptr<string> ptr = new Ptr<string>("Hello, world"); bool res = false; while (res) { } string summary = ptr.Release(); if (summary == null) { Console.WriteLine("FAILED"); return -1; } else { Console.WriteLine("PASSED"); return 100; } } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/libraries/System.IO.Ports/tests/SerialPort/PinChangedEvent.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Diagnostics; using System.IO.PortsTests; using System.Threading; using Legacy.Support; using Xunit; namespace System.IO.Ports.Tests { [KnownFailure] public class PinChangedEvent : PortsTest { // Maximum time to wait for all of the expected events to be fired private const int MAX_TIME_WAIT = 1000; private const int NUM_TRYS = 5; #region Test Cases [ConditionalFact(nameof(HasNullModem))] public void PinChangedEvent_CtsChanged() { using (SerialPort com1 = new SerialPort(TCSupport.LocalMachineSerialInfo.FirstAvailablePortName)) using (SerialPort com2 = new SerialPort(TCSupport.LocalMachineSerialInfo.SecondAvailablePortName)) { PinChangedEventHandler eventHandler = new PinChangedEventHandler(com1); Debug.WriteLine("Verifying CtsChanged event"); com1.PinChanged += eventHandler.HandleEvent; com1.Open(); com2.Open(); for (int i = 0; i < NUM_TRYS; i++) { Debug.WriteLine("Verifying when RtsEnable set to true on remote port try: {0}", i); com2.RtsEnable = true; Assert.True(eventHandler.WaitForEvent(MAX_TIME_WAIT, 1), "Initial event missing"); eventHandler.Validate(SerialPinChange.CtsChanged, 0); Assert.Equal(0, eventHandler.NumEventsHandled); com2.RtsEnable = false; eventHandler.WaitForEvent(MAX_TIME_WAIT, 1); eventHandler.Validate(SerialPinChange.CtsChanged, 0); Assert.Equal(0, eventHandler.NumEventsHandled); } } } [ConditionalFact(nameof(HasNullModem))] public void PinChangedEvent_DsrChanged() { using (SerialPort com1 = new SerialPort(TCSupport.LocalMachineSerialInfo.FirstAvailablePortName)) using (SerialPort com2 = new SerialPort(TCSupport.LocalMachineSerialInfo.SecondAvailablePortName)) { PinChangedEventHandler eventHandler = new PinChangedEventHandler(com1); // Some null-modem cables have a connection between CD and CSR/CTR, so we need to discard CDChanged events eventHandler.EventFilter = eventType => eventType != SerialPinChange.CDChanged; Debug.WriteLine("Verifying DsrChanged event"); com1.PinChanged += eventHandler.HandleEvent; com1.Open(); com2.Open(); for (int i = 0; i < NUM_TRYS; i++) { Debug.WriteLine("Verifying when DtrEnable set to true on remote port {0}", i); com2.DtrEnable = true; Assert.True(eventHandler.WaitForEvent(MAX_TIME_WAIT, 1), "Initial event missing"); eventHandler.Validate(SerialPinChange.DsrChanged, 0); Assert.Equal(0, eventHandler.NumEventsHandled); com2.DtrEnable = false; eventHandler.WaitForEvent(MAX_TIME_WAIT, 1); eventHandler.Validate(SerialPinChange.DsrChanged, 0); Assert.Equal(0, eventHandler.NumEventsHandled); } } } [ConditionalFact(nameof(HasNullModem))] public void PinChangedEvent_Break() { using (SerialPort com1 = new SerialPort(TCSupport.LocalMachineSerialInfo.FirstAvailablePortName)) using (SerialPort com2 = new SerialPort(TCSupport.LocalMachineSerialInfo.SecondAvailablePortName)) { PinChangedEventHandler eventHandler = new PinChangedEventHandler(com1); Debug.WriteLine("Verifying Break event"); com1.PinChanged += eventHandler.HandleEvent; com1.Open(); com2.Open(); for (int i = 0; i < NUM_TRYS; i++) { Debug.WriteLine("Verifying when Break set to true on remote port try: {0}", i); com2.BreakState = true; Assert.True(eventHandler.WaitForEvent(MAX_TIME_WAIT, 1), "Initial event missing"); eventHandler.Validate(SerialPinChange.Break, 0); Assert.Equal(0, eventHandler.NumEventsHandled); com2.BreakState = false; // This will always time-out, because we don't expect an event here eventHandler.WaitForEvent(MAX_TIME_WAIT, 1); Assert.Equal(0, eventHandler.NumEventsHandled); } } } [ConditionalFact(nameof(HasNullModem))] public void PinChangedEvent_Multiple() { using (SerialPort com1 = new SerialPort(TCSupport.LocalMachineSerialInfo.FirstAvailablePortName)) using (SerialPort com2 = new SerialPort(TCSupport.LocalMachineSerialInfo.SecondAvailablePortName)) { PinChangedEventHandler eventHandler = new PinChangedEventHandler(com1); // Some null-modem cables have a connection between CD and CSR/CTR, so we need to discard CDChanged events eventHandler.EventFilter = eventType => eventType != SerialPinChange.CDChanged; SerialPinChangedEventHandler pinchangedEventHandler = eventHandler.HandleEvent; Debug.WriteLine("Verifying multiple PinChangedEvents"); com1.PinChanged += pinchangedEventHandler; com1.Open(); com2.Open(); com2.BreakState = true; Thread.Sleep(100); com2.DtrEnable = true; Thread.Sleep(100); com2.RtsEnable = true; eventHandler.WaitForEvent(MAX_TIME_WAIT, 3); eventHandler.Validate(SerialPinChange.Break, 0); eventHandler.Validate(SerialPinChange.DsrChanged, 0); eventHandler.Validate(SerialPinChange.CtsChanged, 0); com1.PinChanged -= pinchangedEventHandler; com2.BreakState = false; com2.DtrEnable = false; com2.RtsEnable = false; } } #endregion #region Verification for Test Cases private class PinChangedEventHandler : TestEventHandler<SerialPinChange> { public PinChangedEventHandler(SerialPort com) : base(com, false, false) { } public void HandleEvent(object source, SerialPinChangedEventArgs e) { HandleEvent(source, e.EventType); } } #endregion } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Diagnostics; using System.IO.PortsTests; using System.Threading; using Legacy.Support; using Xunit; namespace System.IO.Ports.Tests { [KnownFailure] public class PinChangedEvent : PortsTest { // Maximum time to wait for all of the expected events to be fired private const int MAX_TIME_WAIT = 1000; private const int NUM_TRYS = 5; #region Test Cases [ConditionalFact(nameof(HasNullModem))] public void PinChangedEvent_CtsChanged() { using (SerialPort com1 = new SerialPort(TCSupport.LocalMachineSerialInfo.FirstAvailablePortName)) using (SerialPort com2 = new SerialPort(TCSupport.LocalMachineSerialInfo.SecondAvailablePortName)) { PinChangedEventHandler eventHandler = new PinChangedEventHandler(com1); Debug.WriteLine("Verifying CtsChanged event"); com1.PinChanged += eventHandler.HandleEvent; com1.Open(); com2.Open(); for (int i = 0; i < NUM_TRYS; i++) { Debug.WriteLine("Verifying when RtsEnable set to true on remote port try: {0}", i); com2.RtsEnable = true; Assert.True(eventHandler.WaitForEvent(MAX_TIME_WAIT, 1), "Initial event missing"); eventHandler.Validate(SerialPinChange.CtsChanged, 0); Assert.Equal(0, eventHandler.NumEventsHandled); com2.RtsEnable = false; eventHandler.WaitForEvent(MAX_TIME_WAIT, 1); eventHandler.Validate(SerialPinChange.CtsChanged, 0); Assert.Equal(0, eventHandler.NumEventsHandled); } } } [ConditionalFact(nameof(HasNullModem))] public void PinChangedEvent_DsrChanged() { using (SerialPort com1 = new SerialPort(TCSupport.LocalMachineSerialInfo.FirstAvailablePortName)) using (SerialPort com2 = new SerialPort(TCSupport.LocalMachineSerialInfo.SecondAvailablePortName)) { PinChangedEventHandler eventHandler = new PinChangedEventHandler(com1); // Some null-modem cables have a connection between CD and CSR/CTR, so we need to discard CDChanged events eventHandler.EventFilter = eventType => eventType != SerialPinChange.CDChanged; Debug.WriteLine("Verifying DsrChanged event"); com1.PinChanged += eventHandler.HandleEvent; com1.Open(); com2.Open(); for (int i = 0; i < NUM_TRYS; i++) { Debug.WriteLine("Verifying when DtrEnable set to true on remote port {0}", i); com2.DtrEnable = true; Assert.True(eventHandler.WaitForEvent(MAX_TIME_WAIT, 1), "Initial event missing"); eventHandler.Validate(SerialPinChange.DsrChanged, 0); Assert.Equal(0, eventHandler.NumEventsHandled); com2.DtrEnable = false; eventHandler.WaitForEvent(MAX_TIME_WAIT, 1); eventHandler.Validate(SerialPinChange.DsrChanged, 0); Assert.Equal(0, eventHandler.NumEventsHandled); } } } [ConditionalFact(nameof(HasNullModem))] public void PinChangedEvent_Break() { using (SerialPort com1 = new SerialPort(TCSupport.LocalMachineSerialInfo.FirstAvailablePortName)) using (SerialPort com2 = new SerialPort(TCSupport.LocalMachineSerialInfo.SecondAvailablePortName)) { PinChangedEventHandler eventHandler = new PinChangedEventHandler(com1); Debug.WriteLine("Verifying Break event"); com1.PinChanged += eventHandler.HandleEvent; com1.Open(); com2.Open(); for (int i = 0; i < NUM_TRYS; i++) { Debug.WriteLine("Verifying when Break set to true on remote port try: {0}", i); com2.BreakState = true; Assert.True(eventHandler.WaitForEvent(MAX_TIME_WAIT, 1), "Initial event missing"); eventHandler.Validate(SerialPinChange.Break, 0); Assert.Equal(0, eventHandler.NumEventsHandled); com2.BreakState = false; // This will always time-out, because we don't expect an event here eventHandler.WaitForEvent(MAX_TIME_WAIT, 1); Assert.Equal(0, eventHandler.NumEventsHandled); } } } [ConditionalFact(nameof(HasNullModem))] public void PinChangedEvent_Multiple() { using (SerialPort com1 = new SerialPort(TCSupport.LocalMachineSerialInfo.FirstAvailablePortName)) using (SerialPort com2 = new SerialPort(TCSupport.LocalMachineSerialInfo.SecondAvailablePortName)) { PinChangedEventHandler eventHandler = new PinChangedEventHandler(com1); // Some null-modem cables have a connection between CD and CSR/CTR, so we need to discard CDChanged events eventHandler.EventFilter = eventType => eventType != SerialPinChange.CDChanged; SerialPinChangedEventHandler pinchangedEventHandler = eventHandler.HandleEvent; Debug.WriteLine("Verifying multiple PinChangedEvents"); com1.PinChanged += pinchangedEventHandler; com1.Open(); com2.Open(); com2.BreakState = true; Thread.Sleep(100); com2.DtrEnable = true; Thread.Sleep(100); com2.RtsEnable = true; eventHandler.WaitForEvent(MAX_TIME_WAIT, 3); eventHandler.Validate(SerialPinChange.Break, 0); eventHandler.Validate(SerialPinChange.DsrChanged, 0); eventHandler.Validate(SerialPinChange.CtsChanged, 0); com1.PinChanged -= pinchangedEventHandler; com2.BreakState = false; com2.DtrEnable = false; com2.RtsEnable = false; } } #endregion #region Verification for Test Cases private class PinChangedEventHandler : TestEventHandler<SerialPinChange> { public PinChangedEventHandler(SerialPort com) : base(com, false, false) { } public void HandleEvent(object source, SerialPinChangedEventArgs e) { HandleEvent(source, e.EventType); } } #endregion } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/IL_Conformance/Old/Conformance_Base/blt_u.ilproj
<Project Sdk="Microsoft.NET.Sdk.IL"> <PropertyGroup> <OutputType>Exe</OutputType> <RestorePackages>true</RestorePackages> <CLRTestPriority>1</CLRTestPriority> </PropertyGroup> <PropertyGroup> <DebugType>PdbOnly</DebugType> <Optimize>True</Optimize> </PropertyGroup> <ItemGroup> <Compile Include="blt_u.il" /> </ItemGroup> </Project>
<Project Sdk="Microsoft.NET.Sdk.IL"> <PropertyGroup> <OutputType>Exe</OutputType> <RestorePackages>true</RestorePackages> <CLRTestPriority>1</CLRTestPriority> </PropertyGroup> <PropertyGroup> <DebugType>PdbOnly</DebugType> <Optimize>True</Optimize> </PropertyGroup> <ItemGroup> <Compile Include="blt_u.il" /> </ItemGroup> </Project>
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/HardwareIntrinsics/Arm/AdvSimd.Arm64/AddSaturate.Vector128.UInt64.Vector128.Int64.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /****************************************************************************** * This file is auto-generated from a template file by the GenerateTests.csx * * script in tests\src\JIT\HardwareIntrinsics.Arm\Shared. In order to make * * changes, please update the corresponding template and run according to the * * directions listed in the file. * ******************************************************************************/ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Intrinsics; using System.Runtime.Intrinsics.Arm; namespace JIT.HardwareIntrinsics.Arm { public static partial class Program { private static void AddSaturate_Vector128_UInt64_Vector128_Int64() { var test = new SimpleBinaryOpTest__AddSaturate_Vector128_UInt64_Vector128_Int64(); if (test.IsSupported) { // Validates basic functionality works, using Unsafe.Read test.RunBasicScenario_UnsafeRead(); if (AdvSimd.IsSupported) { // Validates basic functionality works, using Load test.RunBasicScenario_Load(); } // Validates calling via reflection works, using Unsafe.Read test.RunReflectionScenario_UnsafeRead(); if (AdvSimd.IsSupported) { // Validates calling via reflection works, using Load test.RunReflectionScenario_Load(); } // Validates passing a static member works test.RunClsVarScenario(); if (AdvSimd.IsSupported) { // Validates passing a static member works, using pinning and Load test.RunClsVarScenario_Load(); } // Validates passing a local works, using Unsafe.Read test.RunLclVarScenario_UnsafeRead(); if (AdvSimd.IsSupported) { // Validates passing a local works, using Load test.RunLclVarScenario_Load(); } // Validates passing the field of a local class works test.RunClassLclFldScenario(); if (AdvSimd.IsSupported) { // Validates passing the field of a local class works, using pinning and Load test.RunClassLclFldScenario_Load(); } // Validates passing an instance member of a class works test.RunClassFldScenario(); if (AdvSimd.IsSupported) { // Validates passing an instance member of a class works, using pinning and Load test.RunClassFldScenario_Load(); } // Validates passing the field of a local struct works test.RunStructLclFldScenario(); if (AdvSimd.IsSupported) { // Validates passing the field of a local struct works, using pinning and Load test.RunStructLclFldScenario_Load(); } // Validates passing an instance member of a struct works test.RunStructFldScenario(); if (AdvSimd.IsSupported) { // Validates passing an instance member of a struct works, using pinning and Load test.RunStructFldScenario_Load(); } } else { // Validates we throw on unsupported hardware test.RunUnsupportedScenario(); } if (!test.Succeeded) { throw new Exception("One or more scenarios did not complete as expected."); } } } public sealed unsafe class SimpleBinaryOpTest__AddSaturate_Vector128_UInt64_Vector128_Int64 { private struct DataTable { private byte[] inArray1; private byte[] inArray2; private byte[] outArray; private GCHandle inHandle1; private GCHandle inHandle2; private GCHandle outHandle; private ulong alignment; public DataTable(UInt64[] inArray1, Int64[] inArray2, UInt64[] outArray, int alignment) { int sizeOfinArray1 = inArray1.Length * Unsafe.SizeOf<UInt64>(); int sizeOfinArray2 = inArray2.Length * Unsafe.SizeOf<Int64>(); int sizeOfoutArray = outArray.Length * Unsafe.SizeOf<UInt64>(); if ((alignment != 16 && alignment != 8) || (alignment * 2) < sizeOfinArray1 || (alignment * 2) < sizeOfinArray2 || (alignment * 2) < sizeOfoutArray) { throw new ArgumentException("Invalid value of alignment"); } this.inArray1 = new byte[alignment * 2]; this.inArray2 = new byte[alignment * 2]; this.outArray = new byte[alignment * 2]; this.inHandle1 = GCHandle.Alloc(this.inArray1, GCHandleType.Pinned); this.inHandle2 = GCHandle.Alloc(this.inArray2, GCHandleType.Pinned); this.outHandle = GCHandle.Alloc(this.outArray, GCHandleType.Pinned); this.alignment = (ulong)alignment; Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray1Ptr), ref Unsafe.As<UInt64, byte>(ref inArray1[0]), (uint)sizeOfinArray1); Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray2Ptr), ref Unsafe.As<Int64, byte>(ref inArray2[0]), (uint)sizeOfinArray2); } public void* inArray1Ptr => Align((byte*)(inHandle1.AddrOfPinnedObject().ToPointer()), alignment); public void* inArray2Ptr => Align((byte*)(inHandle2.AddrOfPinnedObject().ToPointer()), alignment); public void* outArrayPtr => Align((byte*)(outHandle.AddrOfPinnedObject().ToPointer()), alignment); public void Dispose() { inHandle1.Free(); inHandle2.Free(); outHandle.Free(); } private static unsafe void* Align(byte* buffer, ulong expectedAlignment) { return (void*)(((ulong)buffer + expectedAlignment - 1) & ~(expectedAlignment - 1)); } } private struct TestStruct { public Vector128<UInt64> _fld1; public Vector128<Int64> _fld2; public static TestStruct Create() { var testStruct = new TestStruct(); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref testStruct._fld1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int64>, byte>(ref testStruct._fld2), ref Unsafe.As<Int64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Int64>>()); return testStruct; } public void RunStructFldScenario(SimpleBinaryOpTest__AddSaturate_Vector128_UInt64_Vector128_Int64 testClass) { var result = AdvSimd.Arm64.AddSaturate(_fld1, _fld2); Unsafe.Write(testClass._dataTable.outArrayPtr, result); testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr); } public void RunStructFldScenario_Load(SimpleBinaryOpTest__AddSaturate_Vector128_UInt64_Vector128_Int64 testClass) { fixed (Vector128<UInt64>* pFld1 = &_fld1) fixed (Vector128<Int64>* pFld2 = &_fld2) { var result = AdvSimd.Arm64.AddSaturate( AdvSimd.LoadVector128((UInt64*)(pFld1)), AdvSimd.LoadVector128((Int64*)(pFld2)) ); Unsafe.Write(testClass._dataTable.outArrayPtr, result); testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr); } } } private static readonly int LargestVectorSize = 16; private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector128<UInt64>>() / sizeof(UInt64); private static readonly int Op2ElementCount = Unsafe.SizeOf<Vector128<Int64>>() / sizeof(Int64); private static readonly int RetElementCount = Unsafe.SizeOf<Vector128<UInt64>>() / sizeof(UInt64); private static UInt64[] _data1 = new UInt64[Op1ElementCount]; private static Int64[] _data2 = new Int64[Op2ElementCount]; private static Vector128<UInt64> _clsVar1; private static Vector128<Int64> _clsVar2; private Vector128<UInt64> _fld1; private Vector128<Int64> _fld2; private DataTable _dataTable; static SimpleBinaryOpTest__AddSaturate_Vector128_UInt64_Vector128_Int64() { for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _clsVar1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int64>, byte>(ref _clsVar2), ref Unsafe.As<Int64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Int64>>()); } public SimpleBinaryOpTest__AddSaturate_Vector128_UInt64_Vector128_Int64() { Succeeded = true; for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _fld1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int64>, byte>(ref _fld2), ref Unsafe.As<Int64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Int64>>()); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt64(); } _dataTable = new DataTable(_data1, _data2, new UInt64[RetElementCount], LargestVectorSize); } public bool IsSupported => AdvSimd.Arm64.IsSupported; public bool Succeeded { get; set; } public void RunBasicScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead)); var result = AdvSimd.Arm64.AddSaturate( Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr), Unsafe.Read<Vector128<Int64>>(_dataTable.inArray2Ptr) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunBasicScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_Load)); var result = AdvSimd.Arm64.AddSaturate( AdvSimd.LoadVector128((UInt64*)(_dataTable.inArray1Ptr)), AdvSimd.LoadVector128((Int64*)(_dataTable.inArray2Ptr)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead)); var result = typeof(AdvSimd.Arm64).GetMethod(nameof(AdvSimd.Arm64.AddSaturate), new Type[] { typeof(Vector128<UInt64>), typeof(Vector128<Int64>) }) .Invoke(null, new object[] { Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr), Unsafe.Read<Vector128<Int64>>(_dataTable.inArray2Ptr) }); Unsafe.Write(_dataTable.outArrayPtr, (Vector128<UInt64>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_Load)); var result = typeof(AdvSimd.Arm64).GetMethod(nameof(AdvSimd.Arm64.AddSaturate), new Type[] { typeof(Vector128<UInt64>), typeof(Vector128<Int64>) }) .Invoke(null, new object[] { AdvSimd.LoadVector128((UInt64*)(_dataTable.inArray1Ptr)), AdvSimd.LoadVector128((Int64*)(_dataTable.inArray2Ptr)) }); Unsafe.Write(_dataTable.outArrayPtr, (Vector128<UInt64>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunClsVarScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario)); var result = AdvSimd.Arm64.AddSaturate( _clsVar1, _clsVar2 ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_clsVar1, _clsVar2, _dataTable.outArrayPtr); } public void RunClsVarScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario_Load)); fixed (Vector128<UInt64>* pClsVar1 = &_clsVar1) fixed (Vector128<Int64>* pClsVar2 = &_clsVar2) { var result = AdvSimd.Arm64.AddSaturate( AdvSimd.LoadVector128((UInt64*)(pClsVar1)), AdvSimd.LoadVector128((Int64*)(pClsVar2)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_clsVar1, _clsVar2, _dataTable.outArrayPtr); } } public void RunLclVarScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead)); var op1 = Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr); var op2 = Unsafe.Read<Vector128<Int64>>(_dataTable.inArray2Ptr); var result = AdvSimd.Arm64.AddSaturate(op1, op2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(op1, op2, _dataTable.outArrayPtr); } public void RunLclVarScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_Load)); var op1 = AdvSimd.LoadVector128((UInt64*)(_dataTable.inArray1Ptr)); var op2 = AdvSimd.LoadVector128((Int64*)(_dataTable.inArray2Ptr)); var result = AdvSimd.Arm64.AddSaturate(op1, op2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(op1, op2, _dataTable.outArrayPtr); } public void RunClassLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario)); var test = new SimpleBinaryOpTest__AddSaturate_Vector128_UInt64_Vector128_Int64(); var result = AdvSimd.Arm64.AddSaturate(test._fld1, test._fld2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } public void RunClassLclFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario_Load)); var test = new SimpleBinaryOpTest__AddSaturate_Vector128_UInt64_Vector128_Int64(); fixed (Vector128<UInt64>* pFld1 = &test._fld1) fixed (Vector128<Int64>* pFld2 = &test._fld2) { var result = AdvSimd.Arm64.AddSaturate( AdvSimd.LoadVector128((UInt64*)(pFld1)), AdvSimd.LoadVector128((Int64*)(pFld2)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } } public void RunClassFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario)); var result = AdvSimd.Arm64.AddSaturate(_fld1, _fld2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_fld1, _fld2, _dataTable.outArrayPtr); } public void RunClassFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario_Load)); fixed (Vector128<UInt64>* pFld1 = &_fld1) fixed (Vector128<Int64>* pFld2 = &_fld2) { var result = AdvSimd.Arm64.AddSaturate( AdvSimd.LoadVector128((UInt64*)(pFld1)), AdvSimd.LoadVector128((Int64*)(pFld2)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_fld1, _fld2, _dataTable.outArrayPtr); } } public void RunStructLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario)); var test = TestStruct.Create(); var result = AdvSimd.Arm64.AddSaturate(test._fld1, test._fld2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } public void RunStructLclFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario_Load)); var test = TestStruct.Create(); var result = AdvSimd.Arm64.AddSaturate( AdvSimd.LoadVector128((UInt64*)(&test._fld1)), AdvSimd.LoadVector128((Int64*)(&test._fld2)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } public void RunStructFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario)); var test = TestStruct.Create(); test.RunStructFldScenario(this); } public void RunStructFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario_Load)); var test = TestStruct.Create(); test.RunStructFldScenario_Load(this); } public void RunUnsupportedScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunUnsupportedScenario)); bool succeeded = false; try { RunBasicScenario_UnsafeRead(); } catch (PlatformNotSupportedException) { succeeded = true; } if (!succeeded) { Succeeded = false; } } private void ValidateResult(Vector128<UInt64> op1, Vector128<Int64> op2, void* result, [CallerMemberName] string method = "") { UInt64[] inArray1 = new UInt64[Op1ElementCount]; Int64[] inArray2 = new Int64[Op2ElementCount]; UInt64[] outArray = new UInt64[RetElementCount]; Unsafe.WriteUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray1[0]), op1); Unsafe.WriteUnaligned(ref Unsafe.As<Int64, byte>(ref inArray2[0]), op2); Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); ValidateResult(inArray1, inArray2, outArray, method); } private void ValidateResult(void* op1, void* op2, void* result, [CallerMemberName] string method = "") { UInt64[] inArray1 = new UInt64[Op1ElementCount]; Int64[] inArray2 = new Int64[Op2ElementCount]; UInt64[] outArray = new UInt64[RetElementCount]; Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(op1), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int64, byte>(ref inArray2[0]), ref Unsafe.AsRef<byte>(op2), (uint)Unsafe.SizeOf<Vector128<Int64>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); ValidateResult(inArray1, inArray2, outArray, method); } private void ValidateResult(UInt64[] left, Int64[] right, UInt64[] result, [CallerMemberName] string method = "") { bool succeeded = true; for (var i = 0; i < RetElementCount; i++) { if (Helpers.AddSaturate(left[i], right[i]) != result[i]) { succeeded = false; break; } } if (!succeeded) { TestLibrary.TestFramework.LogInformation($"{nameof(AdvSimd.Arm64)}.{nameof(AdvSimd.Arm64.AddSaturate)}<UInt64>(Vector128<UInt64>, Vector128<Int64>): {method} failed:"); TestLibrary.TestFramework.LogInformation($" left: ({string.Join(", ", left)})"); TestLibrary.TestFramework.LogInformation($" right: ({string.Join(", ", right)})"); TestLibrary.TestFramework.LogInformation($" result: ({string.Join(", ", result)})"); TestLibrary.TestFramework.LogInformation(string.Empty); Succeeded = false; } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /****************************************************************************** * This file is auto-generated from a template file by the GenerateTests.csx * * script in tests\src\JIT\HardwareIntrinsics.Arm\Shared. In order to make * * changes, please update the corresponding template and run according to the * * directions listed in the file. * ******************************************************************************/ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Intrinsics; using System.Runtime.Intrinsics.Arm; namespace JIT.HardwareIntrinsics.Arm { public static partial class Program { private static void AddSaturate_Vector128_UInt64_Vector128_Int64() { var test = new SimpleBinaryOpTest__AddSaturate_Vector128_UInt64_Vector128_Int64(); if (test.IsSupported) { // Validates basic functionality works, using Unsafe.Read test.RunBasicScenario_UnsafeRead(); if (AdvSimd.IsSupported) { // Validates basic functionality works, using Load test.RunBasicScenario_Load(); } // Validates calling via reflection works, using Unsafe.Read test.RunReflectionScenario_UnsafeRead(); if (AdvSimd.IsSupported) { // Validates calling via reflection works, using Load test.RunReflectionScenario_Load(); } // Validates passing a static member works test.RunClsVarScenario(); if (AdvSimd.IsSupported) { // Validates passing a static member works, using pinning and Load test.RunClsVarScenario_Load(); } // Validates passing a local works, using Unsafe.Read test.RunLclVarScenario_UnsafeRead(); if (AdvSimd.IsSupported) { // Validates passing a local works, using Load test.RunLclVarScenario_Load(); } // Validates passing the field of a local class works test.RunClassLclFldScenario(); if (AdvSimd.IsSupported) { // Validates passing the field of a local class works, using pinning and Load test.RunClassLclFldScenario_Load(); } // Validates passing an instance member of a class works test.RunClassFldScenario(); if (AdvSimd.IsSupported) { // Validates passing an instance member of a class works, using pinning and Load test.RunClassFldScenario_Load(); } // Validates passing the field of a local struct works test.RunStructLclFldScenario(); if (AdvSimd.IsSupported) { // Validates passing the field of a local struct works, using pinning and Load test.RunStructLclFldScenario_Load(); } // Validates passing an instance member of a struct works test.RunStructFldScenario(); if (AdvSimd.IsSupported) { // Validates passing an instance member of a struct works, using pinning and Load test.RunStructFldScenario_Load(); } } else { // Validates we throw on unsupported hardware test.RunUnsupportedScenario(); } if (!test.Succeeded) { throw new Exception("One or more scenarios did not complete as expected."); } } } public sealed unsafe class SimpleBinaryOpTest__AddSaturate_Vector128_UInt64_Vector128_Int64 { private struct DataTable { private byte[] inArray1; private byte[] inArray2; private byte[] outArray; private GCHandle inHandle1; private GCHandle inHandle2; private GCHandle outHandle; private ulong alignment; public DataTable(UInt64[] inArray1, Int64[] inArray2, UInt64[] outArray, int alignment) { int sizeOfinArray1 = inArray1.Length * Unsafe.SizeOf<UInt64>(); int sizeOfinArray2 = inArray2.Length * Unsafe.SizeOf<Int64>(); int sizeOfoutArray = outArray.Length * Unsafe.SizeOf<UInt64>(); if ((alignment != 16 && alignment != 8) || (alignment * 2) < sizeOfinArray1 || (alignment * 2) < sizeOfinArray2 || (alignment * 2) < sizeOfoutArray) { throw new ArgumentException("Invalid value of alignment"); } this.inArray1 = new byte[alignment * 2]; this.inArray2 = new byte[alignment * 2]; this.outArray = new byte[alignment * 2]; this.inHandle1 = GCHandle.Alloc(this.inArray1, GCHandleType.Pinned); this.inHandle2 = GCHandle.Alloc(this.inArray2, GCHandleType.Pinned); this.outHandle = GCHandle.Alloc(this.outArray, GCHandleType.Pinned); this.alignment = (ulong)alignment; Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray1Ptr), ref Unsafe.As<UInt64, byte>(ref inArray1[0]), (uint)sizeOfinArray1); Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray2Ptr), ref Unsafe.As<Int64, byte>(ref inArray2[0]), (uint)sizeOfinArray2); } public void* inArray1Ptr => Align((byte*)(inHandle1.AddrOfPinnedObject().ToPointer()), alignment); public void* inArray2Ptr => Align((byte*)(inHandle2.AddrOfPinnedObject().ToPointer()), alignment); public void* outArrayPtr => Align((byte*)(outHandle.AddrOfPinnedObject().ToPointer()), alignment); public void Dispose() { inHandle1.Free(); inHandle2.Free(); outHandle.Free(); } private static unsafe void* Align(byte* buffer, ulong expectedAlignment) { return (void*)(((ulong)buffer + expectedAlignment - 1) & ~(expectedAlignment - 1)); } } private struct TestStruct { public Vector128<UInt64> _fld1; public Vector128<Int64> _fld2; public static TestStruct Create() { var testStruct = new TestStruct(); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref testStruct._fld1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int64>, byte>(ref testStruct._fld2), ref Unsafe.As<Int64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Int64>>()); return testStruct; } public void RunStructFldScenario(SimpleBinaryOpTest__AddSaturate_Vector128_UInt64_Vector128_Int64 testClass) { var result = AdvSimd.Arm64.AddSaturate(_fld1, _fld2); Unsafe.Write(testClass._dataTable.outArrayPtr, result); testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr); } public void RunStructFldScenario_Load(SimpleBinaryOpTest__AddSaturate_Vector128_UInt64_Vector128_Int64 testClass) { fixed (Vector128<UInt64>* pFld1 = &_fld1) fixed (Vector128<Int64>* pFld2 = &_fld2) { var result = AdvSimd.Arm64.AddSaturate( AdvSimd.LoadVector128((UInt64*)(pFld1)), AdvSimd.LoadVector128((Int64*)(pFld2)) ); Unsafe.Write(testClass._dataTable.outArrayPtr, result); testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr); } } } private static readonly int LargestVectorSize = 16; private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector128<UInt64>>() / sizeof(UInt64); private static readonly int Op2ElementCount = Unsafe.SizeOf<Vector128<Int64>>() / sizeof(Int64); private static readonly int RetElementCount = Unsafe.SizeOf<Vector128<UInt64>>() / sizeof(UInt64); private static UInt64[] _data1 = new UInt64[Op1ElementCount]; private static Int64[] _data2 = new Int64[Op2ElementCount]; private static Vector128<UInt64> _clsVar1; private static Vector128<Int64> _clsVar2; private Vector128<UInt64> _fld1; private Vector128<Int64> _fld2; private DataTable _dataTable; static SimpleBinaryOpTest__AddSaturate_Vector128_UInt64_Vector128_Int64() { for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _clsVar1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int64>, byte>(ref _clsVar2), ref Unsafe.As<Int64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Int64>>()); } public SimpleBinaryOpTest__AddSaturate_Vector128_UInt64_Vector128_Int64() { Succeeded = true; for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _fld1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Int64>, byte>(ref _fld2), ref Unsafe.As<Int64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Int64>>()); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetInt64(); } _dataTable = new DataTable(_data1, _data2, new UInt64[RetElementCount], LargestVectorSize); } public bool IsSupported => AdvSimd.Arm64.IsSupported; public bool Succeeded { get; set; } public void RunBasicScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead)); var result = AdvSimd.Arm64.AddSaturate( Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr), Unsafe.Read<Vector128<Int64>>(_dataTable.inArray2Ptr) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunBasicScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_Load)); var result = AdvSimd.Arm64.AddSaturate( AdvSimd.LoadVector128((UInt64*)(_dataTable.inArray1Ptr)), AdvSimd.LoadVector128((Int64*)(_dataTable.inArray2Ptr)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead)); var result = typeof(AdvSimd.Arm64).GetMethod(nameof(AdvSimd.Arm64.AddSaturate), new Type[] { typeof(Vector128<UInt64>), typeof(Vector128<Int64>) }) .Invoke(null, new object[] { Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr), Unsafe.Read<Vector128<Int64>>(_dataTable.inArray2Ptr) }); Unsafe.Write(_dataTable.outArrayPtr, (Vector128<UInt64>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_Load)); var result = typeof(AdvSimd.Arm64).GetMethod(nameof(AdvSimd.Arm64.AddSaturate), new Type[] { typeof(Vector128<UInt64>), typeof(Vector128<Int64>) }) .Invoke(null, new object[] { AdvSimd.LoadVector128((UInt64*)(_dataTable.inArray1Ptr)), AdvSimd.LoadVector128((Int64*)(_dataTable.inArray2Ptr)) }); Unsafe.Write(_dataTable.outArrayPtr, (Vector128<UInt64>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunClsVarScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario)); var result = AdvSimd.Arm64.AddSaturate( _clsVar1, _clsVar2 ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_clsVar1, _clsVar2, _dataTable.outArrayPtr); } public void RunClsVarScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario_Load)); fixed (Vector128<UInt64>* pClsVar1 = &_clsVar1) fixed (Vector128<Int64>* pClsVar2 = &_clsVar2) { var result = AdvSimd.Arm64.AddSaturate( AdvSimd.LoadVector128((UInt64*)(pClsVar1)), AdvSimd.LoadVector128((Int64*)(pClsVar2)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_clsVar1, _clsVar2, _dataTable.outArrayPtr); } } public void RunLclVarScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead)); var op1 = Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr); var op2 = Unsafe.Read<Vector128<Int64>>(_dataTable.inArray2Ptr); var result = AdvSimd.Arm64.AddSaturate(op1, op2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(op1, op2, _dataTable.outArrayPtr); } public void RunLclVarScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_Load)); var op1 = AdvSimd.LoadVector128((UInt64*)(_dataTable.inArray1Ptr)); var op2 = AdvSimd.LoadVector128((Int64*)(_dataTable.inArray2Ptr)); var result = AdvSimd.Arm64.AddSaturate(op1, op2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(op1, op2, _dataTable.outArrayPtr); } public void RunClassLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario)); var test = new SimpleBinaryOpTest__AddSaturate_Vector128_UInt64_Vector128_Int64(); var result = AdvSimd.Arm64.AddSaturate(test._fld1, test._fld2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } public void RunClassLclFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario_Load)); var test = new SimpleBinaryOpTest__AddSaturate_Vector128_UInt64_Vector128_Int64(); fixed (Vector128<UInt64>* pFld1 = &test._fld1) fixed (Vector128<Int64>* pFld2 = &test._fld2) { var result = AdvSimd.Arm64.AddSaturate( AdvSimd.LoadVector128((UInt64*)(pFld1)), AdvSimd.LoadVector128((Int64*)(pFld2)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } } public void RunClassFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario)); var result = AdvSimd.Arm64.AddSaturate(_fld1, _fld2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_fld1, _fld2, _dataTable.outArrayPtr); } public void RunClassFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario_Load)); fixed (Vector128<UInt64>* pFld1 = &_fld1) fixed (Vector128<Int64>* pFld2 = &_fld2) { var result = AdvSimd.Arm64.AddSaturate( AdvSimd.LoadVector128((UInt64*)(pFld1)), AdvSimd.LoadVector128((Int64*)(pFld2)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_fld1, _fld2, _dataTable.outArrayPtr); } } public void RunStructLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario)); var test = TestStruct.Create(); var result = AdvSimd.Arm64.AddSaturate(test._fld1, test._fld2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } public void RunStructLclFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario_Load)); var test = TestStruct.Create(); var result = AdvSimd.Arm64.AddSaturate( AdvSimd.LoadVector128((UInt64*)(&test._fld1)), AdvSimd.LoadVector128((Int64*)(&test._fld2)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } public void RunStructFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario)); var test = TestStruct.Create(); test.RunStructFldScenario(this); } public void RunStructFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario_Load)); var test = TestStruct.Create(); test.RunStructFldScenario_Load(this); } public void RunUnsupportedScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunUnsupportedScenario)); bool succeeded = false; try { RunBasicScenario_UnsafeRead(); } catch (PlatformNotSupportedException) { succeeded = true; } if (!succeeded) { Succeeded = false; } } private void ValidateResult(Vector128<UInt64> op1, Vector128<Int64> op2, void* result, [CallerMemberName] string method = "") { UInt64[] inArray1 = new UInt64[Op1ElementCount]; Int64[] inArray2 = new Int64[Op2ElementCount]; UInt64[] outArray = new UInt64[RetElementCount]; Unsafe.WriteUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray1[0]), op1); Unsafe.WriteUnaligned(ref Unsafe.As<Int64, byte>(ref inArray2[0]), op2); Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); ValidateResult(inArray1, inArray2, outArray, method); } private void ValidateResult(void* op1, void* op2, void* result, [CallerMemberName] string method = "") { UInt64[] inArray1 = new UInt64[Op1ElementCount]; Int64[] inArray2 = new Int64[Op2ElementCount]; UInt64[] outArray = new UInt64[RetElementCount]; Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(op1), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Int64, byte>(ref inArray2[0]), ref Unsafe.AsRef<byte>(op2), (uint)Unsafe.SizeOf<Vector128<Int64>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); ValidateResult(inArray1, inArray2, outArray, method); } private void ValidateResult(UInt64[] left, Int64[] right, UInt64[] result, [CallerMemberName] string method = "") { bool succeeded = true; for (var i = 0; i < RetElementCount; i++) { if (Helpers.AddSaturate(left[i], right[i]) != result[i]) { succeeded = false; break; } } if (!succeeded) { TestLibrary.TestFramework.LogInformation($"{nameof(AdvSimd.Arm64)}.{nameof(AdvSimd.Arm64.AddSaturate)}<UInt64>(Vector128<UInt64>, Vector128<Int64>): {method} failed:"); TestLibrary.TestFramework.LogInformation($" left: ({string.Join(", ", left)})"); TestLibrary.TestFramework.LogInformation($" right: ({string.Join(", ", right)})"); TestLibrary.TestFramework.LogInformation($" result: ({string.Join(", ", result)})"); TestLibrary.TestFramework.LogInformation(string.Empty); Succeeded = false; } } } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/HardwareIntrinsics/Arm/AdvSimd/AbsScalar.Vector64.Double.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /****************************************************************************** * This file is auto-generated from a template file by the GenerateTests.csx * * script in tests\src\JIT\HardwareIntrinsics.Arm\Shared. In order to make * * changes, please update the corresponding template and run according to the * * directions listed in the file. * ******************************************************************************/ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Intrinsics; using System.Runtime.Intrinsics.Arm; namespace JIT.HardwareIntrinsics.Arm { public static partial class Program { private static void AbsScalar_Vector64_Double() { var test = new SimpleUnaryOpTest__AbsScalar_Vector64_Double(); if (test.IsSupported) { // Validates basic functionality works, using Unsafe.Read test.RunBasicScenario_UnsafeRead(); if (AdvSimd.IsSupported) { // Validates basic functionality works, using Load test.RunBasicScenario_Load(); } // Validates calling via reflection works, using Unsafe.Read test.RunReflectionScenario_UnsafeRead(); if (AdvSimd.IsSupported) { // Validates calling via reflection works, using Load test.RunReflectionScenario_Load(); } // Validates passing a static member works test.RunClsVarScenario(); if (AdvSimd.IsSupported) { // Validates passing a static member works, using pinning and Load test.RunClsVarScenario_Load(); } // Validates passing a local works, using Unsafe.Read test.RunLclVarScenario_UnsafeRead(); if (AdvSimd.IsSupported) { // Validates passing a local works, using Load test.RunLclVarScenario_Load(); } // Validates passing the field of a local class works test.RunClassLclFldScenario(); if (AdvSimd.IsSupported) { // Validates passing the field of a local class works, using pinning and Load test.RunClassLclFldScenario_Load(); } // Validates passing an instance member of a class works test.RunClassFldScenario(); if (AdvSimd.IsSupported) { // Validates passing an instance member of a class works, using pinning and Load test.RunClassFldScenario_Load(); } // Validates passing the field of a local struct works test.RunStructLclFldScenario(); if (AdvSimd.IsSupported) { // Validates passing the field of a local struct works, using pinning and Load test.RunStructLclFldScenario_Load(); } // Validates passing an instance member of a struct works test.RunStructFldScenario(); if (AdvSimd.IsSupported) { // Validates passing an instance member of a struct works, using pinning and Load test.RunStructFldScenario_Load(); } } else { // Validates we throw on unsupported hardware test.RunUnsupportedScenario(); } if (!test.Succeeded) { throw new Exception("One or more scenarios did not complete as expected."); } } } public sealed unsafe class SimpleUnaryOpTest__AbsScalar_Vector64_Double { private struct DataTable { private byte[] inArray1; private byte[] outArray; private GCHandle inHandle1; private GCHandle outHandle; private ulong alignment; public DataTable(Double[] inArray1, Double[] outArray, int alignment) { int sizeOfinArray1 = inArray1.Length * Unsafe.SizeOf<Double>(); int sizeOfoutArray = outArray.Length * Unsafe.SizeOf<Double>(); if ((alignment != 16 && alignment != 8) || (alignment * 2) < sizeOfinArray1 || (alignment * 2) < sizeOfoutArray) { throw new ArgumentException("Invalid value of alignment"); } this.inArray1 = new byte[alignment * 2]; this.outArray = new byte[alignment * 2]; this.inHandle1 = GCHandle.Alloc(this.inArray1, GCHandleType.Pinned); this.outHandle = GCHandle.Alloc(this.outArray, GCHandleType.Pinned); this.alignment = (ulong)alignment; Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray1Ptr), ref Unsafe.As<Double, byte>(ref inArray1[0]), (uint)sizeOfinArray1); } public void* inArray1Ptr => Align((byte*)(inHandle1.AddrOfPinnedObject().ToPointer()), alignment); public void* outArrayPtr => Align((byte*)(outHandle.AddrOfPinnedObject().ToPointer()), alignment); public void Dispose() { inHandle1.Free(); outHandle.Free(); } private static unsafe void* Align(byte* buffer, ulong expectedAlignment) { return (void*)(((ulong)buffer + expectedAlignment - 1) & ~(expectedAlignment - 1)); } } private struct TestStruct { public Vector64<Double> _fld1; public static TestStruct Create() { var testStruct = new TestStruct(); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = -TestLibrary.Generator.GetDouble(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Double>, byte>(ref testStruct._fld1), ref Unsafe.As<Double, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector64<Double>>()); return testStruct; } public void RunStructFldScenario(SimpleUnaryOpTest__AbsScalar_Vector64_Double testClass) { var result = AdvSimd.AbsScalar(_fld1); Unsafe.Write(testClass._dataTable.outArrayPtr, result); testClass.ValidateResult(_fld1, testClass._dataTable.outArrayPtr); } public void RunStructFldScenario_Load(SimpleUnaryOpTest__AbsScalar_Vector64_Double testClass) { fixed (Vector64<Double>* pFld1 = &_fld1) { var result = AdvSimd.AbsScalar( AdvSimd.LoadVector64((Double*)(pFld1)) ); Unsafe.Write(testClass._dataTable.outArrayPtr, result); testClass.ValidateResult(_fld1, testClass._dataTable.outArrayPtr); } } } private static readonly int LargestVectorSize = 8; private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector64<Double>>() / sizeof(Double); private static readonly int RetElementCount = Unsafe.SizeOf<Vector64<Double>>() / sizeof(Double); private static Double[] _data1 = new Double[Op1ElementCount]; private static Vector64<Double> _clsVar1; private Vector64<Double> _fld1; private DataTable _dataTable; static SimpleUnaryOpTest__AbsScalar_Vector64_Double() { for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = -TestLibrary.Generator.GetDouble(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Double>, byte>(ref _clsVar1), ref Unsafe.As<Double, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector64<Double>>()); } public SimpleUnaryOpTest__AbsScalar_Vector64_Double() { Succeeded = true; for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = -TestLibrary.Generator.GetDouble(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Double>, byte>(ref _fld1), ref Unsafe.As<Double, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector64<Double>>()); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = -TestLibrary.Generator.GetDouble(); } _dataTable = new DataTable(_data1, new Double[RetElementCount], LargestVectorSize); } public bool IsSupported => AdvSimd.IsSupported; public bool Succeeded { get; set; } public void RunBasicScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead)); var result = AdvSimd.AbsScalar( Unsafe.Read<Vector64<Double>>(_dataTable.inArray1Ptr) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.outArrayPtr); } public void RunBasicScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_Load)); var result = AdvSimd.AbsScalar( AdvSimd.LoadVector64((Double*)(_dataTable.inArray1Ptr)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead)); var result = typeof(AdvSimd).GetMethod(nameof(AdvSimd.AbsScalar), new Type[] { typeof(Vector64<Double>) }) .Invoke(null, new object[] { Unsafe.Read<Vector64<Double>>(_dataTable.inArray1Ptr) }); Unsafe.Write(_dataTable.outArrayPtr, (Vector64<Double>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_Load)); var result = typeof(AdvSimd).GetMethod(nameof(AdvSimd.AbsScalar), new Type[] { typeof(Vector64<Double>) }) .Invoke(null, new object[] { AdvSimd.LoadVector64((Double*)(_dataTable.inArray1Ptr)) }); Unsafe.Write(_dataTable.outArrayPtr, (Vector64<Double>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.outArrayPtr); } public void RunClsVarScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario)); var result = AdvSimd.AbsScalar( _clsVar1 ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_clsVar1, _dataTable.outArrayPtr); } public void RunClsVarScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario_Load)); fixed (Vector64<Double>* pClsVar1 = &_clsVar1) { var result = AdvSimd.AbsScalar( AdvSimd.LoadVector64((Double*)(pClsVar1)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_clsVar1, _dataTable.outArrayPtr); } } public void RunLclVarScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead)); var op1 = Unsafe.Read<Vector64<Double>>(_dataTable.inArray1Ptr); var result = AdvSimd.AbsScalar(op1); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(op1, _dataTable.outArrayPtr); } public void RunLclVarScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_Load)); var op1 = AdvSimd.LoadVector64((Double*)(_dataTable.inArray1Ptr)); var result = AdvSimd.AbsScalar(op1); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(op1, _dataTable.outArrayPtr); } public void RunClassLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario)); var test = new SimpleUnaryOpTest__AbsScalar_Vector64_Double(); var result = AdvSimd.AbsScalar(test._fld1); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, _dataTable.outArrayPtr); } public void RunClassLclFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario_Load)); var test = new SimpleUnaryOpTest__AbsScalar_Vector64_Double(); fixed (Vector64<Double>* pFld1 = &test._fld1) { var result = AdvSimd.AbsScalar( AdvSimd.LoadVector64((Double*)(pFld1)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, _dataTable.outArrayPtr); } } public void RunClassFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario)); var result = AdvSimd.AbsScalar(_fld1); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_fld1, _dataTable.outArrayPtr); } public void RunClassFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario_Load)); fixed (Vector64<Double>* pFld1 = &_fld1) { var result = AdvSimd.AbsScalar( AdvSimd.LoadVector64((Double*)(pFld1)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_fld1, _dataTable.outArrayPtr); } } public void RunStructLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario)); var test = TestStruct.Create(); var result = AdvSimd.AbsScalar(test._fld1); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, _dataTable.outArrayPtr); } public void RunStructLclFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario_Load)); var test = TestStruct.Create(); var result = AdvSimd.AbsScalar( AdvSimd.LoadVector64((Double*)(&test._fld1)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, _dataTable.outArrayPtr); } public void RunStructFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario)); var test = TestStruct.Create(); test.RunStructFldScenario(this); } public void RunStructFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario_Load)); var test = TestStruct.Create(); test.RunStructFldScenario_Load(this); } public void RunUnsupportedScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunUnsupportedScenario)); bool succeeded = false; try { RunBasicScenario_UnsafeRead(); } catch (PlatformNotSupportedException) { succeeded = true; } if (!succeeded) { Succeeded = false; } } private void ValidateResult(Vector64<Double> op1, void* result, [CallerMemberName] string method = "") { Double[] inArray1 = new Double[Op1ElementCount]; Double[] outArray = new Double[RetElementCount]; Unsafe.WriteUnaligned(ref Unsafe.As<Double, byte>(ref inArray1[0]), op1); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Double, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector64<Double>>()); ValidateResult(inArray1, outArray, method); } private void ValidateResult(void* op1, void* result, [CallerMemberName] string method = "") { Double[] inArray1 = new Double[Op1ElementCount]; Double[] outArray = new Double[RetElementCount]; Unsafe.CopyBlockUnaligned(ref Unsafe.As<Double, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(op1), (uint)Unsafe.SizeOf<Vector64<Double>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Double, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector64<Double>>()); ValidateResult(inArray1, outArray, method); } private void ValidateResult(Double[] firstOp, Double[] result, [CallerMemberName] string method = "") { bool succeeded = true; if (BitConverter.DoubleToInt64Bits(Helpers.Abs(firstOp[0])) != BitConverter.DoubleToInt64Bits(result[0])) { succeeded = false; } else { for (var i = 1; i < RetElementCount; i++) { if (BitConverter.DoubleToInt64Bits(result[i]) != 0) { succeeded = false; break; } } } if (!succeeded) { TestLibrary.TestFramework.LogInformation($"{nameof(AdvSimd)}.{nameof(AdvSimd.AbsScalar)}<Double>(Vector64<Double>): {method} failed:"); TestLibrary.TestFramework.LogInformation($" firstOp: ({string.Join(", ", firstOp)})"); TestLibrary.TestFramework.LogInformation($" result: ({string.Join(", ", result)})"); TestLibrary.TestFramework.LogInformation(string.Empty); Succeeded = false; } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /****************************************************************************** * This file is auto-generated from a template file by the GenerateTests.csx * * script in tests\src\JIT\HardwareIntrinsics.Arm\Shared. In order to make * * changes, please update the corresponding template and run according to the * * directions listed in the file. * ******************************************************************************/ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Intrinsics; using System.Runtime.Intrinsics.Arm; namespace JIT.HardwareIntrinsics.Arm { public static partial class Program { private static void AbsScalar_Vector64_Double() { var test = new SimpleUnaryOpTest__AbsScalar_Vector64_Double(); if (test.IsSupported) { // Validates basic functionality works, using Unsafe.Read test.RunBasicScenario_UnsafeRead(); if (AdvSimd.IsSupported) { // Validates basic functionality works, using Load test.RunBasicScenario_Load(); } // Validates calling via reflection works, using Unsafe.Read test.RunReflectionScenario_UnsafeRead(); if (AdvSimd.IsSupported) { // Validates calling via reflection works, using Load test.RunReflectionScenario_Load(); } // Validates passing a static member works test.RunClsVarScenario(); if (AdvSimd.IsSupported) { // Validates passing a static member works, using pinning and Load test.RunClsVarScenario_Load(); } // Validates passing a local works, using Unsafe.Read test.RunLclVarScenario_UnsafeRead(); if (AdvSimd.IsSupported) { // Validates passing a local works, using Load test.RunLclVarScenario_Load(); } // Validates passing the field of a local class works test.RunClassLclFldScenario(); if (AdvSimd.IsSupported) { // Validates passing the field of a local class works, using pinning and Load test.RunClassLclFldScenario_Load(); } // Validates passing an instance member of a class works test.RunClassFldScenario(); if (AdvSimd.IsSupported) { // Validates passing an instance member of a class works, using pinning and Load test.RunClassFldScenario_Load(); } // Validates passing the field of a local struct works test.RunStructLclFldScenario(); if (AdvSimd.IsSupported) { // Validates passing the field of a local struct works, using pinning and Load test.RunStructLclFldScenario_Load(); } // Validates passing an instance member of a struct works test.RunStructFldScenario(); if (AdvSimd.IsSupported) { // Validates passing an instance member of a struct works, using pinning and Load test.RunStructFldScenario_Load(); } } else { // Validates we throw on unsupported hardware test.RunUnsupportedScenario(); } if (!test.Succeeded) { throw new Exception("One or more scenarios did not complete as expected."); } } } public sealed unsafe class SimpleUnaryOpTest__AbsScalar_Vector64_Double { private struct DataTable { private byte[] inArray1; private byte[] outArray; private GCHandle inHandle1; private GCHandle outHandle; private ulong alignment; public DataTable(Double[] inArray1, Double[] outArray, int alignment) { int sizeOfinArray1 = inArray1.Length * Unsafe.SizeOf<Double>(); int sizeOfoutArray = outArray.Length * Unsafe.SizeOf<Double>(); if ((alignment != 16 && alignment != 8) || (alignment * 2) < sizeOfinArray1 || (alignment * 2) < sizeOfoutArray) { throw new ArgumentException("Invalid value of alignment"); } this.inArray1 = new byte[alignment * 2]; this.outArray = new byte[alignment * 2]; this.inHandle1 = GCHandle.Alloc(this.inArray1, GCHandleType.Pinned); this.outHandle = GCHandle.Alloc(this.outArray, GCHandleType.Pinned); this.alignment = (ulong)alignment; Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray1Ptr), ref Unsafe.As<Double, byte>(ref inArray1[0]), (uint)sizeOfinArray1); } public void* inArray1Ptr => Align((byte*)(inHandle1.AddrOfPinnedObject().ToPointer()), alignment); public void* outArrayPtr => Align((byte*)(outHandle.AddrOfPinnedObject().ToPointer()), alignment); public void Dispose() { inHandle1.Free(); outHandle.Free(); } private static unsafe void* Align(byte* buffer, ulong expectedAlignment) { return (void*)(((ulong)buffer + expectedAlignment - 1) & ~(expectedAlignment - 1)); } } private struct TestStruct { public Vector64<Double> _fld1; public static TestStruct Create() { var testStruct = new TestStruct(); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = -TestLibrary.Generator.GetDouble(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Double>, byte>(ref testStruct._fld1), ref Unsafe.As<Double, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector64<Double>>()); return testStruct; } public void RunStructFldScenario(SimpleUnaryOpTest__AbsScalar_Vector64_Double testClass) { var result = AdvSimd.AbsScalar(_fld1); Unsafe.Write(testClass._dataTable.outArrayPtr, result); testClass.ValidateResult(_fld1, testClass._dataTable.outArrayPtr); } public void RunStructFldScenario_Load(SimpleUnaryOpTest__AbsScalar_Vector64_Double testClass) { fixed (Vector64<Double>* pFld1 = &_fld1) { var result = AdvSimd.AbsScalar( AdvSimd.LoadVector64((Double*)(pFld1)) ); Unsafe.Write(testClass._dataTable.outArrayPtr, result); testClass.ValidateResult(_fld1, testClass._dataTable.outArrayPtr); } } } private static readonly int LargestVectorSize = 8; private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector64<Double>>() / sizeof(Double); private static readonly int RetElementCount = Unsafe.SizeOf<Vector64<Double>>() / sizeof(Double); private static Double[] _data1 = new Double[Op1ElementCount]; private static Vector64<Double> _clsVar1; private Vector64<Double> _fld1; private DataTable _dataTable; static SimpleUnaryOpTest__AbsScalar_Vector64_Double() { for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = -TestLibrary.Generator.GetDouble(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Double>, byte>(ref _clsVar1), ref Unsafe.As<Double, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector64<Double>>()); } public SimpleUnaryOpTest__AbsScalar_Vector64_Double() { Succeeded = true; for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = -TestLibrary.Generator.GetDouble(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector64<Double>, byte>(ref _fld1), ref Unsafe.As<Double, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector64<Double>>()); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = -TestLibrary.Generator.GetDouble(); } _dataTable = new DataTable(_data1, new Double[RetElementCount], LargestVectorSize); } public bool IsSupported => AdvSimd.IsSupported; public bool Succeeded { get; set; } public void RunBasicScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead)); var result = AdvSimd.AbsScalar( Unsafe.Read<Vector64<Double>>(_dataTable.inArray1Ptr) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.outArrayPtr); } public void RunBasicScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_Load)); var result = AdvSimd.AbsScalar( AdvSimd.LoadVector64((Double*)(_dataTable.inArray1Ptr)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead)); var result = typeof(AdvSimd).GetMethod(nameof(AdvSimd.AbsScalar), new Type[] { typeof(Vector64<Double>) }) .Invoke(null, new object[] { Unsafe.Read<Vector64<Double>>(_dataTable.inArray1Ptr) }); Unsafe.Write(_dataTable.outArrayPtr, (Vector64<Double>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_Load)); var result = typeof(AdvSimd).GetMethod(nameof(AdvSimd.AbsScalar), new Type[] { typeof(Vector64<Double>) }) .Invoke(null, new object[] { AdvSimd.LoadVector64((Double*)(_dataTable.inArray1Ptr)) }); Unsafe.Write(_dataTable.outArrayPtr, (Vector64<Double>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.outArrayPtr); } public void RunClsVarScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario)); var result = AdvSimd.AbsScalar( _clsVar1 ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_clsVar1, _dataTable.outArrayPtr); } public void RunClsVarScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario_Load)); fixed (Vector64<Double>* pClsVar1 = &_clsVar1) { var result = AdvSimd.AbsScalar( AdvSimd.LoadVector64((Double*)(pClsVar1)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_clsVar1, _dataTable.outArrayPtr); } } public void RunLclVarScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead)); var op1 = Unsafe.Read<Vector64<Double>>(_dataTable.inArray1Ptr); var result = AdvSimd.AbsScalar(op1); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(op1, _dataTable.outArrayPtr); } public void RunLclVarScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_Load)); var op1 = AdvSimd.LoadVector64((Double*)(_dataTable.inArray1Ptr)); var result = AdvSimd.AbsScalar(op1); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(op1, _dataTable.outArrayPtr); } public void RunClassLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario)); var test = new SimpleUnaryOpTest__AbsScalar_Vector64_Double(); var result = AdvSimd.AbsScalar(test._fld1); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, _dataTable.outArrayPtr); } public void RunClassLclFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario_Load)); var test = new SimpleUnaryOpTest__AbsScalar_Vector64_Double(); fixed (Vector64<Double>* pFld1 = &test._fld1) { var result = AdvSimd.AbsScalar( AdvSimd.LoadVector64((Double*)(pFld1)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, _dataTable.outArrayPtr); } } public void RunClassFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario)); var result = AdvSimd.AbsScalar(_fld1); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_fld1, _dataTable.outArrayPtr); } public void RunClassFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario_Load)); fixed (Vector64<Double>* pFld1 = &_fld1) { var result = AdvSimd.AbsScalar( AdvSimd.LoadVector64((Double*)(pFld1)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_fld1, _dataTable.outArrayPtr); } } public void RunStructLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario)); var test = TestStruct.Create(); var result = AdvSimd.AbsScalar(test._fld1); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, _dataTable.outArrayPtr); } public void RunStructLclFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario_Load)); var test = TestStruct.Create(); var result = AdvSimd.AbsScalar( AdvSimd.LoadVector64((Double*)(&test._fld1)) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, _dataTable.outArrayPtr); } public void RunStructFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario)); var test = TestStruct.Create(); test.RunStructFldScenario(this); } public void RunStructFldScenario_Load() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario_Load)); var test = TestStruct.Create(); test.RunStructFldScenario_Load(this); } public void RunUnsupportedScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunUnsupportedScenario)); bool succeeded = false; try { RunBasicScenario_UnsafeRead(); } catch (PlatformNotSupportedException) { succeeded = true; } if (!succeeded) { Succeeded = false; } } private void ValidateResult(Vector64<Double> op1, void* result, [CallerMemberName] string method = "") { Double[] inArray1 = new Double[Op1ElementCount]; Double[] outArray = new Double[RetElementCount]; Unsafe.WriteUnaligned(ref Unsafe.As<Double, byte>(ref inArray1[0]), op1); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Double, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector64<Double>>()); ValidateResult(inArray1, outArray, method); } private void ValidateResult(void* op1, void* result, [CallerMemberName] string method = "") { Double[] inArray1 = new Double[Op1ElementCount]; Double[] outArray = new Double[RetElementCount]; Unsafe.CopyBlockUnaligned(ref Unsafe.As<Double, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(op1), (uint)Unsafe.SizeOf<Vector64<Double>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Double, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector64<Double>>()); ValidateResult(inArray1, outArray, method); } private void ValidateResult(Double[] firstOp, Double[] result, [CallerMemberName] string method = "") { bool succeeded = true; if (BitConverter.DoubleToInt64Bits(Helpers.Abs(firstOp[0])) != BitConverter.DoubleToInt64Bits(result[0])) { succeeded = false; } else { for (var i = 1; i < RetElementCount; i++) { if (BitConverter.DoubleToInt64Bits(result[i]) != 0) { succeeded = false; break; } } } if (!succeeded) { TestLibrary.TestFramework.LogInformation($"{nameof(AdvSimd)}.{nameof(AdvSimd.AbsScalar)}<Double>(Vector64<Double>): {method} failed:"); TestLibrary.TestFramework.LogInformation($" firstOp: ({string.Join(", ", firstOp)})"); TestLibrary.TestFramework.LogInformation($" result: ({string.Join(", ", result)})"); TestLibrary.TestFramework.LogInformation(string.Empty); Succeeded = false; } } } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/libraries/Common/src/Interop/Windows/WinMm/Interop.waveOutOpen.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Runtime.InteropServices; internal static partial class Interop { internal static partial class WinMM { internal enum MM_MSG { MM_WOM_OPEN = 0x03BB, MM_WOM_CLOSE = 0x03BC, MM_WOM_DONE = 0x03BD } // Flag specifying the use of a callback window for sound messages internal const uint CALLBACK_WINDOW = 0x10000; internal const uint CALLBACK_NULL = 0x00000000; internal const uint CALLBACK_FUNCTION = 0x00030000; internal delegate void WaveOutProc(IntPtr hwo, MM_MSG uMsg, IntPtr dwInstance, IntPtr dwParam1, IntPtr dwParam2); /// <summary> /// This function opens a specified waveform output device for playback. /// </summary> /// <param name="phwo">Address filled with a handle identifying the open /// waveform-audio output device. Use the handle to identify the device /// when calling other waveform-audio output functions. This parameter might /// be NULL if the WAVE_FORMAT_QUERY flag is specified for fdwOpen.</param> /// <param name="uDeviceID">Identifier of the waveform-audio output device to /// open. It can be either a device identifier or a Handle to an open /// waveform-audio input device.</param> /// <param name="pwfx">Pointer to a WaveFormat structure that identifies /// the format of the waveform-audio data to be sent to the device. You can /// free this structure immediately after passing it to waveOutOpen.</param> /// <param name="dwCallback">Specifies the address of a fixed callback function, /// an event handle, a handle to a window, or the identifier of a thread to be /// called during waveform-audio playback to process messages related to the /// progress of the playback. If no callback function is required, this value /// can be zero.</param> /// <param name="dwInstance">Specifies user-instance data passed to the /// callback mechanism. This parameter is not used with the window callback /// mechanism.</param> /// <param name="fdwOpen">Flags for opening the device.</param> /// <returns>MMSYSERR</returns> [GeneratedDllImport(Libraries.WinMM)] internal static partial MMSYSERR waveOutOpen(ref IntPtr phwo, int uDeviceID, byte[] pwfx, WaveOutProc dwCallback, IntPtr dwInstance, uint fdwOpen); } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Runtime.InteropServices; internal static partial class Interop { internal static partial class WinMM { internal enum MM_MSG { MM_WOM_OPEN = 0x03BB, MM_WOM_CLOSE = 0x03BC, MM_WOM_DONE = 0x03BD } // Flag specifying the use of a callback window for sound messages internal const uint CALLBACK_WINDOW = 0x10000; internal const uint CALLBACK_NULL = 0x00000000; internal const uint CALLBACK_FUNCTION = 0x00030000; internal delegate void WaveOutProc(IntPtr hwo, MM_MSG uMsg, IntPtr dwInstance, IntPtr dwParam1, IntPtr dwParam2); /// <summary> /// This function opens a specified waveform output device for playback. /// </summary> /// <param name="phwo">Address filled with a handle identifying the open /// waveform-audio output device. Use the handle to identify the device /// when calling other waveform-audio output functions. This parameter might /// be NULL if the WAVE_FORMAT_QUERY flag is specified for fdwOpen.</param> /// <param name="uDeviceID">Identifier of the waveform-audio output device to /// open. It can be either a device identifier or a Handle to an open /// waveform-audio input device.</param> /// <param name="pwfx">Pointer to a WaveFormat structure that identifies /// the format of the waveform-audio data to be sent to the device. You can /// free this structure immediately after passing it to waveOutOpen.</param> /// <param name="dwCallback">Specifies the address of a fixed callback function, /// an event handle, a handle to a window, or the identifier of a thread to be /// called during waveform-audio playback to process messages related to the /// progress of the playback. If no callback function is required, this value /// can be zero.</param> /// <param name="dwInstance">Specifies user-instance data passed to the /// callback mechanism. This parameter is not used with the window callback /// mechanism.</param> /// <param name="fdwOpen">Flags for opening the device.</param> /// <returns>MMSYSERR</returns> [GeneratedDllImport(Libraries.WinMM)] internal static partial MMSYSERR waveOutOpen(ref IntPtr phwo, int uDeviceID, byte[] pwfx, WaveOutProc dwCallback, IntPtr dwInstance, uint fdwOpen); } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/HardwareIntrinsics/General/Vector128/Equals.Byte.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /****************************************************************************** * This file is auto-generated from a template file by the GenerateTests.csx * * script in tests\src\JIT\HardwareIntrinsics\X86\Shared. In order to make * * changes, please update the corresponding template and run according to the * * directions listed in the file. * ******************************************************************************/ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Intrinsics; namespace JIT.HardwareIntrinsics.General { public static partial class Program { private static void EqualsByte() { var test = new VectorBinaryOpTest__EqualsByte(); // Validates basic functionality works, using Unsafe.Read test.RunBasicScenario_UnsafeRead(); // Validates calling via reflection works, using Unsafe.Read test.RunReflectionScenario_UnsafeRead(); // Validates passing a static member works test.RunClsVarScenario(); // Validates passing a local works, using Unsafe.Read test.RunLclVarScenario_UnsafeRead(); // Validates passing the field of a local class works test.RunClassLclFldScenario(); // Validates passing an instance member of a class works test.RunClassFldScenario(); // Validates passing the field of a local struct works test.RunStructLclFldScenario(); // Validates passing an instance member of a struct works test.RunStructFldScenario(); if (!test.Succeeded) { throw new Exception("One or more scenarios did not complete as expected."); } } } public sealed unsafe class VectorBinaryOpTest__EqualsByte { private struct DataTable { private byte[] inArray1; private byte[] inArray2; private byte[] outArray; private GCHandle inHandle1; private GCHandle inHandle2; private GCHandle outHandle; private ulong alignment; public DataTable(Byte[] inArray1, Byte[] inArray2, Byte[] outArray, int alignment) { int sizeOfinArray1 = inArray1.Length * Unsafe.SizeOf<Byte>(); int sizeOfinArray2 = inArray2.Length * Unsafe.SizeOf<Byte>(); int sizeOfoutArray = outArray.Length * Unsafe.SizeOf<Byte>(); if ((alignment != 32 && alignment != 16 && alignment != 8) || (alignment * 2) < sizeOfinArray1 || (alignment * 2) < sizeOfinArray2 || (alignment * 2) < sizeOfoutArray) { throw new ArgumentException("Invalid value of alignment"); } this.inArray1 = new byte[alignment * 2]; this.inArray2 = new byte[alignment * 2]; this.outArray = new byte[alignment * 2]; this.inHandle1 = GCHandle.Alloc(this.inArray1, GCHandleType.Pinned); this.inHandle2 = GCHandle.Alloc(this.inArray2, GCHandleType.Pinned); this.outHandle = GCHandle.Alloc(this.outArray, GCHandleType.Pinned); this.alignment = (ulong)alignment; Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray1Ptr), ref Unsafe.As<Byte, byte>(ref inArray1[0]), (uint)sizeOfinArray1); Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray2Ptr), ref Unsafe.As<Byte, byte>(ref inArray2[0]), (uint)sizeOfinArray2); } public void* inArray1Ptr => Align((byte*)(inHandle1.AddrOfPinnedObject().ToPointer()), alignment); public void* inArray2Ptr => Align((byte*)(inHandle2.AddrOfPinnedObject().ToPointer()), alignment); public void* outArrayPtr => Align((byte*)(outHandle.AddrOfPinnedObject().ToPointer()), alignment); public void Dispose() { inHandle1.Free(); inHandle2.Free(); outHandle.Free(); } private static unsafe void* Align(byte* buffer, ulong expectedAlignment) { return (void*)(((ulong)buffer + expectedAlignment - 1) & ~(expectedAlignment - 1)); } } private struct TestStruct { public Vector128<Byte> _fld1; public Vector128<Byte> _fld2; public static TestStruct Create() { var testStruct = new TestStruct(); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetByte(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Byte>, byte>(ref testStruct._fld1), ref Unsafe.As<Byte, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Byte>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetByte(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Byte>, byte>(ref testStruct._fld2), ref Unsafe.As<Byte, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Byte>>()); return testStruct; } public void RunStructFldScenario(VectorBinaryOpTest__EqualsByte testClass) { var result = Vector128.Equals(_fld1, _fld2); Unsafe.Write(testClass._dataTable.outArrayPtr, result); testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr); } } private static readonly int LargestVectorSize = 16; private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector128<Byte>>() / sizeof(Byte); private static readonly int Op2ElementCount = Unsafe.SizeOf<Vector128<Byte>>() / sizeof(Byte); private static readonly int RetElementCount = Unsafe.SizeOf<Vector128<Byte>>() / sizeof(Byte); private static Byte[] _data1 = new Byte[Op1ElementCount]; private static Byte[] _data2 = new Byte[Op2ElementCount]; private static Vector128<Byte> _clsVar1; private static Vector128<Byte> _clsVar2; private Vector128<Byte> _fld1; private Vector128<Byte> _fld2; private DataTable _dataTable; static VectorBinaryOpTest__EqualsByte() { for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetByte(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Byte>, byte>(ref _clsVar1), ref Unsafe.As<Byte, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Byte>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetByte(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Byte>, byte>(ref _clsVar2), ref Unsafe.As<Byte, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Byte>>()); } public VectorBinaryOpTest__EqualsByte() { Succeeded = true; for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetByte(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Byte>, byte>(ref _fld1), ref Unsafe.As<Byte, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Byte>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetByte(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Byte>, byte>(ref _fld2), ref Unsafe.As<Byte, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Byte>>()); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetByte(); } for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetByte(); } _dataTable = new DataTable(_data1, _data2, new Byte[RetElementCount], LargestVectorSize); } public bool Succeeded { get; set; } public void RunBasicScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead)); var result = Vector128.Equals( Unsafe.Read<Vector128<Byte>>(_dataTable.inArray1Ptr), Unsafe.Read<Vector128<Byte>>(_dataTable.inArray2Ptr) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead)); var method = typeof(Vector128).GetMethod(nameof(Vector128.Equals), new Type[] { typeof(Vector128<Byte>), typeof(Vector128<Byte>) }); if (method is null) { method = typeof(Vector128).GetMethod(nameof(Vector128.Equals), 1, new Type[] { typeof(Vector128<>).MakeGenericType(Type.MakeGenericMethodParameter(0)), typeof(Vector128<>).MakeGenericType(Type.MakeGenericMethodParameter(0)) }); } if (method.IsGenericMethodDefinition) { method = method.MakeGenericMethod(typeof(Byte)); } var result = method.Invoke(null, new object[] { Unsafe.Read<Vector128<Byte>>(_dataTable.inArray1Ptr), Unsafe.Read<Vector128<Byte>>(_dataTable.inArray2Ptr) }); Unsafe.Write(_dataTable.outArrayPtr, (Vector128<Byte>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunClsVarScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario)); var result = Vector128.Equals( _clsVar1, _clsVar2 ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_clsVar1, _clsVar2, _dataTable.outArrayPtr); } public void RunLclVarScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead)); var op1 = Unsafe.Read<Vector128<Byte>>(_dataTable.inArray1Ptr); var op2 = Unsafe.Read<Vector128<Byte>>(_dataTable.inArray2Ptr); var result = Vector128.Equals(op1, op2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(op1, op2, _dataTable.outArrayPtr); } public void RunClassLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario)); var test = new VectorBinaryOpTest__EqualsByte(); var result = Vector128.Equals(test._fld1, test._fld2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } public void RunClassFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario)); var result = Vector128.Equals(_fld1, _fld2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_fld1, _fld2, _dataTable.outArrayPtr); } public void RunStructLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario)); var test = TestStruct.Create(); var result = Vector128.Equals(test._fld1, test._fld2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } public void RunStructFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario)); var test = TestStruct.Create(); test.RunStructFldScenario(this); } private void ValidateResult(Vector128<Byte> op1, Vector128<Byte> op2, void* result, [CallerMemberName] string method = "") { Byte[] inArray1 = new Byte[Op1ElementCount]; Byte[] inArray2 = new Byte[Op2ElementCount]; Byte[] outArray = new Byte[RetElementCount]; Unsafe.WriteUnaligned(ref Unsafe.As<Byte, byte>(ref inArray1[0]), op1); Unsafe.WriteUnaligned(ref Unsafe.As<Byte, byte>(ref inArray2[0]), op2); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Byte, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<Byte>>()); ValidateResult(inArray1, inArray2, outArray, method); } private void ValidateResult(void* op1, void* op2, void* result, [CallerMemberName] string method = "") { Byte[] inArray1 = new Byte[Op1ElementCount]; Byte[] inArray2 = new Byte[Op2ElementCount]; Byte[] outArray = new Byte[RetElementCount]; Unsafe.CopyBlockUnaligned(ref Unsafe.As<Byte, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(op1), (uint)Unsafe.SizeOf<Vector128<Byte>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Byte, byte>(ref inArray2[0]), ref Unsafe.AsRef<byte>(op2), (uint)Unsafe.SizeOf<Vector128<Byte>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Byte, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<Byte>>()); ValidateResult(inArray1, inArray2, outArray, method); } private void ValidateResult(Byte[] left, Byte[] right, Byte[] result, [CallerMemberName] string method = "") { bool succeeded = true; if (result[0] != ((left[0] == right[0]) ? byte.MaxValue : 0)) { succeeded = false; } else { for (var i = 1; i < RetElementCount; i++) { if (result[i] != ((left[i] == right[i]) ? byte.MaxValue : 0)) { succeeded = false; break; } } } if (!succeeded) { TestLibrary.TestFramework.LogInformation($"{nameof(Vector128)}.{nameof(Vector128.Equals)}<Byte>(Vector128<Byte>, Vector128<Byte>): {method} failed:"); TestLibrary.TestFramework.LogInformation($" left: ({string.Join(", ", left)})"); TestLibrary.TestFramework.LogInformation($" right: ({string.Join(", ", right)})"); TestLibrary.TestFramework.LogInformation($" result: ({string.Join(", ", result)})"); TestLibrary.TestFramework.LogInformation(string.Empty); Succeeded = false; } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /****************************************************************************** * This file is auto-generated from a template file by the GenerateTests.csx * * script in tests\src\JIT\HardwareIntrinsics\X86\Shared. In order to make * * changes, please update the corresponding template and run according to the * * directions listed in the file. * ******************************************************************************/ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Intrinsics; namespace JIT.HardwareIntrinsics.General { public static partial class Program { private static void EqualsByte() { var test = new VectorBinaryOpTest__EqualsByte(); // Validates basic functionality works, using Unsafe.Read test.RunBasicScenario_UnsafeRead(); // Validates calling via reflection works, using Unsafe.Read test.RunReflectionScenario_UnsafeRead(); // Validates passing a static member works test.RunClsVarScenario(); // Validates passing a local works, using Unsafe.Read test.RunLclVarScenario_UnsafeRead(); // Validates passing the field of a local class works test.RunClassLclFldScenario(); // Validates passing an instance member of a class works test.RunClassFldScenario(); // Validates passing the field of a local struct works test.RunStructLclFldScenario(); // Validates passing an instance member of a struct works test.RunStructFldScenario(); if (!test.Succeeded) { throw new Exception("One or more scenarios did not complete as expected."); } } } public sealed unsafe class VectorBinaryOpTest__EqualsByte { private struct DataTable { private byte[] inArray1; private byte[] inArray2; private byte[] outArray; private GCHandle inHandle1; private GCHandle inHandle2; private GCHandle outHandle; private ulong alignment; public DataTable(Byte[] inArray1, Byte[] inArray2, Byte[] outArray, int alignment) { int sizeOfinArray1 = inArray1.Length * Unsafe.SizeOf<Byte>(); int sizeOfinArray2 = inArray2.Length * Unsafe.SizeOf<Byte>(); int sizeOfoutArray = outArray.Length * Unsafe.SizeOf<Byte>(); if ((alignment != 32 && alignment != 16 && alignment != 8) || (alignment * 2) < sizeOfinArray1 || (alignment * 2) < sizeOfinArray2 || (alignment * 2) < sizeOfoutArray) { throw new ArgumentException("Invalid value of alignment"); } this.inArray1 = new byte[alignment * 2]; this.inArray2 = new byte[alignment * 2]; this.outArray = new byte[alignment * 2]; this.inHandle1 = GCHandle.Alloc(this.inArray1, GCHandleType.Pinned); this.inHandle2 = GCHandle.Alloc(this.inArray2, GCHandleType.Pinned); this.outHandle = GCHandle.Alloc(this.outArray, GCHandleType.Pinned); this.alignment = (ulong)alignment; Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray1Ptr), ref Unsafe.As<Byte, byte>(ref inArray1[0]), (uint)sizeOfinArray1); Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray2Ptr), ref Unsafe.As<Byte, byte>(ref inArray2[0]), (uint)sizeOfinArray2); } public void* inArray1Ptr => Align((byte*)(inHandle1.AddrOfPinnedObject().ToPointer()), alignment); public void* inArray2Ptr => Align((byte*)(inHandle2.AddrOfPinnedObject().ToPointer()), alignment); public void* outArrayPtr => Align((byte*)(outHandle.AddrOfPinnedObject().ToPointer()), alignment); public void Dispose() { inHandle1.Free(); inHandle2.Free(); outHandle.Free(); } private static unsafe void* Align(byte* buffer, ulong expectedAlignment) { return (void*)(((ulong)buffer + expectedAlignment - 1) & ~(expectedAlignment - 1)); } } private struct TestStruct { public Vector128<Byte> _fld1; public Vector128<Byte> _fld2; public static TestStruct Create() { var testStruct = new TestStruct(); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetByte(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Byte>, byte>(ref testStruct._fld1), ref Unsafe.As<Byte, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Byte>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetByte(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Byte>, byte>(ref testStruct._fld2), ref Unsafe.As<Byte, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Byte>>()); return testStruct; } public void RunStructFldScenario(VectorBinaryOpTest__EqualsByte testClass) { var result = Vector128.Equals(_fld1, _fld2); Unsafe.Write(testClass._dataTable.outArrayPtr, result); testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr); } } private static readonly int LargestVectorSize = 16; private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector128<Byte>>() / sizeof(Byte); private static readonly int Op2ElementCount = Unsafe.SizeOf<Vector128<Byte>>() / sizeof(Byte); private static readonly int RetElementCount = Unsafe.SizeOf<Vector128<Byte>>() / sizeof(Byte); private static Byte[] _data1 = new Byte[Op1ElementCount]; private static Byte[] _data2 = new Byte[Op2ElementCount]; private static Vector128<Byte> _clsVar1; private static Vector128<Byte> _clsVar2; private Vector128<Byte> _fld1; private Vector128<Byte> _fld2; private DataTable _dataTable; static VectorBinaryOpTest__EqualsByte() { for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetByte(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Byte>, byte>(ref _clsVar1), ref Unsafe.As<Byte, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Byte>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetByte(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Byte>, byte>(ref _clsVar2), ref Unsafe.As<Byte, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Byte>>()); } public VectorBinaryOpTest__EqualsByte() { Succeeded = true; for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetByte(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Byte>, byte>(ref _fld1), ref Unsafe.As<Byte, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<Byte>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetByte(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<Byte>, byte>(ref _fld2), ref Unsafe.As<Byte, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<Byte>>()); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetByte(); } for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetByte(); } _dataTable = new DataTable(_data1, _data2, new Byte[RetElementCount], LargestVectorSize); } public bool Succeeded { get; set; } public void RunBasicScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead)); var result = Vector128.Equals( Unsafe.Read<Vector128<Byte>>(_dataTable.inArray1Ptr), Unsafe.Read<Vector128<Byte>>(_dataTable.inArray2Ptr) ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunReflectionScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead)); var method = typeof(Vector128).GetMethod(nameof(Vector128.Equals), new Type[] { typeof(Vector128<Byte>), typeof(Vector128<Byte>) }); if (method is null) { method = typeof(Vector128).GetMethod(nameof(Vector128.Equals), 1, new Type[] { typeof(Vector128<>).MakeGenericType(Type.MakeGenericMethodParameter(0)), typeof(Vector128<>).MakeGenericType(Type.MakeGenericMethodParameter(0)) }); } if (method.IsGenericMethodDefinition) { method = method.MakeGenericMethod(typeof(Byte)); } var result = method.Invoke(null, new object[] { Unsafe.Read<Vector128<Byte>>(_dataTable.inArray1Ptr), Unsafe.Read<Vector128<Byte>>(_dataTable.inArray2Ptr) }); Unsafe.Write(_dataTable.outArrayPtr, (Vector128<Byte>)(result)); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, _dataTable.outArrayPtr); } public void RunClsVarScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario)); var result = Vector128.Equals( _clsVar1, _clsVar2 ); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_clsVar1, _clsVar2, _dataTable.outArrayPtr); } public void RunLclVarScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead)); var op1 = Unsafe.Read<Vector128<Byte>>(_dataTable.inArray1Ptr); var op2 = Unsafe.Read<Vector128<Byte>>(_dataTable.inArray2Ptr); var result = Vector128.Equals(op1, op2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(op1, op2, _dataTable.outArrayPtr); } public void RunClassLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario)); var test = new VectorBinaryOpTest__EqualsByte(); var result = Vector128.Equals(test._fld1, test._fld2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } public void RunClassFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario)); var result = Vector128.Equals(_fld1, _fld2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(_fld1, _fld2, _dataTable.outArrayPtr); } public void RunStructLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario)); var test = TestStruct.Create(); var result = Vector128.Equals(test._fld1, test._fld2); Unsafe.Write(_dataTable.outArrayPtr, result); ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr); } public void RunStructFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario)); var test = TestStruct.Create(); test.RunStructFldScenario(this); } private void ValidateResult(Vector128<Byte> op1, Vector128<Byte> op2, void* result, [CallerMemberName] string method = "") { Byte[] inArray1 = new Byte[Op1ElementCount]; Byte[] inArray2 = new Byte[Op2ElementCount]; Byte[] outArray = new Byte[RetElementCount]; Unsafe.WriteUnaligned(ref Unsafe.As<Byte, byte>(ref inArray1[0]), op1); Unsafe.WriteUnaligned(ref Unsafe.As<Byte, byte>(ref inArray2[0]), op2); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Byte, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<Byte>>()); ValidateResult(inArray1, inArray2, outArray, method); } private void ValidateResult(void* op1, void* op2, void* result, [CallerMemberName] string method = "") { Byte[] inArray1 = new Byte[Op1ElementCount]; Byte[] inArray2 = new Byte[Op2ElementCount]; Byte[] outArray = new Byte[RetElementCount]; Unsafe.CopyBlockUnaligned(ref Unsafe.As<Byte, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(op1), (uint)Unsafe.SizeOf<Vector128<Byte>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Byte, byte>(ref inArray2[0]), ref Unsafe.AsRef<byte>(op2), (uint)Unsafe.SizeOf<Vector128<Byte>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<Byte, byte>(ref outArray[0]), ref Unsafe.AsRef<byte>(result), (uint)Unsafe.SizeOf<Vector128<Byte>>()); ValidateResult(inArray1, inArray2, outArray, method); } private void ValidateResult(Byte[] left, Byte[] right, Byte[] result, [CallerMemberName] string method = "") { bool succeeded = true; if (result[0] != ((left[0] == right[0]) ? byte.MaxValue : 0)) { succeeded = false; } else { for (var i = 1; i < RetElementCount; i++) { if (result[i] != ((left[i] == right[i]) ? byte.MaxValue : 0)) { succeeded = false; break; } } } if (!succeeded) { TestLibrary.TestFramework.LogInformation($"{nameof(Vector128)}.{nameof(Vector128.Equals)}<Byte>(Vector128<Byte>, Vector128<Byte>): {method} failed:"); TestLibrary.TestFramework.LogInformation($" left: ({string.Join(", ", left)})"); TestLibrary.TestFramework.LogInformation($" right: ({string.Join(", ", right)})"); TestLibrary.TestFramework.LogInformation($" result: ({string.Join(", ", result)})"); TestLibrary.TestFramework.LogInformation(string.Empty); Succeeded = false; } } } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/libraries/System.Security.Cryptography/src/System/Security/Cryptography/X509Certificates/IChainPal.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.Win32.SafeHandles; namespace System.Security.Cryptography.X509Certificates { internal interface IChainPal : IDisposable { /// <summary> /// Does not throw on api error. Returns default(bool?) and sets "exception" instead. /// </summary> bool? Verify(X509VerificationFlags flags, out Exception? exception); X509ChainElement[]? ChainElements { get; } X509ChainStatus[]? ChainStatus { get; } SafeX509ChainHandle? SafeHandle { get; } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.Win32.SafeHandles; namespace System.Security.Cryptography.X509Certificates { internal interface IChainPal : IDisposable { /// <summary> /// Does not throw on api error. Returns default(bool?) and sets "exception" instead. /// </summary> bool? Verify(X509VerificationFlags flags, out Exception? exception); X509ChainElement[]? ChainElements { get; } X509ChainStatus[]? ChainStatus { get; } SafeX509ChainHandle? SafeHandle { get; } } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/libraries/System.Reflection.Metadata/src/System/Reflection/PortableExecutable/ManagedTextSection.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Diagnostics; using System.Reflection.Internal; using System.Reflection.Metadata; namespace System.Reflection.PortableExecutable { /// <summary> /// Managed .text PE section. /// </summary> /// <remarks> /// Contains in the following order: /// - Import Address Table /// - COR Header /// - IL /// - Metadata /// - Managed Resource Data /// - Strong Name Signature /// - Debug Data (directory and extra info) /// - Import Table /// - Name Table /// - Runtime Startup Stub /// - Mapped Field Data /// </remarks> internal sealed class ManagedTextSection { public Characteristics ImageCharacteristics { get; } public Machine Machine { get; } /// <summary> /// The size of IL stream (unaligned). /// </summary> public int ILStreamSize { get; } /// <summary> /// Total size of metadata (header and all streams). /// </summary> public int MetadataSize { get; } /// <summary> /// The size of managed resource data stream. /// Aligned to <see cref="ManagedResourcesDataAlignment"/>. /// </summary> public int ResourceDataSize { get; } /// <summary> /// Size of strong name hash. /// </summary> public int StrongNameSignatureSize { get; } /// <summary> /// Size of Debug data. /// </summary> public int DebugDataSize { get; } /// <summary> /// The size of mapped field data stream. /// Aligned to <see cref="MappedFieldDataAlignment"/>. /// </summary> public int MappedFieldDataSize { get; } public ManagedTextSection( Characteristics imageCharacteristics, Machine machine, int ilStreamSize, int metadataSize, int resourceDataSize, int strongNameSignatureSize, int debugDataSize, int mappedFieldDataSize) { MetadataSize = metadataSize; ResourceDataSize = resourceDataSize; ILStreamSize = ilStreamSize; MappedFieldDataSize = mappedFieldDataSize; StrongNameSignatureSize = strongNameSignatureSize; ImageCharacteristics = imageCharacteristics; Machine = machine; DebugDataSize = debugDataSize; } /// <summary> /// If set, the module must include a machine code stub that transfers control to the virtual execution system. /// </summary> internal bool RequiresStartupStub => Machine == Machine.I386 || Machine == 0; /// <summary> /// If set, the module contains instructions that assume a 64 bit instruction set. For example it may depend on an address being 64 bits. /// This may be true even if the module contains only IL instructions because of PlatformInvoke and COM interop. /// </summary> internal bool Requires64bits => Machine == Machine.Amd64 || Machine == Machine.IA64 || Machine == Machine.Arm64; public bool Is32Bit => !Requires64bits; public const int ManagedResourcesDataAlignment = 8; private const string CorEntryPointDll = "mscoree.dll"; private string CorEntryPointName => (ImageCharacteristics & Characteristics.Dll) != 0 ? "_CorDllMain" : "_CorExeMain"; private int SizeOfImportAddressTable => RequiresStartupStub ? (Is32Bit ? 2 * sizeof(uint) : 2 * sizeof(ulong)) : 0; // (_is32bit ? 66 : 70); private int SizeOfImportTable => sizeof(uint) + // RVA sizeof(uint) + // 0 sizeof(uint) + // 0 sizeof(uint) + // name RVA sizeof(uint) + // import address table RVA 20 + // ? (Is32Bit ? 3 * sizeof(uint) : 2 * sizeof(ulong)) + // import lookup table sizeof(ushort) + // hint CorEntryPointName.Length + 1; // NUL private static int SizeOfNameTable => CorEntryPointDll.Length + 1 + sizeof(ushort); private int SizeOfRuntimeStartupStub => Is32Bit ? 8 : 16; public const int MappedFieldDataAlignment = 8; internal int CalculateOffsetToMappedFieldDataStreamUnaligned() { int result = ComputeOffsetToImportTable(); if (RequiresStartupStub) { result += SizeOfImportTable + SizeOfNameTable; result = BitArithmetic.Align(result, Is32Bit ? 4 : 8); //optional padding to make startup stub's target address align on word or double word boundary result += SizeOfRuntimeStartupStub; } return result; } public int CalculateOffsetToMappedFieldDataStream() { int result = CalculateOffsetToMappedFieldDataStreamUnaligned(); if (MappedFieldDataSize != 0) { result = BitArithmetic.Align(result, MappedFieldDataAlignment); } return result; } internal int ComputeOffsetToDebugDirectory() { Debug.Assert(MetadataSize % 4 == 0); Debug.Assert(ResourceDataSize % 4 == 0); return ComputeOffsetToMetadata() + MetadataSize + ResourceDataSize + StrongNameSignatureSize; } private int ComputeOffsetToImportTable() { return ComputeOffsetToDebugDirectory() + DebugDataSize; } private const int CorHeaderSize = sizeof(int) + // header size sizeof(short) + // major runtime version sizeof(short) + // minor runtime version sizeof(long) + // metadata directory sizeof(int) + // COR flags sizeof(int) + // entry point sizeof(long) + // resources directory sizeof(long) + // strong name signature directory sizeof(long) + // code manager table directory sizeof(long) + // vtable fixups directory sizeof(long) + // export address table jumps directory sizeof(long); // managed-native header directory public int OffsetToILStream => SizeOfImportAddressTable + CorHeaderSize; private int ComputeOffsetToMetadata() { return OffsetToILStream + BitArithmetic.Align(ILStreamSize, 4); } public int ComputeSizeOfTextSection() { Debug.Assert(MappedFieldDataSize % MappedFieldDataAlignment == 0); return CalculateOffsetToMappedFieldDataStream() + MappedFieldDataSize; } public int GetEntryPointAddress(int rva) { // TODO: constants return RequiresStartupStub ? rva + CalculateOffsetToMappedFieldDataStreamUnaligned() - (Is32Bit ? 6 : 10) : 0; } public DirectoryEntry GetImportAddressTableDirectoryEntry(int rva) { return RequiresStartupStub ? new DirectoryEntry(rva, SizeOfImportAddressTable) : default(DirectoryEntry); } public DirectoryEntry GetImportTableDirectoryEntry(int rva) { // TODO: constants return RequiresStartupStub ? new DirectoryEntry(rva + ComputeOffsetToImportTable(), (Is32Bit ? 66 : 70) + 13) : default(DirectoryEntry); } public DirectoryEntry GetCorHeaderDirectoryEntry(int rva) { return new DirectoryEntry(rva + SizeOfImportAddressTable, CorHeaderSize); } #region Serialization /// <summary> /// Serializes .text section data into a specified <paramref name="builder"/>. /// </summary> /// <param name="builder">An empty builder to serialize section data to.</param> /// <param name="relativeVirtualAddess">Relative virtual address of the section within the containing PE file.</param> /// <param name="entryPointTokenOrRelativeVirtualAddress">Entry point token or RVA (<see cref="CorHeader.EntryPointTokenOrRelativeVirtualAddress"/>)</param> /// <param name="corFlags">COR Flags (<see cref="CorHeader.Flags"/>).</param> /// <param name="baseAddress">Base address of the PE image.</param> /// <param name="metadataBuilder"><see cref="BlobBuilder"/> containing metadata. Must be populated with data. Linked into the <paramref name="builder"/> and can't be expanded afterwards.</param> /// <param name="ilBuilder"><see cref="BlobBuilder"/> containing IL stream. Must be populated with data. Linked into the <paramref name="builder"/> and can't be expanded afterwards.</param> /// <param name="mappedFieldDataBuilderOpt"><see cref="BlobBuilder"/> containing mapped field data. Must be populated with data. Linked into the <paramref name="builder"/> and can't be expanded afterwards.</param> /// <param name="resourceBuilderOpt"><see cref="BlobBuilder"/> containing managed resource data. Must be populated with data. Linked into the <paramref name="builder"/> and can't be expanded afterwards.</param> /// <param name="debugDataBuilderOpt"><see cref="BlobBuilder"/> containing PE debug table and data. Must be populated with data. Linked into the <paramref name="builder"/> and can't be expanded afterwards.</param> /// <param name="strongNameSignature">Blob reserved in the <paramref name="builder"/> for strong name signature.</param> public void Serialize( BlobBuilder builder, int relativeVirtualAddess, int entryPointTokenOrRelativeVirtualAddress, CorFlags corFlags, ulong baseAddress, BlobBuilder metadataBuilder, BlobBuilder ilBuilder, BlobBuilder? mappedFieldDataBuilderOpt, BlobBuilder? resourceBuilderOpt, BlobBuilder? debugDataBuilderOpt, out Blob strongNameSignature) { Debug.Assert(builder.Count == 0); Debug.Assert(metadataBuilder.Count == MetadataSize); Debug.Assert(metadataBuilder.Count % 4 == 0); Debug.Assert(ilBuilder.Count == ILStreamSize); Debug.Assert((mappedFieldDataBuilderOpt?.Count ?? 0) == MappedFieldDataSize); Debug.Assert((resourceBuilderOpt?.Count ?? 0) == ResourceDataSize); Debug.Assert((resourceBuilderOpt?.Count ?? 0) % 4 == 0); // TODO: avoid recalculation int importTableRva = GetImportTableDirectoryEntry(relativeVirtualAddess).RelativeVirtualAddress; int importAddressTableRva = GetImportAddressTableDirectoryEntry(relativeVirtualAddess).RelativeVirtualAddress; if (RequiresStartupStub) { WriteImportAddressTable(builder, importTableRva); } WriteCorHeader(builder, relativeVirtualAddess, entryPointTokenOrRelativeVirtualAddress, corFlags); // IL: ilBuilder.Align(4); builder.LinkSuffix(ilBuilder); // metadata: builder.LinkSuffix(metadataBuilder); // managed resources: if (resourceBuilderOpt != null) { builder.LinkSuffix(resourceBuilderOpt); } // strong name signature: strongNameSignature = builder.ReserveBytes(StrongNameSignatureSize); // The bytes are required to be 0 for the purpose of calculating hash of the PE content // when strong name signing. new BlobWriter(strongNameSignature).WriteBytes(0, StrongNameSignatureSize); // debug directory and data: if (debugDataBuilderOpt != null) { builder.LinkSuffix(debugDataBuilderOpt); } if (RequiresStartupStub) { WriteImportTable(builder, importTableRva, importAddressTableRva); WriteNameTable(builder); WriteRuntimeStartupStub(builder, importAddressTableRva, baseAddress); } // mapped field data: if (mappedFieldDataBuilderOpt != null) { if (mappedFieldDataBuilderOpt.Count != 0) builder.Align(MappedFieldDataAlignment); builder.LinkSuffix(mappedFieldDataBuilderOpt); } Debug.Assert(builder.Count == ComputeSizeOfTextSection()); } private void WriteImportAddressTable(BlobBuilder builder, int importTableRva) { int start = builder.Count; int ilRva = importTableRva + 40; int hintRva = ilRva + (Is32Bit ? 12 : 16); // Import Address Table if (Is32Bit) { builder.WriteUInt32((uint)hintRva); // 4 builder.WriteUInt32(0); // 8 } else { builder.WriteUInt64((uint)hintRva); // 8 builder.WriteUInt64(0); // 16 } Debug.Assert(builder.Count - start == SizeOfImportAddressTable); } private void WriteImportTable(BlobBuilder builder, int importTableRva, int importAddressTableRva) { int start = builder.Count; int ilRVA = importTableRva + 40; int hintRva = ilRVA + (Is32Bit ? 12 : 16); int nameRva = hintRva + 12 + 2; // Import table builder.WriteUInt32((uint)ilRVA); // 4 builder.WriteUInt32(0); // 8 builder.WriteUInt32(0); // 12 builder.WriteUInt32((uint)nameRva); // 16 builder.WriteUInt32((uint)importAddressTableRva); // 20 builder.WriteBytes(0, 20); // 40 // Import Lookup table if (Is32Bit) { builder.WriteUInt32((uint)hintRva); // 44 builder.WriteUInt32(0); // 48 builder.WriteUInt32(0); // 52 } else { builder.WriteUInt64((uint)hintRva); // 48 builder.WriteUInt64(0); // 56 } // Hint table builder.WriteUInt16(0); // Hint 54|58 foreach (char ch in CorEntryPointName) { builder.WriteByte((byte)ch); // 65|69 } builder.WriteByte(0); // 66|70 Debug.Assert(builder.Count - start == SizeOfImportTable); } private static void WriteNameTable(BlobBuilder builder) { int start = builder.Count; foreach (char ch in CorEntryPointDll) { builder.WriteByte((byte)ch); } builder.WriteByte(0); builder.WriteUInt16(0); Debug.Assert(builder.Count - start == SizeOfNameTable); } private void WriteCorHeader(BlobBuilder builder, int textSectionRva, int entryPointTokenOrRva, CorFlags corFlags) { const ushort majorRuntimeVersion = 2; const ushort minorRuntimeVersion = 5; int metadataRva = textSectionRva + ComputeOffsetToMetadata(); int resourcesRva = metadataRva + MetadataSize; int signatureRva = resourcesRva + ResourceDataSize; int start = builder.Count; // Size: builder.WriteUInt32(CorHeaderSize); // Version: builder.WriteUInt16(majorRuntimeVersion); builder.WriteUInt16(minorRuntimeVersion); // MetadataDirectory: builder.WriteUInt32((uint)metadataRva); builder.WriteUInt32((uint)MetadataSize); // COR Flags: builder.WriteUInt32((uint)corFlags); // EntryPoint: builder.WriteUInt32((uint)entryPointTokenOrRva); // ResourcesDirectory: builder.WriteUInt32((uint)(ResourceDataSize == 0 ? 0 : resourcesRva)); // 28 builder.WriteUInt32((uint)ResourceDataSize); // StrongNameSignatureDirectory: builder.WriteUInt32((uint)(StrongNameSignatureSize == 0 ? 0 : signatureRva)); // 36 builder.WriteUInt32((uint)StrongNameSignatureSize); // CodeManagerTableDirectory (not supported): builder.WriteUInt32(0); builder.WriteUInt32(0); // VtableFixupsDirectory (not supported): builder.WriteUInt32(0); builder.WriteUInt32(0); // ExportAddressTableJumpsDirectory (not supported): builder.WriteUInt32(0); builder.WriteUInt32(0); // ManagedNativeHeaderDirectory (not supported): builder.WriteUInt32(0); builder.WriteUInt32(0); Debug.Assert(builder.Count - start == CorHeaderSize); Debug.Assert(builder.Count % 4 == 0); } private void WriteRuntimeStartupStub(BlobBuilder sectionBuilder, int importAddressTableRva, ulong baseAddress) { // entry point code, consisting of a jump indirect to _CorXXXMain if (Is32Bit) { // Write zeros (nops) to pad the entry point code so that the target address is aligned on a 4 byte boundary. // Note that the section is aligned to FileAlignment, which is at least 512, so we can align relatively to the start of the section. sectionBuilder.Align(4); sectionBuilder.WriteUInt16(0); sectionBuilder.WriteByte(0xff); sectionBuilder.WriteByte(0x25); //4 sectionBuilder.WriteUInt32((uint)importAddressTableRva + (uint)baseAddress); //8 } else { // Write zeros (nops) to pad the entry point code so that the target address is aligned on a 8 byte boundary. // Note that the section is aligned to FileAlignment, which is at least 512, so we can align relatively to the start of the section. sectionBuilder.Align(8); sectionBuilder.WriteUInt32(0); sectionBuilder.WriteUInt16(0); sectionBuilder.WriteByte(0xff); sectionBuilder.WriteByte(0x25); //8 sectionBuilder.WriteUInt64((ulong)importAddressTableRva + baseAddress); //16 } } #endregion } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Diagnostics; using System.Reflection.Internal; using System.Reflection.Metadata; namespace System.Reflection.PortableExecutable { /// <summary> /// Managed .text PE section. /// </summary> /// <remarks> /// Contains in the following order: /// - Import Address Table /// - COR Header /// - IL /// - Metadata /// - Managed Resource Data /// - Strong Name Signature /// - Debug Data (directory and extra info) /// - Import Table /// - Name Table /// - Runtime Startup Stub /// - Mapped Field Data /// </remarks> internal sealed class ManagedTextSection { public Characteristics ImageCharacteristics { get; } public Machine Machine { get; } /// <summary> /// The size of IL stream (unaligned). /// </summary> public int ILStreamSize { get; } /// <summary> /// Total size of metadata (header and all streams). /// </summary> public int MetadataSize { get; } /// <summary> /// The size of managed resource data stream. /// Aligned to <see cref="ManagedResourcesDataAlignment"/>. /// </summary> public int ResourceDataSize { get; } /// <summary> /// Size of strong name hash. /// </summary> public int StrongNameSignatureSize { get; } /// <summary> /// Size of Debug data. /// </summary> public int DebugDataSize { get; } /// <summary> /// The size of mapped field data stream. /// Aligned to <see cref="MappedFieldDataAlignment"/>. /// </summary> public int MappedFieldDataSize { get; } public ManagedTextSection( Characteristics imageCharacteristics, Machine machine, int ilStreamSize, int metadataSize, int resourceDataSize, int strongNameSignatureSize, int debugDataSize, int mappedFieldDataSize) { MetadataSize = metadataSize; ResourceDataSize = resourceDataSize; ILStreamSize = ilStreamSize; MappedFieldDataSize = mappedFieldDataSize; StrongNameSignatureSize = strongNameSignatureSize; ImageCharacteristics = imageCharacteristics; Machine = machine; DebugDataSize = debugDataSize; } /// <summary> /// If set, the module must include a machine code stub that transfers control to the virtual execution system. /// </summary> internal bool RequiresStartupStub => Machine == Machine.I386 || Machine == 0; /// <summary> /// If set, the module contains instructions that assume a 64 bit instruction set. For example it may depend on an address being 64 bits. /// This may be true even if the module contains only IL instructions because of PlatformInvoke and COM interop. /// </summary> internal bool Requires64bits => Machine == Machine.Amd64 || Machine == Machine.IA64 || Machine == Machine.Arm64; public bool Is32Bit => !Requires64bits; public const int ManagedResourcesDataAlignment = 8; private const string CorEntryPointDll = "mscoree.dll"; private string CorEntryPointName => (ImageCharacteristics & Characteristics.Dll) != 0 ? "_CorDllMain" : "_CorExeMain"; private int SizeOfImportAddressTable => RequiresStartupStub ? (Is32Bit ? 2 * sizeof(uint) : 2 * sizeof(ulong)) : 0; // (_is32bit ? 66 : 70); private int SizeOfImportTable => sizeof(uint) + // RVA sizeof(uint) + // 0 sizeof(uint) + // 0 sizeof(uint) + // name RVA sizeof(uint) + // import address table RVA 20 + // ? (Is32Bit ? 3 * sizeof(uint) : 2 * sizeof(ulong)) + // import lookup table sizeof(ushort) + // hint CorEntryPointName.Length + 1; // NUL private static int SizeOfNameTable => CorEntryPointDll.Length + 1 + sizeof(ushort); private int SizeOfRuntimeStartupStub => Is32Bit ? 8 : 16; public const int MappedFieldDataAlignment = 8; internal int CalculateOffsetToMappedFieldDataStreamUnaligned() { int result = ComputeOffsetToImportTable(); if (RequiresStartupStub) { result += SizeOfImportTable + SizeOfNameTable; result = BitArithmetic.Align(result, Is32Bit ? 4 : 8); //optional padding to make startup stub's target address align on word or double word boundary result += SizeOfRuntimeStartupStub; } return result; } public int CalculateOffsetToMappedFieldDataStream() { int result = CalculateOffsetToMappedFieldDataStreamUnaligned(); if (MappedFieldDataSize != 0) { result = BitArithmetic.Align(result, MappedFieldDataAlignment); } return result; } internal int ComputeOffsetToDebugDirectory() { Debug.Assert(MetadataSize % 4 == 0); Debug.Assert(ResourceDataSize % 4 == 0); return ComputeOffsetToMetadata() + MetadataSize + ResourceDataSize + StrongNameSignatureSize; } private int ComputeOffsetToImportTable() { return ComputeOffsetToDebugDirectory() + DebugDataSize; } private const int CorHeaderSize = sizeof(int) + // header size sizeof(short) + // major runtime version sizeof(short) + // minor runtime version sizeof(long) + // metadata directory sizeof(int) + // COR flags sizeof(int) + // entry point sizeof(long) + // resources directory sizeof(long) + // strong name signature directory sizeof(long) + // code manager table directory sizeof(long) + // vtable fixups directory sizeof(long) + // export address table jumps directory sizeof(long); // managed-native header directory public int OffsetToILStream => SizeOfImportAddressTable + CorHeaderSize; private int ComputeOffsetToMetadata() { return OffsetToILStream + BitArithmetic.Align(ILStreamSize, 4); } public int ComputeSizeOfTextSection() { Debug.Assert(MappedFieldDataSize % MappedFieldDataAlignment == 0); return CalculateOffsetToMappedFieldDataStream() + MappedFieldDataSize; } public int GetEntryPointAddress(int rva) { // TODO: constants return RequiresStartupStub ? rva + CalculateOffsetToMappedFieldDataStreamUnaligned() - (Is32Bit ? 6 : 10) : 0; } public DirectoryEntry GetImportAddressTableDirectoryEntry(int rva) { return RequiresStartupStub ? new DirectoryEntry(rva, SizeOfImportAddressTable) : default(DirectoryEntry); } public DirectoryEntry GetImportTableDirectoryEntry(int rva) { // TODO: constants return RequiresStartupStub ? new DirectoryEntry(rva + ComputeOffsetToImportTable(), (Is32Bit ? 66 : 70) + 13) : default(DirectoryEntry); } public DirectoryEntry GetCorHeaderDirectoryEntry(int rva) { return new DirectoryEntry(rva + SizeOfImportAddressTable, CorHeaderSize); } #region Serialization /// <summary> /// Serializes .text section data into a specified <paramref name="builder"/>. /// </summary> /// <param name="builder">An empty builder to serialize section data to.</param> /// <param name="relativeVirtualAddess">Relative virtual address of the section within the containing PE file.</param> /// <param name="entryPointTokenOrRelativeVirtualAddress">Entry point token or RVA (<see cref="CorHeader.EntryPointTokenOrRelativeVirtualAddress"/>)</param> /// <param name="corFlags">COR Flags (<see cref="CorHeader.Flags"/>).</param> /// <param name="baseAddress">Base address of the PE image.</param> /// <param name="metadataBuilder"><see cref="BlobBuilder"/> containing metadata. Must be populated with data. Linked into the <paramref name="builder"/> and can't be expanded afterwards.</param> /// <param name="ilBuilder"><see cref="BlobBuilder"/> containing IL stream. Must be populated with data. Linked into the <paramref name="builder"/> and can't be expanded afterwards.</param> /// <param name="mappedFieldDataBuilderOpt"><see cref="BlobBuilder"/> containing mapped field data. Must be populated with data. Linked into the <paramref name="builder"/> and can't be expanded afterwards.</param> /// <param name="resourceBuilderOpt"><see cref="BlobBuilder"/> containing managed resource data. Must be populated with data. Linked into the <paramref name="builder"/> and can't be expanded afterwards.</param> /// <param name="debugDataBuilderOpt"><see cref="BlobBuilder"/> containing PE debug table and data. Must be populated with data. Linked into the <paramref name="builder"/> and can't be expanded afterwards.</param> /// <param name="strongNameSignature">Blob reserved in the <paramref name="builder"/> for strong name signature.</param> public void Serialize( BlobBuilder builder, int relativeVirtualAddess, int entryPointTokenOrRelativeVirtualAddress, CorFlags corFlags, ulong baseAddress, BlobBuilder metadataBuilder, BlobBuilder ilBuilder, BlobBuilder? mappedFieldDataBuilderOpt, BlobBuilder? resourceBuilderOpt, BlobBuilder? debugDataBuilderOpt, out Blob strongNameSignature) { Debug.Assert(builder.Count == 0); Debug.Assert(metadataBuilder.Count == MetadataSize); Debug.Assert(metadataBuilder.Count % 4 == 0); Debug.Assert(ilBuilder.Count == ILStreamSize); Debug.Assert((mappedFieldDataBuilderOpt?.Count ?? 0) == MappedFieldDataSize); Debug.Assert((resourceBuilderOpt?.Count ?? 0) == ResourceDataSize); Debug.Assert((resourceBuilderOpt?.Count ?? 0) % 4 == 0); // TODO: avoid recalculation int importTableRva = GetImportTableDirectoryEntry(relativeVirtualAddess).RelativeVirtualAddress; int importAddressTableRva = GetImportAddressTableDirectoryEntry(relativeVirtualAddess).RelativeVirtualAddress; if (RequiresStartupStub) { WriteImportAddressTable(builder, importTableRva); } WriteCorHeader(builder, relativeVirtualAddess, entryPointTokenOrRelativeVirtualAddress, corFlags); // IL: ilBuilder.Align(4); builder.LinkSuffix(ilBuilder); // metadata: builder.LinkSuffix(metadataBuilder); // managed resources: if (resourceBuilderOpt != null) { builder.LinkSuffix(resourceBuilderOpt); } // strong name signature: strongNameSignature = builder.ReserveBytes(StrongNameSignatureSize); // The bytes are required to be 0 for the purpose of calculating hash of the PE content // when strong name signing. new BlobWriter(strongNameSignature).WriteBytes(0, StrongNameSignatureSize); // debug directory and data: if (debugDataBuilderOpt != null) { builder.LinkSuffix(debugDataBuilderOpt); } if (RequiresStartupStub) { WriteImportTable(builder, importTableRva, importAddressTableRva); WriteNameTable(builder); WriteRuntimeStartupStub(builder, importAddressTableRva, baseAddress); } // mapped field data: if (mappedFieldDataBuilderOpt != null) { if (mappedFieldDataBuilderOpt.Count != 0) builder.Align(MappedFieldDataAlignment); builder.LinkSuffix(mappedFieldDataBuilderOpt); } Debug.Assert(builder.Count == ComputeSizeOfTextSection()); } private void WriteImportAddressTable(BlobBuilder builder, int importTableRva) { int start = builder.Count; int ilRva = importTableRva + 40; int hintRva = ilRva + (Is32Bit ? 12 : 16); // Import Address Table if (Is32Bit) { builder.WriteUInt32((uint)hintRva); // 4 builder.WriteUInt32(0); // 8 } else { builder.WriteUInt64((uint)hintRva); // 8 builder.WriteUInt64(0); // 16 } Debug.Assert(builder.Count - start == SizeOfImportAddressTable); } private void WriteImportTable(BlobBuilder builder, int importTableRva, int importAddressTableRva) { int start = builder.Count; int ilRVA = importTableRva + 40; int hintRva = ilRVA + (Is32Bit ? 12 : 16); int nameRva = hintRva + 12 + 2; // Import table builder.WriteUInt32((uint)ilRVA); // 4 builder.WriteUInt32(0); // 8 builder.WriteUInt32(0); // 12 builder.WriteUInt32((uint)nameRva); // 16 builder.WriteUInt32((uint)importAddressTableRva); // 20 builder.WriteBytes(0, 20); // 40 // Import Lookup table if (Is32Bit) { builder.WriteUInt32((uint)hintRva); // 44 builder.WriteUInt32(0); // 48 builder.WriteUInt32(0); // 52 } else { builder.WriteUInt64((uint)hintRva); // 48 builder.WriteUInt64(0); // 56 } // Hint table builder.WriteUInt16(0); // Hint 54|58 foreach (char ch in CorEntryPointName) { builder.WriteByte((byte)ch); // 65|69 } builder.WriteByte(0); // 66|70 Debug.Assert(builder.Count - start == SizeOfImportTable); } private static void WriteNameTable(BlobBuilder builder) { int start = builder.Count; foreach (char ch in CorEntryPointDll) { builder.WriteByte((byte)ch); } builder.WriteByte(0); builder.WriteUInt16(0); Debug.Assert(builder.Count - start == SizeOfNameTable); } private void WriteCorHeader(BlobBuilder builder, int textSectionRva, int entryPointTokenOrRva, CorFlags corFlags) { const ushort majorRuntimeVersion = 2; const ushort minorRuntimeVersion = 5; int metadataRva = textSectionRva + ComputeOffsetToMetadata(); int resourcesRva = metadataRva + MetadataSize; int signatureRva = resourcesRva + ResourceDataSize; int start = builder.Count; // Size: builder.WriteUInt32(CorHeaderSize); // Version: builder.WriteUInt16(majorRuntimeVersion); builder.WriteUInt16(minorRuntimeVersion); // MetadataDirectory: builder.WriteUInt32((uint)metadataRva); builder.WriteUInt32((uint)MetadataSize); // COR Flags: builder.WriteUInt32((uint)corFlags); // EntryPoint: builder.WriteUInt32((uint)entryPointTokenOrRva); // ResourcesDirectory: builder.WriteUInt32((uint)(ResourceDataSize == 0 ? 0 : resourcesRva)); // 28 builder.WriteUInt32((uint)ResourceDataSize); // StrongNameSignatureDirectory: builder.WriteUInt32((uint)(StrongNameSignatureSize == 0 ? 0 : signatureRva)); // 36 builder.WriteUInt32((uint)StrongNameSignatureSize); // CodeManagerTableDirectory (not supported): builder.WriteUInt32(0); builder.WriteUInt32(0); // VtableFixupsDirectory (not supported): builder.WriteUInt32(0); builder.WriteUInt32(0); // ExportAddressTableJumpsDirectory (not supported): builder.WriteUInt32(0); builder.WriteUInt32(0); // ManagedNativeHeaderDirectory (not supported): builder.WriteUInt32(0); builder.WriteUInt32(0); Debug.Assert(builder.Count - start == CorHeaderSize); Debug.Assert(builder.Count % 4 == 0); } private void WriteRuntimeStartupStub(BlobBuilder sectionBuilder, int importAddressTableRva, ulong baseAddress) { // entry point code, consisting of a jump indirect to _CorXXXMain if (Is32Bit) { // Write zeros (nops) to pad the entry point code so that the target address is aligned on a 4 byte boundary. // Note that the section is aligned to FileAlignment, which is at least 512, so we can align relatively to the start of the section. sectionBuilder.Align(4); sectionBuilder.WriteUInt16(0); sectionBuilder.WriteByte(0xff); sectionBuilder.WriteByte(0x25); //4 sectionBuilder.WriteUInt32((uint)importAddressTableRva + (uint)baseAddress); //8 } else { // Write zeros (nops) to pad the entry point code so that the target address is aligned on a 8 byte boundary. // Note that the section is aligned to FileAlignment, which is at least 512, so we can align relatively to the start of the section. sectionBuilder.Align(8); sectionBuilder.WriteUInt32(0); sectionBuilder.WriteUInt16(0); sectionBuilder.WriteByte(0xff); sectionBuilder.WriteByte(0x25); //8 sectionBuilder.WriteUInt64((ulong)importAddressTableRva + baseAddress); //16 } } #endregion } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/HardwareIntrinsics/General/Vector128/EqualsAny.UInt64.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /****************************************************************************** * This file is auto-generated from a template file by the GenerateTests.csx * * script in tests\src\JIT\HardwareIntrinsics\X86\Shared. In order to make * * changes, please update the corresponding template and run according to the * * directions listed in the file. * ******************************************************************************/ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Intrinsics; namespace JIT.HardwareIntrinsics.General { public static partial class Program { private static void EqualsAnyUInt64() { var test = new VectorBooleanBinaryOpTest__EqualsAnyUInt64(); // Validates basic functionality works, using Unsafe.Read test.RunBasicScenario_UnsafeRead(); // Validates calling via reflection works, using Unsafe.Read test.RunReflectionScenario_UnsafeRead(); // Validates passing a static member works test.RunClsVarScenario(); // Validates passing a local works, using Unsafe.Read test.RunLclVarScenario_UnsafeRead(); // Validates passing the field of a local class works test.RunClassLclFldScenario(); // Validates passing an instance member of a class works test.RunClassFldScenario(); // Validates passing the field of a local struct works test.RunStructLclFldScenario(); // Validates passing an instance member of a struct works test.RunStructFldScenario(); if (!test.Succeeded) { throw new Exception("One or more scenarios did not complete as expected."); } } } public sealed unsafe class VectorBooleanBinaryOpTest__EqualsAnyUInt64 { private struct DataTable { private byte[] inArray1; private byte[] inArray2; private GCHandle inHandle1; private GCHandle inHandle2; private ulong alignment; public DataTable(UInt64[] inArray1, UInt64[] inArray2, int alignment) { int sizeOfinArray1 = inArray1.Length * Unsafe.SizeOf<UInt64>(); int sizeOfinArray2 = inArray2.Length * Unsafe.SizeOf<UInt64>(); if ((alignment != 32 && alignment != 16 && alignment != 8) || (alignment * 2) < sizeOfinArray1 || (alignment * 2) < sizeOfinArray2) { throw new ArgumentException("Invalid value of alignment"); } this.inArray1 = new byte[alignment * 2]; this.inArray2 = new byte[alignment * 2]; this.inHandle1 = GCHandle.Alloc(this.inArray1, GCHandleType.Pinned); this.inHandle2 = GCHandle.Alloc(this.inArray2, GCHandleType.Pinned); this.alignment = (ulong)alignment; Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray1Ptr), ref Unsafe.As<UInt64, byte>(ref inArray1[0]), (uint)sizeOfinArray1); Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray2Ptr), ref Unsafe.As<UInt64, byte>(ref inArray2[0]), (uint)sizeOfinArray2); } public void* inArray1Ptr => Align((byte*)(inHandle1.AddrOfPinnedObject().ToPointer()), alignment); public void* inArray2Ptr => Align((byte*)(inHandle2.AddrOfPinnedObject().ToPointer()), alignment); public void Dispose() { inHandle1.Free(); inHandle2.Free(); } private static unsafe void* Align(byte* buffer, ulong expectedAlignment) { return (void*)(((ulong)buffer + expectedAlignment - 1) & ~(expectedAlignment - 1)); } } private struct TestStruct { public Vector128<UInt64> _fld1; public Vector128<UInt64> _fld2; public static TestStruct Create() { var testStruct = new TestStruct(); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref testStruct._fld1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref testStruct._fld2), ref Unsafe.As<UInt64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); return testStruct; } public void RunStructFldScenario(VectorBooleanBinaryOpTest__EqualsAnyUInt64 testClass) { var result = Vector128.EqualsAny(_fld1, _fld2); testClass.ValidateResult(_fld1, _fld2, result); } } private static readonly int LargestVectorSize = 16; private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector128<UInt64>>() / sizeof(UInt64); private static readonly int Op2ElementCount = Unsafe.SizeOf<Vector128<UInt64>>() / sizeof(UInt64); private static UInt64[] _data1 = new UInt64[Op1ElementCount]; private static UInt64[] _data2 = new UInt64[Op2ElementCount]; private static Vector128<UInt64> _clsVar1; private static Vector128<UInt64> _clsVar2; private Vector128<UInt64> _fld1; private Vector128<UInt64> _fld2; private DataTable _dataTable; static VectorBooleanBinaryOpTest__EqualsAnyUInt64() { for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _clsVar1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _clsVar2), ref Unsafe.As<UInt64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); } public VectorBooleanBinaryOpTest__EqualsAnyUInt64() { Succeeded = true; for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _fld1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _fld2), ref Unsafe.As<UInt64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); } _dataTable = new DataTable(_data1, _data2, LargestVectorSize); } public bool Succeeded { get; set; } public void RunBasicScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead)); var result = Vector128.EqualsAny( Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr), Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray2Ptr) ); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, result); } public void RunReflectionScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead)); var method = typeof(Vector128).GetMethod(nameof(Vector128.EqualsAny), new Type[] { typeof(Vector128<UInt64>), typeof(Vector128<UInt64>) }); if (method is null) { method = typeof(Vector128).GetMethod(nameof(Vector128.EqualsAny), 1, new Type[] { typeof(Vector128<>).MakeGenericType(Type.MakeGenericMethodParameter(0)), typeof(Vector128<>).MakeGenericType(Type.MakeGenericMethodParameter(0)) }); } if (method.IsGenericMethodDefinition) { method = method.MakeGenericMethod(typeof(UInt64)); } var result = method.Invoke(null, new object[] { Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr), Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray2Ptr) }); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, (bool)(result)); } public void RunClsVarScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario)); var result = Vector128.EqualsAny( _clsVar1, _clsVar2 ); ValidateResult(_clsVar1, _clsVar2, result); } public void RunLclVarScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead)); var op1 = Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr); var op2 = Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray2Ptr); var result = Vector128.EqualsAny(op1, op2); ValidateResult(op1, op2, result); } public void RunClassLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario)); var test = new VectorBooleanBinaryOpTest__EqualsAnyUInt64(); var result = Vector128.EqualsAny(test._fld1, test._fld2); ValidateResult(test._fld1, test._fld2, result); } public void RunClassFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario)); var result = Vector128.EqualsAny(_fld1, _fld2); ValidateResult(_fld1, _fld2, result); } public void RunStructLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario)); var test = TestStruct.Create(); var result = Vector128.EqualsAny(test._fld1, test._fld2); ValidateResult(test._fld1, test._fld2, result); } public void RunStructFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario)); var test = TestStruct.Create(); test.RunStructFldScenario(this); } private void ValidateResult(Vector128<UInt64> op1, Vector128<UInt64> op2, bool result, [CallerMemberName] string method = "") { UInt64[] inArray1 = new UInt64[Op1ElementCount]; UInt64[] inArray2 = new UInt64[Op2ElementCount]; Unsafe.WriteUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray1[0]), op1); Unsafe.WriteUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray2[0]), op2); ValidateResult(inArray1, inArray2, result, method); } private void ValidateResult(void* op1, void* op2, bool result, [CallerMemberName] string method = "") { UInt64[] inArray1 = new UInt64[Op1ElementCount]; UInt64[] inArray2 = new UInt64[Op2ElementCount]; Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(op1), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray2[0]), ref Unsafe.AsRef<byte>(op2), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); ValidateResult(inArray1, inArray2, result, method); } private void ValidateResult(UInt64[] left, UInt64[] right, bool result, [CallerMemberName] string method = "") { bool succeeded = true; var expectedResult = false; for (var i = 0; i < Op1ElementCount; i++) { expectedResult |= (left[i] == right[i]); } succeeded = (expectedResult == result); if (!succeeded) { TestLibrary.TestFramework.LogInformation($"{nameof(Vector128)}.{nameof(Vector128.EqualsAny)}<UInt64>(Vector128<UInt64>, Vector128<UInt64>): {method} failed:"); TestLibrary.TestFramework.LogInformation($" left: ({string.Join(", ", left)})"); TestLibrary.TestFramework.LogInformation($" right: ({string.Join(", ", right)})"); TestLibrary.TestFramework.LogInformation($" result: ({result})"); TestLibrary.TestFramework.LogInformation(string.Empty); Succeeded = false; } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /****************************************************************************** * This file is auto-generated from a template file by the GenerateTests.csx * * script in tests\src\JIT\HardwareIntrinsics\X86\Shared. In order to make * * changes, please update the corresponding template and run according to the * * directions listed in the file. * ******************************************************************************/ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Intrinsics; namespace JIT.HardwareIntrinsics.General { public static partial class Program { private static void EqualsAnyUInt64() { var test = new VectorBooleanBinaryOpTest__EqualsAnyUInt64(); // Validates basic functionality works, using Unsafe.Read test.RunBasicScenario_UnsafeRead(); // Validates calling via reflection works, using Unsafe.Read test.RunReflectionScenario_UnsafeRead(); // Validates passing a static member works test.RunClsVarScenario(); // Validates passing a local works, using Unsafe.Read test.RunLclVarScenario_UnsafeRead(); // Validates passing the field of a local class works test.RunClassLclFldScenario(); // Validates passing an instance member of a class works test.RunClassFldScenario(); // Validates passing the field of a local struct works test.RunStructLclFldScenario(); // Validates passing an instance member of a struct works test.RunStructFldScenario(); if (!test.Succeeded) { throw new Exception("One or more scenarios did not complete as expected."); } } } public sealed unsafe class VectorBooleanBinaryOpTest__EqualsAnyUInt64 { private struct DataTable { private byte[] inArray1; private byte[] inArray2; private GCHandle inHandle1; private GCHandle inHandle2; private ulong alignment; public DataTable(UInt64[] inArray1, UInt64[] inArray2, int alignment) { int sizeOfinArray1 = inArray1.Length * Unsafe.SizeOf<UInt64>(); int sizeOfinArray2 = inArray2.Length * Unsafe.SizeOf<UInt64>(); if ((alignment != 32 && alignment != 16 && alignment != 8) || (alignment * 2) < sizeOfinArray1 || (alignment * 2) < sizeOfinArray2) { throw new ArgumentException("Invalid value of alignment"); } this.inArray1 = new byte[alignment * 2]; this.inArray2 = new byte[alignment * 2]; this.inHandle1 = GCHandle.Alloc(this.inArray1, GCHandleType.Pinned); this.inHandle2 = GCHandle.Alloc(this.inArray2, GCHandleType.Pinned); this.alignment = (ulong)alignment; Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray1Ptr), ref Unsafe.As<UInt64, byte>(ref inArray1[0]), (uint)sizeOfinArray1); Unsafe.CopyBlockUnaligned(ref Unsafe.AsRef<byte>(inArray2Ptr), ref Unsafe.As<UInt64, byte>(ref inArray2[0]), (uint)sizeOfinArray2); } public void* inArray1Ptr => Align((byte*)(inHandle1.AddrOfPinnedObject().ToPointer()), alignment); public void* inArray2Ptr => Align((byte*)(inHandle2.AddrOfPinnedObject().ToPointer()), alignment); public void Dispose() { inHandle1.Free(); inHandle2.Free(); } private static unsafe void* Align(byte* buffer, ulong expectedAlignment) { return (void*)(((ulong)buffer + expectedAlignment - 1) & ~(expectedAlignment - 1)); } } private struct TestStruct { public Vector128<UInt64> _fld1; public Vector128<UInt64> _fld2; public static TestStruct Create() { var testStruct = new TestStruct(); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref testStruct._fld1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref testStruct._fld2), ref Unsafe.As<UInt64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); return testStruct; } public void RunStructFldScenario(VectorBooleanBinaryOpTest__EqualsAnyUInt64 testClass) { var result = Vector128.EqualsAny(_fld1, _fld2); testClass.ValidateResult(_fld1, _fld2, result); } } private static readonly int LargestVectorSize = 16; private static readonly int Op1ElementCount = Unsafe.SizeOf<Vector128<UInt64>>() / sizeof(UInt64); private static readonly int Op2ElementCount = Unsafe.SizeOf<Vector128<UInt64>>() / sizeof(UInt64); private static UInt64[] _data1 = new UInt64[Op1ElementCount]; private static UInt64[] _data2 = new UInt64[Op2ElementCount]; private static Vector128<UInt64> _clsVar1; private static Vector128<UInt64> _clsVar2; private Vector128<UInt64> _fld1; private Vector128<UInt64> _fld2; private DataTable _dataTable; static VectorBooleanBinaryOpTest__EqualsAnyUInt64() { for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _clsVar1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _clsVar2), ref Unsafe.As<UInt64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); } public VectorBooleanBinaryOpTest__EqualsAnyUInt64() { Succeeded = true; for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _fld1), ref Unsafe.As<UInt64, byte>(ref _data1[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); } Unsafe.CopyBlockUnaligned(ref Unsafe.As<Vector128<UInt64>, byte>(ref _fld2), ref Unsafe.As<UInt64, byte>(ref _data2[0]), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); for (var i = 0; i < Op1ElementCount; i++) { _data1[i] = TestLibrary.Generator.GetUInt64(); } for (var i = 0; i < Op2ElementCount; i++) { _data2[i] = TestLibrary.Generator.GetUInt64(); } _dataTable = new DataTable(_data1, _data2, LargestVectorSize); } public bool Succeeded { get; set; } public void RunBasicScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunBasicScenario_UnsafeRead)); var result = Vector128.EqualsAny( Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr), Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray2Ptr) ); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, result); } public void RunReflectionScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunReflectionScenario_UnsafeRead)); var method = typeof(Vector128).GetMethod(nameof(Vector128.EqualsAny), new Type[] { typeof(Vector128<UInt64>), typeof(Vector128<UInt64>) }); if (method is null) { method = typeof(Vector128).GetMethod(nameof(Vector128.EqualsAny), 1, new Type[] { typeof(Vector128<>).MakeGenericType(Type.MakeGenericMethodParameter(0)), typeof(Vector128<>).MakeGenericType(Type.MakeGenericMethodParameter(0)) }); } if (method.IsGenericMethodDefinition) { method = method.MakeGenericMethod(typeof(UInt64)); } var result = method.Invoke(null, new object[] { Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr), Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray2Ptr) }); ValidateResult(_dataTable.inArray1Ptr, _dataTable.inArray2Ptr, (bool)(result)); } public void RunClsVarScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClsVarScenario)); var result = Vector128.EqualsAny( _clsVar1, _clsVar2 ); ValidateResult(_clsVar1, _clsVar2, result); } public void RunLclVarScenario_UnsafeRead() { TestLibrary.TestFramework.BeginScenario(nameof(RunLclVarScenario_UnsafeRead)); var op1 = Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray1Ptr); var op2 = Unsafe.Read<Vector128<UInt64>>(_dataTable.inArray2Ptr); var result = Vector128.EqualsAny(op1, op2); ValidateResult(op1, op2, result); } public void RunClassLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario)); var test = new VectorBooleanBinaryOpTest__EqualsAnyUInt64(); var result = Vector128.EqualsAny(test._fld1, test._fld2); ValidateResult(test._fld1, test._fld2, result); } public void RunClassFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunClassFldScenario)); var result = Vector128.EqualsAny(_fld1, _fld2); ValidateResult(_fld1, _fld2, result); } public void RunStructLclFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructLclFldScenario)); var test = TestStruct.Create(); var result = Vector128.EqualsAny(test._fld1, test._fld2); ValidateResult(test._fld1, test._fld2, result); } public void RunStructFldScenario() { TestLibrary.TestFramework.BeginScenario(nameof(RunStructFldScenario)); var test = TestStruct.Create(); test.RunStructFldScenario(this); } private void ValidateResult(Vector128<UInt64> op1, Vector128<UInt64> op2, bool result, [CallerMemberName] string method = "") { UInt64[] inArray1 = new UInt64[Op1ElementCount]; UInt64[] inArray2 = new UInt64[Op2ElementCount]; Unsafe.WriteUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray1[0]), op1); Unsafe.WriteUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray2[0]), op2); ValidateResult(inArray1, inArray2, result, method); } private void ValidateResult(void* op1, void* op2, bool result, [CallerMemberName] string method = "") { UInt64[] inArray1 = new UInt64[Op1ElementCount]; UInt64[] inArray2 = new UInt64[Op2ElementCount]; Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray1[0]), ref Unsafe.AsRef<byte>(op1), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); Unsafe.CopyBlockUnaligned(ref Unsafe.As<UInt64, byte>(ref inArray2[0]), ref Unsafe.AsRef<byte>(op2), (uint)Unsafe.SizeOf<Vector128<UInt64>>()); ValidateResult(inArray1, inArray2, result, method); } private void ValidateResult(UInt64[] left, UInt64[] right, bool result, [CallerMemberName] string method = "") { bool succeeded = true; var expectedResult = false; for (var i = 0; i < Op1ElementCount; i++) { expectedResult |= (left[i] == right[i]); } succeeded = (expectedResult == result); if (!succeeded) { TestLibrary.TestFramework.LogInformation($"{nameof(Vector128)}.{nameof(Vector128.EqualsAny)}<UInt64>(Vector128<UInt64>, Vector128<UInt64>): {method} failed:"); TestLibrary.TestFramework.LogInformation($" left: ({string.Join(", ", left)})"); TestLibrary.TestFramework.LogInformation($" right: ({string.Join(", ", right)})"); TestLibrary.TestFramework.LogInformation($" result: ({result})"); TestLibrary.TestFramework.LogInformation(string.Empty); Succeeded = false; } } } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/jit64/hfa/main/testA/hfa_sf2A_d.csproj
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <CLRTestPriority>1</CLRTestPriority> </PropertyGroup> <PropertyGroup> <DebugType>full</DebugType> <Optimize>False</Optimize> </PropertyGroup> <ItemGroup> <Compile Include="hfa_testA.cs" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\dll\common.csproj" /> <ProjectReference Include="..\dll\hfa_simple_f32_common.csproj" /> <ProjectReference Include="..\dll\hfa_simple_f32_interop_cpp.csproj" /> <CMakeProjectReference Include="..\dll\CMakelists.txt" /> </ItemGroup> </Project>
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <CLRTestPriority>1</CLRTestPriority> </PropertyGroup> <PropertyGroup> <DebugType>full</DebugType> <Optimize>False</Optimize> </PropertyGroup> <ItemGroup> <Compile Include="hfa_testA.cs" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\dll\common.csproj" /> <ProjectReference Include="..\dll\hfa_simple_f32_common.csproj" /> <ProjectReference Include="..\dll\hfa_simple_f32_interop_cpp.csproj" /> <CMakeProjectReference Include="..\dll\CMakelists.txt" /> </ItemGroup> </Project>
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/GC/API/GC/Collect_Forced_1.csproj
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <CLRTestExecutionArguments>0</CLRTestExecutionArguments> <CLRTestPriority>1</CLRTestPriority> </PropertyGroup> <PropertyGroup> <!-- Set to 'Full' if the Debug? column is marked in the spreadsheet. Leave blank otherwise. --> <DebugType>PdbOnly</DebugType> <GCStressIncompatible>true</GCStressIncompatible> </PropertyGroup> <ItemGroup> <Compile Include="Collect_Forced.cs" /> </ItemGroup> </Project>
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <CLRTestExecutionArguments>0</CLRTestExecutionArguments> <CLRTestPriority>1</CLRTestPriority> </PropertyGroup> <PropertyGroup> <!-- Set to 'Full' if the Debug? column is marked in the spreadsheet. Leave blank otherwise. --> <DebugType>PdbOnly</DebugType> <GCStressIncompatible>true</GCStressIncompatible> </PropertyGroup> <ItemGroup> <Compile Include="Collect_Forced.cs" /> </ItemGroup> </Project>
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/baseservices/threading/generics/WaitCallback/thread06.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Threading; class Gen<T> { public virtual void Target<U>(object p) { //dummy line to avoid warnings Test_thread06.Eval(typeof(U)!=p.GetType()); ManualResetEvent evt = (ManualResetEvent) p; Interlocked.Increment(ref Test_thread06.Xcounter); evt.Set(); } public static void ThreadPoolTest<U>() { ManualResetEvent[] evts = new ManualResetEvent[Test_thread06.nThreads]; WaitHandle[] hdls = new WaitHandle[Test_thread06.nThreads]; for (int i=0; i<Test_thread06.nThreads; i++) { evts[i] = new ManualResetEvent(false); hdls[i] = (WaitHandle) evts[i]; } Gen<T> obj = new Gen<T>(); for (int i = 0; i < Test_thread06.nThreads; i++) { WaitCallback cb = new WaitCallback(obj.Target<U>); ThreadPool.QueueUserWorkItem(cb,evts[i]); } WaitHandle.WaitAll(hdls); Test_thread06.Eval(Test_thread06.Xcounter==Test_thread06.nThreads); Test_thread06.Xcounter = 0; } } public class Test_thread06 { public static int nThreads =50; public static int counter = 0; public static int Xcounter = 0; public static bool result = true; public static void Eval(bool exp) { counter++; if (!exp) { result = exp; Console.WriteLine("Test Failed at location: " + counter); } } public static int Main() { Gen<int>.ThreadPoolTest<object>(); Gen<double>.ThreadPoolTest<string>(); Gen<string>.ThreadPoolTest<Guid>(); Gen<object>.ThreadPoolTest<int>(); Gen<Guid>.ThreadPoolTest<double>(); if (result) { Console.WriteLine("Test Passed"); return 100; } else { Console.WriteLine("Test Failed"); return 1; } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Threading; class Gen<T> { public virtual void Target<U>(object p) { //dummy line to avoid warnings Test_thread06.Eval(typeof(U)!=p.GetType()); ManualResetEvent evt = (ManualResetEvent) p; Interlocked.Increment(ref Test_thread06.Xcounter); evt.Set(); } public static void ThreadPoolTest<U>() { ManualResetEvent[] evts = new ManualResetEvent[Test_thread06.nThreads]; WaitHandle[] hdls = new WaitHandle[Test_thread06.nThreads]; for (int i=0; i<Test_thread06.nThreads; i++) { evts[i] = new ManualResetEvent(false); hdls[i] = (WaitHandle) evts[i]; } Gen<T> obj = new Gen<T>(); for (int i = 0; i < Test_thread06.nThreads; i++) { WaitCallback cb = new WaitCallback(obj.Target<U>); ThreadPool.QueueUserWorkItem(cb,evts[i]); } WaitHandle.WaitAll(hdls); Test_thread06.Eval(Test_thread06.Xcounter==Test_thread06.nThreads); Test_thread06.Xcounter = 0; } } public class Test_thread06 { public static int nThreads =50; public static int counter = 0; public static int Xcounter = 0; public static bool result = true; public static void Eval(bool exp) { counter++; if (!exp) { result = exp; Console.WriteLine("Test Failed at location: " + counter); } } public static int Main() { Gen<int>.ThreadPoolTest<object>(); Gen<double>.ThreadPoolTest<string>(); Gen<string>.ThreadPoolTest<Guid>(); Gen<object>.ThreadPoolTest<int>(); Gen<Guid>.ThreadPoolTest<double>(); if (result) { Console.WriteLine("Test Passed"); return 100; } else { Console.WriteLine("Test Failed"); return 1; } } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/libraries/System.Runtime/tests/System/TypedReferenceTests.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // // TypedReferenceTest.cs // // Authors: // Marek Safar <[email protected]> // // Copyright (C) 2015 Xamarin Inc (http://www.xamarin.com) // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to // permit persons to whom the Software is furnished to do so, subject to // the following conditions: // // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. using System.Collections.Generic; using System.Reflection; using Xunit; namespace System.Tests { public static class TypedReferenceTests { struct OneStruct { public string field; public int b; } class OtherType { public OneStruct oneStruct; } class ClassWithReadOnlyField { public readonly OneStruct Value; public ClassWithReadOnlyField(OneStruct value) => Value = value; } [Fact] public static void NegativeMakeTypedReference() { OtherType data = new OtherType { oneStruct = new OneStruct { field = "field", b = 2343 } }; Type dataType = data.GetType(); Assert.Throws<ArgumentNullException>(() => { TypedReference.MakeTypedReference(null, dataType.GetFields()); }); Assert.Throws<ArgumentNullException>(() => { TypedReference.MakeTypedReference(data, null); }); AssertExtensions.Throws<ArgumentException>("flds", null, () => { TypedReference.MakeTypedReference(data, Array.Empty<FieldInfo>()); }); AssertExtensions.Throws<ArgumentException>(null, () => { TypedReference.MakeTypedReference(data, new FieldInfo[] { dataType.GetField("oneStruct"), null }); }); AssertExtensions.Throws<ArgumentException>(null, () => { TypedReference.MakeTypedReference(data, new FieldInfo[] { dataType.GetField("oneStruct"), typeof(OneStruct).GetField("b") }); }); } [Fact] public static void MakeTypedReference_ToObjectTests() { OneStruct structObj = new OneStruct { field = "field", b = 2343 }; OtherType data = new OtherType { oneStruct = structObj }; Type dataType = data.GetType(); TypedReference reference = TypedReference.MakeTypedReference(data, new FieldInfo[] { dataType.GetField("oneStruct"), typeof(OneStruct).GetField("field") }); Assert.Equal("field", TypedReference.ToObject(reference)); reference = TypedReference.MakeTypedReference(data, new FieldInfo[] { dataType.GetField("oneStruct") }); Assert.Equal(structObj, TypedReference.ToObject(reference)); } [Fact] public static void MakeTypedReference_ReadOnlyField_Succeeds() { var os = new OneStruct() { b = 42, field = "data" }; var c = new ClassWithReadOnlyField(os); TypedReference tr = TypedReference.MakeTypedReference(c, new FieldInfo[] { c.GetType().GetField("Value") }); // doesn't throw Assert.Equal(os, TypedReference.ToObject(tr)); } [Fact] public static void GetTargetTypeTests() { int intValue = 13223; TypedReference reference = __makeref(intValue); Assert.Equal(intValue.GetType(), TypedReference.GetTargetType(reference)); long lValue = long.MaxValue; reference = __makeref(lValue); Assert.Equal(lValue.GetType(), TypedReference.GetTargetType(reference)); string strValue = "a value"; reference = __makeref(strValue); Assert.Equal(strValue.GetType(), TypedReference.GetTargetType(reference)); char charValue = 'A'; reference = __makeref(charValue); Assert.Equal(charValue.GetType(), TypedReference.GetTargetType(reference)); byte byteValue = byte.MaxValue; reference = __makeref(byteValue); Assert.Equal(byteValue.GetType(), TypedReference.GetTargetType(reference)); double doubleValue = double.MaxValue; reference = __makeref(doubleValue); Assert.Equal(doubleValue.GetType(), TypedReference.GetTargetType(reference)); float floatValue = float.MaxValue; reference = __makeref(floatValue); Assert.Equal(floatValue.GetType(), TypedReference.GetTargetType(reference)); bool boolValue = true; reference = __makeref(boolValue); Assert.Equal(boolValue.GetType(), TypedReference.GetTargetType(reference)); } [Fact] public static unsafe void PointerTypeTests() { void* pointerValue = (void*)0x123456; TypedReference reference = __makeref(pointerValue); Assert.Equal(typeof(void*), TypedReference.GetTargetType(reference)); // Pointer types get boxed as UIntPtr object obj = TypedReference.ToObject(reference); Assert.Equal(typeof(UIntPtr), obj.GetType()); Assert.Equal((UIntPtr)pointerValue, (UIntPtr)obj); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // // TypedReferenceTest.cs // // Authors: // Marek Safar <[email protected]> // // Copyright (C) 2015 Xamarin Inc (http://www.xamarin.com) // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to // permit persons to whom the Software is furnished to do so, subject to // the following conditions: // // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. using System.Collections.Generic; using System.Reflection; using Xunit; namespace System.Tests { public static class TypedReferenceTests { struct OneStruct { public string field; public int b; } class OtherType { public OneStruct oneStruct; } class ClassWithReadOnlyField { public readonly OneStruct Value; public ClassWithReadOnlyField(OneStruct value) => Value = value; } [Fact] public static void NegativeMakeTypedReference() { OtherType data = new OtherType { oneStruct = new OneStruct { field = "field", b = 2343 } }; Type dataType = data.GetType(); Assert.Throws<ArgumentNullException>(() => { TypedReference.MakeTypedReference(null, dataType.GetFields()); }); Assert.Throws<ArgumentNullException>(() => { TypedReference.MakeTypedReference(data, null); }); AssertExtensions.Throws<ArgumentException>("flds", null, () => { TypedReference.MakeTypedReference(data, Array.Empty<FieldInfo>()); }); AssertExtensions.Throws<ArgumentException>(null, () => { TypedReference.MakeTypedReference(data, new FieldInfo[] { dataType.GetField("oneStruct"), null }); }); AssertExtensions.Throws<ArgumentException>(null, () => { TypedReference.MakeTypedReference(data, new FieldInfo[] { dataType.GetField("oneStruct"), typeof(OneStruct).GetField("b") }); }); } [Fact] public static void MakeTypedReference_ToObjectTests() { OneStruct structObj = new OneStruct { field = "field", b = 2343 }; OtherType data = new OtherType { oneStruct = structObj }; Type dataType = data.GetType(); TypedReference reference = TypedReference.MakeTypedReference(data, new FieldInfo[] { dataType.GetField("oneStruct"), typeof(OneStruct).GetField("field") }); Assert.Equal("field", TypedReference.ToObject(reference)); reference = TypedReference.MakeTypedReference(data, new FieldInfo[] { dataType.GetField("oneStruct") }); Assert.Equal(structObj, TypedReference.ToObject(reference)); } [Fact] public static void MakeTypedReference_ReadOnlyField_Succeeds() { var os = new OneStruct() { b = 42, field = "data" }; var c = new ClassWithReadOnlyField(os); TypedReference tr = TypedReference.MakeTypedReference(c, new FieldInfo[] { c.GetType().GetField("Value") }); // doesn't throw Assert.Equal(os, TypedReference.ToObject(tr)); } [Fact] public static void GetTargetTypeTests() { int intValue = 13223; TypedReference reference = __makeref(intValue); Assert.Equal(intValue.GetType(), TypedReference.GetTargetType(reference)); long lValue = long.MaxValue; reference = __makeref(lValue); Assert.Equal(lValue.GetType(), TypedReference.GetTargetType(reference)); string strValue = "a value"; reference = __makeref(strValue); Assert.Equal(strValue.GetType(), TypedReference.GetTargetType(reference)); char charValue = 'A'; reference = __makeref(charValue); Assert.Equal(charValue.GetType(), TypedReference.GetTargetType(reference)); byte byteValue = byte.MaxValue; reference = __makeref(byteValue); Assert.Equal(byteValue.GetType(), TypedReference.GetTargetType(reference)); double doubleValue = double.MaxValue; reference = __makeref(doubleValue); Assert.Equal(doubleValue.GetType(), TypedReference.GetTargetType(reference)); float floatValue = float.MaxValue; reference = __makeref(floatValue); Assert.Equal(floatValue.GetType(), TypedReference.GetTargetType(reference)); bool boolValue = true; reference = __makeref(boolValue); Assert.Equal(boolValue.GetType(), TypedReference.GetTargetType(reference)); } [Fact] public static unsafe void PointerTypeTests() { void* pointerValue = (void*)0x123456; TypedReference reference = __makeref(pointerValue); Assert.Equal(typeof(void*), TypedReference.GetTargetType(reference)); // Pointer types get boxed as UIntPtr object obj = TypedReference.ToObject(reference); Assert.Equal(typeof(UIntPtr), obj.GetType()); Assert.Equal((UIntPtr)pointerValue, (UIntPtr)obj); } } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/coreclr/hosts/corerun/CMakeLists.txt
project(corerun) set(CMAKE_INCLUDE_CURRENT_DIR ON) if(CLR_CMAKE_HOST_WIN32) add_definitions(-DFX_VER_INTERNALNAME_STR=corerun.exe) else(CLR_CMAKE_HOST_WIN32) include(configure.cmake) endif(CLR_CMAKE_HOST_WIN32) add_executable_clr(corerun corerun.cpp dotenv.cpp native.rc ) if(CLR_CMAKE_HOST_WIN32) target_link_libraries(corerun advapi32.lib oleaut32.lib uuid.lib user32.lib ${STATIC_MT_CRT_LIB} ${STATIC_MT_VCRT_LIB} ) else(CLR_CMAKE_HOST_WIN32) target_link_libraries(corerun ${CMAKE_DL_LIBS}) # Android implements pthread natively if(NOT CLR_CMAKE_TARGET_ANDROID) target_link_libraries(corerun pthread) endif() endif(CLR_CMAKE_HOST_WIN32) install_clr(TARGETS corerun DESTINATIONS . COMPONENT hosts)
project(corerun) set(CMAKE_INCLUDE_CURRENT_DIR ON) if(CLR_CMAKE_HOST_WIN32) add_definitions(-DFX_VER_INTERNALNAME_STR=corerun.exe) else(CLR_CMAKE_HOST_WIN32) include(configure.cmake) endif(CLR_CMAKE_HOST_WIN32) add_executable_clr(corerun corerun.cpp dotenv.cpp native.rc ) if(CLR_CMAKE_HOST_WIN32) target_link_libraries(corerun advapi32.lib oleaut32.lib uuid.lib user32.lib ${STATIC_MT_CRT_LIB} ${STATIC_MT_VCRT_LIB} ) else(CLR_CMAKE_HOST_WIN32) target_link_libraries(corerun ${CMAKE_DL_LIBS}) # Android implements pthread natively if(NOT CLR_CMAKE_TARGET_ANDROID) target_link_libraries(corerun pthread) endif() endif(CLR_CMAKE_HOST_WIN32) install_clr(TARGETS corerun DESTINATIONS . COMPONENT hosts)
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/CodeGenBringUpTests/FPAdd.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // using System; using System.Runtime.CompilerServices; public class BringUpTest_FPAdd { const int Pass = 100; const int Fail = -1; [MethodImplAttribute(MethodImplOptions.NoInlining)] public static float FPAdd(float x, float y) { return x+y; } public static int Main() { float y = FPAdd(1f, 1f); Console.WriteLine(y); if (System.Math.Abs(y-2f) <= Single.Epsilon) return Pass; else return Fail; } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // using System; using System.Runtime.CompilerServices; public class BringUpTest_FPAdd { const int Pass = 100; const int Fail = -1; [MethodImplAttribute(MethodImplOptions.NoInlining)] public static float FPAdd(float x, float y) { return x+y; } public static int Main() { float y = FPAdd(1f, 1f); Console.WriteLine(y); if (System.Math.Abs(y-2f) <= Single.Epsilon) return Pass; else return Fail; } }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/Interop/PInvoke/Decimal/DecimalTestNative.cpp
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. #include "xplatform.h" #include <new> struct DecimalWrapper { DECIMAL dec; }; struct CurrencyWrapper { CURRENCY currency; }; namespace { BOOL operator==(CURRENCY lhs, CURRENCY rhs) { return lhs.int64 == rhs.int64 ? TRUE : FALSE; } BOOL operator==(DECIMAL lhs, DECIMAL rhs) { return lhs.signscale == rhs.signscale && lhs.Hi32 == rhs.Hi32 && lhs.Lo64 == rhs.Lo64 ? TRUE : FALSE; } } extern "C" DLL_EXPORT DECIMAL STDMETHODCALLTYPE CreateDecimalFromInt(int32_t i) { DECIMAL result; result.Hi32 = 0; result.Lo64 = abs(i); result.sign = i < 0 ? 1 : 0; result.scale = 0; result.wReserved = 0; return result; } extern "C" DLL_EXPORT LPDECIMAL STDMETHODCALLTYPE CreateLPDecimalFromInt(int32_t i) { return new (CoreClrAlloc(sizeof(DECIMAL))) DECIMAL(CreateDecimalFromInt(i)); } extern "C" DLL_EXPORT DecimalWrapper STDMETHODCALLTYPE CreateWrappedDecimalFromInt(int32_t i) { return { CreateDecimalFromInt(i) }; } extern "C" DLL_EXPORT BOOL STDMETHODCALLTYPE DecimalEqualToInt(DECIMAL dec, int32_t i) { DECIMAL intDecimal = CreateDecimalFromInt(i); return dec == intDecimal; } extern "C" DLL_EXPORT BOOL STDMETHODCALLTYPE LPDecimalEqualToInt(LPDECIMAL dec, int32_t i) { DECIMAL intDecimal = CreateDecimalFromInt(i); return *dec == intDecimal; } extern "C" DLL_EXPORT BOOL STDMETHODCALLTYPE WrappedDecimalEqualToInt(DecimalWrapper dec, int32_t i) { DECIMAL intDecimal = CreateDecimalFromInt(i); return dec.dec == intDecimal; } extern "C" DLL_EXPORT BOOL STDMETHODCALLTYPE ValidateAndChangeDecimal(DECIMAL* dec, int32_t expected, int32_t newValue) { BOOL result = *dec == CreateDecimalFromInt(expected); *dec = CreateDecimalFromInt(newValue); return result; } extern "C" DLL_EXPORT BOOL STDMETHODCALLTYPE ValidateAndChangeWrappedDecimal(DecimalWrapper* dec, int32_t expected, int32_t newValue) { BOOL result = dec->dec == CreateDecimalFromInt(expected); dec->dec = CreateDecimalFromInt(newValue); return result; } extern "C" DLL_EXPORT BOOL STDMETHODCALLTYPE ValidateAndChangeLPDecimal(LPDECIMAL* dec, int32_t expected, int32_t newValue) { BOOL result = **dec == CreateDecimalFromInt(expected); *dec = new(CoreClrAlloc(sizeof(DECIMAL))) DECIMAL(CreateDecimalFromInt(newValue)); return result; } extern "C" DLL_EXPORT void STDMETHODCALLTYPE GetDecimalForInt(int32_t i, DECIMAL* dec) { *dec = CreateDecimalFromInt(i); } extern "C" DLL_EXPORT void STDMETHODCALLTYPE GetLPDecimalForInt(int32_t i, LPDECIMAL* dec) { *dec = new (CoreClrAlloc(sizeof(DECIMAL))) DECIMAL(CreateDecimalFromInt(i)); } extern "C" DLL_EXPORT void STDMETHODCALLTYPE GetWrappedDecimalForInt(int32_t i, DecimalWrapper* dec) { dec->dec = CreateDecimalFromInt(i); } extern "C" DLL_EXPORT CURRENCY STDMETHODCALLTYPE CreateCurrencyFromInt(int32_t i) { CY currency; currency.int64 = i * 10000; return currency; } extern "C" DLL_EXPORT CurrencyWrapper STDMETHODCALLTYPE CreateWrappedCurrencyFromInt(int32_t i) { return { CreateCurrencyFromInt(i) }; } extern "C" DLL_EXPORT BOOL STDMETHODCALLTYPE CurrencyEqualToInt(CURRENCY currency, int32_t i) { CURRENCY intCurrency = CreateCurrencyFromInt(i); return currency == intCurrency; } extern "C" DLL_EXPORT BOOL STDMETHODCALLTYPE WrappedCurrencyEqualToInt(CurrencyWrapper currency, int32_t i) { CURRENCY intCurrency = CreateCurrencyFromInt(i); return currency.currency == intCurrency; } extern "C" DLL_EXPORT BOOL STDMETHODCALLTYPE ValidateAndChangeCurrency(CURRENCY* currency, int32_t expected, int32_t newValue) { BOOL result = *currency == CreateCurrencyFromInt(expected); *currency = CreateCurrencyFromInt(newValue); return result; } extern "C" DLL_EXPORT BOOL STDMETHODCALLTYPE ValidateAndChangeWrappedCurrency(CurrencyWrapper* currency, int32_t expected, int32_t newValue) { BOOL result = currency->currency == CreateCurrencyFromInt(expected); currency->currency = CreateCurrencyFromInt(newValue); return result; } extern "C" DLL_EXPORT void STDMETHODCALLTYPE GetCurrencyForInt(int32_t i, CURRENCY* currency) { *currency = CreateCurrencyFromInt(i); } extern "C" DLL_EXPORT void STDMETHODCALLTYPE GetWrappedCurrencyForInt(int32_t i, CurrencyWrapper* currency) { currency->currency = CreateCurrencyFromInt(i); } using DecimalCallback = void(STDMETHODCALLTYPE*)(DECIMAL); extern "C" DLL_EXPORT void STDMETHODCALLTYPE PassThroughDecimalToCallback(DECIMAL dec, DecimalCallback cb) { cb(dec); } using LPDecimalCallback = void(STDMETHODCALLTYPE*)(LPDECIMAL); extern "C" DLL_EXPORT void STDMETHODCALLTYPE PassThroughLPDecimalToCallback(LPDECIMAL dec, LPDecimalCallback cb) { cb(dec); } using CurrencyCallback = void(STDMETHODCALLTYPE*)(CURRENCY); extern "C" DLL_EXPORT void STDMETHODCALLTYPE PassThroughCurrencyToCallback(CURRENCY cy, CurrencyCallback cb) { cb(cy); }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. #include "xplatform.h" #include <new> struct DecimalWrapper { DECIMAL dec; }; struct CurrencyWrapper { CURRENCY currency; }; namespace { BOOL operator==(CURRENCY lhs, CURRENCY rhs) { return lhs.int64 == rhs.int64 ? TRUE : FALSE; } BOOL operator==(DECIMAL lhs, DECIMAL rhs) { return lhs.signscale == rhs.signscale && lhs.Hi32 == rhs.Hi32 && lhs.Lo64 == rhs.Lo64 ? TRUE : FALSE; } } extern "C" DLL_EXPORT DECIMAL STDMETHODCALLTYPE CreateDecimalFromInt(int32_t i) { DECIMAL result; result.Hi32 = 0; result.Lo64 = abs(i); result.sign = i < 0 ? 1 : 0; result.scale = 0; result.wReserved = 0; return result; } extern "C" DLL_EXPORT LPDECIMAL STDMETHODCALLTYPE CreateLPDecimalFromInt(int32_t i) { return new (CoreClrAlloc(sizeof(DECIMAL))) DECIMAL(CreateDecimalFromInt(i)); } extern "C" DLL_EXPORT DecimalWrapper STDMETHODCALLTYPE CreateWrappedDecimalFromInt(int32_t i) { return { CreateDecimalFromInt(i) }; } extern "C" DLL_EXPORT BOOL STDMETHODCALLTYPE DecimalEqualToInt(DECIMAL dec, int32_t i) { DECIMAL intDecimal = CreateDecimalFromInt(i); return dec == intDecimal; } extern "C" DLL_EXPORT BOOL STDMETHODCALLTYPE LPDecimalEqualToInt(LPDECIMAL dec, int32_t i) { DECIMAL intDecimal = CreateDecimalFromInt(i); return *dec == intDecimal; } extern "C" DLL_EXPORT BOOL STDMETHODCALLTYPE WrappedDecimalEqualToInt(DecimalWrapper dec, int32_t i) { DECIMAL intDecimal = CreateDecimalFromInt(i); return dec.dec == intDecimal; } extern "C" DLL_EXPORT BOOL STDMETHODCALLTYPE ValidateAndChangeDecimal(DECIMAL* dec, int32_t expected, int32_t newValue) { BOOL result = *dec == CreateDecimalFromInt(expected); *dec = CreateDecimalFromInt(newValue); return result; } extern "C" DLL_EXPORT BOOL STDMETHODCALLTYPE ValidateAndChangeWrappedDecimal(DecimalWrapper* dec, int32_t expected, int32_t newValue) { BOOL result = dec->dec == CreateDecimalFromInt(expected); dec->dec = CreateDecimalFromInt(newValue); return result; } extern "C" DLL_EXPORT BOOL STDMETHODCALLTYPE ValidateAndChangeLPDecimal(LPDECIMAL* dec, int32_t expected, int32_t newValue) { BOOL result = **dec == CreateDecimalFromInt(expected); *dec = new(CoreClrAlloc(sizeof(DECIMAL))) DECIMAL(CreateDecimalFromInt(newValue)); return result; } extern "C" DLL_EXPORT void STDMETHODCALLTYPE GetDecimalForInt(int32_t i, DECIMAL* dec) { *dec = CreateDecimalFromInt(i); } extern "C" DLL_EXPORT void STDMETHODCALLTYPE GetLPDecimalForInt(int32_t i, LPDECIMAL* dec) { *dec = new (CoreClrAlloc(sizeof(DECIMAL))) DECIMAL(CreateDecimalFromInt(i)); } extern "C" DLL_EXPORT void STDMETHODCALLTYPE GetWrappedDecimalForInt(int32_t i, DecimalWrapper* dec) { dec->dec = CreateDecimalFromInt(i); } extern "C" DLL_EXPORT CURRENCY STDMETHODCALLTYPE CreateCurrencyFromInt(int32_t i) { CY currency; currency.int64 = i * 10000; return currency; } extern "C" DLL_EXPORT CurrencyWrapper STDMETHODCALLTYPE CreateWrappedCurrencyFromInt(int32_t i) { return { CreateCurrencyFromInt(i) }; } extern "C" DLL_EXPORT BOOL STDMETHODCALLTYPE CurrencyEqualToInt(CURRENCY currency, int32_t i) { CURRENCY intCurrency = CreateCurrencyFromInt(i); return currency == intCurrency; } extern "C" DLL_EXPORT BOOL STDMETHODCALLTYPE WrappedCurrencyEqualToInt(CurrencyWrapper currency, int32_t i) { CURRENCY intCurrency = CreateCurrencyFromInt(i); return currency.currency == intCurrency; } extern "C" DLL_EXPORT BOOL STDMETHODCALLTYPE ValidateAndChangeCurrency(CURRENCY* currency, int32_t expected, int32_t newValue) { BOOL result = *currency == CreateCurrencyFromInt(expected); *currency = CreateCurrencyFromInt(newValue); return result; } extern "C" DLL_EXPORT BOOL STDMETHODCALLTYPE ValidateAndChangeWrappedCurrency(CurrencyWrapper* currency, int32_t expected, int32_t newValue) { BOOL result = currency->currency == CreateCurrencyFromInt(expected); currency->currency = CreateCurrencyFromInt(newValue); return result; } extern "C" DLL_EXPORT void STDMETHODCALLTYPE GetCurrencyForInt(int32_t i, CURRENCY* currency) { *currency = CreateCurrencyFromInt(i); } extern "C" DLL_EXPORT void STDMETHODCALLTYPE GetWrappedCurrencyForInt(int32_t i, CurrencyWrapper* currency) { currency->currency = CreateCurrencyFromInt(i); } using DecimalCallback = void(STDMETHODCALLTYPE*)(DECIMAL); extern "C" DLL_EXPORT void STDMETHODCALLTYPE PassThroughDecimalToCallback(DECIMAL dec, DecimalCallback cb) { cb(dec); } using LPDecimalCallback = void(STDMETHODCALLTYPE*)(LPDECIMAL); extern "C" DLL_EXPORT void STDMETHODCALLTYPE PassThroughLPDecimalToCallback(LPDECIMAL dec, LPDecimalCallback cb) { cb(dec); } using CurrencyCallback = void(STDMETHODCALLTYPE*)(CURRENCY); extern "C" DLL_EXPORT void STDMETHODCALLTYPE PassThroughCurrencyToCallback(CURRENCY cy, CurrencyCallback cb) { cb(cy); }
-1
dotnet/runtime
66,312
Fix ConditionalFactAttribute instances in ILPROJ tests
I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
trylek
2022-03-07T20:19:21Z
2022-03-08T01:22:09Z
145b67782ae1630c04c3706af03f720583a28bdc
bc822868822f0206a1fa1f01c61f9b2d78bc9ac0
Fix ConditionalFactAttribute instances in ILPROJ tests. I have found out that the change I originally made was incorrect - the Roslyn XUnit wrapper source generator started failing with a nullref. I have experimentally identified that I can fix this problem by explicitly specifying public key tokens of the System.Runtime and Microsoft.DotNet.XUnitExtensions assembly references and by adding a reference to the TestLibrary. As I had to update System.Runtime references in all affected modules, I also put back the System.Runtime assembly as the home for System.Type as was the original state I copied from a C# compilation disassembly, I changed them to mscorlib because I didn't know I would need to specify the System.Runtime reference. Thanks Tomas
./src/tests/JIT/HardwareIntrinsics/General/NotSupported/Vector64BooleanAsGeneric_UInt32.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /****************************************************************************** * This file is auto-generated from a template file by the GenerateTests.csx * * script in tests\src\JIT\HardwareIntrinsics\General\Shared. In order to make * * changes, please update the corresponding template and run according to the * * directions listed in the file. * ******************************************************************************/ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Intrinsics; namespace JIT.HardwareIntrinsics.General { public static partial class Program { private static void Vector64BooleanAsGeneric_UInt32() { bool succeeded = false; try { Vector64<uint> result = default(Vector64<bool>).As<bool, uint>(); } catch (NotSupportedException) { succeeded = true; } if (!succeeded) { TestLibrary.TestFramework.LogInformation($"Vector64BooleanAsGeneric_UInt32: RunNotSupportedScenario failed to throw NotSupportedException."); TestLibrary.TestFramework.LogInformation(string.Empty); throw new Exception("One or more scenarios did not complete as expected."); } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /****************************************************************************** * This file is auto-generated from a template file by the GenerateTests.csx * * script in tests\src\JIT\HardwareIntrinsics\General\Shared. In order to make * * changes, please update the corresponding template and run according to the * * directions listed in the file. * ******************************************************************************/ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Intrinsics; namespace JIT.HardwareIntrinsics.General { public static partial class Program { private static void Vector64BooleanAsGeneric_UInt32() { bool succeeded = false; try { Vector64<uint> result = default(Vector64<bool>).As<bool, uint>(); } catch (NotSupportedException) { succeeded = true; } if (!succeeded) { TestLibrary.TestFramework.LogInformation($"Vector64BooleanAsGeneric_UInt32: RunNotSupportedScenario failed to throw NotSupportedException."); TestLibrary.TestFramework.LogInformation(string.Empty); throw new Exception("One or more scenarios did not complete as expected."); } } } }
-1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./docs/workflow/testing/host/testing.md
# Building and running host tests The [host tests](/src/installer/tests) use [xunit](http://xunit.github.io/) for their testing framework. ## Building tests To build the host tests, first build the product: 1. Build CoreCLR and libraries (`clr` and `libs` subsets): ``` build.cmd/sh -subset clr+libs -c Release ``` * [CoreCLR](../../building/coreclr/README.md) build instructions * [Libraries](../../building/libraries/README.md) build instructions 2. Build the host and packs: ``` build.cmd/sh -subset host+packs.product -runtimeConfiguration Release -librariesConfiguration Release ``` If using a configuration other than Release for CoreCLR/libraries, specify the desired configuration in the `-runtimeConfiguration`/`-librariesConfiguration` arguments. ### Building all tests The host tests are part of the `host` subset by default, so building the `host` subset also builds the host test. To build just the host tests: ``` build.cmd/sh -subset host.tests -runtimeConfiguration Release -librariesConfiguration Release ``` ### Building specific tests A specific test project can also be directly built. For example: ``` dotnet build src\installer\tests\HostActivation.Tests ``` ## Test context The host tests depend on: 1. Product binaries in a directory layout matching that of a .NET install 2. Restored [test projects](/src/installer/tests/Assets/TestProjects) which will be built and run by the tests 3. TestContextVariables.txt file with property and value pairs which will be read by the tests When [running all tests](#running-all-tests), the build is configured such that these are created/performed before the start of the test run. In order to create (or update) these dependencies without running all tests, the build targets that create them - RefreshProjectTestAssets and SetupTestContextVariables - can be directly run for the desired test project. For example: ``` dotnet build src\installer\tests\HostActivation.Tests -t:RefreshProjectTestAssets;SetupTestContextVariables -p:RuntimeConfiguration=Release -p:LibrariesConfiguration=Release ``` ## Running tests ### Running all tests To run all host tests: ``` build.cmd/sh -subset host.tests -test ``` By default, the above command will also build the tests before running them. To run the tests without building them, specify `-testnobuild`. ### Running specific tests If all tests have not been previously run, make sure the [test context](#test-context) is set up for the test library. Tests from a specific test project can be run using [`dotnet test`](https://docs.microsoft.com/dotnet/core/tools/dotnet-test) targeting the built test binary. For example: ``` dotnet test artifacts/bin/HostActivation.Tests/Debug/net5.0/HostActivation.Tests.dll ``` To filter to specific tests within the test library, use the [filter options](https://docs.microsoft.com/dotnet/core/tools/dotnet-test#filter-option-details) available for `dotnet test`. For example: ``` dotnet test artifacts/bin/HostActivation.Tests/Debug/net5.0/HostActivation.Tests.dll --filter DependencyResolution ``` ### Visual Studio The [Microsoft.DotNet.CoreSetup.sln](/src/installer/Microsoft.DotNet.CoreSetup.sln) can be used to run and debug host tests through Visual Studio. When using the solution, the product should have already been [built](#building-tests) and the [test context](#test-context) set up. ### Preserving test artifacts In order to test the hosting components, the tests launch a separate process (e.g. `dotnet`, apphost, native host) and validate the expected output (standard output and error) of the launched process. This usually involves copying or creating test artifacts in the form of an application to run or a .NET install to run against. The tests will delete these artifacts after the test finishes. To allow inspection or usage after the test finishes, set the environment variable `PRESERVE_TEST_RUNS=1` to avoid deleting the test artifacts.
# Building and running host tests The [host tests](/src/installer/tests) use [xunit](http://xunit.github.io/) for their testing framework. ## Building tests To build the host tests, first build the product: 1. Build CoreCLR and libraries (`clr` and `libs` subsets): ``` build.cmd/sh -subset clr+libs -c Release ``` * [CoreCLR](../../building/coreclr/README.md) build instructions * [Libraries](../../building/libraries/README.md) build instructions 2. Build the host and packs: ``` build.cmd/sh -subset host+packs.product -runtimeConfiguration Release -librariesConfiguration Release ``` If using a configuration other than Release for CoreCLR/libraries, specify the desired configuration in the `-runtimeConfiguration`/`-librariesConfiguration` arguments. ### Building all tests The host tests are part of the `host` subset by default, so building the `host` subset also builds the host test. To build just the host tests: ``` build.cmd/sh -subset host.tests -runtimeConfiguration Release -librariesConfiguration Release ``` ### Building specific tests A specific test project can also be directly built. For example: ``` dotnet build src\installer\tests\HostActivation.Tests ``` ## Test context The host tests depend on: 1. Product binaries in a directory layout matching that of a .NET install 2. Restored [test projects](/src/installer/tests/Assets/TestProjects) which will be built and run by the tests 3. TestContextVariables.txt file with property and value pairs which will be read by the tests When [running all tests](#running-all-tests), the build is configured such that these are created/performed before the start of the test run. In order to create (or update) these dependencies without running all tests, the build targets that create them - RefreshProjectTestAssets and SetupTestContextVariables - can be directly run for the desired test project. For example: ``` dotnet build src\installer\tests\HostActivation.Tests -t:RefreshProjectTestAssets;SetupTestContextVariables -p:RuntimeConfiguration=Release -p:LibrariesConfiguration=Release ``` ## Running tests ### Running all tests To run all host tests: ``` build.cmd/sh -subset host.tests -test ``` By default, the above command will also build the tests before running them. To run the tests without building them, specify `-testnobuild`. ### Running specific tests If all tests have not been previously run, make sure the [test context](#test-context) is set up for the test library. Tests from a specific test project can be run using [`dotnet test`](https://docs.microsoft.com/dotnet/core/tools/dotnet-test) targeting the built test binary. For example: ``` dotnet test artifacts/bin/HostActivation.Tests/Debug/net5.0/HostActivation.Tests.dll --filter category!=failing ``` To filter to specific tests within the test library, use the [filter options](https://docs.microsoft.com/dotnet/core/tools/dotnet-test#filter-option-details) available for `dotnet test`. For example: ``` dotnet test artifacts/bin/HostActivation.Tests/Debug/net5.0/HostActivation.Tests.dll --filter DependencyResolution&category!=failing ``` The `category!=failing` is to respect the [filtering traits](../libraries/filtering-tests.md) used by the runtime repo. ### Visual Studio The [Microsoft.DotNet.CoreSetup.sln](/src/installer/Microsoft.DotNet.CoreSetup.sln) can be used to run and debug host tests through Visual Studio. When using the solution, the product should have already been [built](#building-tests) and the [test context](#test-context) set up. ### Preserving test artifacts In order to test the hosting components, the tests launch a separate process (e.g. `dotnet`, apphost, native host) and validate the expected output (standard output and error) of the launched process. This usually involves copying or creating test artifacts in the form of an application to run or a .NET install to run against. The tests will delete these artifacts after the test finishes. To allow inspection or usage after the test finishes, set the environment variable `PRESERVE_TEST_RUNS=1` to avoid deleting the test artifacts.
1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./src/native/corehost/test/CMakeLists.txt
add_subdirectory(fx_ver) add_subdirectory(mockcoreclr) add_subdirectory(mockhostfxr/2_2) add_subdirectory(mockhostfxr/5_0) add_subdirectory(mockhostpolicy) add_subdirectory(nativehost) if (CLR_CMAKE_TARGET_WIN32) add_subdirectory(typelibs) add_subdirectory(comsxs) endif()
add_subdirectory(fx_ver) add_subdirectory(mockcoreclr) add_subdirectory(mockhostfxr/2_2) add_subdirectory(mockhostfxr/5_0) add_subdirectory(mockhostpolicy) add_subdirectory(nativehost) if (CLR_CMAKE_TARGET_WIN32) add_subdirectory(comsxs) add_subdirectory(ijw) add_subdirectory(typelibs) endif()
1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./src/native/corehost/test/nativehost/nativehost.cpp
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. #include <iostream> #include <pal.h> #include <error_codes.h> #include <nethost.h> #include "comhost_test.h" #include <hostfxr.h> #include "host_context_test.h" #include "resolve_component_dependencies_test.h" #include "get_native_search_directories_test.h" #include <utils.h> namespace { std::vector<char> tostr(const pal::string_t &value) { std::vector<char> vect; pal::pal_utf8string(value, &vect); return vect; } } #if defined(_WIN32) int __cdecl wmain(const int argc, const pal::char_t *argv[]) #else int main(const int argc, const pal::char_t *argv[]) #endif { if (argc < 2) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::char_t *command = argv[1]; if (pal::strcmp(command, _X("get_hostfxr_path")) == 0) { // args: ... [<explicit_load>] [<assembly_path>] [<dotnet_root>] [<hostfxr_to_load>] bool explicit_load = false; if (argc >= 3) explicit_load = pal::strcmp(to_lower(argv[2]).c_str(), _X("true")) == 0; const pal::char_t *assembly_path = nullptr; if (argc >= 4 && pal::strcmp(argv[3], _X("nullptr")) != 0) assembly_path = argv[3]; const pal::char_t *dotnet_root = nullptr; if (argc >= 5 && pal::strcmp(argv[4], _X("nullptr")) != 0) dotnet_root = argv[4]; if (argc >= 6) { pal::string_t to_load = argv[5]; pal::dll_t fxr; if (!pal::load_library(&to_load, &fxr)) { std::cout << "Failed to load library: " << tostr(to_load).data() << std::endl; return EXIT_FAILURE; } } decltype(&get_hostfxr_path) get_hostfxr_path_fn; if (explicit_load) { pal::string_t nethost_path; if (!pal::get_own_executable_path(&nethost_path) || !pal::realpath(&nethost_path)) { std::cout << "Failed to get path to current executable" << std::endl; return EXIT_FAILURE; } nethost_path = get_directory(nethost_path); nethost_path.append(MAKE_LIBNAME("nethost")); pal::dll_t nethost; if (!pal::load_library(&nethost_path, &nethost)) { std::cout << "Failed to load library: " << tostr(nethost_path).data() << std::endl; return EXIT_FAILURE; } get_hostfxr_path_fn = (decltype(get_hostfxr_path_fn))pal::get_symbol(nethost, "get_hostfxr_path"); if (get_hostfxr_path_fn == nullptr) { std::cout << "Failed to get get_hostfxr_path export from nethost" << std::endl; return EXIT_FAILURE; } } else { get_hostfxr_path_fn = get_hostfxr_path; } get_hostfxr_parameters parameters { sizeof(get_hostfxr_parameters), assembly_path, dotnet_root }; // Make version invalid for error case if (assembly_path != nullptr && pal::strcmp(assembly_path, _X("[error]")) == 0) parameters.size = parameters.size - 1; const get_hostfxr_parameters *parameters_ptr = assembly_path != nullptr || dotnet_root != nullptr ? &parameters : nullptr; pal::string_t fxr_path; size_t len = fxr_path.size(); int res = get_hostfxr_path_fn(nullptr, &len, parameters_ptr); if (static_cast<StatusCode>(res) == StatusCode::HostApiBufferTooSmall) { fxr_path.resize(len); res = get_hostfxr_path_fn(&fxr_path[0], &len, parameters_ptr); } if (static_cast<StatusCode>(res) == StatusCode::Success) { std::cout << "get_hostfxr_path succeeded" << std::endl; std::cout << "hostfxr_path: " << tostr(to_lower(fxr_path.c_str())).data() << std::endl; return EXIT_SUCCESS; } else { std::cout << "get_hostfxr_path failed: " << std::hex << std::showbase << res << std::endl; return EXIT_FAILURE; } } else if (pal::strcmp(command, _X("host_context")) == 0) { // args: ... <scenario> <check_properties> <hostfxr_path> <app_or_config_path> [<remaining_args>] const int min_argc = 6; if (argc < min_argc) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::char_t *scenario = argv[2]; const pal::char_t *check_properties_str = argv[3]; const pal::string_t hostfxr_path = argv[4]; const pal::char_t *app_or_config_path = argv[5]; // Remaining args used as property names to get/set as well as arguments for the app int remaining_argc = argc - min_argc; const pal::char_t **remaining_argv = nullptr; if (argc > min_argc) remaining_argv = &argv[min_argc]; auto check_properties = host_context_test::check_properties_from_string(check_properties_str); pal::stringstream_t test_output; bool success = false; if (pal::strcmp(scenario, _X("app")) == 0) { // Everything after hostfxr path is the command line to use success = host_context_test::app(check_properties, hostfxr_path, remaining_argc + 1, &argv[5], test_output); } else if (pal::strcmp(scenario, _X("config")) == 0) { success = host_context_test::config(check_properties, hostfxr_path, app_or_config_path, remaining_argc, remaining_argv, test_output); } else if (pal::strcmp(scenario, _X("config_multiple")) == 0) { // args: ... <scenario> <check_properties> <hostfxr_path> <config_path> <secondary_config_path> if (argc < min_argc + 1) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::char_t *secondary_config_path = argv[6]; --remaining_argc; remaining_argv = remaining_argc > 0 ? &argv[min_argc + 1] : nullptr; success = host_context_test::config_multiple(check_properties, hostfxr_path, app_or_config_path, secondary_config_path, remaining_argc, remaining_argv, test_output); } else if (pal::strcmp(scenario, _X("mixed")) == 0) { // args: ... <scenario> <check_properties> <hostfxr_path> <app_path> <config_path> if (argc < min_argc + 1) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::char_t *config_path = argv[6]; --remaining_argc; remaining_argv = remaining_argc > 0 ? &argv[min_argc + 1] : nullptr; success = host_context_test::mixed(check_properties, hostfxr_path, app_or_config_path, config_path, remaining_argc, remaining_argv, test_output); } else if (pal::strcmp(scenario, _X("non_context_mixed_apphost")) == 0 || pal::strcmp(scenario, _X("non_context_mixed_dotnet")) == 0) { // args: ... <scenario> <check_properties> <hostfxr_path> <app_path> <config_path> if (argc < min_argc + 1) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::char_t *config_path = argv[6]; --remaining_argc; remaining_argv = remaining_argc > 0 ? &argv[min_argc + 1] : nullptr; bool launch_as_if_dotnet = pal::strcmp(scenario, _X("non_context_mixed_dotnet")) == 0; success = host_context_test::non_context_mixed(check_properties, hostfxr_path, app_or_config_path, config_path, remaining_argc, remaining_argv, launch_as_if_dotnet, test_output); } else { std::cerr << "Invalid scenario" << std::endl; return -1; } std::cout << tostr(test_output.str()).data() << std::endl; return success ? EXIT_SUCCESS : EXIT_FAILURE; } else if (pal::strcmp(command, _X("component_load_assembly_and_get_function_pointer")) == 0) { // args: ... <hostfxr_path> <app_or_config_path> <assembly_path> <type_name> <method_name> [<assembly_path> <type_name> <method_name>...] const int min_argc = 4; if (argc < min_argc + 3) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::string_t hostfxr_path = argv[2]; const pal::char_t *app_or_config_path = argv[3]; int remaining_argc = argc - min_argc; const pal::char_t **remaining_argv = nullptr; if (argc > min_argc) remaining_argv = &argv[min_argc]; pal::stringstream_t test_output; bool success = false; success = host_context_test::component_load_assembly_and_get_function_pointer(hostfxr_path, app_or_config_path, remaining_argc, remaining_argv, test_output); std::cout << tostr(test_output.str()).data() << std::endl; return success ? EXIT_SUCCESS : EXIT_FAILURE; } else if (pal::strcmp(command, _X("app_load_assembly_and_get_function_pointer")) == 0) { // args: ... <hostfxr_path> <app_path> <assembly_path> <type_name> <method_name> [<assembly_path> <type_name> <method_name>...] const int min_argc = 3; if (argc < min_argc + 4) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::string_t hostfxr_path = argv[2]; int remaining_argc = argc - min_argc; const pal::char_t **remaining_argv = nullptr; if (argc > min_argc) remaining_argv = &argv[min_argc]; pal::stringstream_t test_output; bool success = false; success = host_context_test::app_load_assembly_and_get_function_pointer(hostfxr_path, remaining_argc, remaining_argv, test_output); std::cout << tostr(test_output.str()).data() << std::endl; return success ? EXIT_SUCCESS : EXIT_FAILURE; } else if (pal::strcmp(command, _X("component_get_function_pointer")) == 0) { // args: ... <hostfxr_path> <app_or_config_path> <type_name> <method_name> [<type_name> <method_name>...] const int min_argc = 4; if (argc < min_argc + 2) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::string_t hostfxr_path = argv[2]; const pal::char_t *app_or_config_path = argv[3]; int remaining_argc = argc - min_argc; const pal::char_t **remaining_argv = nullptr; if (argc > min_argc) remaining_argv = &argv[min_argc]; pal::stringstream_t test_output; bool success = false; success = host_context_test::component_get_function_pointer(hostfxr_path, app_or_config_path, remaining_argc, remaining_argv, test_output); std::cout << tostr(test_output.str()).data() << std::endl; return success ? EXIT_SUCCESS : EXIT_FAILURE; } else if (pal::strcmp(command, _X("app_get_function_pointer")) == 0) { // args: ... <hostfxr_path> <app_path> <type_name> <method_name> [<type_name> <method_name>...] const int min_argc = 3; if (argc < min_argc + 3) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::string_t hostfxr_path = argv[2]; int remaining_argc = argc - min_argc; const pal::char_t **remaining_argv = nullptr; if (argc > min_argc) remaining_argv = &argv[min_argc]; pal::stringstream_t test_output; bool success = false; success = host_context_test::app_get_function_pointer(hostfxr_path, remaining_argc, remaining_argv, test_output); std::cout << tostr(test_output.str()).data() << std::endl; return success ? EXIT_SUCCESS : EXIT_FAILURE; } else if (pal::strcmp(command, _X("run_app")) == 0) { // args: ... <hostfxr_path> <dotnet_command_line> const int min_argc = 4; if (argc < min_argc) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::string_t hostfxr_path = argv[2]; int remaining_argc = argc - min_argc + 1; const pal::char_t **remaining_argv = &argv[min_argc - 1]; pal::stringstream_t test_output; bool success = host_context_test::app(host_context_test::check_properties::none, hostfxr_path, remaining_argc, remaining_argv, test_output); std::cout << tostr(test_output.str()).data() << std::endl; return success ? EXIT_SUCCESS : EXIT_FAILURE; } else if (pal::strcmp(command, _X("resolve_component_dependencies")) == 0) { // args: ... <scenario> <hostfxr_path> <app_path> <component_path> if (argc < 6) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::char_t *scenario = argv[2]; const pal::string_t hostfxr_path = argv[3]; const pal::string_t app_path = argv[4]; const pal::string_t component_path = argv[5]; pal::stringstream_t test_output; bool success = false; if (pal::strcmp(scenario, _X("run_app_and_resolve")) == 0) { success = resolve_component_dependencies_test::run_app_and_resolve(hostfxr_path, app_path, component_path, test_output); } else if (pal::strcmp(scenario, _X("run_app_and_resolve_multithreaded")) == 0) { if (argc < 7) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::string_t component_path_b = argv[6]; success = resolve_component_dependencies_test::run_app_and_resolve_multithreaded(hostfxr_path, app_path, component_path, component_path_b, test_output); } std::cout << tostr(test_output.str()).data() << std::endl; return success ? EXIT_SUCCESS : EXIT_FAILURE; } #if defined(_WIN32) else if (pal::strcmp(command, _X("comhost")) == 0) { // args: ... <scenario> <activation_count> <comhost_path> <clsid> if (argc < 6) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::char_t *scenario = argv[2]; int count = pal::xtoi(argv[3]); const pal::string_t comhost_path = argv[4]; const pal::string_t clsid_str = argv[5]; bool success = false; if (pal::strcmp(scenario, _X("synchronous")) == 0) { success = comhost_test::synchronous(comhost_path, clsid_str, count); } else if (pal::strcmp(scenario, _X("concurrent")) == 0) { success = comhost_test::concurrent(comhost_path, clsid_str, count); } else if (pal::strcmp(scenario, _X("errorinfo")) == 0) { success = comhost_test::errorinfo(comhost_path, clsid_str, count); } else if (pal::strcmp(scenario, _X("typelib")) == 0) { success = comhost_test::typelib(comhost_path, count); } return success ? EXIT_SUCCESS : EXIT_FAILURE; } #endif else if (pal::strcmp(command, _X("get_native_search_directories")) == 0) { // args: ... <scenario> <hostfxrpath> int min_argc = 4; if (argc < min_argc) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::char_t* scenario = argv[2]; const pal::string_t hostfxr_path = argv[3]; int remaining_argc = argc - min_argc; const pal::char_t** remaining_argv = nullptr; if (argc > min_argc) remaining_argv = &argv[min_argc]; pal::stringstream_t test_output; bool success = false; if (pal::strcmp(scenario, _X("get_for_command_line")) == 0) { success = get_native_search_directories_test::get_for_command_line(hostfxr_path, remaining_argc, remaining_argv, test_output); } std::cout << tostr(test_output.str()).data() << std::endl; return success ? EXIT_SUCCESS : EXIT_FAILURE; } else { std::cerr << "Invalid arguments" << std::endl; return -1; } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. #include <iostream> #include <pal.h> #include <error_codes.h> #include <nethost.h> #include "comhost_test.h" #include <hostfxr.h> #include "host_context_test.h" #include "resolve_component_dependencies_test.h" #include "get_native_search_directories_test.h" #include <utils.h> namespace { std::vector<char> tostr(const pal::string_t &value) { std::vector<char> vect; pal::pal_utf8string(value, &vect); return vect; } } #if defined(_WIN32) int __cdecl wmain(const int argc, const pal::char_t *argv[]) #else int main(const int argc, const pal::char_t *argv[]) #endif { if (argc < 2) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::char_t *command = argv[1]; if (pal::strcmp(command, _X("get_hostfxr_path")) == 0) { // args: ... [<explicit_load>] [<assembly_path>] [<dotnet_root>] [<hostfxr_to_load>] bool explicit_load = false; if (argc >= 3) explicit_load = pal::strcmp(to_lower(argv[2]).c_str(), _X("true")) == 0; const pal::char_t *assembly_path = nullptr; if (argc >= 4 && pal::strcmp(argv[3], _X("nullptr")) != 0) assembly_path = argv[3]; const pal::char_t *dotnet_root = nullptr; if (argc >= 5 && pal::strcmp(argv[4], _X("nullptr")) != 0) dotnet_root = argv[4]; if (argc >= 6) { pal::string_t to_load = argv[5]; pal::dll_t fxr; if (!pal::load_library(&to_load, &fxr)) { std::cout << "Failed to load library: " << tostr(to_load).data() << std::endl; return EXIT_FAILURE; } } decltype(&get_hostfxr_path) get_hostfxr_path_fn; if (explicit_load) { pal::string_t nethost_path; if (!pal::get_own_executable_path(&nethost_path) || !pal::realpath(&nethost_path)) { std::cout << "Failed to get path to current executable" << std::endl; return EXIT_FAILURE; } nethost_path = get_directory(nethost_path); nethost_path.append(MAKE_LIBNAME("nethost")); pal::dll_t nethost; if (!pal::load_library(&nethost_path, &nethost)) { std::cout << "Failed to load library: " << tostr(nethost_path).data() << std::endl; return EXIT_FAILURE; } get_hostfxr_path_fn = (decltype(get_hostfxr_path_fn))pal::get_symbol(nethost, "get_hostfxr_path"); if (get_hostfxr_path_fn == nullptr) { std::cout << "Failed to get get_hostfxr_path export from nethost" << std::endl; return EXIT_FAILURE; } } else { get_hostfxr_path_fn = get_hostfxr_path; } get_hostfxr_parameters parameters { sizeof(get_hostfxr_parameters), assembly_path, dotnet_root }; // Make version invalid for error case if (assembly_path != nullptr && pal::strcmp(assembly_path, _X("[error]")) == 0) parameters.size = parameters.size - 1; const get_hostfxr_parameters *parameters_ptr = assembly_path != nullptr || dotnet_root != nullptr ? &parameters : nullptr; pal::string_t fxr_path; size_t len = fxr_path.size(); int res = get_hostfxr_path_fn(nullptr, &len, parameters_ptr); if (static_cast<StatusCode>(res) == StatusCode::HostApiBufferTooSmall) { fxr_path.resize(len); res = get_hostfxr_path_fn(&fxr_path[0], &len, parameters_ptr); } if (static_cast<StatusCode>(res) == StatusCode::Success) { std::cout << "get_hostfxr_path succeeded" << std::endl; std::cout << "hostfxr_path: " << tostr(to_lower(fxr_path.c_str())).data() << std::endl; return EXIT_SUCCESS; } else { std::cout << "get_hostfxr_path failed: " << std::hex << std::showbase << res << std::endl; return EXIT_FAILURE; } } else if (pal::strcmp(command, _X("host_context")) == 0) { // args: ... <scenario> <check_properties> <hostfxr_path> <app_or_config_path> [<remaining_args>] const int min_argc = 6; if (argc < min_argc) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::char_t *scenario = argv[2]; const pal::char_t *check_properties_str = argv[3]; const pal::string_t hostfxr_path = argv[4]; const pal::char_t *app_or_config_path = argv[5]; // Remaining args used as property names to get/set as well as arguments for the app int remaining_argc = argc - min_argc; const pal::char_t **remaining_argv = nullptr; if (argc > min_argc) remaining_argv = &argv[min_argc]; auto check_properties = host_context_test::check_properties_from_string(check_properties_str); pal::stringstream_t test_output; bool success = false; if (pal::strcmp(scenario, _X("app")) == 0) { // Everything after hostfxr path is the command line to use success = host_context_test::app(check_properties, hostfxr_path, remaining_argc + 1, &argv[5], test_output); } else if (pal::strcmp(scenario, _X("config")) == 0) { success = host_context_test::config(check_properties, hostfxr_path, app_or_config_path, remaining_argc, remaining_argv, test_output); } else if (pal::strcmp(scenario, _X("config_multiple")) == 0) { // args: ... <scenario> <check_properties> <hostfxr_path> <config_path> <secondary_config_path> if (argc < min_argc + 1) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::char_t *secondary_config_path = argv[6]; --remaining_argc; remaining_argv = remaining_argc > 0 ? &argv[min_argc + 1] : nullptr; success = host_context_test::config_multiple(check_properties, hostfxr_path, app_or_config_path, secondary_config_path, remaining_argc, remaining_argv, test_output); } else if (pal::strcmp(scenario, _X("mixed")) == 0) { // args: ... <scenario> <check_properties> <hostfxr_path> <app_path> <config_path> if (argc < min_argc + 1) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::char_t *config_path = argv[6]; --remaining_argc; remaining_argv = remaining_argc > 0 ? &argv[min_argc + 1] : nullptr; success = host_context_test::mixed(check_properties, hostfxr_path, app_or_config_path, config_path, remaining_argc, remaining_argv, test_output); } else if (pal::strcmp(scenario, _X("non_context_mixed_apphost")) == 0 || pal::strcmp(scenario, _X("non_context_mixed_dotnet")) == 0) { // args: ... <scenario> <check_properties> <hostfxr_path> <app_path> <config_path> if (argc < min_argc + 1) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::char_t *config_path = argv[6]; --remaining_argc; remaining_argv = remaining_argc > 0 ? &argv[min_argc + 1] : nullptr; bool launch_as_if_dotnet = pal::strcmp(scenario, _X("non_context_mixed_dotnet")) == 0; success = host_context_test::non_context_mixed(check_properties, hostfxr_path, app_or_config_path, config_path, remaining_argc, remaining_argv, launch_as_if_dotnet, test_output); } else { std::cerr << "Invalid scenario" << std::endl; return -1; } std::cout << tostr(test_output.str()).data() << std::endl; return success ? EXIT_SUCCESS : EXIT_FAILURE; } else if (pal::strcmp(command, _X("component_load_assembly_and_get_function_pointer")) == 0) { // args: ... <hostfxr_path> <app_or_config_path> <assembly_path> <type_name> <method_name> [<assembly_path> <type_name> <method_name>...] const int min_argc = 4; if (argc < min_argc + 3) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::string_t hostfxr_path = argv[2]; const pal::char_t *app_or_config_path = argv[3]; int remaining_argc = argc - min_argc; const pal::char_t **remaining_argv = nullptr; if (argc > min_argc) remaining_argv = &argv[min_argc]; pal::stringstream_t test_output; bool success = false; success = host_context_test::component_load_assembly_and_get_function_pointer(hostfxr_path, app_or_config_path, remaining_argc, remaining_argv, test_output); std::cout << tostr(test_output.str()).data() << std::endl; return success ? EXIT_SUCCESS : EXIT_FAILURE; } else if (pal::strcmp(command, _X("app_load_assembly_and_get_function_pointer")) == 0) { // args: ... <hostfxr_path> <app_path> <assembly_path> <type_name> <method_name> [<assembly_path> <type_name> <method_name>...] const int min_argc = 3; if (argc < min_argc + 4) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::string_t hostfxr_path = argv[2]; int remaining_argc = argc - min_argc; const pal::char_t **remaining_argv = nullptr; if (argc > min_argc) remaining_argv = &argv[min_argc]; pal::stringstream_t test_output; bool success = false; success = host_context_test::app_load_assembly_and_get_function_pointer(hostfxr_path, remaining_argc, remaining_argv, test_output); std::cout << tostr(test_output.str()).data() << std::endl; return success ? EXIT_SUCCESS : EXIT_FAILURE; } else if (pal::strcmp(command, _X("component_get_function_pointer")) == 0) { // args: ... <hostfxr_path> <app_or_config_path> <type_name> <method_name> [<type_name> <method_name>...] const int min_argc = 4; if (argc < min_argc + 2) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::string_t hostfxr_path = argv[2]; const pal::char_t *app_or_config_path = argv[3]; int remaining_argc = argc - min_argc; const pal::char_t **remaining_argv = nullptr; if (argc > min_argc) remaining_argv = &argv[min_argc]; pal::stringstream_t test_output; bool success = false; success = host_context_test::component_get_function_pointer(hostfxr_path, app_or_config_path, remaining_argc, remaining_argv, test_output); std::cout << tostr(test_output.str()).data() << std::endl; return success ? EXIT_SUCCESS : EXIT_FAILURE; } else if (pal::strcmp(command, _X("app_get_function_pointer")) == 0) { // args: ... <hostfxr_path> <app_path> <type_name> <method_name> [<type_name> <method_name>...] const int min_argc = 3; if (argc < min_argc + 3) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::string_t hostfxr_path = argv[2]; int remaining_argc = argc - min_argc; const pal::char_t **remaining_argv = nullptr; if (argc > min_argc) remaining_argv = &argv[min_argc]; pal::stringstream_t test_output; bool success = false; success = host_context_test::app_get_function_pointer(hostfxr_path, remaining_argc, remaining_argv, test_output); std::cout << tostr(test_output.str()).data() << std::endl; return success ? EXIT_SUCCESS : EXIT_FAILURE; } else if (pal::strcmp(command, _X("run_app")) == 0) { // args: ... <hostfxr_path> <dotnet_command_line> const int min_argc = 4; if (argc < min_argc) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::string_t hostfxr_path = argv[2]; int remaining_argc = argc - min_argc + 1; const pal::char_t **remaining_argv = &argv[min_argc - 1]; pal::stringstream_t test_output; bool success = host_context_test::app(host_context_test::check_properties::none, hostfxr_path, remaining_argc, remaining_argv, test_output); std::cout << tostr(test_output.str()).data() << std::endl; return success ? EXIT_SUCCESS : EXIT_FAILURE; } else if (pal::strcmp(command, _X("resolve_component_dependencies")) == 0) { // args: ... <scenario> <hostfxr_path> <app_path> <component_path> if (argc < 6) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::char_t *scenario = argv[2]; const pal::string_t hostfxr_path = argv[3]; const pal::string_t app_path = argv[4]; const pal::string_t component_path = argv[5]; pal::stringstream_t test_output; bool success = false; if (pal::strcmp(scenario, _X("run_app_and_resolve")) == 0) { success = resolve_component_dependencies_test::run_app_and_resolve(hostfxr_path, app_path, component_path, test_output); } else if (pal::strcmp(scenario, _X("run_app_and_resolve_multithreaded")) == 0) { if (argc < 7) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::string_t component_path_b = argv[6]; success = resolve_component_dependencies_test::run_app_and_resolve_multithreaded(hostfxr_path, app_path, component_path, component_path_b, test_output); } std::cout << tostr(test_output.str()).data() << std::endl; return success ? EXIT_SUCCESS : EXIT_FAILURE; } #if defined(_WIN32) else if (pal::strcmp(command, _X("comhost")) == 0) { // args: ... <scenario> <activation_count> <comhost_path> <clsid> if (argc < 6) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::char_t *scenario = argv[2]; int count = pal::xtoi(argv[3]); const pal::string_t comhost_path = argv[4]; const pal::string_t clsid_str = argv[5]; bool success = false; if (pal::strcmp(scenario, _X("synchronous")) == 0) { success = comhost_test::synchronous(comhost_path, clsid_str, count); } else if (pal::strcmp(scenario, _X("concurrent")) == 0) { success = comhost_test::concurrent(comhost_path, clsid_str, count); } else if (pal::strcmp(scenario, _X("errorinfo")) == 0) { success = comhost_test::errorinfo(comhost_path, clsid_str, count); } else if (pal::strcmp(scenario, _X("typelib")) == 0) { success = comhost_test::typelib(comhost_path, count); } return success ? EXIT_SUCCESS : EXIT_FAILURE; } else if (pal::strcmp(command, _X("ijwhost")) == 0) { // args: ... <ijw_library_path> <entry_point> if (argc < 4) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::string_t ijw_library_path = argv[2]; std::vector<char> entry_point_name = tostr(argv[3]); pal::dll_t ijw_library; if (!pal::load_library(&ijw_library_path, &ijw_library)) { std::cout << "Failed to load library: " << tostr(ijw_library_path).data() << std::endl; return EXIT_FAILURE; } // Test is assuming __cdecl, no arguments, and void return for simplicity typedef void(__cdecl *entry_point_fn)(); entry_point_fn entry_point = reinterpret_cast<entry_point_fn>(pal::get_symbol(ijw_library, entry_point_name.data())); if (entry_point == nullptr) { std::cout << "Failed to find entry point: " << entry_point_name.data() << std::endl; return EXIT_FAILURE; } entry_point(); return EXIT_SUCCESS; } #endif else if (pal::strcmp(command, _X("get_native_search_directories")) == 0) { // args: ... <scenario> <hostfxrpath> int min_argc = 4; if (argc < min_argc) { std::cerr << "Invalid arguments" << std::endl; return -1; } const pal::char_t* scenario = argv[2]; const pal::string_t hostfxr_path = argv[3]; int remaining_argc = argc - min_argc; const pal::char_t** remaining_argv = nullptr; if (argc > min_argc) remaining_argv = &argv[min_argc]; pal::stringstream_t test_output; bool success = false; if (pal::strcmp(scenario, _X("get_for_command_line")) == 0) { success = get_native_search_directories_test::get_for_command_line(hostfxr_path, remaining_argc, remaining_argv, test_output); } std::cout << tostr(test_output.str()).data() << std::endl; return success ? EXIT_SUCCESS : EXIT_FAILURE; } else { std::cerr << "Invalid arguments" << std::endl; return -1; } }
1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./src/tests/Interop/IJW/CopyConstructorMarshaler/CMakeLists.txt
project (CopyConstructorMarshaler) include("../IJW.cmake") include_directories( ${INC_PLATFORM_DIR} ) set(SOURCES IjwCopyConstructorMarshaler.cpp) # add the shared library add_library (IjwCopyConstructorMarshaler SHARED ${SOURCES}) target_link_libraries(IjwCopyConstructorMarshaler ${LINK_LIBRARIES_ADDITIONAL}) # add the install targets install (TARGETS IjwCopyConstructorMarshaler DESTINATION bin)
project (CopyConstructorMarshaler) include(${CLR_ENG_NATIVE_DIR}/ijw/IJW.cmake) include_directories( ${INC_PLATFORM_DIR} ) set(SOURCES IjwCopyConstructorMarshaler.cpp) # add the shared library add_library (IjwCopyConstructorMarshaler SHARED ${SOURCES}) target_link_libraries(IjwCopyConstructorMarshaler ${LINK_LIBRARIES_ADDITIONAL}) # add the install targets install (TARGETS IjwCopyConstructorMarshaler DESTINATION bin)
1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./src/tests/Interop/IJW/IjwNativeCallingManagedDll/CMakeLists.txt
project (IjwNativeCallingManagedDll) include("../IJW.cmake") include_directories( ${INC_PLATFORM_DIR} ) set(SOURCES IjwNativeCallingManagedDll.cpp) # add the shared library add_library (IjwNativeCallingManagedDll SHARED ${SOURCES}) target_link_libraries(IjwNativeCallingManagedDll ${LINK_LIBRARIES_ADDITIONAL}) # add the install targets install (TARGETS IjwNativeCallingManagedDll DESTINATION bin)
project (IjwNativeCallingManagedDll) include(${CLR_ENG_NATIVE_DIR}/ijw/IJW.cmake) include_directories( ${INC_PLATFORM_DIR} ) set(SOURCES IjwNativeCallingManagedDll.cpp) # add the shared library add_library (IjwNativeCallingManagedDll SHARED ${SOURCES}) target_link_libraries(IjwNativeCallingManagedDll ${LINK_LIBRARIES_ADDITIONAL}) # add the install targets install (TARGETS IjwNativeCallingManagedDll DESTINATION bin)
1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./src/tests/Interop/IJW/IjwNativeDll/CMakeLists.txt
project (IjwNativeDll) include("../IJW.cmake") include_directories( ${INC_PLATFORM_DIR} ) set(SOURCES IjwNativeDll.cpp) # add the shared library add_library (IjwNativeDll SHARED ${SOURCES}) target_link_libraries(IjwNativeDll ${LINK_LIBRARIES_ADDITIONAL}) # add the install targets install (TARGETS IjwNativeDll DESTINATION bin)
project (IjwNativeDll) include(${CLR_ENG_NATIVE_DIR}/ijw/IJW.cmake) include_directories( ${INC_PLATFORM_DIR} ) set(SOURCES IjwNativeDll.cpp) # add the shared library add_library (IjwNativeDll SHARED ${SOURCES}) target_link_libraries(IjwNativeDll ${LINK_LIBRARIES_ADDITIONAL}) # add the install targets install (TARGETS IjwNativeDll DESTINATION bin)
1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./src/tests/Interop/IJW/NativeVarargs/CMakeLists.txt
project (IjwNativeVarargs) include("../IJW.cmake") include_directories( ${INC_PLATFORM_DIR} ) set(SOURCES IjwNativeVarargs.cpp) # add the shared library add_library (IjwNativeVarargs SHARED ${SOURCES}) target_link_libraries(IjwNativeVarargs ${LINK_LIBRARIES_ADDITIONAL}) # add the install targets install (TARGETS IjwNativeVarargs DESTINATION bin)
project (IjwNativeVarargs) include(${CLR_ENG_NATIVE_DIR}/ijw/IJW.cmake) include_directories( ${INC_PLATFORM_DIR} ) set(SOURCES IjwNativeVarargs.cpp) # add the shared library add_library (IjwNativeVarargs SHARED ${SOURCES}) target_link_libraries(IjwNativeVarargs ${LINK_LIBRARIES_ADDITIONAL}) # add the install targets install (TARGETS IjwNativeVarargs DESTINATION bin)
1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./src/coreclr/md/runtime/CMakeLists.txt
add_definitions(-DNO_COR) set(MDRUNTIME_SOURCES mdcolumndescriptors.cpp liteweightstgdb.cpp mdfileformat.cpp metamodel.cpp metamodelro.cpp recordpool.cpp mdinternaldisp.cpp mdinternalro.cpp strongnameinternal.cpp ) set(MDRUNTIME_HEADERS ../../inc/caparser.h ../../inc/cor.h ../../inc/corhlpr.h ../../inc/corpriv.h ../../inc/mdcommon.h ../../inc/mdfileformat.h ../../inc/metadatatracker.h ../../inc/pedecoder.h ../../inc/posterror.h ../compiler/regmeta.h ../inc/assemblymdinternaldisp.h ../inc/liteweightstgdb.h ../inc/mdcolumndescriptors.h ../inc/metamodel.h ../inc/metamodelro.h ../inc/pdbheap.h ../inc/portablepdbmdds.h ../inc/portablepdbmdi.h ../inc/recordpool.h metamodelcolumndefs.h mdinternaldisp.h mdinternalro.h ) convert_to_absolute_path(MDRUNTIME_HEADERS ${MDRUNTIME_HEADERS}) convert_to_absolute_path(MDRUNTIME_SOURCES ${MDRUNTIME_SOURCES}) if (CLR_CMAKE_TARGET_WIN32) list(APPEND MDRUNTIME_SOURCES ${MDRUNTIME_HEADERS}) endif (CLR_CMAKE_TARGET_WIN32) add_library_clr(mdruntime_dac ${MDRUNTIME_SOURCES}) set_target_properties(mdruntime_dac PROPERTIES DAC_COMPONENT TRUE) target_precompile_headers(mdruntime_dac PRIVATE stdafx.h) add_library_clr(mdruntime_wks_obj OBJECT ${MDRUNTIME_SOURCES}) target_compile_definitions(mdruntime_wks_obj PRIVATE FEATURE_METADATA_EMIT_ALL) target_precompile_headers(mdruntime_wks_obj PRIVATE stdafx.h) add_library(mdruntime_wks INTERFACE) target_sources(mdruntime_wks INTERFACE $<TARGET_OBJECTS:mdruntime_wks_obj>) add_library_clr(mdruntime-dbi ${MDRUNTIME_SOURCES}) set_target_properties(mdruntime-dbi PROPERTIES DBI_COMPONENT TRUE) target_precompile_headers(mdruntime-dbi PRIVATE stdafx.h) add_library_clr(mdruntime_ppdb ${MDRUNTIME_SOURCES}) target_compile_definitions(mdruntime_ppdb PRIVATE FEATURE_METADATA_EMIT_ALL FEATURE_METADATA_EMIT_PORTABLE_PDB) target_precompile_headers(mdruntime_ppdb PRIVATE stdafx.h)
add_definitions(-DNO_COR) set(MDRUNTIME_SOURCES mdcolumndescriptors.cpp liteweightstgdb.cpp mdfileformat.cpp metamodel.cpp metamodelro.cpp recordpool.cpp mdinternaldisp.cpp mdinternalro.cpp strongnameinternal.cpp ) set(MDRUNTIME_HEADERS ../../inc/caparser.h ../../inc/cor.h ../../inc/corhlpr.h ../../inc/corpriv.h ../../inc/mdcommon.h ../../inc/mdfileformat.h ../../inc/metadatatracker.h ../../inc/pedecoder.h ../../inc/posterror.h ../compiler/regmeta.h ../inc/assemblymdinternaldisp.h ../inc/liteweightstgdb.h ../inc/mdcolumndescriptors.h ../inc/metamodel.h ../inc/metamodelro.h ../inc/pdbheap.h ../inc/portablepdbmdds.h ../inc/portablepdbmdi.h ../inc/recordpool.h metamodelcolumndefs.h mdinternaldisp.h mdinternalro.h ) convert_to_absolute_path(MDRUNTIME_HEADERS ${MDRUNTIME_HEADERS}) convert_to_absolute_path(MDRUNTIME_SOURCES ${MDRUNTIME_SOURCES}) if (CLR_CMAKE_TARGET_WIN32) list(APPEND MDRUNTIME_SOURCES ${MDRUNTIME_HEADERS}) endif (CLR_CMAKE_TARGET_WIN32) add_library_clr(mdruntime_dac ${MDRUNTIME_SOURCES}) set_target_properties(mdruntime_dac PROPERTIES DAC_COMPONENT TRUE) target_precompile_headers(mdruntime_dac PRIVATE stdafx.h) add_library_clr(mdruntime_wks_obj OBJECT ${MDRUNTIME_SOURCES}) target_compile_definitions(mdruntime_wks_obj PRIVATE FEATURE_METADATA_EMIT_ALL) target_precompile_headers(mdruntime_wks_obj PRIVATE stdafx.h) add_library(mdruntime_wks INTERFACE) target_sources(mdruntime_wks INTERFACE $<TARGET_OBJECTS:mdruntime_wks_obj>) add_library_clr(mdruntime-dbi ${MDRUNTIME_SOURCES}) set_target_properties(mdruntime-dbi PROPERTIES DBI_COMPONENT TRUE) target_precompile_headers(mdruntime-dbi PRIVATE stdafx.h) add_library_clr(mdruntime_ppdb ${MDRUNTIME_SOURCES}) target_compile_definitions(mdruntime_ppdb PRIVATE FEATURE_METADATA_EMIT_ALL FEATURE_METADATA_EMIT_PORTABLE_PDB) target_precompile_headers(mdruntime_ppdb PRIVATE stdafx.h)
-1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./docs/design/coreclr/profiling/davbr-blog-archive/GC Heap and Alignment Padding.md
*This blog post originally appeared on David Broman's blog on 12/29/2011* The docs for [GetObjectSize](http://msdn.microsoft.com/en-US/library/ms231885(v=VS.100).aspx) have recently been updated with this info, but I wanted to mention it here, too, to ensure you were aware of this information. Some profilers manually advance through objects on the heap, inspecting their field values, by starting at an ObjectID and moving forward by its size to the next ObjectID, repeating this process, for all the reported generation ranges (via GetGenerationBounds or MovedReferences/SurvivingReferences). If your profiler doesn’t do this, then this blog entry will be of no interest to you, and you can skip it. But if your profiler does do this, you need to be aware of the alignment rules that the CLR employs as it allocates and moves objects around on the GC heap. - **On x86** : All objects are 4-byte aligned, except for objects on the large-object-heap, which are always 8-byte aligned. - **On x64** : All objects are always 8-byte aligned, in all generations. And the important point to note is that GetObjectSize does NOT include alignment padding in the size that it reports. Thus, as your profiler manually skips from object to object by using GetObjectSize() to determine how far to skip, your profiler must manually add in any alignment padding necessary to achieve the alignment rules listed above.
*This blog post originally appeared on David Broman's blog on 12/29/2011* The docs for [GetObjectSize](http://msdn.microsoft.com/en-US/library/ms231885(v=VS.100).aspx) have recently been updated with this info, but I wanted to mention it here, too, to ensure you were aware of this information. Some profilers manually advance through objects on the heap, inspecting their field values, by starting at an ObjectID and moving forward by its size to the next ObjectID, repeating this process, for all the reported generation ranges (via GetGenerationBounds or MovedReferences/SurvivingReferences). If your profiler doesn’t do this, then this blog entry will be of no interest to you, and you can skip it. But if your profiler does do this, you need to be aware of the alignment rules that the CLR employs as it allocates and moves objects around on the GC heap. - **On x86** : All objects are 4-byte aligned, except for objects on the large-object-heap, which are always 8-byte aligned. - **On x64** : All objects are always 8-byte aligned, in all generations. And the important point to note is that GetObjectSize does NOT include alignment padding in the size that it reports. Thus, as your profiler manually skips from object to object by using GetObjectSize() to determine how far to skip, your profiler must manually add in any alignment padding necessary to achieve the alignment rules listed above.
-1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./src/coreclr/gc/gcconfig.cpp
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. #include "common.h" #include "gcenv.h" #include "gc.h" #define BOOL_CONFIG(name, unused_private_key, unused_public_key, default, unused_doc) \ bool GCConfig::Get##name() { return s_##name; } \ bool GCConfig::s_##name = default; #define INT_CONFIG(name, unused_private_key, unused_public_key, default, unused_doc) \ int64_t GCConfig::Get##name() { return s_##name; } \ int64_t GCConfig::s_##name = default; // String configs are not cached because 1) they are rare and // not on hot paths and 2) they involve transfers of ownership // of EE-allocated strings, which is potentially complicated. #define STRING_CONFIG(name, private_key, public_key, unused_doc) \ GCConfigStringHolder GCConfig::Get##name() \ { \ const char* resultStr = nullptr; \ GCToEEInterface::GetStringConfigValue(private_key, public_key, &resultStr); \ return GCConfigStringHolder(resultStr); \ } GC_CONFIGURATION_KEYS #undef BOOL_CONFIG #undef INT_CONFIG #undef STRING_CONFIG void GCConfig::Initialize() { #define BOOL_CONFIG(name, private_key, public_key, default, unused_doc) \ GCToEEInterface::GetBooleanConfigValue(private_key, public_key, &s_##name); #define INT_CONFIG(name, private_key, public_key, default, unused_doc) \ GCToEEInterface::GetIntConfigValue(private_key, public_key, &s_##name); #define STRING_CONFIG(unused_name, unused_private_key, unused_public_key, unused_doc) GC_CONFIGURATION_KEYS #undef BOOL_CONFIG #undef INT_CONFIG #undef STRING_CONFIG } // Parse an integer index or range of two indices separated by '-'. // Updates the config_string to point to the first character after the parsed part bool ParseIndexOrRange(const char** config_string, size_t* start_index, size_t* end_index) { char* number_end; size_t start = strtoul(*config_string, &number_end, 10); if (number_end == *config_string) { // No number found, invalid format return false; } size_t end = start; if (*number_end == '-') { char* range_end_start = number_end + 1; end = strtoul(range_end_start, &number_end, 10); if (number_end == range_end_start) { // No number found, invalid format return false; } } *start_index = start; *end_index = end; *config_string = number_end; return true; } bool ParseGCHeapAffinitizeRanges(const char* cpu_index_ranges, AffinitySet* config_affinity_set) { bool success = true; // Unix: // The cpu index ranges is a comma separated list of indices or ranges of indices (e.g. 1-5). // Example 1,3,5,7-9,12 // Windows: // The cpu index ranges is a comma separated list of group-annotated indices or ranges of indices. // The group number always prefixes index or range and is followed by colon. // Example 0:1,0:3,0:5,1:7-9,1:12 if (cpu_index_ranges != NULL) { const char* number_end = cpu_index_ranges; do { size_t start_index, end_index; if (!GCToOSInterface::ParseGCHeapAffinitizeRangesEntry(&cpu_index_ranges, &start_index, &end_index)) { break; } if ((start_index >= MAX_SUPPORTED_CPUS) || (end_index >= MAX_SUPPORTED_CPUS) || (end_index < start_index)) { // Invalid CPU index values or range break; } for (size_t i = start_index; i <= end_index; i++) { config_affinity_set->Add(i); } number_end = cpu_index_ranges; cpu_index_ranges++; } while (*number_end == ','); success = (*number_end == '\0'); } return success; }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. #include "common.h" #include "gcenv.h" #include "gc.h" #define BOOL_CONFIG(name, unused_private_key, unused_public_key, default, unused_doc) \ bool GCConfig::Get##name() { return s_##name; } \ bool GCConfig::s_##name = default; #define INT_CONFIG(name, unused_private_key, unused_public_key, default, unused_doc) \ int64_t GCConfig::Get##name() { return s_##name; } \ int64_t GCConfig::s_##name = default; // String configs are not cached because 1) they are rare and // not on hot paths and 2) they involve transfers of ownership // of EE-allocated strings, which is potentially complicated. #define STRING_CONFIG(name, private_key, public_key, unused_doc) \ GCConfigStringHolder GCConfig::Get##name() \ { \ const char* resultStr = nullptr; \ GCToEEInterface::GetStringConfigValue(private_key, public_key, &resultStr); \ return GCConfigStringHolder(resultStr); \ } GC_CONFIGURATION_KEYS #undef BOOL_CONFIG #undef INT_CONFIG #undef STRING_CONFIG void GCConfig::Initialize() { #define BOOL_CONFIG(name, private_key, public_key, default, unused_doc) \ GCToEEInterface::GetBooleanConfigValue(private_key, public_key, &s_##name); #define INT_CONFIG(name, private_key, public_key, default, unused_doc) \ GCToEEInterface::GetIntConfigValue(private_key, public_key, &s_##name); #define STRING_CONFIG(unused_name, unused_private_key, unused_public_key, unused_doc) GC_CONFIGURATION_KEYS #undef BOOL_CONFIG #undef INT_CONFIG #undef STRING_CONFIG } // Parse an integer index or range of two indices separated by '-'. // Updates the config_string to point to the first character after the parsed part bool ParseIndexOrRange(const char** config_string, size_t* start_index, size_t* end_index) { char* number_end; size_t start = strtoul(*config_string, &number_end, 10); if (number_end == *config_string) { // No number found, invalid format return false; } size_t end = start; if (*number_end == '-') { char* range_end_start = number_end + 1; end = strtoul(range_end_start, &number_end, 10); if (number_end == range_end_start) { // No number found, invalid format return false; } } *start_index = start; *end_index = end; *config_string = number_end; return true; } bool ParseGCHeapAffinitizeRanges(const char* cpu_index_ranges, AffinitySet* config_affinity_set) { bool success = true; // Unix: // The cpu index ranges is a comma separated list of indices or ranges of indices (e.g. 1-5). // Example 1,3,5,7-9,12 // Windows: // The cpu index ranges is a comma separated list of group-annotated indices or ranges of indices. // The group number always prefixes index or range and is followed by colon. // Example 0:1,0:3,0:5,1:7-9,1:12 if (cpu_index_ranges != NULL) { const char* number_end = cpu_index_ranges; do { size_t start_index, end_index; if (!GCToOSInterface::ParseGCHeapAffinitizeRangesEntry(&cpu_index_ranges, &start_index, &end_index)) { break; } if ((start_index >= MAX_SUPPORTED_CPUS) || (end_index >= MAX_SUPPORTED_CPUS) || (end_index < start_index)) { // Invalid CPU index values or range break; } for (size_t i = start_index; i <= end_index; i++) { config_affinity_set->Add(i); } number_end = cpu_index_ranges; cpu_index_ranges++; } while (*number_end == ','); success = (*number_end == '\0'); } return success; }
-1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./src/coreclr/vm/runtimecallablewrapper.cpp
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /*============================================================ ** ** Class: RCW ** ** ** Purpose: The implementation of the ComObject class ** ===========================================================*/ #include "common.h" #include <ole2.h> #include <inspectable.h> class Object; #include "vars.hpp" #include "object.h" #include "excep.h" #include "frames.h" #include "vars.hpp" #include "threads.h" #include "field.h" #include "runtimecallablewrapper.h" #include "hash.h" #include "interoputil.h" #include "comcallablewrapper.h" #include "eeconfig.h" #include "comdelegate.h" #include "comcache.h" #include "../md/compiler/custattr.h" #include "olevariant.h" #include "interopconverter.h" #include "typestring.h" #include "caparser.h" #include "classnames.h" #include "objectnative.h" #include "finalizerthread.h" // static SLIST_HEADER RCW::s_RCWStandbyList; #ifdef FEATURE_COMINTEROP_APARTMENT_SUPPORT #include "olecontexthelpers.h" #endif // FEATURE_COMINTEROP_APARTMENT_SUPPORT #ifdef FEATURE_COMINTEROP_UNMANAGED_ACTIVATION #include "interoplibinterface.h" void ComClassFactory::ThrowHRMsg(HRESULT hr, DWORD dwMsgResID) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_ANY; INJECT_FAULT(COMPlusThrowOM()); } CONTRACTL_END; SString strMessage; SString strResource; WCHAR strClsid[39]; SString strHRDescription; // Obtain the textual representation of the HRESULT. StringFromGUID2(m_rclsid, strClsid, sizeof(strClsid) / sizeof(WCHAR)); SString strHRHex; strHRHex.Printf("%.8x", hr); // Obtain the description of the HRESULT. GetHRMsg(hr, strHRDescription); // Load the appropriate resource and throw COMPlusThrowHR(hr, dwMsgResID, strHRHex, strClsid, strHRDescription.GetUnicode()); } //------------------------------------------------------------- // Common code for licensing // IUnknown *ComClassFactory::CreateInstanceFromClassFactory(IClassFactory *pClassFact, IUnknown *punkOuter, BOOL *pfDidContainment) { CONTRACT (IUnknown*) { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; INJECT_FAULT(COMPlusThrowOM()); PRECONDITION(CheckPointer(pClassFact)); PRECONDITION(CheckPointer(punkOuter, NULL_OK)); PRECONDITION(CheckPointer(pfDidContainment, NULL_OK)); PRECONDITION(CheckPointer(m_pClassMT, NULL_OK)); POSTCONDITION(CheckPointer(RETVAL)); } CONTRACT_END; HRESULT hr = S_OK; SafeComHolder<IClassFactory2> pClassFact2 = NULL; SafeComHolder<IUnknown> pUnk = NULL; BSTRHolder bstrKey = NULL; // If the class doesn't support licensing or if it is missing a managed // type to use for querying a license, just use IClassFactory. if (FAILED(SafeQueryInterface(pClassFact, IID_IClassFactory2, (IUnknown**)&pClassFact2)) || m_pClassMT == NULL) { FrameWithCookie<DebuggerExitFrame> __def; { GCX_PREEMP(); hr = pClassFact->CreateInstance(punkOuter, IID_IUnknown, (void **)&pUnk); if (FAILED(hr) && punkOuter) { hr = pClassFact->CreateInstance(NULL, IID_IUnknown, (void**)&pUnk); if (pfDidContainment) *pfDidContainment = TRUE; } } __def.Pop(); } else { _ASSERTE(m_pClassMT != NULL); // Get the type to query for licensing. TypeHandle rth = TypeHandle(m_pClassMT); struct { OBJECTREF pProxy; OBJECTREF pType; } gc; gc.pProxy = NULL; // LicenseInteropProxy gc.pType = NULL; GCPROTECT_BEGIN(gc); // Create an instance of the object MethodDescCallSite createObj(METHOD__LICENSE_INTEROP_PROXY__CREATE); gc.pProxy = createObj.Call_RetOBJECTREF(NULL); gc.pType = rth.GetManagedClassObject(); // Query the current licensing context MethodDescCallSite getCurrentContextInfo(METHOD__LICENSE_INTEROP_PROXY__GETCURRENTCONTEXTINFO, &gc.pProxy); CLR_BOOL fDesignTime = FALSE; ARG_SLOT args[4]; args[0] = ObjToArgSlot(gc.pProxy); args[1] = ObjToArgSlot(gc.pType); args[2] = (ARG_SLOT)&fDesignTime; args[3] = (ARG_SLOT)(BSTR*)&bstrKey; getCurrentContextInfo.Call(args); if (fDesignTime) { // If designtime, we're supposed to obtain the runtime license key // from the component and save it away in the license context. // (the design tool can then grab it and embedded it into the // app it is creating) if (bstrKey != NULL) { // It's illegal for our helper to return a non-null bstrKey // when the context is design-time. But we'll try to do the // right thing anyway. _ASSERTE(!"We're not supposed to get here, but we'll try to cope anyway."); SysFreeString(bstrKey); bstrKey = NULL; } { GCX_PREEMP(); hr = pClassFact2->RequestLicKey(0, &bstrKey); } // E_NOTIMPL is not a true failure. It simply indicates that // the component doesn't support a runtime license key. if (hr == E_NOTIMPL) hr = S_OK; // Store the requested license key if (SUCCEEDED(hr)) { MethodDescCallSite saveKeyInCurrentContext(METHOD__LICENSE_INTEROP_PROXY__SAVEKEYINCURRENTCONTEXT, &gc.pProxy); args[0] = ObjToArgSlot(gc.pProxy); args[1] = (ARG_SLOT)(BSTR)bstrKey; saveKeyInCurrentContext.Call(args); } } // Create the instance if (SUCCEEDED(hr)) { FrameWithCookie<DebuggerExitFrame> __def; { GCX_PREEMP(); if (fDesignTime || bstrKey == NULL) { // Either it's design time, or the current context doesn't // supply a runtime license key. hr = pClassFact->CreateInstance(punkOuter, IID_IUnknown, (void **)&pUnk); if (FAILED(hr) && punkOuter) { hr = pClassFact->CreateInstance(NULL, IID_IUnknown, (void**)&pUnk); if (pfDidContainment) *pfDidContainment = TRUE; } } else { // It is runtime and we have a license key. _ASSERTE(bstrKey != NULL); hr = pClassFact2->CreateInstanceLic(punkOuter, NULL, IID_IUnknown, bstrKey, (void**)&pUnk); if (FAILED(hr) && punkOuter) { hr = pClassFact2->CreateInstanceLic(NULL, NULL, IID_IUnknown, bstrKey, (void**)&pUnk); if (pfDidContainment) *pfDidContainment = TRUE; } } } __def.Pop(); } GCPROTECT_END(); } if (FAILED(hr)) { if (bstrKey == NULL) ThrowHRMsg(hr, IDS_EE_CREATEINSTANCE_FAILED); else ThrowHRMsg(hr, IDS_EE_CREATEINSTANCE_LIC_FAILED); } // If the activated COM class has a CCW, mark the // CCW as being activated via COM. ComCallWrapper *ccw = GetCCWFromIUnknown(pUnk); if (ccw != NULL) ccw->MarkComActivated(); ComWrappersNative::MarkWrapperAsComActivated(pUnk); pUnk.SuppressRelease(); RETURN pUnk; } //------------------------------------------------------------- // ComClassFactory::CreateAggregatedInstance(MethodTable* pMTClass) // create a COM+ instance that aggregates a COM instance OBJECTREF ComClassFactory::CreateAggregatedInstance(MethodTable* pMTClass, BOOL ForManaged) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; INJECT_FAULT(COMPlusThrowOM()); PRECONDITION(CheckPointer(pMTClass)); } CONTRACTL_END; BOOL fDidContainment = FALSE; #ifdef _DEBUG // verify the class extends a COM import class MethodTable * pMT = pMTClass; do { pMT = pMT->GetParentMethodTable(); } while (pMT == NULL || pMT->IsComImport()); _ASSERTE(pMT != NULL); #endif SafeComHolder<IUnknown> pOuter = NULL; SafeComHolder<IClassFactory> pClassFact = NULL; SafeComHolder<IUnknown> pUnk = NULL; HRESULT hr = S_OK; NewRCWHolder pNewRCW; BOOL bUseDelegate = FALSE; MethodTable *pCallbackMT = NULL; OBJECTREF oref = NULL; COMOBJECTREF cref = NULL; GCPROTECT_BEGIN(cref) { cref = (COMOBJECTREF)ComObject::CreateComObjectRef(pMTClass); //get wrapper for the object, this could enable GC CCWHolder pComWrap = ComCallWrapper::InlineGetWrapper((OBJECTREF *)&cref); // Make sure the ClassInitializer has run, since the user might have // wanted to set up a COM object creation callback. pMTClass->CheckRunClassInitThrowing(); // If the user is going to use a delegate to allocate the COM object // (rather than CoCreateInstance), we need to know now, before we enable // preemptive GC mode (since we touch object references in the // determination). // We don't just check the current class to see if it has a cllabck // registered, we check up the class chain to see if any of our parents // did. pCallbackMT = pMTClass; while ((pCallbackMT != NULL) && (pCallbackMT->GetObjCreateDelegate() == NULL) && !pCallbackMT->IsComImport()) { pCallbackMT = pCallbackMT->GetParentMethodTable(); } if (pCallbackMT && !pCallbackMT->IsComImport()) bUseDelegate = TRUE; FrameWithCookie<DebuggerExitFrame> __def; // get the IUnknown interface for the managed object pOuter = ComCallWrapper::GetComIPFromCCW(pComWrap, IID_IUnknown, NULL); _ASSERTE(pOuter != NULL); // If the user has set a delegate to allocate the COM object, use it. // Otherwise we just CoCreateInstance it. if (bUseDelegate) { ARG_SLOT args[2]; OBJECTREF orDelegate = pCallbackMT->GetObjCreateDelegate(); MethodDesc *pMeth = COMDelegate::GetMethodDesc(orDelegate); GCPROTECT_BEGIN(orDelegate) { _ASSERTE(pMeth); MethodDescCallSite delegateMethod(pMeth, &orDelegate); // Get the OR on which we are going to invoke the method and set it // as the first parameter in arg above. args[0] = (ARG_SLOT)OBJECTREFToObject(COMDelegate::GetTargetObject(orDelegate)); // Pass the IUnknown of the aggregator as the second argument. args[1] = (ARG_SLOT)(IUnknown*)pOuter; // Call the method... pUnk = (IUnknown *)delegateMethod.Call_RetArgSlot(args); if (!pUnk) COMPlusThrowHR(E_FAIL); } GCPROTECT_END(); } else { _ASSERTE(m_pClassMT); pUnk = CreateInstanceInternal(pOuter, &fDidContainment); } __def.Pop(); // give up the extra addref that we did in our QI and suppress the auto-release. pComWrap->Release(); pComWrap.SuppressRelease(); // Here's the scary part. If we are doing a managed 'new' of the aggregator, // then COM really isn't involved. We should not be counting for our caller // because our caller relies on GC references rather than COM reference counting // to keep us alive. // // Drive the instances count down to 0 -- and rely on the GCPROTECT to keep us // alive until we get back to our caller. if (ForManaged) pComWrap->Release(); RCWCache* pCache = RCWCache::GetRCWCache(); _ASSERTE(cref->GetSyncBlock()->IsPrecious()); // the object already has a CCW DWORD dwSyncBlockIndex = cref->GetSyncBlockIndex(); // create a wrapper for this COM object pNewRCW = RCW::CreateRCW(pUnk, dwSyncBlockIndex, RCW::CF_None, pMTClass); RCWHolder pRCW(GetThread()); pRCW.InitNoCheck(pNewRCW); // we used containment // we need to store this wrapper in our hash table { RCWCache::LockHolder lh(pCache); GCX_FORBID(); BOOL fInserted = pCache->FindOrInsertWrapper_NoLock(pUnk, &pRCW, /* fAllowReInit = */ FALSE); if (!fInserted) { // OK. Looks like the factory returned a singleton on us and the cache already // has an entry for this pIdentity. This should always happen in containment // scenario, not for aggregation. // In this case, we should insert this new RCW into cache as a unique RCW, // because these are separate objects, and we need two separate RCWs with // different flags (should be contained, impossible to be aggregated) pointing // to them, separately pNewRCW->m_pIdentity = pNewRCW; fInserted = pCache->FindOrInsertWrapper_NoLock((IUnknown*)pNewRCW->m_pIdentity, &pRCW, /* fAllowReInit = */ FALSE); _ASSERTE(fInserted); } } if (fDidContainment) { // mark the wrapper as contained pRCW->MarkURTContained(); } else { // mark the wrapper as aggregated pRCW->MarkURTAggregated(); } // pUnk has to be released inside GC-protected block and before oref get assigned value // because it could trigger GC SafeRelease(pUnk); pUnk.SuppressRelease(); // If the object was created successfully then we need to copy the OBJECTREF // to oref because the GCPROTECT_END() will destroy the contents of cref. oref = ObjectToOBJECTREF(*(Object **)&cref); } GCPROTECT_END(); if (oref != NULL) { pOuter.SuppressRelease(); pClassFact.SuppressRelease(); pNewRCW.SuppressRelease(); } return oref; } //-------------------------------------------------------------- // Create instance using IClassFactory // Overridable IUnknown *ComClassFactory::CreateInstanceInternal(IUnknown *pOuter, BOOL *pfDidContainment) { CONTRACT(IUnknown *) { THROWS; GC_TRIGGERS; MODE_ANY; PRECONDITION(CheckPointer(pOuter, NULL_OK)); PRECONDITION(CheckPointer(pfDidContainment, NULL_OK)); POSTCONDITION(CheckPointer(RETVAL)); } CONTRACT_END; SafeComHolder<IClassFactory> pClassFactory = GetIClassFactory(); RETURN CreateInstanceFromClassFactory(pClassFactory, pOuter, pfDidContainment); } IClassFactory *ComClassFactory::GetIClassFactory() { CONTRACT(IClassFactory *) { THROWS; GC_TRIGGERS; MODE_ANY; POSTCONDITION(CheckPointer(RETVAL)); } CONTRACT_END; HRESULT hr = S_OK; IClassFactory *pClassFactory = NULL; GCX_PREEMP(); // If a server name is specified, then first try CLSCTX_REMOTE_SERVER. if (m_wszServer) { // Set up the COSERVERINFO struct. COSERVERINFO ServerInfo; memset(&ServerInfo, 0, sizeof(COSERVERINFO)); ServerInfo.pwszName = (LPWSTR)m_wszServer; // Try to retrieve the IClassFactory passing in CLSCTX_REMOTE_SERVER. hr = CoGetClassObject(m_rclsid, CLSCTX_REMOTE_SERVER, &ServerInfo, IID_IClassFactory, (void**)&pClassFactory); } else { // No server name is specified so we use CLSCTX_SERVER. if (pClassFactory == NULL) hr = CoGetClassObject(m_rclsid, CLSCTX_SERVER, NULL, IID_IClassFactory, (void**)&pClassFactory); } // If we failed to obtain the IClassFactory, throw an exception with rich information // explaining the failure. if (FAILED(hr)) { SString strMessage; SString strResource; WCHAR strClsid[39]; SString strHRDescription; // Obtain the textual representation of the HRESULT. StringFromGUID2(m_rclsid, strClsid, sizeof(strClsid) / sizeof(WCHAR)); SString strHRHex; strHRHex.Printf("%.8x", hr); // Obtain the description of the HRESULT. GetHRMsg(hr, strHRDescription); // Throw the actual exception indicating we couldn't find the class factory. if (m_wszServer == NULL) COMPlusThrowHR(hr, IDS_EE_LOCAL_COGETCLASSOBJECT_FAILED, strHRHex, strClsid, strHRDescription.GetUnicode()); else COMPlusThrowHR(hr, IDS_EE_REMOTE_COGETCLASSOBJECT_FAILED, strHRHex, strClsid, m_wszServer, strHRDescription.GetUnicode()); } RETURN pClassFactory; } //------------------------------------------------------------- // ComClassFactory::CreateInstance() // create instance, calls IClassFactory::CreateInstance OBJECTREF ComClassFactory::CreateInstance(MethodTable* pMTClass, BOOL ForManaged) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; INJECT_FAULT(COMPlusThrowOM()); PRECONDITION(CheckPointer(pMTClass, NULL_OK)); } CONTRACTL_END; // Check for aggregates if (pMTClass != NULL && !pMTClass->IsComImport()) return CreateAggregatedInstance(pMTClass, ForManaged); HRESULT hr = S_OK; OBJECTREF coref = NULL; OBJECTREF RetObj = NULL; GCPROTECT_BEGIN(coref) { { SafeComHolder<IUnknown> pUnk = NULL; SafeComHolder<IClassFactory> pClassFact = NULL; // Create the instance pUnk = CreateInstanceInternal(NULL, NULL); // Even though we just created the object, it's possible that we got back a context // wrapper from the COM side. For instance, it could have been an existing object // or it could have been created in a different context than we are running in. // pMTClass is the class that wraps the com ip // if a class was passed in use it // otherwise use the class that we know if (pMTClass == NULL) pMTClass = m_pClassMT; GetObjectRefFromComIP(&coref, pUnk, pMTClass); if (coref == NULL) COMPlusThrowOM(); } // Set the value of the return object after the COM guys are cleaned up. RetObj = coref; } GCPROTECT_END(); return RetObj; } //-------------------------------------------------------------- // Init the ComClassFactory. void ComClassFactory::Init(_In_opt_ PCWSTR wszServer, MethodTable* pClassMT) { LIMITED_METHOD_CONTRACT; m_wszServer = wszServer; m_pClassMT = pClassMT; } //------------------------------------------------------------- void ComClassFactory::Cleanup() { CONTRACTL { NOTHROW; GC_NOTRIGGER; MODE_ANY; } CONTRACTL_END; if (m_bManagedVersion) return; if (m_wszServer != NULL) delete [] m_wszServer; delete this; } #endif // FEATURE_COMINTEROP_UNMANAGED_ACTIVATION //--------------------------------------------------------------------- // RCW cache, act as the manager for the RCWs // uses a hash table to map IUnknown to the corresponding wrappers //--------------------------------------------------------------------- // Obtain the appropriate wrapper cache from the current context. RCWCache* RCWCache::GetRCWCache() { CONTRACT (RCWCache*) { THROWS; GC_TRIGGERS; MODE_ANY; POSTCONDITION(CheckPointer(RETVAL, NULL_OK)); } CONTRACT_END; AppDomain * pDomain = GetAppDomain(); RETURN (pDomain ? pDomain->GetRCWCache() : NULL); } RCWCache* RCWCache::GetRCWCacheNoCreate() { CONTRACT (RCWCache*) { NOTHROW; GC_NOTRIGGER; MODE_ANY; POSTCONDITION(CheckPointer(RETVAL, NULL_OK)); } CONTRACT_END; AppDomain * pDomain = GetAppDomain(); RETURN (pDomain ? pDomain->GetRCWCacheNoCreate() : NULL); } //--------------------------------------------------------------------- // Constructor. Note we init the global RCW cleanup list in here too. RCWCache::RCWCache(AppDomain *pDomain) : m_lock(CrstRCWCache, CRST_UNSAFE_COOPGC) { CONTRACTL { THROWS; GC_NOTRIGGER; MODE_ANY; PRECONDITION(CheckPointer(pDomain)); } CONTRACTL_END; m_pDomain = pDomain; } // Look up to see if we already have an valid wrapper in cache for this IUnk // DOES NOT hold a lock inside the function - locking in the caller side IS REQUIRED // If pfMadeWrapperStrong is TRUE upon return, you NEED to call AddRef on pIdentity void RCWCache::FindWrapperInCache_NoLock(IUnknown* pIdentity, RCWHolder* pRCW) { CONTRACTL { THROWS; GC_NOTRIGGER; MODE_COOPERATIVE; PRECONDITION(CheckPointer(pIdentity)); PRECONDITION(CheckPointer(pRCW)); } CONTRACTL_END; // lookup in our hash table LookupWrapper(pIdentity, pRCW); // check if we found the wrapper, if (!pRCW->IsNull()) { if ((*pRCW)->IsValid()) { if ((*pRCW)->IsDetached()) { _ASSERTE((LPVOID)pIdentity != (LPVOID)pRCW->GetRawRCWUnsafe()); // we should never find "unique" RCWs // remove and re-insert the RCW using its unique identity RemoveWrapper(pRCW); (*pRCW)->m_pIdentity = (LPVOID)pRCW->GetRawRCWUnsafe(); InsertWrapper(pRCW); pRCW->UnInit(); } else { // addref the wrapper (*pRCW)->AddRef(this); } } else { pRCW->UnInit(); } } return; } BOOL RCWCache::FindOrInsertWrapper_NoLock(IUnknown* pIdentity, RCWHolder* pRCW, BOOL fAllowReinit) { CONTRACTL { THROWS; GC_NOTRIGGER; MODE_COOPERATIVE; PRECONDITION(CheckPointer(pIdentity)); PRECONDITION(pIdentity != (IUnknown*)-1); PRECONDITION(CheckPointer(pRCW)); PRECONDITION(CheckPointer(pRCW->GetRawRCWUnsafe())); } CONTRACTL_END; BOOL fInserted = FALSE; // we have created a wrapper, let us insert it into the hash table // but we need to check if somebody beat us to it { // see if somebody beat us to it // perf: unfold LookupWrapper to avoid creating RCWHolder in common cases RCW *pRawRCW = LookupWrapperUnsafe(pIdentity); if (pRawRCW == NULL) { InsertWrapper(pRCW); fInserted = TRUE; } else { RCWHolder pTempRCW(GetThread()); // Assume that we already have a sync block for this object. pTempRCW.InitNoCheck(pRawRCW); // if we didn't find a valid wrapper, Insert our own wrapper if (pTempRCW.IsNull() || !pTempRCW->IsValid()) { // if we found a bogus wrapper, let us get rid of it // so that when we insert we insert a valid wrapper, instead of duplicate if (!pTempRCW.IsNull()) { _ASSERTE(!pTempRCW->IsValid()); RemoveWrapper(&pTempRCW); } InsertWrapper(pRCW); fInserted = TRUE; } else { _ASSERTE(!pTempRCW.IsNull() && pTempRCW->IsValid()); // okay we found a valid wrapper, if (pTempRCW->IsDetached()) { _ASSERTE((LPVOID)pIdentity != (LPVOID)pTempRCW.GetRawRCWUnsafe()); // we should never find "unique" RCWs // remove and re-insert the RCW using its unique identity RemoveWrapper(&pTempRCW); pTempRCW->m_pIdentity = (LPVOID)pTempRCW.GetRawRCWUnsafe(); InsertWrapper(&pTempRCW); // and insert the new incoming RCW InsertWrapper(pRCW); fInserted = TRUE; } else if (fAllowReinit) { // addref the wrapper pTempRCW->AddRef(this); // Initialize the holder with the rcw we're going to return. OBJECTREF objref = pTempRCW->GetExposedObject(); pTempRCW.UnInit(); pRCW->UnInit(); pRCW->InitNoCheck(objref); } } } } return fInserted; } //-------------------------------------------------------------------------------- // ULONG RCWCache::ReleaseWrappers() // Helper to release the complus wrappers in the cache that lives in the specified // context or all the wrappers in the cache if the pCtxCookie is null. void RCWCache::ReleaseWrappersWorker(LPVOID pCtxCookie) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_ANY; PRECONDITION(CheckPointer(pCtxCookie, NULL_OK)); } CONTRACTL_END; RCWCleanupList CleanupList; RCWCleanupList AggregatedCleanupList; struct RCWInterfacePointer { IUnknown *m_pUnk; RCW *m_pRCW; CtxEntry *m_pCtxEntry; }; // Arrays of individual interface pointers to call Release on CQuickArrayList<RCWInterfacePointer> InterfacePointerList; CQuickArrayList<RCWInterfacePointer> AggregatedInterfacePointerList; // Switch to cooperative GC mode before we take the lock. GCX_COOP(); { { RCWCache::LockHolder lh(this); // Go through the hash table and add the wrappers to the cleanup lists. for (SHash<RCWCacheTraits>::Iterator it = m_HashMap.Begin(); it != m_HashMap.End(); it++) { RCW *pWrap = *it; _ASSERTE(pWrap != NULL); // If a context cookie was specified, then only clean up wrappers that // are in that context, including non-FTM regular RCWs // Otherwise clean up all the wrappers. // Ignore RCWs that aggregate the FTM if we are cleaning up context // specific RCWs if (!pCtxCookie || ((pWrap->GetWrapperCtxCookie() == pCtxCookie) && !pWrap->IsFreeThreaded())) { if (!pWrap->IsURTAggregated()) CleanupList.AddWrapper_NoLock(pWrap); else AggregatedCleanupList.AddWrapper_NoLock(pWrap); pWrap->DecoupleFromObject(); RemoveWrapper(pWrap); } } } // Clean up the non URT aggregated RCW's first then clean up the URT aggregated RCW's. CleanupList.CleanupAllWrappers(); for (SIZE_T i = 0; i < InterfacePointerList.Size(); i++) { RCWInterfacePointer &intfPtr = InterfacePointerList[i]; RCW_VTABLEPTR(intfPtr.m_pRCW); SafeRelease(intfPtr.m_pUnk, intfPtr.m_pRCW); intfPtr.m_pCtxEntry->Release(); } AggregatedCleanupList.CleanupAllWrappers(); for (SIZE_T i = 0; i < AggregatedInterfacePointerList.Size(); i++) { RCWInterfacePointer &intfPtr = AggregatedInterfacePointerList[i]; RCW_VTABLEPTR(intfPtr.m_pRCW); SafeRelease(intfPtr.m_pUnk, intfPtr.m_pRCW); intfPtr.m_pCtxEntry->Release(); } } if (!CleanupList.IsEmpty() || !AggregatedCleanupList.IsEmpty()) { _ASSERTE(!"Cannot cleanup RCWs in cleanup list. Most likely because the RCW is disabled for eager cleanup."); LOG((LF_INTEROP, LL_INFO1000, "Cannot cleanup RCWs in cleanup list. Most likely because the RCW is disabled for eager cleanup.")); } } //-------------------------------------------------------------------------------- // ULONG RCWCache::DetachWrappersWorker() // Helper to mark RCWs that are not GC-promoted at this point as detached. class DetachWrappersFunctor { public: FORCEINLINE void operator() (RCW *pRCW) { LIMITED_METHOD_CONTRACT; if (pRCW->IsValid()) { if (!GCHeapUtilities::GetGCHeap()->IsPromoted(OBJECTREFToObject(pRCW->GetExposedObject())) && !pRCW->IsDetached()) { // No need to use InterlockedOr here since every other place that modifies the flags // runs in cooperative GC mode (i.e. definitely not concurrently with this function). pRCW->m_Flags.m_Detached = 1; } } } }; void RCWCache::DetachWrappersWorker() { CONTRACTL { NOTHROW; GC_NOTRIGGER; MODE_ANY; PRECONDITION(GCHeapUtilities::IsGCInProgress()); // GC is in progress and the runtime is suspended } CONTRACTL_END; DetachWrappersFunctor functor; m_HashMap.ForEach(functor); } VOID RCWCleanupList::AddWrapper(RCW* pRCW) { CONTRACTL { NOTHROW; GC_NOTRIGGER; MODE_ANY; } CONTRACTL_END; // For the global cleanup list, this is called only from the finalizer thread _ASSERTE(this != g_pRCWCleanupList || GetThread() == FinalizerThread::GetFinalizerThread()); { CrstHolder ch(&m_lock); AddWrapper_NoLock(pRCW); } } VOID RCWCleanupList::AddWrapper_NoLock(RCW* pRCW) { CONTRACTL { NOTHROW; GC_NOTRIGGER; MODE_ANY; } CONTRACTL_END; // Traverse the list for match - when found, insert as the matching bucket head. RCW *pBucket = m_pFirstBucket; RCW *pPrevBucket = NULL; while (pBucket != NULL) { if (pRCW->MatchesCleanupBucket(pBucket)) { // Insert as bucket head. pRCW->m_pNextRCW = pBucket; pRCW->m_pNextCleanupBucket = pBucket->m_pNextCleanupBucket; // Not necessary but makes it clearer that pBucket is no longer a bucket head. pBucket->m_pNextCleanupBucket = NULL; break; } pPrevBucket = pBucket; pBucket = pBucket->m_pNextCleanupBucket; } // If we didn't find a match, insert as a new bucket. if (pBucket == NULL) { pRCW->m_pNextRCW = NULL; pRCW->m_pNextCleanupBucket = NULL; } // pRCW is now a bucket head - the only thing missing is a link from the previous bucket head. if (pPrevBucket != NULL) pPrevBucket->m_pNextCleanupBucket = pRCW; else m_pFirstBucket = pRCW; } VOID RCWCleanupList::CleanupAllWrappers() { CONTRACTL { NOTHROW; GC_TRIGGERS; MODE_ANY; // For the global cleanup list, this is called only from the finalizer thread PRECONDITION( (this != g_pRCWCleanupList) || (GetThread() == FinalizerThread::GetFinalizerThread())); } CONTRACTL_END; RemovedBuckets NonSTABuckets; RemovedBuckets STABuckets; // We sweep the cleanup list once and remove all MTA/Free-Threaded buckets as well as STA buckets, leaving only // those with disabled eager cleanup in the list. Then we drop the lock, walk the removed buckets, // and perform the actual release. We cannot be releasing during the initial sweep because we would // need to drop and reacquire the lock for each bucket which would invalidate the entire linked // list so we would need to start the enumeration over after each bucket. { // Take the lock CrstHolder ch(&m_lock); RCW *pBucket = m_pFirstBucket; RCW *pPrevBucket = NULL; while (pBucket != NULL) { RCW *pNextBucket = pBucket->m_pNextCleanupBucket; Thread *pSTAThread = pBucket->GetSTAThread(); if (pSTAThread == NULL || pBucket->AllowEagerSTACleanup()) { // Remove the list from the CleanupList structure if (pPrevBucket != NULL) pPrevBucket->m_pNextCleanupBucket = pBucket->m_pNextCleanupBucket; else m_pFirstBucket = pBucket->m_pNextCleanupBucket; if (pSTAThread == NULL) { // and add it to the local MTA/Free-Threaded chain NonSTABuckets.Append(pBucket); } else { // or to the local STA chain STABuckets.Append(pBucket); } } else { // move the 'previous' pointer only if we didn't remove the current bucket pPrevBucket = pBucket; } pBucket = pNextBucket; } // Release the lock so we can correctly transition to cleanup. } // Request help from other threads m_doCleanupInContexts = TRUE; // First, cleanup the MTA/Free-Threaded buckets RCW *pRCWToCleanup; while ((pRCWToCleanup = NonSTABuckets.PopHead()) != NULL) { ReleaseRCWList_Args args; args.pHead = pRCWToCleanup; args.ctxTried = FALSE; args.ctxBusy = FALSE; ReleaseRCWListInCorrectCtx(&args); } // Now, cleanup the STA buckets while ((pRCWToCleanup = STABuckets.PopHead()) != NULL) { // // CAUTION: DONOT access pSTAThread fields here as pSTAThread // could've already been deleted, if // 1) the RCW is a free threaded RCW // 2) the RCW is a regular RCW, and marked by GC but not finalized yet // Only pointer comparison is allowed. // ReleaseRCWList_Args args; args.pHead = pRCWToCleanup; args.ctxTried = FALSE; args.ctxBusy = FALSE; // Advertise the fact that we're cleaning up this thread. m_pCurCleanupThread = pRCWToCleanup->GetSTAThread(); _ASSERTE(pRCWToCleanup->GetSTAThread() != NULL); ReleaseRCWListInCorrectCtx(&args); // Done cleaning this thread for now...reset m_pCurCleanupThread = NULL; } // No more stuff for other threads to help with m_doCleanupInContexts = FALSE; } VOID RCWCleanupList::CleanupWrappersInCurrentCtxThread(BOOL fWait, BOOL fManualCleanupRequested, BOOL bIgnoreComObjectEagerCleanupSetting) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_ANY; } CONTRACTL_END; if (!m_doCleanupInContexts && !fManualCleanupRequested) return; // Find out our STA (if any) Thread *pThread = GetThread(); LPVOID pCurrCtxCookie = GetCurrentCtxCookie(); Thread::ApartmentState aptState = pThread->GetApartment(); RemovedBuckets BucketsToCleanup; { // Take the lock CrstHolder ch(&m_lock); RCW *pBucket = m_pFirstBucket; RCW *pPrevBucket = NULL; while (pBucket != NULL) { BOOL fMatch = FALSE; RCW *pNextBucket = pBucket->m_pNextCleanupBucket; if (aptState != Thread::AS_InSTA) { // If we're in an MTA, just look for a matching contexts (including free-threaded and non-free threaded) if (pBucket->GetSTAThread() == NULL && (pCurrCtxCookie == NULL || pBucket->GetWrapperCtxCookie() == pCurrCtxCookie)) { fMatch = TRUE; } } else { // If we're in an STA, clean all matching STA contexts (including free-threaded and non-free threaded) if (pBucket->GetWrapperCtxCookie() == pCurrCtxCookie && (bIgnoreComObjectEagerCleanupSetting || pBucket->AllowEagerSTACleanup())) { fMatch = TRUE; } } if (fMatch) { // Remove the list from the CleanupList structure if (pPrevBucket != NULL) pPrevBucket->m_pNextCleanupBucket = pBucket->m_pNextCleanupBucket; else m_pFirstBucket = pBucket->m_pNextCleanupBucket; // and add it to the local cleanup chain BucketsToCleanup.Append(pBucket); } else { // move the 'previous' pointer only if we didn't remove the current bucket pPrevBucket = pBucket; } pBucket = pNextBucket; } } // Clean it up RCW *pRCWToCleanup; while ((pRCWToCleanup = BucketsToCleanup.PopHead()) != NULL) { if (pRCWToCleanup->GetSTAThread() == NULL) { // We're already in the correct context, just clean it. ReleaseRCWListRaw(pRCWToCleanup); } else { ReleaseRCWList_Args args; args.pHead = pRCWToCleanup; args.ctxTried = FALSE; args.ctxBusy = FALSE; ReleaseRCWListInCorrectCtx(&args); } } if (aptState == Thread::AS_InSTA) { if (fWait && m_pCurCleanupThread == pThread) { // The finalizer thread may be trying to enter our STA - // make sure it can get in. LOG((LF_INTEROP, LL_INFO1000, "Thread %p: Yielding to finalizer thread.\n", pThread)); // Do a noop wait just to make sure we are cooperating // with the finalizer thread pThread->Join(1, TRUE); } } } BOOL RCWCleanupList::IsEmpty() { LIMITED_METHOD_CONTRACT; return (m_pFirstBucket == NULL); } // static HRESULT RCWCleanupList::ReleaseRCWListInCorrectCtx(LPVOID pData) { CONTRACTL { NOTHROW; GC_TRIGGERS; MODE_ANY; PRECONDITION(CheckPointer(pData)); } CONTRACTL_END; ReleaseRCWList_Args* args = (ReleaseRCWList_Args*)pData; RCW* pHead = (RCW *)args->pHead; LPVOID pCurrCtxCookie = GetCurrentCtxCookie(); // If we are releasing our IP's as a result of shutdown, we MUST not transition // into cooperative GC mode. This "fix" will prevent us from doing so. if (g_fEEShutDown & ShutDown_Finalize2) { Thread *pThread = GetThreadNULLOk(); if (pThread && !FinalizerThread::IsCurrentThreadFinalizer()) pThread->SetThreadStateNC(Thread::TSNC_UnsafeSkipEnterCooperative); } // Make sure we're in the right context / apartment. // Also - if we've already transitioned once, we don't want to do so again. // If the cookie exists in multiple MTA apartments, and the STA has gone away // (leaving the old STA thread as unknown state with a context value equal to // the MTA context), we will infinitely loop. So, we short circuit this with ctxTried. Thread *pHeadThread = pHead->GetSTAThread(); BOOL fCorrectThread = (pHeadThread == NULL) ? TRUE : (pHeadThread == GetThreadNULLOk()); BOOL fCorrectCookie = (pCurrCtxCookie == NULL) ? TRUE : (pHead->GetWrapperCtxCookie() == pCurrCtxCookie); if ( pHead->IsFreeThreaded() || // Avoid context transition if the list is for free threaded RCW (fCorrectThread && fCorrectCookie) || args->ctxTried ) { ReleaseRCWListRaw(pHead); } else { // Mark that we're trying a context transition args->ctxTried = TRUE; // Transition into the context to release the interfaces. HRESULT hr = pHead->EnterContext(ReleaseRCWListInCorrectCtx, args); if (FAILED(hr) || args->ctxBusy) { // We are having trouble transitioning into the context (typically because the context is disconnected) // or the context is busy so we cannot transition into it to clean up. // The only option we have left is to try and clean up the RCW's from the current context. ReleaseRCWListRaw(pHead); } } // Reset the bit indicating we cannot transition into cooperative GC mode. if (g_fEEShutDown & ShutDown_Finalize2) { Thread *pThread = GetThreadNULLOk(); if (pThread && !FinalizerThread::IsCurrentThreadFinalizer()) pThread->ResetThreadStateNC(Thread::TSNC_UnsafeSkipEnterCooperative); } return S_OK; } // static VOID RCWCleanupList::ReleaseRCWListRaw(RCW* pRCW) { CONTRACTL { NOTHROW; GC_TRIGGERS; MODE_ANY; PRECONDITION(CheckPointer(pRCW)); } CONTRACTL_END; // Release all these RCWs RCW* pNext = NULL; while (pRCW != NULL) { pNext = pRCW->m_pNextRCW; pRCW->Cleanup(); pRCW = pNext; } } const int RCW::s_rGCPressureTable[GCPressureSize_COUNT] = { 0, // GCPressureSize_None GC_PRESSURE_PROCESS_LOCAL, // GCPressureSize_ProcessLocal GC_PRESSURE_MACHINE_LOCAL, // GCPressureSize_MachineLocal GC_PRESSURE_REMOTE, // GCPressureSize_Remote }; // Deletes all items in code:s_RCWStandbyList. void RCW::FlushStandbyList() { LIMITED_METHOD_CONTRACT; PSLIST_ENTRY pEntry = InterlockedFlushSList(&RCW::s_RCWStandbyList); while (pEntry) { PSLIST_ENTRY pNextEntry = pEntry->Next; delete (RCW *)pEntry; pEntry = pNextEntry; } } //-------------------------------------------------------------------------------- // The IUnknown passed in is AddRef'ed if we succeed in creating the wrapper. RCW* RCW::CreateRCW(IUnknown *pUnk, DWORD dwSyncBlockIndex, DWORD flags, MethodTable *pClassMT) { CONTRACT (RCW*) { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; INJECT_FAULT(COMPlusThrowOM()); } CONTRACT_END; RCW *pRCW = NULL; { GCX_PREEMP(); pRCW = RCW::CreateRCWInternal(pUnk, dwSyncBlockIndex, flags, pClassMT); } RETURN pRCW; } RCW* RCW::CreateRCWInternal(IUnknown *pUnk, DWORD dwSyncBlockIndex, DWORD flags, MethodTable *pClassMT) { CONTRACT (RCW*) { THROWS; GC_TRIGGERS; MODE_PREEMPTIVE; INJECT_FAULT(COMPlusThrowOM()); PRECONDITION(CheckPointer(pUnk)); PRECONDITION(dwSyncBlockIndex != 0); PRECONDITION(CheckPointer(pClassMT)); POSTCONDITION(CheckPointer(RETVAL)); } CONTRACT_END; // now allocate the wrapper RCW *pWrap = (RCW *)InterlockedPopEntrySList(&RCW::s_RCWStandbyList); if (pWrap != NULL) { // cache hit - reinitialize the data structure new (pWrap) RCW(); } else { pWrap = new RCW(); } AppDomain * pAppDomain = GetAppDomain(); ULONG cbRef = SafeAddRefPreemp(pUnk); LogInteropAddRef(pUnk, cbRef, "RCWCache::CreateRCW: Addref pUnk because creating new RCW"); // Make sure we release AddRef-ed pUnk in case of exceptions SafeComHolderPreemp<IUnknown> pUnkHolder = pUnk; // Log the creation LogRCWCreate(pWrap, pUnk); // Initialize wrapper pWrap->Initialize(pUnk, dwSyncBlockIndex, pClassMT); pUnkHolder.SuppressRelease(); RETURN pWrap; } //---------------------------------------------------------- // Init IUnknown and IDispatch cookies with the pointers, and assocaiate the COMOBJECTREF with this RCW void RCW::Initialize(IUnknown* pUnk, DWORD dwSyncBlockIndex, MethodTable *pClassMT) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_PREEMPTIVE; INJECT_FAULT(ThrowOutOfMemory()); PRECONDITION(CheckPointer(pUnk)); PRECONDITION(dwSyncBlockIndex != 0); PRECONDITION(CheckPointer(pClassMT)); } CONTRACTL_END; m_cbRefCount = 1; // Start with use count 1 (this is counteracted in RCW::Cleanup) m_cbUseCount = 1; // Cache the IUnk and thread m_pIdentity = pUnk; // Remember the VTable pointer of the COM IP. // This is very helpful for tracking down early released COM objects // that AV when you call IUnknown::Release. m_vtablePtr = *(LPVOID*)pUnk; // track the thread that created this wrapper // if this thread is an STA thread, then when the STA dies // we need to cleanup this wrapper m_pCreatorThread = GetThread(); m_pRCWCache = RCWCache::GetRCWCache(); m_Flags.m_MarshalingType = GetMarshalingType(pUnk, pClassMT); // Initialize the IUnkEntry m_UnkEntry.Init(pUnk, IsFreeThreaded(), m_pCreatorThread DEBUGARG(this)); // Determine AllowEagerSTACleanup setting right now // We don't want to access the thread object to get the status // as m_pCreatorThread could be already dead at RCW cleanup time // // Free threaded RCWs created from STA "survives" even after the pSTAThread is terminated // and destroyed. For free threaded objects, there will be no pumping at all and user should always // expect the object to be accessed concurrently. // // So, only disallow eager STA cleanup for non free-threaded RCWs. Free threaded RCWs // should be cleaned up regardless of the setting on thread. bool disableEagerCleanup = m_pCreatorThread->IsDisableComObjectEagerCleanup(); if (disableEagerCleanup && !IsFreeThreaded()) m_Flags.m_fAllowEagerSTACleanup = 0; else m_Flags.m_fAllowEagerSTACleanup = 1; // store the wrapper in the sync block, that is the only way we can get cleaned up // the syncblock is guaranteed to be present SyncBlock *pSyncBlock = g_pSyncTable[(int)dwSyncBlockIndex].m_SyncBlock; InteropSyncBlockInfo *pInteropInfo = pSyncBlock->GetInteropInfo(); pInteropInfo->SetRawRCW(this); // Store the sync block index. m_SyncBlockIndex = dwSyncBlockIndex; // Log the wrapper initialization. LOG((LF_INTEROP, LL_INFO100, "Initializing RCW %p with SyncBlock index %d\n", this, dwSyncBlockIndex)); // To help combat finalizer thread starvation, we check to see if there are any wrappers // scheduled to be cleaned up for our context. If so, we'll do them here to avoid making // the finalizer thread do a transition. // @perf: This may need a bit of tuning. // Note: This will enter a message pump in order to synchronize with the finalizer thread. // We can't safely pump here for Releasing (or directly release) // if we're currently in a SendMessage. // Also, clients can opt out of this. The option is is a per-thread flag which they can // set by calling DisableComEagerCleanup on the appropriate thread. Why would they // want to opt out? Because pumping can lead to re-entrancy in in unexpected places. // If a client decides to opt out, they are required to cleanup RCWs themselves by // calling Marshal.CleanupUnusedObjectsInCurrentContext periodically. The best place // to make that call is within their own message pump. if (!disableEagerCleanup ) { _ASSERTE(g_pRCWCleanupList != NULL); g_pRCWCleanupList->CleanupWrappersInCurrentCtxThread(); } } VOID RCW::MarkURTAggregated() { CONTRACTL { NOTHROW; GC_TRIGGERS; MODE_ANY; PRECONDITION(m_Flags.m_fURTContained == 0); } CONTRACTL_END; m_Flags.m_fURTAggregated = 1; } RCW::MarshalingType RCW::GetMarshalingType(IUnknown* pUnk, MethodTable *pClassMT) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_PREEMPTIVE; PRECONDITION(CheckPointer(pUnk)); PRECONDITION(CheckPointer(pClassMT)); } CONTRACTL_END; PTR_EEClass pClass = pClassMT->GetClass(); // Skip attributes on interfaces as any object could implement those interface if (!pClass->IsInterface() && pClass->IsMarshalingTypeSet()) { MarshalingType mType; ( pClass ->IsMarshalingTypeFreeThreaded() ) ? mType = MarshalingType_FreeThreaded : (pClass->IsMarshalingTypeInhibit() ? mType = MarshalingType_Inhibit : mType = MarshalingType_Standard); return mType; } // MarshalingBehavior is not set and hence we will have to find the behavior using the QI else { // Check whether the COM object can be marshaled. Hence we query for INoMarshal SafeComHolderPreemp<INoMarshal> pNoMarshal; HRESULT hr = SafeQueryInterfacePreemp(pUnk, IID_INoMarshal, (IUnknown**)&pNoMarshal); LogInteropQI(pUnk, IID_INoMarshal, hr, "RCW::GetMarshalingType: QI for INoMarshal"); if (SUCCEEDED(hr)) return MarshalingType_Inhibit; if (IUnkEntry::IsComponentFreeThreaded(pUnk)) return MarshalingType_FreeThreaded; } return MarshalingType_Unknown; } void RCW::AddMemoryPressure(GCPressureSize pressureSize) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_PREEMPTIVE; } CONTRACTL_END; int pressure = s_rGCPressureTable[pressureSize]; GCInterface::AddMemoryPressure(pressure); // Remember the pressure we set. m_Flags.m_GCPressure = pressureSize; } void RCW::RemoveMemoryPressure() { CONTRACTL { NOTHROW; GC_TRIGGERS; MODE_PREEMPTIVE; PRECONDITION((GetThread()->m_StateNC & Thread::TSNC_UnsafeSkipEnterCooperative) == 0); } CONTRACTL_END; if (GCPressureSize_None == m_Flags.m_GCPressure) return; int pressure = s_rGCPressureTable[m_Flags.m_GCPressure]; GCInterface::RemoveMemoryPressure(pressure); m_Flags.m_GCPressure = GCPressureSize_None; } //-------------------------------------------------------------------------------- // Addref is called only from within the runtime, when we lookup a wrapper in our hash // table LONG RCW::AddRef(RCWCache* pWrapCache) { CONTRACTL { NOTHROW; GC_NOTRIGGER; MODE_ANY; PRECONDITION(CheckPointer(pWrapCache)); PRECONDITION(pWrapCache->LOCKHELD()); } CONTRACTL_END; LONG cbRef = ++m_cbRefCount; return cbRef; } AppDomain* RCW::GetDomain() { CONTRACT (AppDomain*) { NOTHROW; GC_NOTRIGGER; MODE_ANY; POSTCONDITION(CheckPointer(RETVAL)); } CONTRACT_END; RETURN m_pRCWCache->GetDomain(); } //-------------------------------------------------------------------------------- // Used to facilitate the ReleaseComObject API. // Ensures that the RCW is not in use before attempting to release it. // INT32 RCW::ExternalRelease(OBJECTREF* pObjPROTECTED) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; PRECONDITION(pObjPROTECTED != NULL); PRECONDITION(*pObjPROTECTED != NULL); } CONTRACTL_END; COMOBJECTREF* cref = (COMOBJECTREF*)pObjPROTECTED; INT32 cbRef = -1; BOOL fCleanupWrapper = FALSE; RCW* pRCW = NULL; // Lock RCWCache* pCache = RCWCache::GetRCWCache(); _ASSERTE(pCache); { RCWCache::LockHolder lh(pCache); // now to see if the wrapper is valid // if there is another ReleaseComObject on this object // of if an STA thread death decides to cleanup this wrapper // then the object will be disconnected from the wrapper pRCW = (*cref)->GetSyncBlock()->GetInteropInfoNoCreate()->GetRawRCW(); if (pRCW) { // check for invalid case if ((LONG)pRCW->m_cbRefCount > 0) { cbRef = (INT32) (--(pRCW->m_cbRefCount)); if (cbRef == 0) { pCache->RemoveWrapper(pRCW); fCleanupWrapper = TRUE; } } } } // do cleanup after releasing the lock if (fCleanupWrapper) { // Release all the data associated with the __ComObject. ComObject::ReleaseAllData(pRCW->GetExposedObject()); pRCW->DecoupleFromObject(); pRCW->Cleanup(); } return cbRef; } //-------------------------------------------------------------------------------- // Used to facilitate the FinalReleaseComObject API. // Ensures that the RCW is not in use before attempting to release it. // void RCW::FinalExternalRelease(OBJECTREF* pObjPROTECTED) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; PRECONDITION(pObjPROTECTED != NULL); PRECONDITION(*pObjPROTECTED != NULL); } CONTRACTL_END; COMOBJECTREF* cref = (COMOBJECTREF*)pObjPROTECTED; BOOL fCleanupWrapper = FALSE; RCW* pRCW = NULL; // Lock RCWCache* pCache = RCWCache::GetRCWCache(); _ASSERTE(pCache); { RCWCache::LockHolder lh(pCache); pRCW = (*cref)->GetSyncBlock()->GetInteropInfoNoCreate()->GetRawRCW(); if (pRCW && pRCW->m_cbRefCount > 0) { pRCW->m_cbRefCount = 0; pCache->RemoveWrapper(pRCW); fCleanupWrapper = TRUE; } } // do cleanup after releasing the lock if (fCleanupWrapper) { // Release all the data associated with the __ComObject. ComObject::ReleaseAllData(pRCW->GetExposedObject()); pRCW->DecoupleFromObject(); pRCW->Cleanup(); } } //-------------------------------------------------------------------------------- // schedule to free all interface pointers, called during GC to // do minimal work void RCW::MinorCleanup() { CONTRACTL { NOTHROW; GC_NOTRIGGER; MODE_ANY; PRECONDITION(GCHeapUtilities::IsGCInProgress() || ( (g_fEEShutDown & ShutDown_SyncBlock) && g_fProcessDetach )); } CONTRACTL_END; // Log the wrapper minor cleanup. LogRCWMinorCleanup(this); // remove the wrapper from the cache, so that // other threads won't find this invalid wrapper // NOTE: we don't need to LOCK because we make sure // the rest of the folks touch this hash table // with thier GC mode pre-emptiveGCDisabled RCWCache* pCache = m_pRCWCache; _ASSERTE(pCache); // On server build, multiple threads will be removing // wrappers from wrapper cache, pCache->RemoveWrapper(this); // Clear the SyncBlockIndex as the object is being GC'd and the index will become // invalid as soon as the object is collected. m_SyncBlockIndex = 0; } //-------------------------------------------------------------------------------- // Cleanup free all interface pointers void RCW::Cleanup() { CONTRACTL { NOTHROW; GC_TRIGGERS; MODE_ANY; } CONTRACTL_END; // Log the destruction of the RCW. LogRCWDestroy(this); // If we can't switch to cooperative mode, then we need to skip the check to // if the wrapper is still in the cache. Also, if we can't switch to coop mode, // we're guaranteed to have already decoupled the RCW from its object. #ifdef _DEBUG if (!(GetThread()->m_StateNC & Thread::TSNC_UnsafeSkipEnterCooperative)) { GCX_COOP(); // make sure this wrapper is not in the hash table RCWCache::LockHolder lh(m_pRCWCache); _ASSERTE(m_pRCWCache->LookupWrapperUnsafe(m_pIdentity) != this); } #endif // Switch to preemptive GC mode before we release the interfaces. { GCX_PREEMP(); // Release the IUnkEntry and the InterfaceEntries. ReleaseAllInterfacesCallBack(this); // Remove the memory pressure caused by this RCW (if present) // If we're in a shutdown situation, we can ignore the memory pressure. if ((GetThread()->m_StateNC & Thread::TSNC_UnsafeSkipEnterCooperative) == 0 && !g_fForbidEnterEE) RemoveMemoryPressure(); } #ifdef _DEBUG m_cbRefCount = 0; m_SyncBlockIndex = 0; #endif // If there's no thread currently working with the RCW, this call will release helper fields on IUnkEntry // and recycle the entire RCW structure, i.e. insert it in the standby list to be reused or free the memory. // If a thread still keeps a ref-count on the RCW, it will release it when it's done. Keeping the structure // and the helper fields alive reduces the chances of memory corruption in race scenarios. DecrementUseCount(); } //-------------------------------------------------------------------------------- // Create a new wrapper for a different method table that represents the same // COM object as the original wrapper. void RCW::CreateDuplicateWrapper(MethodTable *pNewMT, RCWHolder* pNewRCW) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; INJECT_FAULT(COMPlusThrowOM()); PRECONDITION(CheckPointer(pNewMT)); PRECONDITION(pNewMT->IsComObjectType()); PRECONDITION(CheckPointer(pNewRCW)); //POSTCONDITION(CheckPointer(RETVAL)); } CONTRACTL_END; NewRCWHolder pNewWrap; // Validate that there exists a default constructor for the new wrapper class. if (!pNewMT->HasDefaultConstructor()) COMPlusThrow(kArgumentException, IDS_EE_WRAPPER_MUST_HAVE_DEF_CONS); // Allocate the wrapper COM object. COMOBJECTREF NewWrapperObj = (COMOBJECTREF)ComObject::CreateComObjectRef(pNewMT); GCPROTECT_BEGIN(NewWrapperObj) { SafeComHolder<IUnknown> pAutoUnk = NULL; // Retrieve the RCWCache to use. RCWCache* pCache = RCWCache::GetRCWCache(); // Create the new RCW associated with the COM object. We need // to set the identity to some default value so we don't remove the original // wrapper from the hash table when this wrapper goes away. pAutoUnk = GetIUnknown(); DWORD flags = 0; // make sure we "pin" the syncblock before switching to preemptive mode SyncBlock *pSB = NewWrapperObj->GetSyncBlock(); pSB->SetPrecious(); DWORD dwSyncBlockIndex = pSB->GetSyncBlockIndex(); pNewWrap = RCW::CreateRCW((IUnknown *)pAutoUnk, dwSyncBlockIndex, flags, pNewMT); // Reset the Identity to be the RCW* as we don't want to create a duplicate entry pNewWrap->m_pIdentity = (LPVOID)pNewWrap; // Run the class constructor if it has not run yet. pNewMT->CheckRunClassInitThrowing(); CallDefaultConstructor(ObjectToOBJECTREF(NewWrapperObj)); pNewRCW->InitNoCheck(NewWrapperObj); // Insert the wrapper into the hashtable. The wrapper will be a duplicate however we // we fix the identity to ensure there is no collison in the hash table & it is required // since the hashtable is used on appdomain unload to determine what RCW's need to released. { RCWCache::LockHolder lh(pCache); pCache->InsertWrapper(pNewRCW); } } GCPROTECT_END(); pNewWrap.SuppressRelease(); } //-------------------------------------------------------------------------------- // Calling this is relatively slow since it can't take advantage of the cache // since there is no longer any way to go from an IID to a MethodTable. // If at all possible you should use the version that takes a MethodTable. // This usually means calling GetComIPFromObjectRef passing in a MethodTable // instead of an IID. IUnknown* RCW::GetComIPFromRCW(REFIID iid) { CONTRACT(IUnknown *) { THROWS; GC_TRIGGERS; MODE_ANY; POSTCONDITION(CheckPointer(RETVAL, NULL_OK)); } CONTRACT_END; SafeComHolder<IUnknown> pRet = NULL; HRESULT hr = S_OK; hr = SafeQueryInterfaceRemoteAware(iid, (IUnknown**)&pRet); if (hr != E_NOINTERFACE) { // We simply return NULL on E_NOINTERFACE which is much better for perf than throwing exceptions. Note // that we can hit this code path often in aggregation scenarios where we forward QI's to the COM base class. IfFailThrow(hr); } else { // Clear the return value in case we got E_NOINTERFACE but a non-NULL pUnk. pRet.Clear(); } pRet.SuppressRelease(); RETURN pRet; } //-------------------------------------------------------------------------------- // check the local cache, out of line cache // if not found QI for the interface and store it IUnknown* RCW::GetComIPFromRCW(MethodTable* pMT) { CONTRACT (IUnknown*) { THROWS; GC_TRIGGERS; MODE_ANY; PRECONDITION(CheckPointer(pMT, NULL_OK)); POSTCONDITION(CheckPointer(RETVAL, NULL_OK)); } CONTRACT_END; if (pMT == NULL || pMT->IsObjectClass()) { // give out the IUnknown or IDispatch IUnknown *result = GetIUnknown(); _ASSERTE(result != NULL); RETURN result; } // returns an AddRef'ed IP RETURN GetComIPForMethodTableFromCache(pMT); } //----------------------------------------------------------------- // Get the IUnknown pointer for the wrapper // make sure it is on the right thread IUnknown* RCW::GetIUnknown() { CONTRACT (IUnknown*) { THROWS; GC_TRIGGERS; MODE_ANY; POSTCONDITION(CheckPointer(RETVAL)); } CONTRACT_END; // Try to retrieve the IUnknown in the current context. RETURN m_UnkEntry.GetIUnknownForCurrContext(false); } //----------------------------------------------------------------- // Get the IUnknown pointer for the wrapper, non-AddRef'ed. // Generally this will work only if we are on the right thread, // otherwise NULL will be returned. IUnknown* RCW::GetIUnknown_NoAddRef() { CONTRACT (IUnknown*) { THROWS; GC_TRIGGERS; MODE_ANY; POSTCONDITION(CheckPointer(RETVAL, NULL_OK)); } CONTRACT_END; // Retrieve the IUnknown in the current context. RETURN m_UnkEntry.GetIUnknownForCurrContext(true); } IUnknown *RCW::GetWellKnownInterface(REFIID riid) { CONTRACT (IUnknown*) { THROWS; GC_TRIGGERS; MODE_ANY; POSTCONDITION(CheckPointer(RETVAL, NULL_OK)); } CONTRACT_END; IUnknown *pUnk = NULL; // QI for riid. HRESULT hr = SafeQueryInterfaceRemoteAware(riid, &pUnk); if ( S_OK != hr ) { // If anything goes wrong simply set pUnk to NULL to indicate that // the wrapper does not support given riid. pUnk = NULL; } // Return the IDispatch that is guaranteed to be valid on the current thread. RETURN pUnk; } //----------------------------------------------------------------- // Get the IUnknown pointer for the wrapper // make sure it is on the right thread IDispatch *RCW::GetIDispatch() { WRAPPER_NO_CONTRACT; return (IDispatch *)GetWellKnownInterface(IID_IDispatch); } //----------------------------------------------- // Free GC handle and remove SyncBlock entry void RCW::DecoupleFromObject() { CONTRACTL { NOTHROW; GC_NOTRIGGER; MODE_COOPERATIVE; } CONTRACTL_END; if (m_SyncBlockIndex != 0) { // remove reference to wrapper from sync block SyncBlock* pSB = GetSyncBlock(); _ASSERTE(pSB); InteropSyncBlockInfo* pInteropInfo = pSB->GetInteropInfoNoCreate(); _ASSERTE(pInteropInfo); pInteropInfo->SetRawRCW(NULL); m_SyncBlockIndex = 0; } } HRESULT RCW::SafeQueryInterfaceRemoteAware(REFIID iid, IUnknown** ppResUnk) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_ANY; } CONTRACTL_END; SafeComHolder<IUnknown> pUnk(GetIUnknown_NoAddRef(), /*takeOwnership =*/ FALSE); if (pUnk == NULL) { // if we are not on the right thread we get a proxy which we need to keep AddRef'ed pUnk = GetIUnknown(); } RCW_VTABLEPTR(this); HRESULT hr = SafeQueryInterface(pUnk, iid, ppResUnk); LogInteropQI(pUnk, iid, hr, "QI for interface in SafeQueryInterfaceRemoteAware"); if (hr == CO_E_OBJNOTCONNECTED || hr == RPC_E_INVALID_OBJECT || hr == RPC_E_INVALID_OBJREF || hr == CO_E_OBJNOTREG) { // set apartment state GetThread()->SetApartment(Thread::AS_InMTA); // Release the stream of the IUnkEntry to force UnmarshalIUnknownForCurrContext // to remarshal to the stream. m_UnkEntry.ReleaseStream(); // Unmarshal again to the current context to get a valid proxy. IUnknown *pTmpUnk = m_UnkEntry.UnmarshalIUnknownForCurrContext(); // Try to QI for the interface again. hr = SafeQueryInterface(pTmpUnk, iid, ppResUnk); LogInteropQI(pTmpUnk, iid, hr, "SafeQIRemoteAware - QI for Interface after lost"); // release our ref-count on pTmpUnk int cbRef = SafeRelease(pTmpUnk); LogInteropRelease(pTmpUnk, cbRef, "SafeQIRemoteAware - Release for Interface after lost"); } return hr; } // Performs QI for the given interface, optionally instantiating it with the given generic args. HRESULT RCW::CallQueryInterface(MethodTable *pMT, Instantiation inst, IID *piid, IUnknown **ppUnk) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_ANY; } CONTRACTL_END; HRESULT hr; if (!inst.IsEmpty()) { pMT = TypeHandle(pMT).Instantiate(inst).GetMethodTable(); } pMT->GetGuid(piid, TRUE); hr = SafeQueryInterfaceRemoteAware(*piid, ppUnk); return hr; } //----------------------------------------------------------------- // Retrieve correct COM IP for the method table // for the current apartment, use the cache and update the cache on miss IUnknown* RCW::GetComIPForMethodTableFromCache(MethodTable* pMT) { CONTRACT(IUnknown*) { THROWS; GC_TRIGGERS; MODE_ANY; PRECONDITION(CheckPointer(pMT)); POSTCONDITION(CheckPointer(RETVAL, NULL_OK)); } CONTRACT_END; ULONG cbRef; IUnknown* pUnk = 0; IID iid; HRESULT hr; int i; LPVOID pCtxCookie = GetCurrentCtxCookie(); _ASSERTE(pCtxCookie != NULL); RCW_VTABLEPTR(this); // Check whether we can satisfy this request from our cache. if (pCtxCookie == GetWrapperCtxCookie() || IsFreeThreaded()) { for (i = 0; i < INTERFACE_ENTRY_CACHE_SIZE; i++) { if (m_aInterfaceEntries[i].m_pMT == (IE_METHODTABLE_PTR)pMT) { _ASSERTE(!m_aInterfaceEntries[i].IsFree()); pUnk = m_aInterfaceEntries[i].m_pUnknown; _ASSERTE(pUnk != NULL); cbRef = SafeAddRef(pUnk); LogInteropAddRef(pUnk, cbRef, "RCW::GetComIPForMethodTableFromCache: Addref because returning pUnk fetched from InterfaceEntry cache"); RETURN pUnk; } } } // We're going to be making some COM calls, better initialize COM. EnsureComStarted(); // First, try to QI for the interface that we were asked for hr = CallQueryInterface(pMT, Instantiation(), &iid, &pUnk); if (pUnk == NULL) RETURN NULL; // try to cache the interface pointer in the inline cache. This cache can only store interface pointers // returned from QI's in the same context where we created the RCW. if (GetWrapperCtxCookie() == pCtxCookie || IsFreeThreaded()) { for (i = 0; i < INTERFACE_ENTRY_CACHE_SIZE; i++) { if (m_aInterfaceEntries[i].IsFree() && m_aInterfaceEntries[i].Init(pMT, pUnk)) { // If the component is not aggregated then we need to ref-count if (!IsURTAggregated()) { // Get an extra addref to hold this reference alive in our cache cbRef = SafeAddRef(pUnk); LogInteropAddRef(pUnk, cbRef, "RCW::GetComIPForMethodTableFromCache: Addref because storing pUnk in InterfaceEntry cache"); } break; } } } RETURN pUnk; } //---------------------------------------------------------- // Determine if the COM object supports IProvideClassInfo. BOOL RCW::SupportsIProvideClassInfo() { CONTRACTL { THROWS; GC_TRIGGERS; MODE_ANY; } CONTRACTL_END; BOOL bSupportsIProvideClassInfo = FALSE; SafeComHolder<IUnknown> pProvClassInfo = NULL; // QI for IProvideClassInfo on the COM object. HRESULT hr = SafeQueryInterfaceRemoteAware(IID_IProvideClassInfo, &pProvClassInfo); // Check to see if the QI for IProvideClassInfo succeeded. if (SUCCEEDED(hr)) { _ASSERTE(pProvClassInfo); bSupportsIProvideClassInfo = TRUE; } return bSupportsIProvideClassInfo; } BOOL RCW::AllowEagerSTACleanup() { LIMITED_METHOD_CONTRACT; // We only consider STA threads. MTA threads should have been dealt // with before calling this. _ASSERTE(GetSTAThread() != NULL); return m_Flags.m_fAllowEagerSTACleanup; } HRESULT RCW::EnterContext(PFNCTXCALLBACK pCallbackFunc, LPVOID pData) { CONTRACTL { NOTHROW; GC_TRIGGERS; MODE_ANY; PRECONDITION(!IsFreeThreaded()); PRECONDITION(GetWrapperCtxEntryNoRef() != NULL); } CONTRACTL_END; CtxEntryHolder pCtxEntry = GetWrapperCtxEntry(); return pCtxEntry->EnterContext(pCallbackFunc, pData); } //--------------------------------------------------------------------- // Callback called to release the IUnkEntry and the Interface entries. HRESULT __stdcall RCW::ReleaseAllInterfacesCallBack(LPVOID pData) { CONTRACT(HRESULT) { NOTHROW; GC_TRIGGERS; MODE_PREEMPTIVE; PRECONDITION(CheckPointer(pData)); POSTCONDITION(SUCCEEDED(RETVAL)); } CONTRACT_END; RCW* pWrap = (RCW*)pData; RCW_VTABLEPTR(pWrap); LPVOID pCurrentCtxCookie = GetCurrentCtxCookie(); if (pCurrentCtxCookie == NULL || pCurrentCtxCookie == pWrap->GetWrapperCtxCookie() || pWrap->IsFreeThreaded()) { pWrap->ReleaseAllInterfaces(); } else { // Transition into the context to release the interfaces. HRESULT hr = pWrap->EnterContext(ReleaseAllInterfacesCallBack, pWrap); if (FAILED(hr)) { // The context is disconnected so we cannot transition into it to clean up. // The only option we have left is to try and release the interfaces from // the current context. This will work for context agile object's since we have // a pointer to them directly. It will however fail for others since we only // have a pointer to a proxy which is no longer attached to the object. pWrap->ReleaseAllInterfaces(); } } RETURN S_OK; } //--------------------------------------------------------------------- // Helper function called from ReleaseAllInterfacesCallBack do do the // actual releases. void RCW::ReleaseAllInterfaces() { CONTRACTL { NOTHROW; GC_TRIGGERS; MODE_PREEMPTIVE; } CONTRACTL_END; RCW_VTABLEPTR(this); // Release the pUnk held by IUnkEntry m_UnkEntry.ReleaseInterface(this); // If this wrapper is not an Extensible RCW, free all the interface entries that have been allocated. if (!IsURTAggregated()) { for (int i = m_Flags.m_iEntryToRelease; i < INTERFACE_ENTRY_CACHE_SIZE; i++) { // Make sure we never try to clean this up again (so if we bail, we'll leak it). m_Flags.m_iEntryToRelease++; if (!m_aInterfaceEntries[i].IsFree()) { DWORD cbRef = SafeReleasePreemp(m_aInterfaceEntries[i].m_pUnknown, this); LogInteropRelease(m_aInterfaceEntries[i].m_pUnknown, cbRef, "RCW::ReleaseAllInterfaces: Releasing ref from InterfaceEntry table"); } } } } //--------------------------------------------------------------------- // Returns true if the RCW supports given "standard managed" interface. bool RCW::SupportsMngStdInterface(MethodTable *pItfMT) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; PRECONDITION(CheckPointer(pItfMT)); } CONTRACTL_END; // // Handle casts to normal managed standard interfaces. // // Check to see if the interface is a managed standard interface. IID *pNativeIID = MngStdInterfaceMap::GetNativeIIDForType(pItfMT); if (pNativeIID != NULL) { // It is a managed standard interface so we need to check to see if the COM component // implements the native interface associated with it. SafeComHolder<IUnknown> pNativeItf = NULL; // QI for the native interface. SafeQueryInterfaceRemoteAware(*pNativeIID, &pNativeItf); // If the component supports the native interface then we can say it implements the // standard interface. if (pNativeItf) return true; } else { // // Handle casts to IEnumerable. // // If the requested interface is IEnumerable then we need to check to see if the // COM object implements IDispatch and has a member with DISPID_NEWENUM. if (pItfMT == CoreLibBinder::GetClass(CLASS__IENUMERABLE)) { SafeComHolder<IDispatch> pDisp = GetIDispatch(); if (pDisp) { DISPPARAMS DispParams = {0, 0, NULL, NULL}; VariantHolder VarResult; // Initialize the return variant. SafeVariantInit(&VarResult); HRESULT hr = E_FAIL; { // We are about to make a call to COM so switch to preemptive GC. GCX_PREEMP(); // Call invoke with DISPID_NEWENUM to see if such a member exists. hr = pDisp->Invoke( DISPID_NEWENUM, IID_NULL, LOCALE_USER_DEFAULT, DISPATCH_METHOD | DISPATCH_PROPERTYGET, &DispParams, &VarResult, NULL, NULL ); } // If the invoke succeeded then the component has a member DISPID_NEWENUM // so we can expose it as an IEnumerable. if (SUCCEEDED(hr)) return true; } } } return false; } //-------------------------------------------------------------------------------- // OBJECTREF ComObject::CreateComObjectRef(MethodTable* pMT) // returns NULL for out of memory scenarios OBJECTREF ComObject::CreateComObjectRef(MethodTable* pMT) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; INJECT_FAULT(COMPlusThrowOM()); PRECONDITION(CheckPointer(pMT)); PRECONDITION(pMT->IsComObjectType()); } CONTRACTL_END; if (pMT != g_pBaseCOMObject) { pMT->CheckRestore(); pMT->EnsureInstanceActive(); pMT->CheckRunClassInitThrowing(); } return AllocateObject(pMT, false); } //-------------------------------------------------------------------------------- // SupportsInterface BOOL ComObject::SupportsInterface(OBJECTREF oref, MethodTable* pIntfTable) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; INJECT_FAULT(COMPlusThrowOM()); PRECONDITION(oref != NULL); PRECONDITION(CheckPointer(pIntfTable)); } CONTRACTL_END SafeComHolder<IUnknown> pUnk = NULL; HRESULT hr; BOOL bSupportsItf = FALSE; GCPROTECT_BEGIN(oref); // Make sure the interface method table has been restored. pIntfTable->CheckRestore(); if (pIntfTable->GetComInterfaceType() == ifInspectable) { COMPlusThrow(kPlatformNotSupportedException, IDS_EE_NO_IINSPECTABLE); } // Check to see if the static class definition indicates we implement the interface. MethodTable *pMT = oref->GetMethodTable(); if (pMT->CanCastToInterface(pIntfTable)) { bSupportsItf = TRUE; } else { RCWHolder pRCW(GetThread()); RCWPROTECT_BEGIN(pRCW, oref); // This should not be called for interfaces that are in the normal portion of the // interface map for this class. The only interfaces that are in the interface map // but are not in the normal portion are the dynamic interfaces on extensible RCW's. _ASSERTE(!oref->GetMethodTable()->ImplementsInterface(pIntfTable)); // // First QI the object to see if it implements the specified interface. // pUnk = pRCW->GetComIPFromRCW(pIntfTable); if (pUnk) { bSupportsItf = true; } else if (pIntfTable->IsComEventItfType()) { MethodTable *pSrcItfClass = NULL; MethodTable *pEvProvClass = NULL; GUID SrcItfIID; SafeComHolder<IConnectionPointContainer> pCPC = NULL; SafeComHolder<IConnectionPoint> pCP = NULL; // Retrieve the IID of the source interface associated with this // event interface. pIntfTable->GetEventInterfaceInfo(&pSrcItfClass, &pEvProvClass); pSrcItfClass->GetGuid(&SrcItfIID, TRUE); // QI for IConnectionPointContainer. hr = pRCW->SafeQueryInterfaceRemoteAware(IID_IConnectionPointContainer, (IUnknown**)&pCPC); // If the component implements IConnectionPointContainer, then check // to see if it handles the source interface. if (SUCCEEDED(hr)) { GCX_PREEMP(); // make sure we switch to preemptive mode before calling the external COM object hr = pCPC->FindConnectionPoint(SrcItfIID, &pCP); if (SUCCEEDED(hr)) { // The component handles the source interface so we can succeed the QI call. bSupportsItf = true; } } } else if (pRCW->SupportsMngStdInterface(pIntfTable)) { bSupportsItf = true; } if (bSupportsItf) { // If the object has a dynamic interface map then we have extra work to do. MethodTable *pMT = oref->GetMethodTable(); if (pMT->HasDynamicInterfaceMap()) { // First, make sure we haven't already added this. if (!pMT->FindDynamicallyAddedInterface(pIntfTable)) { // It's not there. // Check if the object supports all of these interfaces only if this is a classic COM interop // scenario. This is a perf optimization (no need to QI for base interfaces if we don't really // need them just yet) and also has a usability aspect. If this SupportsInterface call failed // because one of the base interfaces is not supported, the exception we'd throw would contain // only the name of the "top level" interface which would confuse the developer. MethodTable::InterfaceMapIterator it = pIntfTable->IterateInterfaceMap(); while (it.Next()) { MethodTable *pItf = it.GetInterfaceApprox(); if (pItf->HasInstantiation() || pItf->IsGenericTypeDefinition()) continue; bSupportsItf = Object::SupportsInterface(oref, pItf); if (!bSupportsItf) break; } // If the object supports all these interfaces, attempt to add the interface table // to the cache. if (bSupportsItf) { { // Take the wrapper cache lock before we start playing with the interface map. RCWCache::LockHolder lh(RCWCache::GetRCWCache()); // Check again with the lock. if (!pMT->FindDynamicallyAddedInterface(pIntfTable)) { // Add it to the dynamic interface table. pMT->AddDynamicInterface(pIntfTable); } } } } } } RCWPROTECT_END(pRCW); } GCPROTECT_END(); return bSupportsItf; } //-------------------------------------------------------------------- // ThrowInvalidCastException void ComObject::ThrowInvalidCastException(OBJECTREF *pObj, MethodTable *pCastToMT) { CONTRACT_VOID { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; PRECONDITION(pObj != NULL); PRECONDITION(*pObj != NULL); PRECONDITION(IsProtectedByGCFrame (pObj)); POSTCONDITION(!"This function should never return!"); } CONTRACT_END; SafeComHolder<IUnknown> pItf = NULL; HRESULT hr = S_OK; IID *pNativeIID = NULL; GUID iid; // Use an InlineSString with a size of MAX_CLASSNAME_LENGTH + 1 to prevent // TypeHandle::GetName from having to allocate a new block of memory. This // significantly improves the performance of throwing an InvalidCastException. InlineSString<MAX_CLASSNAME_LENGTH + 1> strComObjClassName; InlineSString<MAX_CLASSNAME_LENGTH + 1> strCastToName; TypeHandle thClass = (*pObj)->GetTypeHandle(); TypeHandle thCastTo = TypeHandle(pCastToMT); thClass.GetName(strComObjClassName); thCastTo.GetName(strCastToName); if (thCastTo.IsInterface()) { RCWHolder pRCW(GetThread()); pRCW.Init(*pObj); // Retrieve the IID of the interface. MethodTable *pCOMItfMT = thCastTo.GetMethodTable(); // keep calling the throwing GetGuid (back compat) pCOMItfMT->GetGuid(&iid, TRUE); // Query for the interface to determine the failure HRESULT. hr = pRCW->SafeQueryInterfaceRemoteAware(iid, (IUnknown**)&pItf); // If this function was called, it means the QI call failed in the past. If it // no longer fails now, we still need to throw, so throw a generic invalid cast exception. if (SUCCEEDED(hr)) { COMPlusThrow(kInvalidCastException, IDS_EE_CANNOTCAST, strComObjClassName.GetUnicode(), strCastToName.GetUnicode()); } // Convert the IID to a string. WCHAR strIID[39]; StringFromGUID2(iid, strIID, sizeof(strIID) / sizeof(WCHAR)); // Obtain the textual description of the HRESULT. SString strHRDescription; GetHRMsg(hr, strHRDescription); if (thCastTo.IsComEventItfType()) { GUID SrcItfIID; MethodTable *pSrcItfClass = NULL; MethodTable *pEvProvClass = NULL; // Retrieve the IID of the source interface associated with this event interface. thCastTo.GetMethodTable()->GetEventInterfaceInfo(&pSrcItfClass, &pEvProvClass); pSrcItfClass->GetGuid(&SrcItfIID, TRUE); // Convert the source interface IID to a string. WCHAR strSrcItfIID[39]; StringFromGUID2(SrcItfIID, strSrcItfIID, sizeof(strSrcItfIID) / sizeof(WCHAR)); COMPlusThrow(kInvalidCastException, IDS_EE_RCW_INVALIDCAST_EVENTITF, strHRDescription.GetUnicode(), strComObjClassName.GetUnicode(), strCastToName.GetUnicode(), strIID, strSrcItfIID); } else if (thCastTo == TypeHandle(CoreLibBinder::GetClass(CLASS__IENUMERABLE))) { COMPlusThrow(kInvalidCastException, IDS_EE_RCW_INVALIDCAST_IENUMERABLE, strHRDescription.GetUnicode(), strComObjClassName.GetUnicode(), strCastToName.GetUnicode(), strIID); } else if ((pNativeIID = MngStdInterfaceMap::GetNativeIIDForType(thCastTo)) != NULL) { // Convert the source interface IID to a string. WCHAR strNativeItfIID[39]; StringFromGUID2(*pNativeIID, strNativeItfIID, sizeof(strNativeItfIID) / sizeof(WCHAR)); // Query for the interface to determine the failure HRESULT. HRESULT hr2 = pRCW->SafeQueryInterfaceRemoteAware(iid, (IUnknown**)&pItf); // If this function was called, it means the QI call failed in the past. If it // no longer fails now, we still need to throw, so throw a generic invalid cast exception. if (SUCCEEDED(hr2)) COMPlusThrow(kInvalidCastException, IDS_EE_CANNOTCAST, strComObjClassName.GetUnicode(), strCastToName.GetUnicode()); // Obtain the textual description of the 2nd HRESULT. SString strHR2Description; GetHRMsg(hr2, strHR2Description); COMPlusThrow(kInvalidCastException, IDS_EE_RCW_INVALIDCAST_MNGSTDITF, strHRDescription.GetUnicode(), strComObjClassName.GetUnicode(), strCastToName.GetUnicode(), strIID, strNativeItfIID, strHR2Description.GetUnicode()); } else { COMPlusThrow(kInvalidCastException, IDS_EE_RCW_INVALIDCAST_ITF, strHRDescription.GetUnicode(), strComObjClassName.GetUnicode(), strCastToName.GetUnicode(), strIID); } } else { // Validate that this function wasn't erroneously called. _ASSERTE(!thClass.CanCastTo(thCastTo)); if (thCastTo.IsComObjectType()) { if (IsComObjectClass(thClass)) { // An attempt was made to cast an __ComObject to ComImport metadata defined type. COMPlusThrow(kInvalidCastException, IDS_EE_RCW_INVALIDCAST_COMOBJ_TO_MD, strComObjClassName.GetUnicode(), strCastToName.GetUnicode()); } else { // An attempt was made to cast an instance of a ComImport metadata defined type to // a different non ComImport metadata defined type. COMPlusThrow(kInvalidCastException, IDS_EE_RCW_INVALIDCAST_MD_TO_MD, strComObjClassName.GetUnicode(), strCastToName.GetUnicode()); } } else { // An attempt was made to cast this RCW to a non ComObjectType class. COMPlusThrow(kInvalidCastException, IDS_EE_RCW_INVALIDCAST_TO_NON_COMOBJTYPE, strComObjClassName.GetUnicode(), strCastToName.GetUnicode()); } } RETURN; } //-------------------------------------------------------------------------------- // Release all the data associated with the __ComObject. void ComObject::ReleaseAllData(OBJECTREF oref) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; PRECONDITION(oref != NULL); PRECONDITION(oref->GetMethodTable()->IsComObjectType()); } CONTRACTL_END; GCPROTECT_BEGIN(oref) { PREPARE_NONVIRTUAL_CALLSITE(METHOD__COM_OBJECT__RELEASE_ALL_DATA); DECLARE_ARGHOLDER_ARRAY(ReleaseAllDataArgs, 1); ReleaseAllDataArgs[ARGNUM_0] = OBJECTREF_TO_ARGHOLDER(oref); CALL_MANAGED_METHOD_NORET(ReleaseAllDataArgs); } GCPROTECT_END(); } #ifndef DACCESS_COMPILE //-------------------------------------------------------------------------- // Wrapper around code:RCW.GetComIPFromRCW // static IUnknown *ComObject::GetComIPFromRCW(OBJECTREF *pObj, MethodTable* pIntfTable) { CONTRACT (IUnknown*) { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; PRECONDITION(IsProtectedByGCFrame(pObj)); PRECONDITION(CheckPointer(pIntfTable, NULL_OK)); POSTCONDITION(CheckPointer(RETVAL, NULL_OK)); // NULL if we couldn't find match } CONTRACT_END; SafeComHolder<IUnknown> pIUnk; RCWHolder pRCW(GetThread()); RCWPROTECT_BEGIN(pRCW, *pObj); pIUnk = pRCW->GetComIPFromRCW(pIntfTable); RCWPROTECT_END(pRCW); RETURN pIUnk.Extract(); } //-------------------------------------------------------------------------- // Wrapper around code:ComObject.GetComIPFromRCW that throws InvalidCastException // static IUnknown *ComObject::GetComIPFromRCWThrowing(OBJECTREF *pObj, MethodTable* pIntfTable) { CONTRACT (IUnknown*) { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; PRECONDITION(IsProtectedByGCFrame(pObj)); PRECONDITION(CheckPointer(pIntfTable, NULL_OK)); POSTCONDITION(CheckPointer(RETVAL)); } CONTRACT_END; IUnknown* pIUnk = GetComIPFromRCW(pObj, pIntfTable); if (pIUnk == NULL) ThrowInvalidCastException(pObj, pIntfTable); RETURN pIUnk; } #endif // #ifndef DACCESS_COMPILE
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /*============================================================ ** ** Class: RCW ** ** ** Purpose: The implementation of the ComObject class ** ===========================================================*/ #include "common.h" #include <ole2.h> #include <inspectable.h> class Object; #include "vars.hpp" #include "object.h" #include "excep.h" #include "frames.h" #include "vars.hpp" #include "threads.h" #include "field.h" #include "runtimecallablewrapper.h" #include "hash.h" #include "interoputil.h" #include "comcallablewrapper.h" #include "eeconfig.h" #include "comdelegate.h" #include "comcache.h" #include "../md/compiler/custattr.h" #include "olevariant.h" #include "interopconverter.h" #include "typestring.h" #include "caparser.h" #include "classnames.h" #include "objectnative.h" #include "finalizerthread.h" // static SLIST_HEADER RCW::s_RCWStandbyList; #ifdef FEATURE_COMINTEROP_APARTMENT_SUPPORT #include "olecontexthelpers.h" #endif // FEATURE_COMINTEROP_APARTMENT_SUPPORT #ifdef FEATURE_COMINTEROP_UNMANAGED_ACTIVATION #include "interoplibinterface.h" void ComClassFactory::ThrowHRMsg(HRESULT hr, DWORD dwMsgResID) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_ANY; INJECT_FAULT(COMPlusThrowOM()); } CONTRACTL_END; SString strMessage; SString strResource; WCHAR strClsid[39]; SString strHRDescription; // Obtain the textual representation of the HRESULT. StringFromGUID2(m_rclsid, strClsid, sizeof(strClsid) / sizeof(WCHAR)); SString strHRHex; strHRHex.Printf("%.8x", hr); // Obtain the description of the HRESULT. GetHRMsg(hr, strHRDescription); // Load the appropriate resource and throw COMPlusThrowHR(hr, dwMsgResID, strHRHex, strClsid, strHRDescription.GetUnicode()); } //------------------------------------------------------------- // Common code for licensing // IUnknown *ComClassFactory::CreateInstanceFromClassFactory(IClassFactory *pClassFact, IUnknown *punkOuter, BOOL *pfDidContainment) { CONTRACT (IUnknown*) { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; INJECT_FAULT(COMPlusThrowOM()); PRECONDITION(CheckPointer(pClassFact)); PRECONDITION(CheckPointer(punkOuter, NULL_OK)); PRECONDITION(CheckPointer(pfDidContainment, NULL_OK)); PRECONDITION(CheckPointer(m_pClassMT, NULL_OK)); POSTCONDITION(CheckPointer(RETVAL)); } CONTRACT_END; HRESULT hr = S_OK; SafeComHolder<IClassFactory2> pClassFact2 = NULL; SafeComHolder<IUnknown> pUnk = NULL; BSTRHolder bstrKey = NULL; // If the class doesn't support licensing or if it is missing a managed // type to use for querying a license, just use IClassFactory. if (FAILED(SafeQueryInterface(pClassFact, IID_IClassFactory2, (IUnknown**)&pClassFact2)) || m_pClassMT == NULL) { FrameWithCookie<DebuggerExitFrame> __def; { GCX_PREEMP(); hr = pClassFact->CreateInstance(punkOuter, IID_IUnknown, (void **)&pUnk); if (FAILED(hr) && punkOuter) { hr = pClassFact->CreateInstance(NULL, IID_IUnknown, (void**)&pUnk); if (pfDidContainment) *pfDidContainment = TRUE; } } __def.Pop(); } else { _ASSERTE(m_pClassMT != NULL); // Get the type to query for licensing. TypeHandle rth = TypeHandle(m_pClassMT); struct { OBJECTREF pProxy; OBJECTREF pType; } gc; gc.pProxy = NULL; // LicenseInteropProxy gc.pType = NULL; GCPROTECT_BEGIN(gc); // Create an instance of the object MethodDescCallSite createObj(METHOD__LICENSE_INTEROP_PROXY__CREATE); gc.pProxy = createObj.Call_RetOBJECTREF(NULL); gc.pType = rth.GetManagedClassObject(); // Query the current licensing context MethodDescCallSite getCurrentContextInfo(METHOD__LICENSE_INTEROP_PROXY__GETCURRENTCONTEXTINFO, &gc.pProxy); CLR_BOOL fDesignTime = FALSE; ARG_SLOT args[4]; args[0] = ObjToArgSlot(gc.pProxy); args[1] = ObjToArgSlot(gc.pType); args[2] = (ARG_SLOT)&fDesignTime; args[3] = (ARG_SLOT)(BSTR*)&bstrKey; getCurrentContextInfo.Call(args); if (fDesignTime) { // If designtime, we're supposed to obtain the runtime license key // from the component and save it away in the license context. // (the design tool can then grab it and embedded it into the // app it is creating) if (bstrKey != NULL) { // It's illegal for our helper to return a non-null bstrKey // when the context is design-time. But we'll try to do the // right thing anyway. _ASSERTE(!"We're not supposed to get here, but we'll try to cope anyway."); SysFreeString(bstrKey); bstrKey = NULL; } { GCX_PREEMP(); hr = pClassFact2->RequestLicKey(0, &bstrKey); } // E_NOTIMPL is not a true failure. It simply indicates that // the component doesn't support a runtime license key. if (hr == E_NOTIMPL) hr = S_OK; // Store the requested license key if (SUCCEEDED(hr)) { MethodDescCallSite saveKeyInCurrentContext(METHOD__LICENSE_INTEROP_PROXY__SAVEKEYINCURRENTCONTEXT, &gc.pProxy); args[0] = ObjToArgSlot(gc.pProxy); args[1] = (ARG_SLOT)(BSTR)bstrKey; saveKeyInCurrentContext.Call(args); } } // Create the instance if (SUCCEEDED(hr)) { FrameWithCookie<DebuggerExitFrame> __def; { GCX_PREEMP(); if (fDesignTime || bstrKey == NULL) { // Either it's design time, or the current context doesn't // supply a runtime license key. hr = pClassFact->CreateInstance(punkOuter, IID_IUnknown, (void **)&pUnk); if (FAILED(hr) && punkOuter) { hr = pClassFact->CreateInstance(NULL, IID_IUnknown, (void**)&pUnk); if (pfDidContainment) *pfDidContainment = TRUE; } } else { // It is runtime and we have a license key. _ASSERTE(bstrKey != NULL); hr = pClassFact2->CreateInstanceLic(punkOuter, NULL, IID_IUnknown, bstrKey, (void**)&pUnk); if (FAILED(hr) && punkOuter) { hr = pClassFact2->CreateInstanceLic(NULL, NULL, IID_IUnknown, bstrKey, (void**)&pUnk); if (pfDidContainment) *pfDidContainment = TRUE; } } } __def.Pop(); } GCPROTECT_END(); } if (FAILED(hr)) { if (bstrKey == NULL) ThrowHRMsg(hr, IDS_EE_CREATEINSTANCE_FAILED); else ThrowHRMsg(hr, IDS_EE_CREATEINSTANCE_LIC_FAILED); } // If the activated COM class has a CCW, mark the // CCW as being activated via COM. ComCallWrapper *ccw = GetCCWFromIUnknown(pUnk); if (ccw != NULL) ccw->MarkComActivated(); ComWrappersNative::MarkWrapperAsComActivated(pUnk); pUnk.SuppressRelease(); RETURN pUnk; } //------------------------------------------------------------- // ComClassFactory::CreateAggregatedInstance(MethodTable* pMTClass) // create a COM+ instance that aggregates a COM instance OBJECTREF ComClassFactory::CreateAggregatedInstance(MethodTable* pMTClass, BOOL ForManaged) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; INJECT_FAULT(COMPlusThrowOM()); PRECONDITION(CheckPointer(pMTClass)); } CONTRACTL_END; BOOL fDidContainment = FALSE; #ifdef _DEBUG // verify the class extends a COM import class MethodTable * pMT = pMTClass; do { pMT = pMT->GetParentMethodTable(); } while (pMT == NULL || pMT->IsComImport()); _ASSERTE(pMT != NULL); #endif SafeComHolder<IUnknown> pOuter = NULL; SafeComHolder<IClassFactory> pClassFact = NULL; SafeComHolder<IUnknown> pUnk = NULL; HRESULT hr = S_OK; NewRCWHolder pNewRCW; BOOL bUseDelegate = FALSE; MethodTable *pCallbackMT = NULL; OBJECTREF oref = NULL; COMOBJECTREF cref = NULL; GCPROTECT_BEGIN(cref) { cref = (COMOBJECTREF)ComObject::CreateComObjectRef(pMTClass); //get wrapper for the object, this could enable GC CCWHolder pComWrap = ComCallWrapper::InlineGetWrapper((OBJECTREF *)&cref); // Make sure the ClassInitializer has run, since the user might have // wanted to set up a COM object creation callback. pMTClass->CheckRunClassInitThrowing(); // If the user is going to use a delegate to allocate the COM object // (rather than CoCreateInstance), we need to know now, before we enable // preemptive GC mode (since we touch object references in the // determination). // We don't just check the current class to see if it has a cllabck // registered, we check up the class chain to see if any of our parents // did. pCallbackMT = pMTClass; while ((pCallbackMT != NULL) && (pCallbackMT->GetObjCreateDelegate() == NULL) && !pCallbackMT->IsComImport()) { pCallbackMT = pCallbackMT->GetParentMethodTable(); } if (pCallbackMT && !pCallbackMT->IsComImport()) bUseDelegate = TRUE; FrameWithCookie<DebuggerExitFrame> __def; // get the IUnknown interface for the managed object pOuter = ComCallWrapper::GetComIPFromCCW(pComWrap, IID_IUnknown, NULL); _ASSERTE(pOuter != NULL); // If the user has set a delegate to allocate the COM object, use it. // Otherwise we just CoCreateInstance it. if (bUseDelegate) { ARG_SLOT args[2]; OBJECTREF orDelegate = pCallbackMT->GetObjCreateDelegate(); MethodDesc *pMeth = COMDelegate::GetMethodDesc(orDelegate); GCPROTECT_BEGIN(orDelegate) { _ASSERTE(pMeth); MethodDescCallSite delegateMethod(pMeth, &orDelegate); // Get the OR on which we are going to invoke the method and set it // as the first parameter in arg above. args[0] = (ARG_SLOT)OBJECTREFToObject(COMDelegate::GetTargetObject(orDelegate)); // Pass the IUnknown of the aggregator as the second argument. args[1] = (ARG_SLOT)(IUnknown*)pOuter; // Call the method... pUnk = (IUnknown *)delegateMethod.Call_RetArgSlot(args); if (!pUnk) COMPlusThrowHR(E_FAIL); } GCPROTECT_END(); } else { _ASSERTE(m_pClassMT); pUnk = CreateInstanceInternal(pOuter, &fDidContainment); } __def.Pop(); // give up the extra addref that we did in our QI and suppress the auto-release. pComWrap->Release(); pComWrap.SuppressRelease(); // Here's the scary part. If we are doing a managed 'new' of the aggregator, // then COM really isn't involved. We should not be counting for our caller // because our caller relies on GC references rather than COM reference counting // to keep us alive. // // Drive the instances count down to 0 -- and rely on the GCPROTECT to keep us // alive until we get back to our caller. if (ForManaged) pComWrap->Release(); RCWCache* pCache = RCWCache::GetRCWCache(); _ASSERTE(cref->GetSyncBlock()->IsPrecious()); // the object already has a CCW DWORD dwSyncBlockIndex = cref->GetSyncBlockIndex(); // create a wrapper for this COM object pNewRCW = RCW::CreateRCW(pUnk, dwSyncBlockIndex, RCW::CF_None, pMTClass); RCWHolder pRCW(GetThread()); pRCW.InitNoCheck(pNewRCW); // we used containment // we need to store this wrapper in our hash table { RCWCache::LockHolder lh(pCache); GCX_FORBID(); BOOL fInserted = pCache->FindOrInsertWrapper_NoLock(pUnk, &pRCW, /* fAllowReInit = */ FALSE); if (!fInserted) { // OK. Looks like the factory returned a singleton on us and the cache already // has an entry for this pIdentity. This should always happen in containment // scenario, not for aggregation. // In this case, we should insert this new RCW into cache as a unique RCW, // because these are separate objects, and we need two separate RCWs with // different flags (should be contained, impossible to be aggregated) pointing // to them, separately pNewRCW->m_pIdentity = pNewRCW; fInserted = pCache->FindOrInsertWrapper_NoLock((IUnknown*)pNewRCW->m_pIdentity, &pRCW, /* fAllowReInit = */ FALSE); _ASSERTE(fInserted); } } if (fDidContainment) { // mark the wrapper as contained pRCW->MarkURTContained(); } else { // mark the wrapper as aggregated pRCW->MarkURTAggregated(); } // pUnk has to be released inside GC-protected block and before oref get assigned value // because it could trigger GC SafeRelease(pUnk); pUnk.SuppressRelease(); // If the object was created successfully then we need to copy the OBJECTREF // to oref because the GCPROTECT_END() will destroy the contents of cref. oref = ObjectToOBJECTREF(*(Object **)&cref); } GCPROTECT_END(); if (oref != NULL) { pOuter.SuppressRelease(); pClassFact.SuppressRelease(); pNewRCW.SuppressRelease(); } return oref; } //-------------------------------------------------------------- // Create instance using IClassFactory // Overridable IUnknown *ComClassFactory::CreateInstanceInternal(IUnknown *pOuter, BOOL *pfDidContainment) { CONTRACT(IUnknown *) { THROWS; GC_TRIGGERS; MODE_ANY; PRECONDITION(CheckPointer(pOuter, NULL_OK)); PRECONDITION(CheckPointer(pfDidContainment, NULL_OK)); POSTCONDITION(CheckPointer(RETVAL)); } CONTRACT_END; SafeComHolder<IClassFactory> pClassFactory = GetIClassFactory(); RETURN CreateInstanceFromClassFactory(pClassFactory, pOuter, pfDidContainment); } IClassFactory *ComClassFactory::GetIClassFactory() { CONTRACT(IClassFactory *) { THROWS; GC_TRIGGERS; MODE_ANY; POSTCONDITION(CheckPointer(RETVAL)); } CONTRACT_END; HRESULT hr = S_OK; IClassFactory *pClassFactory = NULL; GCX_PREEMP(); // If a server name is specified, then first try CLSCTX_REMOTE_SERVER. if (m_wszServer) { // Set up the COSERVERINFO struct. COSERVERINFO ServerInfo; memset(&ServerInfo, 0, sizeof(COSERVERINFO)); ServerInfo.pwszName = (LPWSTR)m_wszServer; // Try to retrieve the IClassFactory passing in CLSCTX_REMOTE_SERVER. hr = CoGetClassObject(m_rclsid, CLSCTX_REMOTE_SERVER, &ServerInfo, IID_IClassFactory, (void**)&pClassFactory); } else { // No server name is specified so we use CLSCTX_SERVER. if (pClassFactory == NULL) hr = CoGetClassObject(m_rclsid, CLSCTX_SERVER, NULL, IID_IClassFactory, (void**)&pClassFactory); } // If we failed to obtain the IClassFactory, throw an exception with rich information // explaining the failure. if (FAILED(hr)) { SString strMessage; SString strResource; WCHAR strClsid[39]; SString strHRDescription; // Obtain the textual representation of the HRESULT. StringFromGUID2(m_rclsid, strClsid, sizeof(strClsid) / sizeof(WCHAR)); SString strHRHex; strHRHex.Printf("%.8x", hr); // Obtain the description of the HRESULT. GetHRMsg(hr, strHRDescription); // Throw the actual exception indicating we couldn't find the class factory. if (m_wszServer == NULL) COMPlusThrowHR(hr, IDS_EE_LOCAL_COGETCLASSOBJECT_FAILED, strHRHex, strClsid, strHRDescription.GetUnicode()); else COMPlusThrowHR(hr, IDS_EE_REMOTE_COGETCLASSOBJECT_FAILED, strHRHex, strClsid, m_wszServer, strHRDescription.GetUnicode()); } RETURN pClassFactory; } //------------------------------------------------------------- // ComClassFactory::CreateInstance() // create instance, calls IClassFactory::CreateInstance OBJECTREF ComClassFactory::CreateInstance(MethodTable* pMTClass, BOOL ForManaged) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; INJECT_FAULT(COMPlusThrowOM()); PRECONDITION(CheckPointer(pMTClass, NULL_OK)); } CONTRACTL_END; // Check for aggregates if (pMTClass != NULL && !pMTClass->IsComImport()) return CreateAggregatedInstance(pMTClass, ForManaged); HRESULT hr = S_OK; OBJECTREF coref = NULL; OBJECTREF RetObj = NULL; GCPROTECT_BEGIN(coref) { { SafeComHolder<IUnknown> pUnk = NULL; SafeComHolder<IClassFactory> pClassFact = NULL; // Create the instance pUnk = CreateInstanceInternal(NULL, NULL); // Even though we just created the object, it's possible that we got back a context // wrapper from the COM side. For instance, it could have been an existing object // or it could have been created in a different context than we are running in. // pMTClass is the class that wraps the com ip // if a class was passed in use it // otherwise use the class that we know if (pMTClass == NULL) pMTClass = m_pClassMT; GetObjectRefFromComIP(&coref, pUnk, pMTClass); if (coref == NULL) COMPlusThrowOM(); } // Set the value of the return object after the COM guys are cleaned up. RetObj = coref; } GCPROTECT_END(); return RetObj; } //-------------------------------------------------------------- // Init the ComClassFactory. void ComClassFactory::Init(_In_opt_ PCWSTR wszServer, MethodTable* pClassMT) { LIMITED_METHOD_CONTRACT; m_wszServer = wszServer; m_pClassMT = pClassMT; } //------------------------------------------------------------- void ComClassFactory::Cleanup() { CONTRACTL { NOTHROW; GC_NOTRIGGER; MODE_ANY; } CONTRACTL_END; if (m_bManagedVersion) return; if (m_wszServer != NULL) delete [] m_wszServer; delete this; } #endif // FEATURE_COMINTEROP_UNMANAGED_ACTIVATION //--------------------------------------------------------------------- // RCW cache, act as the manager for the RCWs // uses a hash table to map IUnknown to the corresponding wrappers //--------------------------------------------------------------------- // Obtain the appropriate wrapper cache from the current context. RCWCache* RCWCache::GetRCWCache() { CONTRACT (RCWCache*) { THROWS; GC_TRIGGERS; MODE_ANY; POSTCONDITION(CheckPointer(RETVAL, NULL_OK)); } CONTRACT_END; AppDomain * pDomain = GetAppDomain(); RETURN (pDomain ? pDomain->GetRCWCache() : NULL); } RCWCache* RCWCache::GetRCWCacheNoCreate() { CONTRACT (RCWCache*) { NOTHROW; GC_NOTRIGGER; MODE_ANY; POSTCONDITION(CheckPointer(RETVAL, NULL_OK)); } CONTRACT_END; AppDomain * pDomain = GetAppDomain(); RETURN (pDomain ? pDomain->GetRCWCacheNoCreate() : NULL); } //--------------------------------------------------------------------- // Constructor. Note we init the global RCW cleanup list in here too. RCWCache::RCWCache(AppDomain *pDomain) : m_lock(CrstRCWCache, CRST_UNSAFE_COOPGC) { CONTRACTL { THROWS; GC_NOTRIGGER; MODE_ANY; PRECONDITION(CheckPointer(pDomain)); } CONTRACTL_END; m_pDomain = pDomain; } // Look up to see if we already have an valid wrapper in cache for this IUnk // DOES NOT hold a lock inside the function - locking in the caller side IS REQUIRED // If pfMadeWrapperStrong is TRUE upon return, you NEED to call AddRef on pIdentity void RCWCache::FindWrapperInCache_NoLock(IUnknown* pIdentity, RCWHolder* pRCW) { CONTRACTL { THROWS; GC_NOTRIGGER; MODE_COOPERATIVE; PRECONDITION(CheckPointer(pIdentity)); PRECONDITION(CheckPointer(pRCW)); } CONTRACTL_END; // lookup in our hash table LookupWrapper(pIdentity, pRCW); // check if we found the wrapper, if (!pRCW->IsNull()) { if ((*pRCW)->IsValid()) { if ((*pRCW)->IsDetached()) { _ASSERTE((LPVOID)pIdentity != (LPVOID)pRCW->GetRawRCWUnsafe()); // we should never find "unique" RCWs // remove and re-insert the RCW using its unique identity RemoveWrapper(pRCW); (*pRCW)->m_pIdentity = (LPVOID)pRCW->GetRawRCWUnsafe(); InsertWrapper(pRCW); pRCW->UnInit(); } else { // addref the wrapper (*pRCW)->AddRef(this); } } else { pRCW->UnInit(); } } return; } BOOL RCWCache::FindOrInsertWrapper_NoLock(IUnknown* pIdentity, RCWHolder* pRCW, BOOL fAllowReinit) { CONTRACTL { THROWS; GC_NOTRIGGER; MODE_COOPERATIVE; PRECONDITION(CheckPointer(pIdentity)); PRECONDITION(pIdentity != (IUnknown*)-1); PRECONDITION(CheckPointer(pRCW)); PRECONDITION(CheckPointer(pRCW->GetRawRCWUnsafe())); } CONTRACTL_END; BOOL fInserted = FALSE; // we have created a wrapper, let us insert it into the hash table // but we need to check if somebody beat us to it { // see if somebody beat us to it // perf: unfold LookupWrapper to avoid creating RCWHolder in common cases RCW *pRawRCW = LookupWrapperUnsafe(pIdentity); if (pRawRCW == NULL) { InsertWrapper(pRCW); fInserted = TRUE; } else { RCWHolder pTempRCW(GetThread()); // Assume that we already have a sync block for this object. pTempRCW.InitNoCheck(pRawRCW); // if we didn't find a valid wrapper, Insert our own wrapper if (pTempRCW.IsNull() || !pTempRCW->IsValid()) { // if we found a bogus wrapper, let us get rid of it // so that when we insert we insert a valid wrapper, instead of duplicate if (!pTempRCW.IsNull()) { _ASSERTE(!pTempRCW->IsValid()); RemoveWrapper(&pTempRCW); } InsertWrapper(pRCW); fInserted = TRUE; } else { _ASSERTE(!pTempRCW.IsNull() && pTempRCW->IsValid()); // okay we found a valid wrapper, if (pTempRCW->IsDetached()) { _ASSERTE((LPVOID)pIdentity != (LPVOID)pTempRCW.GetRawRCWUnsafe()); // we should never find "unique" RCWs // remove and re-insert the RCW using its unique identity RemoveWrapper(&pTempRCW); pTempRCW->m_pIdentity = (LPVOID)pTempRCW.GetRawRCWUnsafe(); InsertWrapper(&pTempRCW); // and insert the new incoming RCW InsertWrapper(pRCW); fInserted = TRUE; } else if (fAllowReinit) { // addref the wrapper pTempRCW->AddRef(this); // Initialize the holder with the rcw we're going to return. OBJECTREF objref = pTempRCW->GetExposedObject(); pTempRCW.UnInit(); pRCW->UnInit(); pRCW->InitNoCheck(objref); } } } } return fInserted; } //-------------------------------------------------------------------------------- // ULONG RCWCache::ReleaseWrappers() // Helper to release the complus wrappers in the cache that lives in the specified // context or all the wrappers in the cache if the pCtxCookie is null. void RCWCache::ReleaseWrappersWorker(LPVOID pCtxCookie) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_ANY; PRECONDITION(CheckPointer(pCtxCookie, NULL_OK)); } CONTRACTL_END; RCWCleanupList CleanupList; RCWCleanupList AggregatedCleanupList; struct RCWInterfacePointer { IUnknown *m_pUnk; RCW *m_pRCW; CtxEntry *m_pCtxEntry; }; // Arrays of individual interface pointers to call Release on CQuickArrayList<RCWInterfacePointer> InterfacePointerList; CQuickArrayList<RCWInterfacePointer> AggregatedInterfacePointerList; // Switch to cooperative GC mode before we take the lock. GCX_COOP(); { { RCWCache::LockHolder lh(this); // Go through the hash table and add the wrappers to the cleanup lists. for (SHash<RCWCacheTraits>::Iterator it = m_HashMap.Begin(); it != m_HashMap.End(); it++) { RCW *pWrap = *it; _ASSERTE(pWrap != NULL); // If a context cookie was specified, then only clean up wrappers that // are in that context, including non-FTM regular RCWs // Otherwise clean up all the wrappers. // Ignore RCWs that aggregate the FTM if we are cleaning up context // specific RCWs if (!pCtxCookie || ((pWrap->GetWrapperCtxCookie() == pCtxCookie) && !pWrap->IsFreeThreaded())) { if (!pWrap->IsURTAggregated()) CleanupList.AddWrapper_NoLock(pWrap); else AggregatedCleanupList.AddWrapper_NoLock(pWrap); pWrap->DecoupleFromObject(); RemoveWrapper(pWrap); } } } // Clean up the non URT aggregated RCW's first then clean up the URT aggregated RCW's. CleanupList.CleanupAllWrappers(); for (SIZE_T i = 0; i < InterfacePointerList.Size(); i++) { RCWInterfacePointer &intfPtr = InterfacePointerList[i]; RCW_VTABLEPTR(intfPtr.m_pRCW); SafeRelease(intfPtr.m_pUnk, intfPtr.m_pRCW); intfPtr.m_pCtxEntry->Release(); } AggregatedCleanupList.CleanupAllWrappers(); for (SIZE_T i = 0; i < AggregatedInterfacePointerList.Size(); i++) { RCWInterfacePointer &intfPtr = AggregatedInterfacePointerList[i]; RCW_VTABLEPTR(intfPtr.m_pRCW); SafeRelease(intfPtr.m_pUnk, intfPtr.m_pRCW); intfPtr.m_pCtxEntry->Release(); } } if (!CleanupList.IsEmpty() || !AggregatedCleanupList.IsEmpty()) { _ASSERTE(!"Cannot cleanup RCWs in cleanup list. Most likely because the RCW is disabled for eager cleanup."); LOG((LF_INTEROP, LL_INFO1000, "Cannot cleanup RCWs in cleanup list. Most likely because the RCW is disabled for eager cleanup.")); } } //-------------------------------------------------------------------------------- // ULONG RCWCache::DetachWrappersWorker() // Helper to mark RCWs that are not GC-promoted at this point as detached. class DetachWrappersFunctor { public: FORCEINLINE void operator() (RCW *pRCW) { LIMITED_METHOD_CONTRACT; if (pRCW->IsValid()) { if (!GCHeapUtilities::GetGCHeap()->IsPromoted(OBJECTREFToObject(pRCW->GetExposedObject())) && !pRCW->IsDetached()) { // No need to use InterlockedOr here since every other place that modifies the flags // runs in cooperative GC mode (i.e. definitely not concurrently with this function). pRCW->m_Flags.m_Detached = 1; } } } }; void RCWCache::DetachWrappersWorker() { CONTRACTL { NOTHROW; GC_NOTRIGGER; MODE_ANY; PRECONDITION(GCHeapUtilities::IsGCInProgress()); // GC is in progress and the runtime is suspended } CONTRACTL_END; DetachWrappersFunctor functor; m_HashMap.ForEach(functor); } VOID RCWCleanupList::AddWrapper(RCW* pRCW) { CONTRACTL { NOTHROW; GC_NOTRIGGER; MODE_ANY; } CONTRACTL_END; // For the global cleanup list, this is called only from the finalizer thread _ASSERTE(this != g_pRCWCleanupList || GetThread() == FinalizerThread::GetFinalizerThread()); { CrstHolder ch(&m_lock); AddWrapper_NoLock(pRCW); } } VOID RCWCleanupList::AddWrapper_NoLock(RCW* pRCW) { CONTRACTL { NOTHROW; GC_NOTRIGGER; MODE_ANY; } CONTRACTL_END; // Traverse the list for match - when found, insert as the matching bucket head. RCW *pBucket = m_pFirstBucket; RCW *pPrevBucket = NULL; while (pBucket != NULL) { if (pRCW->MatchesCleanupBucket(pBucket)) { // Insert as bucket head. pRCW->m_pNextRCW = pBucket; pRCW->m_pNextCleanupBucket = pBucket->m_pNextCleanupBucket; // Not necessary but makes it clearer that pBucket is no longer a bucket head. pBucket->m_pNextCleanupBucket = NULL; break; } pPrevBucket = pBucket; pBucket = pBucket->m_pNextCleanupBucket; } // If we didn't find a match, insert as a new bucket. if (pBucket == NULL) { pRCW->m_pNextRCW = NULL; pRCW->m_pNextCleanupBucket = NULL; } // pRCW is now a bucket head - the only thing missing is a link from the previous bucket head. if (pPrevBucket != NULL) pPrevBucket->m_pNextCleanupBucket = pRCW; else m_pFirstBucket = pRCW; } VOID RCWCleanupList::CleanupAllWrappers() { CONTRACTL { NOTHROW; GC_TRIGGERS; MODE_ANY; // For the global cleanup list, this is called only from the finalizer thread PRECONDITION( (this != g_pRCWCleanupList) || (GetThread() == FinalizerThread::GetFinalizerThread())); } CONTRACTL_END; RemovedBuckets NonSTABuckets; RemovedBuckets STABuckets; // We sweep the cleanup list once and remove all MTA/Free-Threaded buckets as well as STA buckets, leaving only // those with disabled eager cleanup in the list. Then we drop the lock, walk the removed buckets, // and perform the actual release. We cannot be releasing during the initial sweep because we would // need to drop and reacquire the lock for each bucket which would invalidate the entire linked // list so we would need to start the enumeration over after each bucket. { // Take the lock CrstHolder ch(&m_lock); RCW *pBucket = m_pFirstBucket; RCW *pPrevBucket = NULL; while (pBucket != NULL) { RCW *pNextBucket = pBucket->m_pNextCleanupBucket; Thread *pSTAThread = pBucket->GetSTAThread(); if (pSTAThread == NULL || pBucket->AllowEagerSTACleanup()) { // Remove the list from the CleanupList structure if (pPrevBucket != NULL) pPrevBucket->m_pNextCleanupBucket = pBucket->m_pNextCleanupBucket; else m_pFirstBucket = pBucket->m_pNextCleanupBucket; if (pSTAThread == NULL) { // and add it to the local MTA/Free-Threaded chain NonSTABuckets.Append(pBucket); } else { // or to the local STA chain STABuckets.Append(pBucket); } } else { // move the 'previous' pointer only if we didn't remove the current bucket pPrevBucket = pBucket; } pBucket = pNextBucket; } // Release the lock so we can correctly transition to cleanup. } // Request help from other threads m_doCleanupInContexts = TRUE; // First, cleanup the MTA/Free-Threaded buckets RCW *pRCWToCleanup; while ((pRCWToCleanup = NonSTABuckets.PopHead()) != NULL) { ReleaseRCWList_Args args; args.pHead = pRCWToCleanup; args.ctxTried = FALSE; args.ctxBusy = FALSE; ReleaseRCWListInCorrectCtx(&args); } // Now, cleanup the STA buckets while ((pRCWToCleanup = STABuckets.PopHead()) != NULL) { // // CAUTION: DONOT access pSTAThread fields here as pSTAThread // could've already been deleted, if // 1) the RCW is a free threaded RCW // 2) the RCW is a regular RCW, and marked by GC but not finalized yet // Only pointer comparison is allowed. // ReleaseRCWList_Args args; args.pHead = pRCWToCleanup; args.ctxTried = FALSE; args.ctxBusy = FALSE; // Advertise the fact that we're cleaning up this thread. m_pCurCleanupThread = pRCWToCleanup->GetSTAThread(); _ASSERTE(pRCWToCleanup->GetSTAThread() != NULL); ReleaseRCWListInCorrectCtx(&args); // Done cleaning this thread for now...reset m_pCurCleanupThread = NULL; } // No more stuff for other threads to help with m_doCleanupInContexts = FALSE; } VOID RCWCleanupList::CleanupWrappersInCurrentCtxThread(BOOL fWait, BOOL fManualCleanupRequested, BOOL bIgnoreComObjectEagerCleanupSetting) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_ANY; } CONTRACTL_END; if (!m_doCleanupInContexts && !fManualCleanupRequested) return; // Find out our STA (if any) Thread *pThread = GetThread(); LPVOID pCurrCtxCookie = GetCurrentCtxCookie(); Thread::ApartmentState aptState = pThread->GetApartment(); RemovedBuckets BucketsToCleanup; { // Take the lock CrstHolder ch(&m_lock); RCW *pBucket = m_pFirstBucket; RCW *pPrevBucket = NULL; while (pBucket != NULL) { BOOL fMatch = FALSE; RCW *pNextBucket = pBucket->m_pNextCleanupBucket; if (aptState != Thread::AS_InSTA) { // If we're in an MTA, just look for a matching contexts (including free-threaded and non-free threaded) if (pBucket->GetSTAThread() == NULL && (pCurrCtxCookie == NULL || pBucket->GetWrapperCtxCookie() == pCurrCtxCookie)) { fMatch = TRUE; } } else { // If we're in an STA, clean all matching STA contexts (including free-threaded and non-free threaded) if (pBucket->GetWrapperCtxCookie() == pCurrCtxCookie && (bIgnoreComObjectEagerCleanupSetting || pBucket->AllowEagerSTACleanup())) { fMatch = TRUE; } } if (fMatch) { // Remove the list from the CleanupList structure if (pPrevBucket != NULL) pPrevBucket->m_pNextCleanupBucket = pBucket->m_pNextCleanupBucket; else m_pFirstBucket = pBucket->m_pNextCleanupBucket; // and add it to the local cleanup chain BucketsToCleanup.Append(pBucket); } else { // move the 'previous' pointer only if we didn't remove the current bucket pPrevBucket = pBucket; } pBucket = pNextBucket; } } // Clean it up RCW *pRCWToCleanup; while ((pRCWToCleanup = BucketsToCleanup.PopHead()) != NULL) { if (pRCWToCleanup->GetSTAThread() == NULL) { // We're already in the correct context, just clean it. ReleaseRCWListRaw(pRCWToCleanup); } else { ReleaseRCWList_Args args; args.pHead = pRCWToCleanup; args.ctxTried = FALSE; args.ctxBusy = FALSE; ReleaseRCWListInCorrectCtx(&args); } } if (aptState == Thread::AS_InSTA) { if (fWait && m_pCurCleanupThread == pThread) { // The finalizer thread may be trying to enter our STA - // make sure it can get in. LOG((LF_INTEROP, LL_INFO1000, "Thread %p: Yielding to finalizer thread.\n", pThread)); // Do a noop wait just to make sure we are cooperating // with the finalizer thread pThread->Join(1, TRUE); } } } BOOL RCWCleanupList::IsEmpty() { LIMITED_METHOD_CONTRACT; return (m_pFirstBucket == NULL); } // static HRESULT RCWCleanupList::ReleaseRCWListInCorrectCtx(LPVOID pData) { CONTRACTL { NOTHROW; GC_TRIGGERS; MODE_ANY; PRECONDITION(CheckPointer(pData)); } CONTRACTL_END; ReleaseRCWList_Args* args = (ReleaseRCWList_Args*)pData; RCW* pHead = (RCW *)args->pHead; LPVOID pCurrCtxCookie = GetCurrentCtxCookie(); // If we are releasing our IP's as a result of shutdown, we MUST not transition // into cooperative GC mode. This "fix" will prevent us from doing so. if (g_fEEShutDown & ShutDown_Finalize2) { Thread *pThread = GetThreadNULLOk(); if (pThread && !FinalizerThread::IsCurrentThreadFinalizer()) pThread->SetThreadStateNC(Thread::TSNC_UnsafeSkipEnterCooperative); } // Make sure we're in the right context / apartment. // Also - if we've already transitioned once, we don't want to do so again. // If the cookie exists in multiple MTA apartments, and the STA has gone away // (leaving the old STA thread as unknown state with a context value equal to // the MTA context), we will infinitely loop. So, we short circuit this with ctxTried. Thread *pHeadThread = pHead->GetSTAThread(); BOOL fCorrectThread = (pHeadThread == NULL) ? TRUE : (pHeadThread == GetThreadNULLOk()); BOOL fCorrectCookie = (pCurrCtxCookie == NULL) ? TRUE : (pHead->GetWrapperCtxCookie() == pCurrCtxCookie); if ( pHead->IsFreeThreaded() || // Avoid context transition if the list is for free threaded RCW (fCorrectThread && fCorrectCookie) || args->ctxTried ) { ReleaseRCWListRaw(pHead); } else { // Mark that we're trying a context transition args->ctxTried = TRUE; // Transition into the context to release the interfaces. HRESULT hr = pHead->EnterContext(ReleaseRCWListInCorrectCtx, args); if (FAILED(hr) || args->ctxBusy) { // We are having trouble transitioning into the context (typically because the context is disconnected) // or the context is busy so we cannot transition into it to clean up. // The only option we have left is to try and clean up the RCW's from the current context. ReleaseRCWListRaw(pHead); } } // Reset the bit indicating we cannot transition into cooperative GC mode. if (g_fEEShutDown & ShutDown_Finalize2) { Thread *pThread = GetThreadNULLOk(); if (pThread && !FinalizerThread::IsCurrentThreadFinalizer()) pThread->ResetThreadStateNC(Thread::TSNC_UnsafeSkipEnterCooperative); } return S_OK; } // static VOID RCWCleanupList::ReleaseRCWListRaw(RCW* pRCW) { CONTRACTL { NOTHROW; GC_TRIGGERS; MODE_ANY; PRECONDITION(CheckPointer(pRCW)); } CONTRACTL_END; // Release all these RCWs RCW* pNext = NULL; while (pRCW != NULL) { pNext = pRCW->m_pNextRCW; pRCW->Cleanup(); pRCW = pNext; } } const int RCW::s_rGCPressureTable[GCPressureSize_COUNT] = { 0, // GCPressureSize_None GC_PRESSURE_PROCESS_LOCAL, // GCPressureSize_ProcessLocal GC_PRESSURE_MACHINE_LOCAL, // GCPressureSize_MachineLocal GC_PRESSURE_REMOTE, // GCPressureSize_Remote }; // Deletes all items in code:s_RCWStandbyList. void RCW::FlushStandbyList() { LIMITED_METHOD_CONTRACT; PSLIST_ENTRY pEntry = InterlockedFlushSList(&RCW::s_RCWStandbyList); while (pEntry) { PSLIST_ENTRY pNextEntry = pEntry->Next; delete (RCW *)pEntry; pEntry = pNextEntry; } } //-------------------------------------------------------------------------------- // The IUnknown passed in is AddRef'ed if we succeed in creating the wrapper. RCW* RCW::CreateRCW(IUnknown *pUnk, DWORD dwSyncBlockIndex, DWORD flags, MethodTable *pClassMT) { CONTRACT (RCW*) { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; INJECT_FAULT(COMPlusThrowOM()); } CONTRACT_END; RCW *pRCW = NULL; { GCX_PREEMP(); pRCW = RCW::CreateRCWInternal(pUnk, dwSyncBlockIndex, flags, pClassMT); } RETURN pRCW; } RCW* RCW::CreateRCWInternal(IUnknown *pUnk, DWORD dwSyncBlockIndex, DWORD flags, MethodTable *pClassMT) { CONTRACT (RCW*) { THROWS; GC_TRIGGERS; MODE_PREEMPTIVE; INJECT_FAULT(COMPlusThrowOM()); PRECONDITION(CheckPointer(pUnk)); PRECONDITION(dwSyncBlockIndex != 0); PRECONDITION(CheckPointer(pClassMT)); POSTCONDITION(CheckPointer(RETVAL)); } CONTRACT_END; // now allocate the wrapper RCW *pWrap = (RCW *)InterlockedPopEntrySList(&RCW::s_RCWStandbyList); if (pWrap != NULL) { // cache hit - reinitialize the data structure new (pWrap) RCW(); } else { pWrap = new RCW(); } AppDomain * pAppDomain = GetAppDomain(); ULONG cbRef = SafeAddRefPreemp(pUnk); LogInteropAddRef(pUnk, cbRef, "RCWCache::CreateRCW: Addref pUnk because creating new RCW"); // Make sure we release AddRef-ed pUnk in case of exceptions SafeComHolderPreemp<IUnknown> pUnkHolder = pUnk; // Log the creation LogRCWCreate(pWrap, pUnk); // Initialize wrapper pWrap->Initialize(pUnk, dwSyncBlockIndex, pClassMT); pUnkHolder.SuppressRelease(); RETURN pWrap; } //---------------------------------------------------------- // Init IUnknown and IDispatch cookies with the pointers, and assocaiate the COMOBJECTREF with this RCW void RCW::Initialize(IUnknown* pUnk, DWORD dwSyncBlockIndex, MethodTable *pClassMT) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_PREEMPTIVE; INJECT_FAULT(ThrowOutOfMemory()); PRECONDITION(CheckPointer(pUnk)); PRECONDITION(dwSyncBlockIndex != 0); PRECONDITION(CheckPointer(pClassMT)); } CONTRACTL_END; m_cbRefCount = 1; // Start with use count 1 (this is counteracted in RCW::Cleanup) m_cbUseCount = 1; // Cache the IUnk and thread m_pIdentity = pUnk; // Remember the VTable pointer of the COM IP. // This is very helpful for tracking down early released COM objects // that AV when you call IUnknown::Release. m_vtablePtr = *(LPVOID*)pUnk; // track the thread that created this wrapper // if this thread is an STA thread, then when the STA dies // we need to cleanup this wrapper m_pCreatorThread = GetThread(); m_pRCWCache = RCWCache::GetRCWCache(); m_Flags.m_MarshalingType = GetMarshalingType(pUnk, pClassMT); // Initialize the IUnkEntry m_UnkEntry.Init(pUnk, IsFreeThreaded(), m_pCreatorThread DEBUGARG(this)); // Determine AllowEagerSTACleanup setting right now // We don't want to access the thread object to get the status // as m_pCreatorThread could be already dead at RCW cleanup time // // Free threaded RCWs created from STA "survives" even after the pSTAThread is terminated // and destroyed. For free threaded objects, there will be no pumping at all and user should always // expect the object to be accessed concurrently. // // So, only disallow eager STA cleanup for non free-threaded RCWs. Free threaded RCWs // should be cleaned up regardless of the setting on thread. bool disableEagerCleanup = m_pCreatorThread->IsDisableComObjectEagerCleanup(); if (disableEagerCleanup && !IsFreeThreaded()) m_Flags.m_fAllowEagerSTACleanup = 0; else m_Flags.m_fAllowEagerSTACleanup = 1; // store the wrapper in the sync block, that is the only way we can get cleaned up // the syncblock is guaranteed to be present SyncBlock *pSyncBlock = g_pSyncTable[(int)dwSyncBlockIndex].m_SyncBlock; InteropSyncBlockInfo *pInteropInfo = pSyncBlock->GetInteropInfo(); pInteropInfo->SetRawRCW(this); // Store the sync block index. m_SyncBlockIndex = dwSyncBlockIndex; // Log the wrapper initialization. LOG((LF_INTEROP, LL_INFO100, "Initializing RCW %p with SyncBlock index %d\n", this, dwSyncBlockIndex)); // To help combat finalizer thread starvation, we check to see if there are any wrappers // scheduled to be cleaned up for our context. If so, we'll do them here to avoid making // the finalizer thread do a transition. // @perf: This may need a bit of tuning. // Note: This will enter a message pump in order to synchronize with the finalizer thread. // We can't safely pump here for Releasing (or directly release) // if we're currently in a SendMessage. // Also, clients can opt out of this. The option is is a per-thread flag which they can // set by calling DisableComEagerCleanup on the appropriate thread. Why would they // want to opt out? Because pumping can lead to re-entrancy in in unexpected places. // If a client decides to opt out, they are required to cleanup RCWs themselves by // calling Marshal.CleanupUnusedObjectsInCurrentContext periodically. The best place // to make that call is within their own message pump. if (!disableEagerCleanup ) { _ASSERTE(g_pRCWCleanupList != NULL); g_pRCWCleanupList->CleanupWrappersInCurrentCtxThread(); } } VOID RCW::MarkURTAggregated() { CONTRACTL { NOTHROW; GC_TRIGGERS; MODE_ANY; PRECONDITION(m_Flags.m_fURTContained == 0); } CONTRACTL_END; m_Flags.m_fURTAggregated = 1; } RCW::MarshalingType RCW::GetMarshalingType(IUnknown* pUnk, MethodTable *pClassMT) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_PREEMPTIVE; PRECONDITION(CheckPointer(pUnk)); PRECONDITION(CheckPointer(pClassMT)); } CONTRACTL_END; PTR_EEClass pClass = pClassMT->GetClass(); // Skip attributes on interfaces as any object could implement those interface if (!pClass->IsInterface() && pClass->IsMarshalingTypeSet()) { MarshalingType mType; ( pClass ->IsMarshalingTypeFreeThreaded() ) ? mType = MarshalingType_FreeThreaded : (pClass->IsMarshalingTypeInhibit() ? mType = MarshalingType_Inhibit : mType = MarshalingType_Standard); return mType; } // MarshalingBehavior is not set and hence we will have to find the behavior using the QI else { // Check whether the COM object can be marshaled. Hence we query for INoMarshal SafeComHolderPreemp<INoMarshal> pNoMarshal; HRESULT hr = SafeQueryInterfacePreemp(pUnk, IID_INoMarshal, (IUnknown**)&pNoMarshal); LogInteropQI(pUnk, IID_INoMarshal, hr, "RCW::GetMarshalingType: QI for INoMarshal"); if (SUCCEEDED(hr)) return MarshalingType_Inhibit; if (IUnkEntry::IsComponentFreeThreaded(pUnk)) return MarshalingType_FreeThreaded; } return MarshalingType_Unknown; } void RCW::AddMemoryPressure(GCPressureSize pressureSize) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_PREEMPTIVE; } CONTRACTL_END; int pressure = s_rGCPressureTable[pressureSize]; GCInterface::AddMemoryPressure(pressure); // Remember the pressure we set. m_Flags.m_GCPressure = pressureSize; } void RCW::RemoveMemoryPressure() { CONTRACTL { NOTHROW; GC_TRIGGERS; MODE_PREEMPTIVE; PRECONDITION((GetThread()->m_StateNC & Thread::TSNC_UnsafeSkipEnterCooperative) == 0); } CONTRACTL_END; if (GCPressureSize_None == m_Flags.m_GCPressure) return; int pressure = s_rGCPressureTable[m_Flags.m_GCPressure]; GCInterface::RemoveMemoryPressure(pressure); m_Flags.m_GCPressure = GCPressureSize_None; } //-------------------------------------------------------------------------------- // Addref is called only from within the runtime, when we lookup a wrapper in our hash // table LONG RCW::AddRef(RCWCache* pWrapCache) { CONTRACTL { NOTHROW; GC_NOTRIGGER; MODE_ANY; PRECONDITION(CheckPointer(pWrapCache)); PRECONDITION(pWrapCache->LOCKHELD()); } CONTRACTL_END; LONG cbRef = ++m_cbRefCount; return cbRef; } AppDomain* RCW::GetDomain() { CONTRACT (AppDomain*) { NOTHROW; GC_NOTRIGGER; MODE_ANY; POSTCONDITION(CheckPointer(RETVAL)); } CONTRACT_END; RETURN m_pRCWCache->GetDomain(); } //-------------------------------------------------------------------------------- // Used to facilitate the ReleaseComObject API. // Ensures that the RCW is not in use before attempting to release it. // INT32 RCW::ExternalRelease(OBJECTREF* pObjPROTECTED) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; PRECONDITION(pObjPROTECTED != NULL); PRECONDITION(*pObjPROTECTED != NULL); } CONTRACTL_END; COMOBJECTREF* cref = (COMOBJECTREF*)pObjPROTECTED; INT32 cbRef = -1; BOOL fCleanupWrapper = FALSE; RCW* pRCW = NULL; // Lock RCWCache* pCache = RCWCache::GetRCWCache(); _ASSERTE(pCache); { RCWCache::LockHolder lh(pCache); // now to see if the wrapper is valid // if there is another ReleaseComObject on this object // of if an STA thread death decides to cleanup this wrapper // then the object will be disconnected from the wrapper pRCW = (*cref)->GetSyncBlock()->GetInteropInfoNoCreate()->GetRawRCW(); if (pRCW) { // check for invalid case if ((LONG)pRCW->m_cbRefCount > 0) { cbRef = (INT32) (--(pRCW->m_cbRefCount)); if (cbRef == 0) { pCache->RemoveWrapper(pRCW); fCleanupWrapper = TRUE; } } } } // do cleanup after releasing the lock if (fCleanupWrapper) { // Release all the data associated with the __ComObject. ComObject::ReleaseAllData(pRCW->GetExposedObject()); pRCW->DecoupleFromObject(); pRCW->Cleanup(); } return cbRef; } //-------------------------------------------------------------------------------- // Used to facilitate the FinalReleaseComObject API. // Ensures that the RCW is not in use before attempting to release it. // void RCW::FinalExternalRelease(OBJECTREF* pObjPROTECTED) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; PRECONDITION(pObjPROTECTED != NULL); PRECONDITION(*pObjPROTECTED != NULL); } CONTRACTL_END; COMOBJECTREF* cref = (COMOBJECTREF*)pObjPROTECTED; BOOL fCleanupWrapper = FALSE; RCW* pRCW = NULL; // Lock RCWCache* pCache = RCWCache::GetRCWCache(); _ASSERTE(pCache); { RCWCache::LockHolder lh(pCache); pRCW = (*cref)->GetSyncBlock()->GetInteropInfoNoCreate()->GetRawRCW(); if (pRCW && pRCW->m_cbRefCount > 0) { pRCW->m_cbRefCount = 0; pCache->RemoveWrapper(pRCW); fCleanupWrapper = TRUE; } } // do cleanup after releasing the lock if (fCleanupWrapper) { // Release all the data associated with the __ComObject. ComObject::ReleaseAllData(pRCW->GetExposedObject()); pRCW->DecoupleFromObject(); pRCW->Cleanup(); } } //-------------------------------------------------------------------------------- // schedule to free all interface pointers, called during GC to // do minimal work void RCW::MinorCleanup() { CONTRACTL { NOTHROW; GC_NOTRIGGER; MODE_ANY; PRECONDITION(GCHeapUtilities::IsGCInProgress() || ( (g_fEEShutDown & ShutDown_SyncBlock) && g_fProcessDetach )); } CONTRACTL_END; // Log the wrapper minor cleanup. LogRCWMinorCleanup(this); // remove the wrapper from the cache, so that // other threads won't find this invalid wrapper // NOTE: we don't need to LOCK because we make sure // the rest of the folks touch this hash table // with thier GC mode pre-emptiveGCDisabled RCWCache* pCache = m_pRCWCache; _ASSERTE(pCache); // On server build, multiple threads will be removing // wrappers from wrapper cache, pCache->RemoveWrapper(this); // Clear the SyncBlockIndex as the object is being GC'd and the index will become // invalid as soon as the object is collected. m_SyncBlockIndex = 0; } //-------------------------------------------------------------------------------- // Cleanup free all interface pointers void RCW::Cleanup() { CONTRACTL { NOTHROW; GC_TRIGGERS; MODE_ANY; } CONTRACTL_END; // Log the destruction of the RCW. LogRCWDestroy(this); // If we can't switch to cooperative mode, then we need to skip the check to // if the wrapper is still in the cache. Also, if we can't switch to coop mode, // we're guaranteed to have already decoupled the RCW from its object. #ifdef _DEBUG if (!(GetThread()->m_StateNC & Thread::TSNC_UnsafeSkipEnterCooperative)) { GCX_COOP(); // make sure this wrapper is not in the hash table RCWCache::LockHolder lh(m_pRCWCache); _ASSERTE(m_pRCWCache->LookupWrapperUnsafe(m_pIdentity) != this); } #endif // Switch to preemptive GC mode before we release the interfaces. { GCX_PREEMP(); // Release the IUnkEntry and the InterfaceEntries. ReleaseAllInterfacesCallBack(this); // Remove the memory pressure caused by this RCW (if present) // If we're in a shutdown situation, we can ignore the memory pressure. if ((GetThread()->m_StateNC & Thread::TSNC_UnsafeSkipEnterCooperative) == 0 && !g_fForbidEnterEE) RemoveMemoryPressure(); } #ifdef _DEBUG m_cbRefCount = 0; m_SyncBlockIndex = 0; #endif // If there's no thread currently working with the RCW, this call will release helper fields on IUnkEntry // and recycle the entire RCW structure, i.e. insert it in the standby list to be reused or free the memory. // If a thread still keeps a ref-count on the RCW, it will release it when it's done. Keeping the structure // and the helper fields alive reduces the chances of memory corruption in race scenarios. DecrementUseCount(); } //-------------------------------------------------------------------------------- // Create a new wrapper for a different method table that represents the same // COM object as the original wrapper. void RCW::CreateDuplicateWrapper(MethodTable *pNewMT, RCWHolder* pNewRCW) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; INJECT_FAULT(COMPlusThrowOM()); PRECONDITION(CheckPointer(pNewMT)); PRECONDITION(pNewMT->IsComObjectType()); PRECONDITION(CheckPointer(pNewRCW)); //POSTCONDITION(CheckPointer(RETVAL)); } CONTRACTL_END; NewRCWHolder pNewWrap; // Validate that there exists a default constructor for the new wrapper class. if (!pNewMT->HasDefaultConstructor()) COMPlusThrow(kArgumentException, IDS_EE_WRAPPER_MUST_HAVE_DEF_CONS); // Allocate the wrapper COM object. COMOBJECTREF NewWrapperObj = (COMOBJECTREF)ComObject::CreateComObjectRef(pNewMT); GCPROTECT_BEGIN(NewWrapperObj) { SafeComHolder<IUnknown> pAutoUnk = NULL; // Retrieve the RCWCache to use. RCWCache* pCache = RCWCache::GetRCWCache(); // Create the new RCW associated with the COM object. We need // to set the identity to some default value so we don't remove the original // wrapper from the hash table when this wrapper goes away. pAutoUnk = GetIUnknown(); DWORD flags = 0; // make sure we "pin" the syncblock before switching to preemptive mode SyncBlock *pSB = NewWrapperObj->GetSyncBlock(); pSB->SetPrecious(); DWORD dwSyncBlockIndex = pSB->GetSyncBlockIndex(); pNewWrap = RCW::CreateRCW((IUnknown *)pAutoUnk, dwSyncBlockIndex, flags, pNewMT); // Reset the Identity to be the RCW* as we don't want to create a duplicate entry pNewWrap->m_pIdentity = (LPVOID)pNewWrap; // Run the class constructor if it has not run yet. pNewMT->CheckRunClassInitThrowing(); CallDefaultConstructor(ObjectToOBJECTREF(NewWrapperObj)); pNewRCW->InitNoCheck(NewWrapperObj); // Insert the wrapper into the hashtable. The wrapper will be a duplicate however we // we fix the identity to ensure there is no collison in the hash table & it is required // since the hashtable is used on appdomain unload to determine what RCW's need to released. { RCWCache::LockHolder lh(pCache); pCache->InsertWrapper(pNewRCW); } } GCPROTECT_END(); pNewWrap.SuppressRelease(); } //-------------------------------------------------------------------------------- // Calling this is relatively slow since it can't take advantage of the cache // since there is no longer any way to go from an IID to a MethodTable. // If at all possible you should use the version that takes a MethodTable. // This usually means calling GetComIPFromObjectRef passing in a MethodTable // instead of an IID. IUnknown* RCW::GetComIPFromRCW(REFIID iid) { CONTRACT(IUnknown *) { THROWS; GC_TRIGGERS; MODE_ANY; POSTCONDITION(CheckPointer(RETVAL, NULL_OK)); } CONTRACT_END; SafeComHolder<IUnknown> pRet = NULL; HRESULT hr = S_OK; hr = SafeQueryInterfaceRemoteAware(iid, (IUnknown**)&pRet); if (hr != E_NOINTERFACE) { // We simply return NULL on E_NOINTERFACE which is much better for perf than throwing exceptions. Note // that we can hit this code path often in aggregation scenarios where we forward QI's to the COM base class. IfFailThrow(hr); } else { // Clear the return value in case we got E_NOINTERFACE but a non-NULL pUnk. pRet.Clear(); } pRet.SuppressRelease(); RETURN pRet; } //-------------------------------------------------------------------------------- // check the local cache, out of line cache // if not found QI for the interface and store it IUnknown* RCW::GetComIPFromRCW(MethodTable* pMT) { CONTRACT (IUnknown*) { THROWS; GC_TRIGGERS; MODE_ANY; PRECONDITION(CheckPointer(pMT, NULL_OK)); POSTCONDITION(CheckPointer(RETVAL, NULL_OK)); } CONTRACT_END; if (pMT == NULL || pMT->IsObjectClass()) { // give out the IUnknown or IDispatch IUnknown *result = GetIUnknown(); _ASSERTE(result != NULL); RETURN result; } // returns an AddRef'ed IP RETURN GetComIPForMethodTableFromCache(pMT); } //----------------------------------------------------------------- // Get the IUnknown pointer for the wrapper // make sure it is on the right thread IUnknown* RCW::GetIUnknown() { CONTRACT (IUnknown*) { THROWS; GC_TRIGGERS; MODE_ANY; POSTCONDITION(CheckPointer(RETVAL)); } CONTRACT_END; // Try to retrieve the IUnknown in the current context. RETURN m_UnkEntry.GetIUnknownForCurrContext(false); } //----------------------------------------------------------------- // Get the IUnknown pointer for the wrapper, non-AddRef'ed. // Generally this will work only if we are on the right thread, // otherwise NULL will be returned. IUnknown* RCW::GetIUnknown_NoAddRef() { CONTRACT (IUnknown*) { THROWS; GC_TRIGGERS; MODE_ANY; POSTCONDITION(CheckPointer(RETVAL, NULL_OK)); } CONTRACT_END; // Retrieve the IUnknown in the current context. RETURN m_UnkEntry.GetIUnknownForCurrContext(true); } IUnknown *RCW::GetWellKnownInterface(REFIID riid) { CONTRACT (IUnknown*) { THROWS; GC_TRIGGERS; MODE_ANY; POSTCONDITION(CheckPointer(RETVAL, NULL_OK)); } CONTRACT_END; IUnknown *pUnk = NULL; // QI for riid. HRESULT hr = SafeQueryInterfaceRemoteAware(riid, &pUnk); if ( S_OK != hr ) { // If anything goes wrong simply set pUnk to NULL to indicate that // the wrapper does not support given riid. pUnk = NULL; } // Return the IDispatch that is guaranteed to be valid on the current thread. RETURN pUnk; } //----------------------------------------------------------------- // Get the IUnknown pointer for the wrapper // make sure it is on the right thread IDispatch *RCW::GetIDispatch() { WRAPPER_NO_CONTRACT; return (IDispatch *)GetWellKnownInterface(IID_IDispatch); } //----------------------------------------------- // Free GC handle and remove SyncBlock entry void RCW::DecoupleFromObject() { CONTRACTL { NOTHROW; GC_NOTRIGGER; MODE_COOPERATIVE; } CONTRACTL_END; if (m_SyncBlockIndex != 0) { // remove reference to wrapper from sync block SyncBlock* pSB = GetSyncBlock(); _ASSERTE(pSB); InteropSyncBlockInfo* pInteropInfo = pSB->GetInteropInfoNoCreate(); _ASSERTE(pInteropInfo); pInteropInfo->SetRawRCW(NULL); m_SyncBlockIndex = 0; } } HRESULT RCW::SafeQueryInterfaceRemoteAware(REFIID iid, IUnknown** ppResUnk) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_ANY; } CONTRACTL_END; SafeComHolder<IUnknown> pUnk(GetIUnknown_NoAddRef(), /*takeOwnership =*/ FALSE); if (pUnk == NULL) { // if we are not on the right thread we get a proxy which we need to keep AddRef'ed pUnk = GetIUnknown(); } RCW_VTABLEPTR(this); HRESULT hr = SafeQueryInterface(pUnk, iid, ppResUnk); LogInteropQI(pUnk, iid, hr, "QI for interface in SafeQueryInterfaceRemoteAware"); if (hr == CO_E_OBJNOTCONNECTED || hr == RPC_E_INVALID_OBJECT || hr == RPC_E_INVALID_OBJREF || hr == CO_E_OBJNOTREG) { // set apartment state GetThread()->SetApartment(Thread::AS_InMTA); // Release the stream of the IUnkEntry to force UnmarshalIUnknownForCurrContext // to remarshal to the stream. m_UnkEntry.ReleaseStream(); // Unmarshal again to the current context to get a valid proxy. IUnknown *pTmpUnk = m_UnkEntry.UnmarshalIUnknownForCurrContext(); // Try to QI for the interface again. hr = SafeQueryInterface(pTmpUnk, iid, ppResUnk); LogInteropQI(pTmpUnk, iid, hr, "SafeQIRemoteAware - QI for Interface after lost"); // release our ref-count on pTmpUnk int cbRef = SafeRelease(pTmpUnk); LogInteropRelease(pTmpUnk, cbRef, "SafeQIRemoteAware - Release for Interface after lost"); } return hr; } // Performs QI for the given interface, optionally instantiating it with the given generic args. HRESULT RCW::CallQueryInterface(MethodTable *pMT, Instantiation inst, IID *piid, IUnknown **ppUnk) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_ANY; } CONTRACTL_END; HRESULT hr; if (!inst.IsEmpty()) { pMT = TypeHandle(pMT).Instantiate(inst).GetMethodTable(); } pMT->GetGuid(piid, TRUE); hr = SafeQueryInterfaceRemoteAware(*piid, ppUnk); return hr; } //----------------------------------------------------------------- // Retrieve correct COM IP for the method table // for the current apartment, use the cache and update the cache on miss IUnknown* RCW::GetComIPForMethodTableFromCache(MethodTable* pMT) { CONTRACT(IUnknown*) { THROWS; GC_TRIGGERS; MODE_ANY; PRECONDITION(CheckPointer(pMT)); POSTCONDITION(CheckPointer(RETVAL, NULL_OK)); } CONTRACT_END; ULONG cbRef; IUnknown* pUnk = 0; IID iid; HRESULT hr; int i; LPVOID pCtxCookie = GetCurrentCtxCookie(); _ASSERTE(pCtxCookie != NULL); RCW_VTABLEPTR(this); // Check whether we can satisfy this request from our cache. if (pCtxCookie == GetWrapperCtxCookie() || IsFreeThreaded()) { for (i = 0; i < INTERFACE_ENTRY_CACHE_SIZE; i++) { if (m_aInterfaceEntries[i].m_pMT == (IE_METHODTABLE_PTR)pMT) { _ASSERTE(!m_aInterfaceEntries[i].IsFree()); pUnk = m_aInterfaceEntries[i].m_pUnknown; _ASSERTE(pUnk != NULL); cbRef = SafeAddRef(pUnk); LogInteropAddRef(pUnk, cbRef, "RCW::GetComIPForMethodTableFromCache: Addref because returning pUnk fetched from InterfaceEntry cache"); RETURN pUnk; } } } // We're going to be making some COM calls, better initialize COM. EnsureComStarted(); // First, try to QI for the interface that we were asked for hr = CallQueryInterface(pMT, Instantiation(), &iid, &pUnk); if (pUnk == NULL) RETURN NULL; // try to cache the interface pointer in the inline cache. This cache can only store interface pointers // returned from QI's in the same context where we created the RCW. if (GetWrapperCtxCookie() == pCtxCookie || IsFreeThreaded()) { for (i = 0; i < INTERFACE_ENTRY_CACHE_SIZE; i++) { if (m_aInterfaceEntries[i].IsFree() && m_aInterfaceEntries[i].Init(pMT, pUnk)) { // If the component is not aggregated then we need to ref-count if (!IsURTAggregated()) { // Get an extra addref to hold this reference alive in our cache cbRef = SafeAddRef(pUnk); LogInteropAddRef(pUnk, cbRef, "RCW::GetComIPForMethodTableFromCache: Addref because storing pUnk in InterfaceEntry cache"); } break; } } } RETURN pUnk; } //---------------------------------------------------------- // Determine if the COM object supports IProvideClassInfo. BOOL RCW::SupportsIProvideClassInfo() { CONTRACTL { THROWS; GC_TRIGGERS; MODE_ANY; } CONTRACTL_END; BOOL bSupportsIProvideClassInfo = FALSE; SafeComHolder<IUnknown> pProvClassInfo = NULL; // QI for IProvideClassInfo on the COM object. HRESULT hr = SafeQueryInterfaceRemoteAware(IID_IProvideClassInfo, &pProvClassInfo); // Check to see if the QI for IProvideClassInfo succeeded. if (SUCCEEDED(hr)) { _ASSERTE(pProvClassInfo); bSupportsIProvideClassInfo = TRUE; } return bSupportsIProvideClassInfo; } BOOL RCW::AllowEagerSTACleanup() { LIMITED_METHOD_CONTRACT; // We only consider STA threads. MTA threads should have been dealt // with before calling this. _ASSERTE(GetSTAThread() != NULL); return m_Flags.m_fAllowEagerSTACleanup; } HRESULT RCW::EnterContext(PFNCTXCALLBACK pCallbackFunc, LPVOID pData) { CONTRACTL { NOTHROW; GC_TRIGGERS; MODE_ANY; PRECONDITION(!IsFreeThreaded()); PRECONDITION(GetWrapperCtxEntryNoRef() != NULL); } CONTRACTL_END; CtxEntryHolder pCtxEntry = GetWrapperCtxEntry(); return pCtxEntry->EnterContext(pCallbackFunc, pData); } //--------------------------------------------------------------------- // Callback called to release the IUnkEntry and the Interface entries. HRESULT __stdcall RCW::ReleaseAllInterfacesCallBack(LPVOID pData) { CONTRACT(HRESULT) { NOTHROW; GC_TRIGGERS; MODE_PREEMPTIVE; PRECONDITION(CheckPointer(pData)); POSTCONDITION(SUCCEEDED(RETVAL)); } CONTRACT_END; RCW* pWrap = (RCW*)pData; RCW_VTABLEPTR(pWrap); LPVOID pCurrentCtxCookie = GetCurrentCtxCookie(); if (pCurrentCtxCookie == NULL || pCurrentCtxCookie == pWrap->GetWrapperCtxCookie() || pWrap->IsFreeThreaded()) { pWrap->ReleaseAllInterfaces(); } else { // Transition into the context to release the interfaces. HRESULT hr = pWrap->EnterContext(ReleaseAllInterfacesCallBack, pWrap); if (FAILED(hr)) { // The context is disconnected so we cannot transition into it to clean up. // The only option we have left is to try and release the interfaces from // the current context. This will work for context agile object's since we have // a pointer to them directly. It will however fail for others since we only // have a pointer to a proxy which is no longer attached to the object. pWrap->ReleaseAllInterfaces(); } } RETURN S_OK; } //--------------------------------------------------------------------- // Helper function called from ReleaseAllInterfacesCallBack do do the // actual releases. void RCW::ReleaseAllInterfaces() { CONTRACTL { NOTHROW; GC_TRIGGERS; MODE_PREEMPTIVE; } CONTRACTL_END; RCW_VTABLEPTR(this); // Release the pUnk held by IUnkEntry m_UnkEntry.ReleaseInterface(this); // If this wrapper is not an Extensible RCW, free all the interface entries that have been allocated. if (!IsURTAggregated()) { for (int i = m_Flags.m_iEntryToRelease; i < INTERFACE_ENTRY_CACHE_SIZE; i++) { // Make sure we never try to clean this up again (so if we bail, we'll leak it). m_Flags.m_iEntryToRelease++; if (!m_aInterfaceEntries[i].IsFree()) { DWORD cbRef = SafeReleasePreemp(m_aInterfaceEntries[i].m_pUnknown, this); LogInteropRelease(m_aInterfaceEntries[i].m_pUnknown, cbRef, "RCW::ReleaseAllInterfaces: Releasing ref from InterfaceEntry table"); } } } } //--------------------------------------------------------------------- // Returns true if the RCW supports given "standard managed" interface. bool RCW::SupportsMngStdInterface(MethodTable *pItfMT) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; PRECONDITION(CheckPointer(pItfMT)); } CONTRACTL_END; // // Handle casts to normal managed standard interfaces. // // Check to see if the interface is a managed standard interface. IID *pNativeIID = MngStdInterfaceMap::GetNativeIIDForType(pItfMT); if (pNativeIID != NULL) { // It is a managed standard interface so we need to check to see if the COM component // implements the native interface associated with it. SafeComHolder<IUnknown> pNativeItf = NULL; // QI for the native interface. SafeQueryInterfaceRemoteAware(*pNativeIID, &pNativeItf); // If the component supports the native interface then we can say it implements the // standard interface. if (pNativeItf) return true; } else { // // Handle casts to IEnumerable. // // If the requested interface is IEnumerable then we need to check to see if the // COM object implements IDispatch and has a member with DISPID_NEWENUM. if (pItfMT == CoreLibBinder::GetClass(CLASS__IENUMERABLE)) { SafeComHolder<IDispatch> pDisp = GetIDispatch(); if (pDisp) { DISPPARAMS DispParams = {0, 0, NULL, NULL}; VariantHolder VarResult; // Initialize the return variant. SafeVariantInit(&VarResult); HRESULT hr = E_FAIL; { // We are about to make a call to COM so switch to preemptive GC. GCX_PREEMP(); // Call invoke with DISPID_NEWENUM to see if such a member exists. hr = pDisp->Invoke( DISPID_NEWENUM, IID_NULL, LOCALE_USER_DEFAULT, DISPATCH_METHOD | DISPATCH_PROPERTYGET, &DispParams, &VarResult, NULL, NULL ); } // If the invoke succeeded then the component has a member DISPID_NEWENUM // so we can expose it as an IEnumerable. if (SUCCEEDED(hr)) return true; } } } return false; } //-------------------------------------------------------------------------------- // OBJECTREF ComObject::CreateComObjectRef(MethodTable* pMT) // returns NULL for out of memory scenarios OBJECTREF ComObject::CreateComObjectRef(MethodTable* pMT) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; INJECT_FAULT(COMPlusThrowOM()); PRECONDITION(CheckPointer(pMT)); PRECONDITION(pMT->IsComObjectType()); } CONTRACTL_END; if (pMT != g_pBaseCOMObject) { pMT->CheckRestore(); pMT->EnsureInstanceActive(); pMT->CheckRunClassInitThrowing(); } return AllocateObject(pMT, false); } //-------------------------------------------------------------------------------- // SupportsInterface BOOL ComObject::SupportsInterface(OBJECTREF oref, MethodTable* pIntfTable) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; INJECT_FAULT(COMPlusThrowOM()); PRECONDITION(oref != NULL); PRECONDITION(CheckPointer(pIntfTable)); } CONTRACTL_END SafeComHolder<IUnknown> pUnk = NULL; HRESULT hr; BOOL bSupportsItf = FALSE; GCPROTECT_BEGIN(oref); // Make sure the interface method table has been restored. pIntfTable->CheckRestore(); if (pIntfTable->GetComInterfaceType() == ifInspectable) { COMPlusThrow(kPlatformNotSupportedException, IDS_EE_NO_IINSPECTABLE); } // Check to see if the static class definition indicates we implement the interface. MethodTable *pMT = oref->GetMethodTable(); if (pMT->CanCastToInterface(pIntfTable)) { bSupportsItf = TRUE; } else { RCWHolder pRCW(GetThread()); RCWPROTECT_BEGIN(pRCW, oref); // This should not be called for interfaces that are in the normal portion of the // interface map for this class. The only interfaces that are in the interface map // but are not in the normal portion are the dynamic interfaces on extensible RCW's. _ASSERTE(!oref->GetMethodTable()->ImplementsInterface(pIntfTable)); // // First QI the object to see if it implements the specified interface. // pUnk = pRCW->GetComIPFromRCW(pIntfTable); if (pUnk) { bSupportsItf = true; } else if (pIntfTable->IsComEventItfType()) { MethodTable *pSrcItfClass = NULL; MethodTable *pEvProvClass = NULL; GUID SrcItfIID; SafeComHolder<IConnectionPointContainer> pCPC = NULL; SafeComHolder<IConnectionPoint> pCP = NULL; // Retrieve the IID of the source interface associated with this // event interface. pIntfTable->GetEventInterfaceInfo(&pSrcItfClass, &pEvProvClass); pSrcItfClass->GetGuid(&SrcItfIID, TRUE); // QI for IConnectionPointContainer. hr = pRCW->SafeQueryInterfaceRemoteAware(IID_IConnectionPointContainer, (IUnknown**)&pCPC); // If the component implements IConnectionPointContainer, then check // to see if it handles the source interface. if (SUCCEEDED(hr)) { GCX_PREEMP(); // make sure we switch to preemptive mode before calling the external COM object hr = pCPC->FindConnectionPoint(SrcItfIID, &pCP); if (SUCCEEDED(hr)) { // The component handles the source interface so we can succeed the QI call. bSupportsItf = true; } } } else if (pRCW->SupportsMngStdInterface(pIntfTable)) { bSupportsItf = true; } if (bSupportsItf) { // If the object has a dynamic interface map then we have extra work to do. MethodTable *pMT = oref->GetMethodTable(); if (pMT->HasDynamicInterfaceMap()) { // First, make sure we haven't already added this. if (!pMT->FindDynamicallyAddedInterface(pIntfTable)) { // It's not there. // Check if the object supports all of these interfaces only if this is a classic COM interop // scenario. This is a perf optimization (no need to QI for base interfaces if we don't really // need them just yet) and also has a usability aspect. If this SupportsInterface call failed // because one of the base interfaces is not supported, the exception we'd throw would contain // only the name of the "top level" interface which would confuse the developer. MethodTable::InterfaceMapIterator it = pIntfTable->IterateInterfaceMap(); while (it.Next()) { MethodTable *pItf = it.GetInterfaceApprox(); if (pItf->HasInstantiation() || pItf->IsGenericTypeDefinition()) continue; bSupportsItf = Object::SupportsInterface(oref, pItf); if (!bSupportsItf) break; } // If the object supports all these interfaces, attempt to add the interface table // to the cache. if (bSupportsItf) { { // Take the wrapper cache lock before we start playing with the interface map. RCWCache::LockHolder lh(RCWCache::GetRCWCache()); // Check again with the lock. if (!pMT->FindDynamicallyAddedInterface(pIntfTable)) { // Add it to the dynamic interface table. pMT->AddDynamicInterface(pIntfTable); } } } } } } RCWPROTECT_END(pRCW); } GCPROTECT_END(); return bSupportsItf; } //-------------------------------------------------------------------- // ThrowInvalidCastException void ComObject::ThrowInvalidCastException(OBJECTREF *pObj, MethodTable *pCastToMT) { CONTRACT_VOID { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; PRECONDITION(pObj != NULL); PRECONDITION(*pObj != NULL); PRECONDITION(IsProtectedByGCFrame (pObj)); POSTCONDITION(!"This function should never return!"); } CONTRACT_END; SafeComHolder<IUnknown> pItf = NULL; HRESULT hr = S_OK; IID *pNativeIID = NULL; GUID iid; // Use an InlineSString with a size of MAX_CLASSNAME_LENGTH + 1 to prevent // TypeHandle::GetName from having to allocate a new block of memory. This // significantly improves the performance of throwing an InvalidCastException. InlineSString<MAX_CLASSNAME_LENGTH + 1> strComObjClassName; InlineSString<MAX_CLASSNAME_LENGTH + 1> strCastToName; TypeHandle thClass = (*pObj)->GetTypeHandle(); TypeHandle thCastTo = TypeHandle(pCastToMT); thClass.GetName(strComObjClassName); thCastTo.GetName(strCastToName); if (thCastTo.IsInterface()) { RCWHolder pRCW(GetThread()); pRCW.Init(*pObj); // Retrieve the IID of the interface. MethodTable *pCOMItfMT = thCastTo.GetMethodTable(); // keep calling the throwing GetGuid (back compat) pCOMItfMT->GetGuid(&iid, TRUE); // Query for the interface to determine the failure HRESULT. hr = pRCW->SafeQueryInterfaceRemoteAware(iid, (IUnknown**)&pItf); // If this function was called, it means the QI call failed in the past. If it // no longer fails now, we still need to throw, so throw a generic invalid cast exception. if (SUCCEEDED(hr)) { COMPlusThrow(kInvalidCastException, IDS_EE_CANNOTCAST, strComObjClassName.GetUnicode(), strCastToName.GetUnicode()); } // Convert the IID to a string. WCHAR strIID[39]; StringFromGUID2(iid, strIID, sizeof(strIID) / sizeof(WCHAR)); // Obtain the textual description of the HRESULT. SString strHRDescription; GetHRMsg(hr, strHRDescription); if (thCastTo.IsComEventItfType()) { GUID SrcItfIID; MethodTable *pSrcItfClass = NULL; MethodTable *pEvProvClass = NULL; // Retrieve the IID of the source interface associated with this event interface. thCastTo.GetMethodTable()->GetEventInterfaceInfo(&pSrcItfClass, &pEvProvClass); pSrcItfClass->GetGuid(&SrcItfIID, TRUE); // Convert the source interface IID to a string. WCHAR strSrcItfIID[39]; StringFromGUID2(SrcItfIID, strSrcItfIID, sizeof(strSrcItfIID) / sizeof(WCHAR)); COMPlusThrow(kInvalidCastException, IDS_EE_RCW_INVALIDCAST_EVENTITF, strHRDescription.GetUnicode(), strComObjClassName.GetUnicode(), strCastToName.GetUnicode(), strIID, strSrcItfIID); } else if (thCastTo == TypeHandle(CoreLibBinder::GetClass(CLASS__IENUMERABLE))) { COMPlusThrow(kInvalidCastException, IDS_EE_RCW_INVALIDCAST_IENUMERABLE, strHRDescription.GetUnicode(), strComObjClassName.GetUnicode(), strCastToName.GetUnicode(), strIID); } else if ((pNativeIID = MngStdInterfaceMap::GetNativeIIDForType(thCastTo)) != NULL) { // Convert the source interface IID to a string. WCHAR strNativeItfIID[39]; StringFromGUID2(*pNativeIID, strNativeItfIID, sizeof(strNativeItfIID) / sizeof(WCHAR)); // Query for the interface to determine the failure HRESULT. HRESULT hr2 = pRCW->SafeQueryInterfaceRemoteAware(iid, (IUnknown**)&pItf); // If this function was called, it means the QI call failed in the past. If it // no longer fails now, we still need to throw, so throw a generic invalid cast exception. if (SUCCEEDED(hr2)) COMPlusThrow(kInvalidCastException, IDS_EE_CANNOTCAST, strComObjClassName.GetUnicode(), strCastToName.GetUnicode()); // Obtain the textual description of the 2nd HRESULT. SString strHR2Description; GetHRMsg(hr2, strHR2Description); COMPlusThrow(kInvalidCastException, IDS_EE_RCW_INVALIDCAST_MNGSTDITF, strHRDescription.GetUnicode(), strComObjClassName.GetUnicode(), strCastToName.GetUnicode(), strIID, strNativeItfIID, strHR2Description.GetUnicode()); } else { COMPlusThrow(kInvalidCastException, IDS_EE_RCW_INVALIDCAST_ITF, strHRDescription.GetUnicode(), strComObjClassName.GetUnicode(), strCastToName.GetUnicode(), strIID); } } else { // Validate that this function wasn't erroneously called. _ASSERTE(!thClass.CanCastTo(thCastTo)); if (thCastTo.IsComObjectType()) { if (IsComObjectClass(thClass)) { // An attempt was made to cast an __ComObject to ComImport metadata defined type. COMPlusThrow(kInvalidCastException, IDS_EE_RCW_INVALIDCAST_COMOBJ_TO_MD, strComObjClassName.GetUnicode(), strCastToName.GetUnicode()); } else { // An attempt was made to cast an instance of a ComImport metadata defined type to // a different non ComImport metadata defined type. COMPlusThrow(kInvalidCastException, IDS_EE_RCW_INVALIDCAST_MD_TO_MD, strComObjClassName.GetUnicode(), strCastToName.GetUnicode()); } } else { // An attempt was made to cast this RCW to a non ComObjectType class. COMPlusThrow(kInvalidCastException, IDS_EE_RCW_INVALIDCAST_TO_NON_COMOBJTYPE, strComObjClassName.GetUnicode(), strCastToName.GetUnicode()); } } RETURN; } //-------------------------------------------------------------------------------- // Release all the data associated with the __ComObject. void ComObject::ReleaseAllData(OBJECTREF oref) { CONTRACTL { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; PRECONDITION(oref != NULL); PRECONDITION(oref->GetMethodTable()->IsComObjectType()); } CONTRACTL_END; GCPROTECT_BEGIN(oref) { PREPARE_NONVIRTUAL_CALLSITE(METHOD__COM_OBJECT__RELEASE_ALL_DATA); DECLARE_ARGHOLDER_ARRAY(ReleaseAllDataArgs, 1); ReleaseAllDataArgs[ARGNUM_0] = OBJECTREF_TO_ARGHOLDER(oref); CALL_MANAGED_METHOD_NORET(ReleaseAllDataArgs); } GCPROTECT_END(); } #ifndef DACCESS_COMPILE //-------------------------------------------------------------------------- // Wrapper around code:RCW.GetComIPFromRCW // static IUnknown *ComObject::GetComIPFromRCW(OBJECTREF *pObj, MethodTable* pIntfTable) { CONTRACT (IUnknown*) { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; PRECONDITION(IsProtectedByGCFrame(pObj)); PRECONDITION(CheckPointer(pIntfTable, NULL_OK)); POSTCONDITION(CheckPointer(RETVAL, NULL_OK)); // NULL if we couldn't find match } CONTRACT_END; SafeComHolder<IUnknown> pIUnk; RCWHolder pRCW(GetThread()); RCWPROTECT_BEGIN(pRCW, *pObj); pIUnk = pRCW->GetComIPFromRCW(pIntfTable); RCWPROTECT_END(pRCW); RETURN pIUnk.Extract(); } //-------------------------------------------------------------------------- // Wrapper around code:ComObject.GetComIPFromRCW that throws InvalidCastException // static IUnknown *ComObject::GetComIPFromRCWThrowing(OBJECTREF *pObj, MethodTable* pIntfTable) { CONTRACT (IUnknown*) { THROWS; GC_TRIGGERS; MODE_COOPERATIVE; PRECONDITION(IsProtectedByGCFrame(pObj)); PRECONDITION(CheckPointer(pIntfTable, NULL_OK)); POSTCONDITION(CheckPointer(RETVAL)); } CONTRACT_END; IUnknown* pIUnk = GetComIPFromRCW(pObj, pIntfTable); if (pIUnk == NULL) ThrowInvalidCastException(pObj, pIntfTable); RETURN pIUnk; } #endif // #ifndef DACCESS_COMPILE
-1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./src/coreclr/tools/StressLogAnalyzer/StressLogDump.cpp
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // ==++== // // // ==--== #include "strike.h" #include "util.h" #include <stdio.h> #include <ctype.h> #include <minipal/utils.h> #ifndef STRESS_LOG #define STRESS_LOG class MapViewHolder { void* whatever; }; typedef unsigned char uint8_t; typedef unsigned int uint32_t; #ifdef HOST_WINDOWS typedef long long int64_t; #else #define FEATURE_PAL #endif typedef size_t uint64_t; #endif // STRESS_LOG #define STRESS_LOG_READONLY #include "../../../inc/stresslog.h" void GcHistClear(); void GcHistAddLog(LPCSTR msg, StressMsg* stressMsg); /*********************************************************************************/ static const WCHAR* getTime(const FILETIME* time, _Out_writes_ (buffLen) WCHAR* buff, int buffLen) { SYSTEMTIME systemTime; static const WCHAR badTime[] = W("BAD TIME"); if (!FileTimeToSystemTime(time, &systemTime)) return badTime; #ifdef FEATURE_PAL int length = _snwprintf_s(buff, buffLen, _TRUNCATE, W("%02d:%02d:%02d"), systemTime.wHour, systemTime.wMinute, systemTime.wSecond); if (length <= 0) return badTime; #else // FEATURE_PAL static const WCHAR format[] = W("HH:mm:ss"); SYSTEMTIME localTime; SystemTimeToTzSpecificLocalTime(NULL, &systemTime, &localTime); // we want a non null buff for the following int ret = GetTimeFormatW(LOCALE_USER_DEFAULT, 0, &localTime, format, buff, buffLen); if (ret == 0) return badTime; #endif // FEATURE_PAL else return buff; } /*********************************************************************************/ static inline __int64& toInt64(FILETIME& t) { return *((__int64 *) &t); } /*********************************************************************************/ ThreadStressLog* ThreadStressLog::FindLatestThreadLog() const { const ThreadStressLog* latestLog = 0; for (const ThreadStressLog* ptr = this; ptr != NULL; ptr = ptr->next) { if (ptr->readPtr != NULL) if (latestLog == 0 || ptr->readPtr->timeStamp > latestLog->readPtr->timeStamp) latestLog = ptr; } return const_cast<ThreadStressLog*>(latestLog); } const char *getFacilityName(DWORD_PTR lf) { struct FacilityName_t { size_t lf; const char* lfName; }; #define DEFINE_LOG_FACILITY(logname, value) {logname, #logname}, static FacilityName_t facilities[] = { #include "../../../inc/loglf.h" { LF_ALWAYS, "LF_ALWAYS" } }; static char buff[1024] = "`"; if ( lf == LF_ALL ) { return "`ALL`"; } else if ((((DWORD)lf) & (LF_ALWAYS | 0xfffe | LF_GC)) == (LF_ALWAYS | LF_GC)) { sprintf_s(buff, ARRAY_SIZE(buff), "`GC l=%d`", (int)((lf >> 16) & 0x7fff)); return buff; } else { buff[1] = '\0'; for ( int i = 0; i < 32; ++i ) { if ( lf & 0x1 ) { strcat_s ( buff, ARRAY_SIZE(buff), &(facilities[i].lfName[3]) ); strcat_s ( buff, ARRAY_SIZE(buff), "`" ); } lf >>= 1; } return buff; } } /***********************************************************************************/ /* recognize special pretty printing instructions in the format string */ /* Note that this function might have side effect such that args array value might */ /* be altered if format string contains %s */ // TODO: This function assumes the pointer size of the target equals the pointer size of the host // TODO: replace uses of void* with appropriate TADDR or CLRDATA_ADDRESS void formatOutput(struct IDebugDataSpaces* memCallBack, ___in FILE* file, __inout __inout_z char* format, uint64_t threadId, double timeStamp, DWORD_PTR facility, ___in void** args, bool fPrintFormatString) { if (threadId & 0x8000000000000000) fprintf(file, "GC%2d %13.9f : ", (unsigned)threadId, timeStamp); else if (threadId & 0x4000000000000000) fprintf(file, "BG%2d %13.9f : ", (unsigned)threadId, timeStamp); else fprintf(file, "%4x %13.9f : ", (int)threadId, timeStamp); fprintf(file, "%-20s ", getFacilityName ( facility )); if (fPrintFormatString) { fprintf(file, "***|\"%s\"|*** ", format); } CQuickBytes fullname; void** argsPtr = args; const SIZE_T capacity_buff = 2048; LPWSTR buff = (LPWSTR)alloca(capacity_buff * sizeof(WCHAR)); static char formatCopy[256]; int iArgCount = 0; strcpy_s(formatCopy, ARRAY_SIZE(formatCopy), format); char* ptr = formatCopy; format = formatCopy; for(;;) { char c = *ptr++; if (c == 0) break; if (c == '{') // Reverse the '{' 's because the log is displayed backwards ptr[-1] = '}'; else if (c == '}') ptr[-1] = '{'; else if (c == '%') { argsPtr++; // This format will consume one of the args if (*ptr == '%') { ptr++; // skip the whole %% --argsPtr; // except for a %% } else if (*ptr == 'p') { // It is a %p ptr++; if (isalpha(*ptr)) { // It is a special %p formatter // Print the string up to that point c = *ptr; *ptr = 0; // Terminate the string temporarily fprintf(file, format, args[0], args[1], args[2], args[3], args[4], args[5], args[6], args[7], args[8], args[9], args[10]); *ptr = c; // Put it back // move the argument pointers past the part the was printed format = ptr + 1; args = argsPtr; iArgCount = -1; DWORD_PTR arg = DWORD_PTR(argsPtr[-1]); switch (c) { case 'M': // format as a method Desc if (g_bDacBroken) { fprintf(file," (MethodDesc: %p)", (void*)arg); } else { if (!IsMethodDesc(arg)) { if (arg != 0) fprintf(file, " (BAD Method)"); } else { DacpMethodDescData MethodDescData; MethodDescData.Request(g_sos,(CLRDATA_ADDRESS)arg); static WCHAR wszNameBuffer[1024]; // should be large enough if (g_sos->GetMethodDescName(arg, 1024, wszNameBuffer, NULL) != S_OK) { wcscpy_s(wszNameBuffer, ARRAY_SIZE(wszNameBuffer), W("UNKNOWN METHODDESC")); } wcscpy_s(buff, capacity_buff, wszNameBuffer); fprintf(file, " (%S)", wszNameBuffer); } } break; // fall through case 'T': // format as a MethodTable if (g_bDacBroken) { fprintf(file, "(MethodTable: %p)", (void*)arg); } else { if (arg & 3) { arg &= ~3; // GC steals the lower bits for its own use during GC. fprintf(file, " Low Bit(s) Set"); } if (!IsMethodTable(arg)) { fprintf(file, " (BAD MethodTable)"); } else { NameForMT_s (arg, g_mdName, mdNameLen); fprintf(file, " (%S)", g_mdName); } } break; case 'V': { // format as a C vtable pointer char Symbol[1024]; ULONG64 Displacement; HRESULT hr = g_ExtSymbols->GetNameByOffset(TO_CDADDR(arg), Symbol, 1024, NULL, &Displacement); if (SUCCEEDED(hr) && Symbol[0] != '\0' && Displacement == 0) fprintf(file, " (%s)", Symbol); else fprintf(file, " (Unknown VTable)"); } break; case 'K': { // format a frame in stack trace char Symbol[1024]; ULONG64 Displacement; HRESULT hr = g_ExtSymbols->GetNameByOffset (TO_CDADDR(arg), Symbol, 1024, NULL, &Displacement); if (SUCCEEDED (hr) && Symbol[0] != '\0') { fprintf (file, " (%s", Symbol); if (Displacement) { fprintf (file, "+%#llx", Displacement); } fprintf (file, ")"); } else fprintf (file, " (Unknown function)"); } break; default: format = ptr; // Just print the character. } } } else if (*ptr == 's' || (*ptr == 'h' && *(ptr+1) == 's' && ++ptr)) { HRESULT hr; // need to _alloca, instead of declaring a local buffer // since we may have more than one %s in the format ULONG cbStrBuf = 256; char* strBuf = (char *)_alloca(cbStrBuf); hr = memCallBack->ReadVirtual(TO_CDADDR((char* )args[iArgCount]), strBuf, cbStrBuf, 0); if (hr != S_OK) { strcpy_s(strBuf, cbStrBuf, "(#Could not read address of string#)"); } args[iArgCount] = strBuf; } else if (*ptr == 'S' || (*ptr == 'l' && *(ptr+1) == 's' && ++ptr)) { HRESULT hr; // need to _alloca, instead of declaring a local buffer // since we may have more than one %s in the format ULONG cbWstrBuf = 256 * sizeof(WCHAR); WCHAR* wstrBuf = (WCHAR *)_alloca(cbWstrBuf); hr = memCallBack->ReadVirtual(TO_CDADDR((char* )args[iArgCount]), wstrBuf, cbWstrBuf, 0); if (hr != S_OK) { wcscpy_s(wstrBuf, cbWstrBuf/sizeof(WCHAR), W("(#Could not read address of string#)")); } args[iArgCount] = wstrBuf; } iArgCount++; } } // Print anything after the last special format instruction. fprintf(file, format, args[0], args[1], args[2], args[3], args[4], args[5], args[6], args[7], args[8], args[9], args[10]); fprintf(file, "\n"); } void __cdecl vDoOut(BOOL bToConsole, FILE* file, PCSTR Format, ...) { va_list Args; va_start(Args, Format); if (bToConsole) { OutputVaList(DEBUG_OUTPUT_NORMAL, Format, Args); } else { vfprintf(file, Format, Args); } va_end(Args); } /*********************************************************************************/ HRESULT StressLog::Dump(ULONG64 outProcLog, const char* fileName, struct IDebugDataSpaces* memCallBack) { ULONG64 g_hThisInst; BOOL bDoGcHist = (fileName == NULL); FILE* file = NULL; // Fetch the circular buffer bookkeeping data StressLog inProcLog; HRESULT hr = memCallBack->ReadVirtual(UL64_TO_CDA(outProcLog), &inProcLog, sizeof(StressLog), 0); if (hr != S_OK) { return hr; } if (inProcLog.logs.Load() == NULL || inProcLog.moduleOffset == 0) { ExtOut ( "----- No thread logs in the image: The stress log was probably not initialized correctly. -----\n"); return S_FALSE; } g_hThisInst = (ULONG64) inProcLog.moduleOffset; if (bDoGcHist) { GcHistClear(); } else { ExtOut("Writing to file: %s\n", fileName); ExtOut("Stress log in module 0x%p\n", SOS_PTR(g_hThisInst)); ExtOut("Stress log address = 0x%p\n", SOS_PTR(outProcLog)); } // Fetch the circular buffers for each thread into the 'logs' list ThreadStressLog* logs = 0; CLRDATA_ADDRESS outProcPtr = TO_CDADDR(inProcLog.logs.Load()); ThreadStressLog* inProcPtr; ThreadStressLog** logsPtr = &logs; int threadCtr = 0; unsigned __int64 lastTimeStamp = 0;// timestamp of last log entry while(outProcPtr != 0) { inProcPtr = new ThreadStressLog; hr = memCallBack->ReadVirtual(outProcPtr, inProcPtr, sizeof (*inProcPtr), 0); if (hr != S_OK || inProcPtr->chunkListHead == NULL) { delete inProcPtr; goto FREE_MEM; } CLRDATA_ADDRESS outProcListHead = TO_CDADDR(inProcPtr->chunkListHead); CLRDATA_ADDRESS outProcChunkPtr = outProcListHead; StressLogChunk ** chunksPtr = &inProcPtr->chunkListHead; StressLogChunk * inProcPrevChunkPtr = NULL; BOOL curPtrInitialized = FALSE; do { StressLogChunk * inProcChunkPtr = new StressLogChunk; hr = memCallBack->ReadVirtual (outProcChunkPtr, inProcChunkPtr, sizeof (*inProcChunkPtr), NULL); if (hr != S_OK || !inProcChunkPtr->IsValid ()) { if (hr != S_OK) ExtOut ("ReadVirtual failed with code hr = %x.\n", hr ); else ExtOut ("Invalid stress log chunk: %p", SOS_PTR(outProcChunkPtr)); // Now cleanup delete inProcChunkPtr; // if this is the first time through, inProcPtr->chunkListHead may still contain // the out-of-process value for the chunk pointer. NULL it to avoid AVs if (TO_CDADDR(inProcPtr->chunkListHead) == outProcListHead) inProcPtr->chunkListHead = NULL; delete inProcPtr; goto FREE_MEM; } if (!curPtrInitialized && outProcChunkPtr == TO_CDADDR(inProcPtr->curWriteChunk)) { inProcPtr->curPtr = (StressMsg *)((BYTE *)inProcChunkPtr + ((BYTE *)inProcPtr->curPtr - (BYTE *)inProcPtr->curWriteChunk)); inProcPtr->curWriteChunk = inProcChunkPtr; curPtrInitialized = TRUE; } outProcChunkPtr = TO_CDADDR(inProcChunkPtr->next); *chunksPtr = inProcChunkPtr; chunksPtr = &inProcChunkPtr->next; inProcChunkPtr->prev = inProcPrevChunkPtr; inProcPrevChunkPtr = inProcChunkPtr; if (outProcChunkPtr == outProcListHead) { inProcChunkPtr->next = inProcPtr->chunkListHead; inProcPtr->chunkListHead->prev = inProcChunkPtr; inProcPtr->chunkListTail = inProcChunkPtr; } } while (outProcChunkPtr != outProcListHead); if (!curPtrInitialized) { delete inProcPtr; goto FREE_MEM; } // TODO: fix on 64 bit inProcPtr->Activate (); if (inProcPtr->readPtr->timeStamp > lastTimeStamp) { lastTimeStamp = inProcPtr->readPtr->timeStamp; } outProcPtr = TO_CDADDR(inProcPtr->next); *logsPtr = inProcPtr; logsPtr = &inProcPtr->next; threadCtr++; } if (!bDoGcHist && ((fopen_s(&file, fileName, "w")) != 0)) { hr = GetLastError(); goto FREE_MEM; } hr = S_FALSE; // return false if there are no message to print to the log vDoOut(bDoGcHist, file, "STRESS LOG:\n" " facilitiesToLog = 0x%x\n" " levelToLog = %d\n" " MaxLogSizePerThread = 0x%x (%d)\n" " MaxTotalLogSize = 0x%x (%d)\n" " CurrentTotalLogChunk = %d\n" " ThreadsWithLogs = %d\n", inProcLog.facilitiesToLog, inProcLog.levelToLog, inProcLog.MaxSizePerThread, inProcLog.MaxSizePerThread, inProcLog.MaxSizeTotal, inProcLog.MaxSizeTotal, inProcLog.totalChunk.Load(), threadCtr); FILETIME endTime; double totalSecs; totalSecs = ((double) (lastTimeStamp - inProcLog.startTimeStamp)) / inProcLog.tickFrequency; toInt64(endTime) = toInt64(inProcLog.startTime) + ((__int64) (totalSecs * 1.0E7)); WCHAR timeBuff[64]; vDoOut(bDoGcHist, file, " Clock frequency = %5.3f GHz\n", inProcLog.tickFrequency / 1.0E9); vDoOut(bDoGcHist, file, " Start time %S\n", getTime(&inProcLog.startTime, timeBuff, 64)); vDoOut(bDoGcHist, file, " Last message time %S\n", getTime(&endTime, timeBuff, 64)); vDoOut(bDoGcHist, file, " Total elapsed time %5.3f sec\n", totalSecs); if (!bDoGcHist) { fprintf(file, "\nTHREAD TIMESTAMP FACILITY MESSAGE\n"); fprintf(file, " ID (sec from start)\n"); fprintf(file, "--------------------------------------------------------------------------------------\n"); } char format[257]; format[256] = format[0] = 0; void** args; unsigned msgCtr; msgCtr = 0; for (;;) { ThreadStressLog* latestLog = logs->FindLatestThreadLog(); if (IsInterrupt()) { vDoOut(bDoGcHist, file, "----- Interrupted by user -----\n"); break; } if (latestLog == 0) { break; } StressMsg* latestMsg = latestLog->readPtr; if (latestMsg->formatOffset != 0 && !latestLog->CompletedDump()) { TADDR taFmt = (latestMsg->formatOffset) + TO_TADDR(g_hThisInst); hr = memCallBack->ReadVirtual(TO_CDADDR(taFmt), format, 256, 0); if (hr != S_OK) strcpy_s(format, ARRAY_SIZE(format), "Could not read address of format string"); double deltaTime = ((double) (latestMsg->timeStamp - inProcLog.startTimeStamp)) / inProcLog.tickFrequency; if (bDoGcHist) { if (strcmp(format, ThreadStressLog::TaskSwitchMsg()) == 0) { latestLog->threadId = (unsigned)(size_t)latestMsg->args[0]; } GcHistAddLog(format, latestMsg); } else { if (strcmp(format, ThreadStressLog::TaskSwitchMsg()) == 0) { fprintf (file, "Task was switched from %x\n", (unsigned)(size_t)latestMsg->args[0]); latestLog->threadId = (unsigned)(size_t)latestMsg->args[0]; } else { args = latestMsg->args; formatOutput(memCallBack, file, format, (unsigned)latestLog->threadId, deltaTime, latestMsg->facility, args); } } msgCtr++; } latestLog->readPtr = latestLog->AdvanceRead(); if (latestLog->CompletedDump()) { latestLog->readPtr = NULL; if (!bDoGcHist) { fprintf(file, "------------ Last message from thread %llx -----------\n", latestLog->threadId); } } if (msgCtr % 64 == 0) { ExtOut("."); // to indicate progress if (msgCtr % (64*64) == 0) ExtOut("\n"); } } ExtOut("\n"); vDoOut(bDoGcHist, file, "---------------------------- %d total entries ------------------------------------\n", msgCtr); if (!bDoGcHist) { fclose(file); } FREE_MEM: // clean up the 'logs' list while (logs) { ThreadStressLog* temp = logs; logs = logs->next; delete temp; } return hr; }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // ==++== // // // ==--== #include "strike.h" #include "util.h" #include <stdio.h> #include <ctype.h> #include <minipal/utils.h> #ifndef STRESS_LOG #define STRESS_LOG class MapViewHolder { void* whatever; }; typedef unsigned char uint8_t; typedef unsigned int uint32_t; #ifdef HOST_WINDOWS typedef long long int64_t; #else #define FEATURE_PAL #endif typedef size_t uint64_t; #endif // STRESS_LOG #define STRESS_LOG_READONLY #include "../../../inc/stresslog.h" void GcHistClear(); void GcHistAddLog(LPCSTR msg, StressMsg* stressMsg); /*********************************************************************************/ static const WCHAR* getTime(const FILETIME* time, _Out_writes_ (buffLen) WCHAR* buff, int buffLen) { SYSTEMTIME systemTime; static const WCHAR badTime[] = W("BAD TIME"); if (!FileTimeToSystemTime(time, &systemTime)) return badTime; #ifdef FEATURE_PAL int length = _snwprintf_s(buff, buffLen, _TRUNCATE, W("%02d:%02d:%02d"), systemTime.wHour, systemTime.wMinute, systemTime.wSecond); if (length <= 0) return badTime; #else // FEATURE_PAL static const WCHAR format[] = W("HH:mm:ss"); SYSTEMTIME localTime; SystemTimeToTzSpecificLocalTime(NULL, &systemTime, &localTime); // we want a non null buff for the following int ret = GetTimeFormatW(LOCALE_USER_DEFAULT, 0, &localTime, format, buff, buffLen); if (ret == 0) return badTime; #endif // FEATURE_PAL else return buff; } /*********************************************************************************/ static inline __int64& toInt64(FILETIME& t) { return *((__int64 *) &t); } /*********************************************************************************/ ThreadStressLog* ThreadStressLog::FindLatestThreadLog() const { const ThreadStressLog* latestLog = 0; for (const ThreadStressLog* ptr = this; ptr != NULL; ptr = ptr->next) { if (ptr->readPtr != NULL) if (latestLog == 0 || ptr->readPtr->timeStamp > latestLog->readPtr->timeStamp) latestLog = ptr; } return const_cast<ThreadStressLog*>(latestLog); } const char *getFacilityName(DWORD_PTR lf) { struct FacilityName_t { size_t lf; const char* lfName; }; #define DEFINE_LOG_FACILITY(logname, value) {logname, #logname}, static FacilityName_t facilities[] = { #include "../../../inc/loglf.h" { LF_ALWAYS, "LF_ALWAYS" } }; static char buff[1024] = "`"; if ( lf == LF_ALL ) { return "`ALL`"; } else if ((((DWORD)lf) & (LF_ALWAYS | 0xfffe | LF_GC)) == (LF_ALWAYS | LF_GC)) { sprintf_s(buff, ARRAY_SIZE(buff), "`GC l=%d`", (int)((lf >> 16) & 0x7fff)); return buff; } else { buff[1] = '\0'; for ( int i = 0; i < 32; ++i ) { if ( lf & 0x1 ) { strcat_s ( buff, ARRAY_SIZE(buff), &(facilities[i].lfName[3]) ); strcat_s ( buff, ARRAY_SIZE(buff), "`" ); } lf >>= 1; } return buff; } } /***********************************************************************************/ /* recognize special pretty printing instructions in the format string */ /* Note that this function might have side effect such that args array value might */ /* be altered if format string contains %s */ // TODO: This function assumes the pointer size of the target equals the pointer size of the host // TODO: replace uses of void* with appropriate TADDR or CLRDATA_ADDRESS void formatOutput(struct IDebugDataSpaces* memCallBack, ___in FILE* file, __inout __inout_z char* format, uint64_t threadId, double timeStamp, DWORD_PTR facility, ___in void** args, bool fPrintFormatString) { if (threadId & 0x8000000000000000) fprintf(file, "GC%2d %13.9f : ", (unsigned)threadId, timeStamp); else if (threadId & 0x4000000000000000) fprintf(file, "BG%2d %13.9f : ", (unsigned)threadId, timeStamp); else fprintf(file, "%4x %13.9f : ", (int)threadId, timeStamp); fprintf(file, "%-20s ", getFacilityName ( facility )); if (fPrintFormatString) { fprintf(file, "***|\"%s\"|*** ", format); } CQuickBytes fullname; void** argsPtr = args; const SIZE_T capacity_buff = 2048; LPWSTR buff = (LPWSTR)alloca(capacity_buff * sizeof(WCHAR)); static char formatCopy[256]; int iArgCount = 0; strcpy_s(formatCopy, ARRAY_SIZE(formatCopy), format); char* ptr = formatCopy; format = formatCopy; for(;;) { char c = *ptr++; if (c == 0) break; if (c == '{') // Reverse the '{' 's because the log is displayed backwards ptr[-1] = '}'; else if (c == '}') ptr[-1] = '{'; else if (c == '%') { argsPtr++; // This format will consume one of the args if (*ptr == '%') { ptr++; // skip the whole %% --argsPtr; // except for a %% } else if (*ptr == 'p') { // It is a %p ptr++; if (isalpha(*ptr)) { // It is a special %p formatter // Print the string up to that point c = *ptr; *ptr = 0; // Terminate the string temporarily fprintf(file, format, args[0], args[1], args[2], args[3], args[4], args[5], args[6], args[7], args[8], args[9], args[10]); *ptr = c; // Put it back // move the argument pointers past the part the was printed format = ptr + 1; args = argsPtr; iArgCount = -1; DWORD_PTR arg = DWORD_PTR(argsPtr[-1]); switch (c) { case 'M': // format as a method Desc if (g_bDacBroken) { fprintf(file," (MethodDesc: %p)", (void*)arg); } else { if (!IsMethodDesc(arg)) { if (arg != 0) fprintf(file, " (BAD Method)"); } else { DacpMethodDescData MethodDescData; MethodDescData.Request(g_sos,(CLRDATA_ADDRESS)arg); static WCHAR wszNameBuffer[1024]; // should be large enough if (g_sos->GetMethodDescName(arg, 1024, wszNameBuffer, NULL) != S_OK) { wcscpy_s(wszNameBuffer, ARRAY_SIZE(wszNameBuffer), W("UNKNOWN METHODDESC")); } wcscpy_s(buff, capacity_buff, wszNameBuffer); fprintf(file, " (%S)", wszNameBuffer); } } break; // fall through case 'T': // format as a MethodTable if (g_bDacBroken) { fprintf(file, "(MethodTable: %p)", (void*)arg); } else { if (arg & 3) { arg &= ~3; // GC steals the lower bits for its own use during GC. fprintf(file, " Low Bit(s) Set"); } if (!IsMethodTable(arg)) { fprintf(file, " (BAD MethodTable)"); } else { NameForMT_s (arg, g_mdName, mdNameLen); fprintf(file, " (%S)", g_mdName); } } break; case 'V': { // format as a C vtable pointer char Symbol[1024]; ULONG64 Displacement; HRESULT hr = g_ExtSymbols->GetNameByOffset(TO_CDADDR(arg), Symbol, 1024, NULL, &Displacement); if (SUCCEEDED(hr) && Symbol[0] != '\0' && Displacement == 0) fprintf(file, " (%s)", Symbol); else fprintf(file, " (Unknown VTable)"); } break; case 'K': { // format a frame in stack trace char Symbol[1024]; ULONG64 Displacement; HRESULT hr = g_ExtSymbols->GetNameByOffset (TO_CDADDR(arg), Symbol, 1024, NULL, &Displacement); if (SUCCEEDED (hr) && Symbol[0] != '\0') { fprintf (file, " (%s", Symbol); if (Displacement) { fprintf (file, "+%#llx", Displacement); } fprintf (file, ")"); } else fprintf (file, " (Unknown function)"); } break; default: format = ptr; // Just print the character. } } } else if (*ptr == 's' || (*ptr == 'h' && *(ptr+1) == 's' && ++ptr)) { HRESULT hr; // need to _alloca, instead of declaring a local buffer // since we may have more than one %s in the format ULONG cbStrBuf = 256; char* strBuf = (char *)_alloca(cbStrBuf); hr = memCallBack->ReadVirtual(TO_CDADDR((char* )args[iArgCount]), strBuf, cbStrBuf, 0); if (hr != S_OK) { strcpy_s(strBuf, cbStrBuf, "(#Could not read address of string#)"); } args[iArgCount] = strBuf; } else if (*ptr == 'S' || (*ptr == 'l' && *(ptr+1) == 's' && ++ptr)) { HRESULT hr; // need to _alloca, instead of declaring a local buffer // since we may have more than one %s in the format ULONG cbWstrBuf = 256 * sizeof(WCHAR); WCHAR* wstrBuf = (WCHAR *)_alloca(cbWstrBuf); hr = memCallBack->ReadVirtual(TO_CDADDR((char* )args[iArgCount]), wstrBuf, cbWstrBuf, 0); if (hr != S_OK) { wcscpy_s(wstrBuf, cbWstrBuf/sizeof(WCHAR), W("(#Could not read address of string#)")); } args[iArgCount] = wstrBuf; } iArgCount++; } } // Print anything after the last special format instruction. fprintf(file, format, args[0], args[1], args[2], args[3], args[4], args[5], args[6], args[7], args[8], args[9], args[10]); fprintf(file, "\n"); } void __cdecl vDoOut(BOOL bToConsole, FILE* file, PCSTR Format, ...) { va_list Args; va_start(Args, Format); if (bToConsole) { OutputVaList(DEBUG_OUTPUT_NORMAL, Format, Args); } else { vfprintf(file, Format, Args); } va_end(Args); } /*********************************************************************************/ HRESULT StressLog::Dump(ULONG64 outProcLog, const char* fileName, struct IDebugDataSpaces* memCallBack) { ULONG64 g_hThisInst; BOOL bDoGcHist = (fileName == NULL); FILE* file = NULL; // Fetch the circular buffer bookkeeping data StressLog inProcLog; HRESULT hr = memCallBack->ReadVirtual(UL64_TO_CDA(outProcLog), &inProcLog, sizeof(StressLog), 0); if (hr != S_OK) { return hr; } if (inProcLog.logs.Load() == NULL || inProcLog.moduleOffset == 0) { ExtOut ( "----- No thread logs in the image: The stress log was probably not initialized correctly. -----\n"); return S_FALSE; } g_hThisInst = (ULONG64) inProcLog.moduleOffset; if (bDoGcHist) { GcHistClear(); } else { ExtOut("Writing to file: %s\n", fileName); ExtOut("Stress log in module 0x%p\n", SOS_PTR(g_hThisInst)); ExtOut("Stress log address = 0x%p\n", SOS_PTR(outProcLog)); } // Fetch the circular buffers for each thread into the 'logs' list ThreadStressLog* logs = 0; CLRDATA_ADDRESS outProcPtr = TO_CDADDR(inProcLog.logs.Load()); ThreadStressLog* inProcPtr; ThreadStressLog** logsPtr = &logs; int threadCtr = 0; unsigned __int64 lastTimeStamp = 0;// timestamp of last log entry while(outProcPtr != 0) { inProcPtr = new ThreadStressLog; hr = memCallBack->ReadVirtual(outProcPtr, inProcPtr, sizeof (*inProcPtr), 0); if (hr != S_OK || inProcPtr->chunkListHead == NULL) { delete inProcPtr; goto FREE_MEM; } CLRDATA_ADDRESS outProcListHead = TO_CDADDR(inProcPtr->chunkListHead); CLRDATA_ADDRESS outProcChunkPtr = outProcListHead; StressLogChunk ** chunksPtr = &inProcPtr->chunkListHead; StressLogChunk * inProcPrevChunkPtr = NULL; BOOL curPtrInitialized = FALSE; do { StressLogChunk * inProcChunkPtr = new StressLogChunk; hr = memCallBack->ReadVirtual (outProcChunkPtr, inProcChunkPtr, sizeof (*inProcChunkPtr), NULL); if (hr != S_OK || !inProcChunkPtr->IsValid ()) { if (hr != S_OK) ExtOut ("ReadVirtual failed with code hr = %x.\n", hr ); else ExtOut ("Invalid stress log chunk: %p", SOS_PTR(outProcChunkPtr)); // Now cleanup delete inProcChunkPtr; // if this is the first time through, inProcPtr->chunkListHead may still contain // the out-of-process value for the chunk pointer. NULL it to avoid AVs if (TO_CDADDR(inProcPtr->chunkListHead) == outProcListHead) inProcPtr->chunkListHead = NULL; delete inProcPtr; goto FREE_MEM; } if (!curPtrInitialized && outProcChunkPtr == TO_CDADDR(inProcPtr->curWriteChunk)) { inProcPtr->curPtr = (StressMsg *)((BYTE *)inProcChunkPtr + ((BYTE *)inProcPtr->curPtr - (BYTE *)inProcPtr->curWriteChunk)); inProcPtr->curWriteChunk = inProcChunkPtr; curPtrInitialized = TRUE; } outProcChunkPtr = TO_CDADDR(inProcChunkPtr->next); *chunksPtr = inProcChunkPtr; chunksPtr = &inProcChunkPtr->next; inProcChunkPtr->prev = inProcPrevChunkPtr; inProcPrevChunkPtr = inProcChunkPtr; if (outProcChunkPtr == outProcListHead) { inProcChunkPtr->next = inProcPtr->chunkListHead; inProcPtr->chunkListHead->prev = inProcChunkPtr; inProcPtr->chunkListTail = inProcChunkPtr; } } while (outProcChunkPtr != outProcListHead); if (!curPtrInitialized) { delete inProcPtr; goto FREE_MEM; } // TODO: fix on 64 bit inProcPtr->Activate (); if (inProcPtr->readPtr->timeStamp > lastTimeStamp) { lastTimeStamp = inProcPtr->readPtr->timeStamp; } outProcPtr = TO_CDADDR(inProcPtr->next); *logsPtr = inProcPtr; logsPtr = &inProcPtr->next; threadCtr++; } if (!bDoGcHist && ((fopen_s(&file, fileName, "w")) != 0)) { hr = GetLastError(); goto FREE_MEM; } hr = S_FALSE; // return false if there are no message to print to the log vDoOut(bDoGcHist, file, "STRESS LOG:\n" " facilitiesToLog = 0x%x\n" " levelToLog = %d\n" " MaxLogSizePerThread = 0x%x (%d)\n" " MaxTotalLogSize = 0x%x (%d)\n" " CurrentTotalLogChunk = %d\n" " ThreadsWithLogs = %d\n", inProcLog.facilitiesToLog, inProcLog.levelToLog, inProcLog.MaxSizePerThread, inProcLog.MaxSizePerThread, inProcLog.MaxSizeTotal, inProcLog.MaxSizeTotal, inProcLog.totalChunk.Load(), threadCtr); FILETIME endTime; double totalSecs; totalSecs = ((double) (lastTimeStamp - inProcLog.startTimeStamp)) / inProcLog.tickFrequency; toInt64(endTime) = toInt64(inProcLog.startTime) + ((__int64) (totalSecs * 1.0E7)); WCHAR timeBuff[64]; vDoOut(bDoGcHist, file, " Clock frequency = %5.3f GHz\n", inProcLog.tickFrequency / 1.0E9); vDoOut(bDoGcHist, file, " Start time %S\n", getTime(&inProcLog.startTime, timeBuff, 64)); vDoOut(bDoGcHist, file, " Last message time %S\n", getTime(&endTime, timeBuff, 64)); vDoOut(bDoGcHist, file, " Total elapsed time %5.3f sec\n", totalSecs); if (!bDoGcHist) { fprintf(file, "\nTHREAD TIMESTAMP FACILITY MESSAGE\n"); fprintf(file, " ID (sec from start)\n"); fprintf(file, "--------------------------------------------------------------------------------------\n"); } char format[257]; format[256] = format[0] = 0; void** args; unsigned msgCtr; msgCtr = 0; for (;;) { ThreadStressLog* latestLog = logs->FindLatestThreadLog(); if (IsInterrupt()) { vDoOut(bDoGcHist, file, "----- Interrupted by user -----\n"); break; } if (latestLog == 0) { break; } StressMsg* latestMsg = latestLog->readPtr; if (latestMsg->formatOffset != 0 && !latestLog->CompletedDump()) { TADDR taFmt = (latestMsg->formatOffset) + TO_TADDR(g_hThisInst); hr = memCallBack->ReadVirtual(TO_CDADDR(taFmt), format, 256, 0); if (hr != S_OK) strcpy_s(format, ARRAY_SIZE(format), "Could not read address of format string"); double deltaTime = ((double) (latestMsg->timeStamp - inProcLog.startTimeStamp)) / inProcLog.tickFrequency; if (bDoGcHist) { if (strcmp(format, ThreadStressLog::TaskSwitchMsg()) == 0) { latestLog->threadId = (unsigned)(size_t)latestMsg->args[0]; } GcHistAddLog(format, latestMsg); } else { if (strcmp(format, ThreadStressLog::TaskSwitchMsg()) == 0) { fprintf (file, "Task was switched from %x\n", (unsigned)(size_t)latestMsg->args[0]); latestLog->threadId = (unsigned)(size_t)latestMsg->args[0]; } else { args = latestMsg->args; formatOutput(memCallBack, file, format, (unsigned)latestLog->threadId, deltaTime, latestMsg->facility, args); } } msgCtr++; } latestLog->readPtr = latestLog->AdvanceRead(); if (latestLog->CompletedDump()) { latestLog->readPtr = NULL; if (!bDoGcHist) { fprintf(file, "------------ Last message from thread %llx -----------\n", latestLog->threadId); } } if (msgCtr % 64 == 0) { ExtOut("."); // to indicate progress if (msgCtr % (64*64) == 0) ExtOut("\n"); } } ExtOut("\n"); vDoOut(bDoGcHist, file, "---------------------------- %d total entries ------------------------------------\n", msgCtr); if (!bDoGcHist) { fclose(file); } FREE_MEM: // clean up the 'logs' list while (logs) { ThreadStressLog* temp = logs; logs = logs->next; delete temp; } return hr; }
-1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./src/tests/JIT/Directed/pinning/object-pin/CMakeLists.txt
project(object_pin_mirror) set(CMAKE_SHARED_LIBRARY_PREFIX "") add_library(mirror SHARED mirror.cpp) SET_TARGET_PROPERTIES(mirror PROPERTIES COMPILE_FLAGS "-c") # add the install targets (this "installs" the native file on Windows systems) install(TARGETS mirror DESTINATION bin) # This "installs" the native file on System V systems set_target_properties(mirror PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/mirror)
project(object_pin_mirror) set(CMAKE_SHARED_LIBRARY_PREFIX "") add_library(mirror SHARED mirror.cpp) SET_TARGET_PROPERTIES(mirror PROPERTIES COMPILE_FLAGS "-c") # add the install targets (this "installs" the native file on Windows systems) install(TARGETS mirror DESTINATION bin) # This "installs" the native file on System V systems set_target_properties(mirror PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/mirror)
-1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./src/tests/Interop/PrimitiveMarshalling/UIntPtr/CMakeLists.txt
project (UIntPtrNative) include ("${CLR_INTEROP_TEST_ROOT}/Interop.cmake") set(SOURCES UIntPtrNative.cpp ) # add the executable add_library (UIntPtrNative SHARED ${SOURCES}) target_link_libraries(UIntPtrNative ${LINK_LIBRARIES_ADDITIONAL}) # add the install targets install (TARGETS UIntPtrNative DESTINATION bin)
project (UIntPtrNative) include ("${CLR_INTEROP_TEST_ROOT}/Interop.cmake") set(SOURCES UIntPtrNative.cpp ) # add the executable add_library (UIntPtrNative SHARED ${SOURCES}) target_link_libraries(UIntPtrNative ${LINK_LIBRARIES_ADDITIONAL}) # add the install targets install (TARGETS UIntPtrNative DESTINATION bin)
-1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./docs/design/coreclr/jit/variabletracking.md
Reporting Variable Location =================== Table of Contents ----------------- [Debug Info](#debug-info) [Context](#context) [Variable Number](#variable-number) [Debug Code vs Optimized Code](#debug-code-vs-optimized-code) [siScope / psiScope Structures](#siscope--psiscope-structures) [Generating siScope / psiScope info](#Generating-siscope--psiscope-info) [Variable Live Range Structure](#variableliverange) [Generating Variable Live Range](#Generating-Variable-Live-Range) [Turning On Debug Info](#turning-on-debug-info) [Dumps and Debugging Support](#dumps-and-debugging-support) [Future Extensions and Enhancements](#future-extensions-and-enhancements) Debug Info -------- The debugger expects to receive an array of `VarResultInfo` which indicates: - IL variable number - Location - First native offset this location is valid. - First native offset this location is no longer valid There could be more than one per variable. There should be no overlap in terms of starting/ending native offsets for the same variable. Given a native offset, no two variables should share the same location. Context -------- We generate variables debug info while we generate the assembly intructions of the code. This is happening in `genCodeForBBList()` and `genFnProlog()`. If we are jitting release code, information about variable liveness will be included in `GenTree`s and `BasicBlock` when `genCodeForBBList` is reached. For each `BasicBlock`: - `bbLiveIn`: alive at the beginning - `bbLiveOut`: alive at the end Also each `GenTree` has a mask `gtFlags` indicating will include if a variable: - is being born - is becoming dead - is being spilled - has been spilled When generating each instruction, these flags are used to know if we need to start/end tracking a variable or update its location (which means in practice "end and start"). The blocks set of live variables are also used to start/end variables tracking information. Once the code is done we know the native offset of every assembly instruction, which is required for the debug info. While we are generating code we don't work with native offsets but `emitLocation`s that the `emitter` can generate, and once the code is done we can get the native offset corresponding to each of them. Variable Number -------- If we compile a method and inspect the generated IL we can see there is a "locals" section which holds the local variables of you C# code named with a Vxx pattern. When we report debug info to the debugger, we also have to report arguments and special arguments. Those are included at the beginning, so if we have three locals named as V00, V01 and V02, two arguments named as arg00, arg01 and one special argument named as sarg00, we would end with these variable numbers. Variable Name: arg00 arg01 sarg00 V00 V01 V02 Variable Number: 0 1 2 3 4 5 This correspond to the index in `Compiler::lvaTable` and `VariableLiveKeeeper::m_vlrLiveDsc`. If any change is applied to this, probably changes on `CordbJITILFrame::ILVariableToNative` are needed. Debug Code vs Optimized Code -------- Variables on debug code: - are alive during the whole method - live in a fixed location on the stack the whole method - `bbLiveIn` and `bbLiveOut` sets are empty - there is no flag for spill/unspill variables Variables on optimized code: - could change their location during code execution - could change their liveness during code execution siScope / psiScope Structures -------- #### siScope This struct is used to represent the ranges where a variable is alive during code generation. The struct has two fields to denote the native offset where a variable is valid: - `scStartLoc`: an emitLocation indicating from which instruction - `scEndLoc`: an emitLocation indicating to which instruction and more fields to indicate from which variable is this scope. It doesn't have information about the location of the variable, only the stack level of the variable in the case it was on the stack. #### psiScope This struct is used to represent the ranges where a variable is alive during the prolog. It holds the same information than siScope with the addition of a way of describing the location. It describes the variable location with two registers or a base register and the offset. Generating siScope / psiScope info -------- In order to use Scope Info for tracking variables location, the Flag `USING_SCOPE_INFO` in codegeninterface.h should be defined. #### For Prolog We open a `psiScope` for every parameter indicating its location at the beginning of the prolog. We then close them all at the end of the prolog. #### For Method Code We start generating code for every `BasicBlock`: - checking at the beginning of each one if there is a variable which does not have an open siScope and has a `varScope` with an starting IL offset lower or equal to the beginning of the block. - closing a siScope if a variable is last used. and we close all the open `siScope`s when the last block is reached. ##### Reporting Information Once the code for the block and each of the `BasicBlock` is done, `genSetScopeInfo()` is called. In the case of having the flag `USING_SCOPE_INFO`, All the `psiScope` list is iterated filling the debug info structure. Then the list of `siScope` created is iterated, using the `LclVarDsc` class to get the location of the variable, which would hold the description of the last position it has. This is not a problem for debug code because variables live in a fixed location the whole method. This is done in `CodeGen::genSetScopeInfoUsingsiScope()` Variable Live Range Structure -------- ### VariableLiveRange This class is used to represent an uninterruptible portion of variable live in one location. Owns two emitLocations indicating the first instructions that make it valid and invalid respectively. It also has the location of the variable in this range, which is stored at the moment of being created. To save space, we save the ending emitLocation only when the variable is being moved or its liveness change, which could happen many blocks after it was being born. This means a `VariableLiveRange` native offsets range could be longer than a `BasicBlock`. ### VariableLiveDescriptor This class is used to represent the liveness of a variable. It has a list of `VariableLiveRange`s and common operations to update the variable liveness. ### VariableLiveKeeper It holds an array of `VariableLiveDescriptor`s, one per variable that is being tracked. The index of each variable inside this array is the same as in `Compiler::lvaTable`. We could have `VariableLiveDescriptor` inside each LclVarDsc or an array of `VariableLiveDescriptor` inside `Compiler`, but the intention is to move code out of `Compiler` and not increase it. Generating Variable Live Range -------- In order to use Variable Live Range for tracking variables location, the Flag `USING_VARIABLE_LIVE_RANGE` in codegeninterface.h should be defined. ### For optimized code In `genCodeForBBList()`, we start generating code for each block dealing with some cases. On `BasicBlock` boundaries: - `BasicBlock`s beginning: - If a variable has an open `VariableLiveRange` but the location is different than what is expected to be in this block we update it (close the existing one and create another). This could happen because a variable could be in the `bbLiveOut` of a block and in the `BasicBlock`s `bbLiveOut` of the next one, but that doesn't mean that the execution thread would go from one immediately to the next one. For this kind of cases another block that moves the variable from its original to the expected position is created. This is handled in `LinearScan::recordVarLocationsAtStartOfBB(BasicBlock* bb)`. - If a variable doesn't have an open `VariableLiveRange` and is in `bbLiveIn`, we open one. This is done in `genUpdateLife` immediately after the the previous method is called. - If a variable has an open `VariableLiveRange` and is not in `bbLiveIn`, we close it. This is handled in `genUpdateLife` too. - last `BasicBlock`s ending: - We close every open `VariableLiveRange`. This is handled in `genCodeForBBList` when iterating the blocks, after the code for each block is done. For each instruction in `BasicBlock`: - a `VariableLiveRange` is opened for each variable that is being born and is not becoming dead at the same instruction Handled in `TreeLifeUpdater::UpdateLifeVar(GenTree* tree)`. - a `VariableLiveRange` is closed and another one opened for each variable that is being spilled, unspilled or copied and is not dying at the same instruction. Spills and copies are handled in `TreeLifeUpdater::UpdateLifeVar(GenTree* tree)`, unspills in `CodeGen::genUnspillRegIfNeeded(GenTree* tree)`. - a `VariableLiveRange` is closed for each variable that is dying. Handled in `TreeLifeUpdater::UpdateLifeVar(GenTree* tree)` We are not reporting the cases where a variable liveness is being modified and also becoming dead for some reasons: - We are using inclusive native offset for the beginning and exclusive native offset for the ending of a VariableLiveRange. This property is used when the debugger is looking the location of a variable in `FindNativeInfoInILVariableArray`. So a `VariableLiveRange` with exactly the same native offset for both would represent an empty live range and will not been found by the debugger. - Each C# line commonly end being more than one assembly instruction, if it exist on the assembly code. When you put a breakpoint in one C# line, you are stoping at the first of this group of instruction. A `VariableLiveRange` of just on assembly instruction seems unlikely to affect user debugging experience. - Less memory used to save VariabeLiveRanges - We are just changing the variable location. We are not changing the variable value and the "old" variable location is not being modified. So during that only assembly instruction, both `VariableLiveRange`s are valid, and we can increase the previous `VariableLiveRange` ending native offset a few bytes (we are not doing that now) and avoid creating a new `VariableLiveRange`. ### For debug code As no flag is being added `GenTree` that we can consume and no variable is included in `bbLiveIn` or `bbLiveOut`, we are currently reporting a variable as being born the same way is done for siScope info in `siBeginBlock` each time before `BasicBlock`s code is generated. The death of a variable is handled at the end of the last `BasicBlock` as variable live during the whole method. ### Reporting Information We just iterate throught all the `VariableLiveRange`s of all the variables that are tracked in `CodeGen::genSetScopeInfoUsingVariableRanges()`. Turning On Debug Info -------- There is a flag to turn on each of this ways of tracking variable debug info: - : for `siScope` and `psiScope` - : for `VariableLiveRange` In case only one of them is defined, that one will be sent to the debugger. If both are defined, Scope info is sent to the debugger. If none is defined, no info is sent to the debugger. Both flags can be found at the beginnig of `codegeninterface.h` Dumps and Debugging Support -------- #### Variable Live Ranges activity during a BasicBlock If we have the flag for `VariableLiveRange`s we would get on the jitdump a verbose message after each `BasicBlock` is done indicating the changes for each variable. For example: ``` //////////////////////////////////////// //////////////////////////////////////// Var History Dump for Block 44 Var 1: [esi [ (G_M8533_IG29,ins#2,ofs#3), NON_CLOSED_RANGE ]; ] Var 12: [ebp[-44] (1 slot) [ (G_M8533_IG29,ins#2,ofs#3), NON_CLOSED_RANGE ]; ] Var 17: [ebp[-56] (1 slot) [ (G_M8533_IG32,ins#2,ofs#7), (G_M8533_IG33,ins#10,ofs#32) ]; edx [ (G_M8533_IG33,ins#10,ofs#32), (G_M8533_IG33,ins#10,ofs#32) ]; ] //////////////////////////////////////// //////////////////////////////////////// ``` indicating that: - Variable with index number 1 is living in register esi since instruction group 29 and it is still living there at the end of the block. - Variable with index number 12 in a similar situation as 1 but living on the stack. - Variable with index number 17 was living on the stack since instruction group 32 and it was unspill on ig 33, which is the instruction group of this BasicBlock, and it isn't alive at the end of the block. - Those are the only variables that are being tracked in this method and were alive during part or the whole method. Each `VariableLiveRange` is dumped as: ``` Location [ starting_emit_location, ending_emit_location ) ``` and a list of them for a variable. Something to consider is that as we don't have the final native offsets while we are generating code, we are just dumping `emitLocation`s. #### All the Variable Live Ranges We also get all the `VariableLiveRange`s dumped for all the variables once the code for the whole method is done with the native offsets in place of `emitLocation`s. The information follows the same pattern as before. ``` //////////////////////////////////////// //////////////////////////////////////// PRINTING REGISTER LIVE RANGES: [esi [3C , 270 )esi [275 , 2BE )esi [2DA , 390 )] IL Var Num 12: [ebp[-44] (1 slot) [200 , 270 )ebp[-44] (1 slot) [275 , 28A )ebp[-44] (1 slot) [292 , 2BE )ebp[-44] (1 slot) [2DA , 401 )ebp[-44] (1 slot) [406 , 449 )ebp[-44] (1 slot) [465 , 468 )edi [468 , 468 )] IL Var Num 17: [ebp[-56] (1 slot) [331 , 373 )edx [373 , 373 )] //////////////////////////////////////// //////////////////////////////////////// ``` #### Debug Info sent to the debugger The information sent to the debugger is dumped to as: ``` *************** In genSetScopeInfo() VarLocInfo count is 95 *************** Variable debug info 3 live ranges 0( UNKNOWN) : From 00000000h to 0000001Ah, in ecx 1( UNKNOWN) : From 0000003Ch to 00000270h, in esi 1( UNKNOWN) : From 00000275h to 000002BEh, in esi ``` Future Extensions and Enhancements -------- There are many things we can do to improve optimized debugging: - Inline functions: If you crash inside one, you get no info of your variables. Currently we don't have the IL offset of them. And this is broadly used to improve code performance. - [Promoted structs](https://github.com/dotnet/runtime/issues/12369): There is no debug support for fields of promoted structs, we just report the struct itself. - [Reduce space used for VariableLiveDescriptor](https://github.com/dotnet/runtime/issues/12371): we are currently using a `jitstd::list`, which is a double linked list. We could use a simple single linked list with push_back(), head(), tail(), size() operations and an iterator and we would be saving memory.
Reporting Variable Location =================== Table of Contents ----------------- [Debug Info](#debug-info) [Context](#context) [Variable Number](#variable-number) [Debug Code vs Optimized Code](#debug-code-vs-optimized-code) [siScope / psiScope Structures](#siscope--psiscope-structures) [Generating siScope / psiScope info](#Generating-siscope--psiscope-info) [Variable Live Range Structure](#variableliverange) [Generating Variable Live Range](#Generating-Variable-Live-Range) [Turning On Debug Info](#turning-on-debug-info) [Dumps and Debugging Support](#dumps-and-debugging-support) [Future Extensions and Enhancements](#future-extensions-and-enhancements) Debug Info -------- The debugger expects to receive an array of `VarResultInfo` which indicates: - IL variable number - Location - First native offset this location is valid. - First native offset this location is no longer valid There could be more than one per variable. There should be no overlap in terms of starting/ending native offsets for the same variable. Given a native offset, no two variables should share the same location. Context -------- We generate variables debug info while we generate the assembly intructions of the code. This is happening in `genCodeForBBList()` and `genFnProlog()`. If we are jitting release code, information about variable liveness will be included in `GenTree`s and `BasicBlock` when `genCodeForBBList` is reached. For each `BasicBlock`: - `bbLiveIn`: alive at the beginning - `bbLiveOut`: alive at the end Also each `GenTree` has a mask `gtFlags` indicating will include if a variable: - is being born - is becoming dead - is being spilled - has been spilled When generating each instruction, these flags are used to know if we need to start/end tracking a variable or update its location (which means in practice "end and start"). The blocks set of live variables are also used to start/end variables tracking information. Once the code is done we know the native offset of every assembly instruction, which is required for the debug info. While we are generating code we don't work with native offsets but `emitLocation`s that the `emitter` can generate, and once the code is done we can get the native offset corresponding to each of them. Variable Number -------- If we compile a method and inspect the generated IL we can see there is a "locals" section which holds the local variables of you C# code named with a Vxx pattern. When we report debug info to the debugger, we also have to report arguments and special arguments. Those are included at the beginning, so if we have three locals named as V00, V01 and V02, two arguments named as arg00, arg01 and one special argument named as sarg00, we would end with these variable numbers. Variable Name: arg00 arg01 sarg00 V00 V01 V02 Variable Number: 0 1 2 3 4 5 This correspond to the index in `Compiler::lvaTable` and `VariableLiveKeeeper::m_vlrLiveDsc`. If any change is applied to this, probably changes on `CordbJITILFrame::ILVariableToNative` are needed. Debug Code vs Optimized Code -------- Variables on debug code: - are alive during the whole method - live in a fixed location on the stack the whole method - `bbLiveIn` and `bbLiveOut` sets are empty - there is no flag for spill/unspill variables Variables on optimized code: - could change their location during code execution - could change their liveness during code execution siScope / psiScope Structures -------- #### siScope This struct is used to represent the ranges where a variable is alive during code generation. The struct has two fields to denote the native offset where a variable is valid: - `scStartLoc`: an emitLocation indicating from which instruction - `scEndLoc`: an emitLocation indicating to which instruction and more fields to indicate from which variable is this scope. It doesn't have information about the location of the variable, only the stack level of the variable in the case it was on the stack. #### psiScope This struct is used to represent the ranges where a variable is alive during the prolog. It holds the same information than siScope with the addition of a way of describing the location. It describes the variable location with two registers or a base register and the offset. Generating siScope / psiScope info -------- In order to use Scope Info for tracking variables location, the Flag `USING_SCOPE_INFO` in codegeninterface.h should be defined. #### For Prolog We open a `psiScope` for every parameter indicating its location at the beginning of the prolog. We then close them all at the end of the prolog. #### For Method Code We start generating code for every `BasicBlock`: - checking at the beginning of each one if there is a variable which does not have an open siScope and has a `varScope` with an starting IL offset lower or equal to the beginning of the block. - closing a siScope if a variable is last used. and we close all the open `siScope`s when the last block is reached. ##### Reporting Information Once the code for the block and each of the `BasicBlock` is done, `genSetScopeInfo()` is called. In the case of having the flag `USING_SCOPE_INFO`, All the `psiScope` list is iterated filling the debug info structure. Then the list of `siScope` created is iterated, using the `LclVarDsc` class to get the location of the variable, which would hold the description of the last position it has. This is not a problem for debug code because variables live in a fixed location the whole method. This is done in `CodeGen::genSetScopeInfoUsingsiScope()` Variable Live Range Structure -------- ### VariableLiveRange This class is used to represent an uninterruptible portion of variable live in one location. Owns two emitLocations indicating the first instructions that make it valid and invalid respectively. It also has the location of the variable in this range, which is stored at the moment of being created. To save space, we save the ending emitLocation only when the variable is being moved or its liveness change, which could happen many blocks after it was being born. This means a `VariableLiveRange` native offsets range could be longer than a `BasicBlock`. ### VariableLiveDescriptor This class is used to represent the liveness of a variable. It has a list of `VariableLiveRange`s and common operations to update the variable liveness. ### VariableLiveKeeper It holds an array of `VariableLiveDescriptor`s, one per variable that is being tracked. The index of each variable inside this array is the same as in `Compiler::lvaTable`. We could have `VariableLiveDescriptor` inside each LclVarDsc or an array of `VariableLiveDescriptor` inside `Compiler`, but the intention is to move code out of `Compiler` and not increase it. Generating Variable Live Range -------- In order to use Variable Live Range for tracking variables location, the Flag `USING_VARIABLE_LIVE_RANGE` in codegeninterface.h should be defined. ### For optimized code In `genCodeForBBList()`, we start generating code for each block dealing with some cases. On `BasicBlock` boundaries: - `BasicBlock`s beginning: - If a variable has an open `VariableLiveRange` but the location is different than what is expected to be in this block we update it (close the existing one and create another). This could happen because a variable could be in the `bbLiveOut` of a block and in the `BasicBlock`s `bbLiveOut` of the next one, but that doesn't mean that the execution thread would go from one immediately to the next one. For this kind of cases another block that moves the variable from its original to the expected position is created. This is handled in `LinearScan::recordVarLocationsAtStartOfBB(BasicBlock* bb)`. - If a variable doesn't have an open `VariableLiveRange` and is in `bbLiveIn`, we open one. This is done in `genUpdateLife` immediately after the the previous method is called. - If a variable has an open `VariableLiveRange` and is not in `bbLiveIn`, we close it. This is handled in `genUpdateLife` too. - last `BasicBlock`s ending: - We close every open `VariableLiveRange`. This is handled in `genCodeForBBList` when iterating the blocks, after the code for each block is done. For each instruction in `BasicBlock`: - a `VariableLiveRange` is opened for each variable that is being born and is not becoming dead at the same instruction Handled in `TreeLifeUpdater::UpdateLifeVar(GenTree* tree)`. - a `VariableLiveRange` is closed and another one opened for each variable that is being spilled, unspilled or copied and is not dying at the same instruction. Spills and copies are handled in `TreeLifeUpdater::UpdateLifeVar(GenTree* tree)`, unspills in `CodeGen::genUnspillRegIfNeeded(GenTree* tree)`. - a `VariableLiveRange` is closed for each variable that is dying. Handled in `TreeLifeUpdater::UpdateLifeVar(GenTree* tree)` We are not reporting the cases where a variable liveness is being modified and also becoming dead for some reasons: - We are using inclusive native offset for the beginning and exclusive native offset for the ending of a VariableLiveRange. This property is used when the debugger is looking the location of a variable in `FindNativeInfoInILVariableArray`. So a `VariableLiveRange` with exactly the same native offset for both would represent an empty live range and will not been found by the debugger. - Each C# line commonly end being more than one assembly instruction, if it exist on the assembly code. When you put a breakpoint in one C# line, you are stoping at the first of this group of instruction. A `VariableLiveRange` of just on assembly instruction seems unlikely to affect user debugging experience. - Less memory used to save VariabeLiveRanges - We are just changing the variable location. We are not changing the variable value and the "old" variable location is not being modified. So during that only assembly instruction, both `VariableLiveRange`s are valid, and we can increase the previous `VariableLiveRange` ending native offset a few bytes (we are not doing that now) and avoid creating a new `VariableLiveRange`. ### For debug code As no flag is being added `GenTree` that we can consume and no variable is included in `bbLiveIn` or `bbLiveOut`, we are currently reporting a variable as being born the same way is done for siScope info in `siBeginBlock` each time before `BasicBlock`s code is generated. The death of a variable is handled at the end of the last `BasicBlock` as variable live during the whole method. ### Reporting Information We just iterate throught all the `VariableLiveRange`s of all the variables that are tracked in `CodeGen::genSetScopeInfoUsingVariableRanges()`. Turning On Debug Info -------- There is a flag to turn on each of this ways of tracking variable debug info: - : for `siScope` and `psiScope` - : for `VariableLiveRange` In case only one of them is defined, that one will be sent to the debugger. If both are defined, Scope info is sent to the debugger. If none is defined, no info is sent to the debugger. Both flags can be found at the beginnig of `codegeninterface.h` Dumps and Debugging Support -------- #### Variable Live Ranges activity during a BasicBlock If we have the flag for `VariableLiveRange`s we would get on the jitdump a verbose message after each `BasicBlock` is done indicating the changes for each variable. For example: ``` //////////////////////////////////////// //////////////////////////////////////// Var History Dump for Block 44 Var 1: [esi [ (G_M8533_IG29,ins#2,ofs#3), NON_CLOSED_RANGE ]; ] Var 12: [ebp[-44] (1 slot) [ (G_M8533_IG29,ins#2,ofs#3), NON_CLOSED_RANGE ]; ] Var 17: [ebp[-56] (1 slot) [ (G_M8533_IG32,ins#2,ofs#7), (G_M8533_IG33,ins#10,ofs#32) ]; edx [ (G_M8533_IG33,ins#10,ofs#32), (G_M8533_IG33,ins#10,ofs#32) ]; ] //////////////////////////////////////// //////////////////////////////////////// ``` indicating that: - Variable with index number 1 is living in register esi since instruction group 29 and it is still living there at the end of the block. - Variable with index number 12 in a similar situation as 1 but living on the stack. - Variable with index number 17 was living on the stack since instruction group 32 and it was unspill on ig 33, which is the instruction group of this BasicBlock, and it isn't alive at the end of the block. - Those are the only variables that are being tracked in this method and were alive during part or the whole method. Each `VariableLiveRange` is dumped as: ``` Location [ starting_emit_location, ending_emit_location ) ``` and a list of them for a variable. Something to consider is that as we don't have the final native offsets while we are generating code, we are just dumping `emitLocation`s. #### All the Variable Live Ranges We also get all the `VariableLiveRange`s dumped for all the variables once the code for the whole method is done with the native offsets in place of `emitLocation`s. The information follows the same pattern as before. ``` //////////////////////////////////////// //////////////////////////////////////// PRINTING REGISTER LIVE RANGES: [esi [3C , 270 )esi [275 , 2BE )esi [2DA , 390 )] IL Var Num 12: [ebp[-44] (1 slot) [200 , 270 )ebp[-44] (1 slot) [275 , 28A )ebp[-44] (1 slot) [292 , 2BE )ebp[-44] (1 slot) [2DA , 401 )ebp[-44] (1 slot) [406 , 449 )ebp[-44] (1 slot) [465 , 468 )edi [468 , 468 )] IL Var Num 17: [ebp[-56] (1 slot) [331 , 373 )edx [373 , 373 )] //////////////////////////////////////// //////////////////////////////////////// ``` #### Debug Info sent to the debugger The information sent to the debugger is dumped to as: ``` *************** In genSetScopeInfo() VarLocInfo count is 95 *************** Variable debug info 3 live ranges 0( UNKNOWN) : From 00000000h to 0000001Ah, in ecx 1( UNKNOWN) : From 0000003Ch to 00000270h, in esi 1( UNKNOWN) : From 00000275h to 000002BEh, in esi ``` Future Extensions and Enhancements -------- There are many things we can do to improve optimized debugging: - Inline functions: If you crash inside one, you get no info of your variables. Currently we don't have the IL offset of them. And this is broadly used to improve code performance. - [Promoted structs](https://github.com/dotnet/runtime/issues/12369): There is no debug support for fields of promoted structs, we just report the struct itself. - [Reduce space used for VariableLiveDescriptor](https://github.com/dotnet/runtime/issues/12371): we are currently using a `jitstd::list`, which is a double linked list. We could use a simple single linked list with push_back(), head(), tail(), size() operations and an iterator and we would be saving memory.
-1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./src/coreclr/pal/tests/palsuite/c_runtime/swscanf/test14/test14.cpp
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /*============================================================================ ** ** Source: test14.c ** ** Purpose: Tests swscanf with floats (exponential notation, lowercase) ** ** **==========================================================================*/ #include <palsuite.h> #include "../swscanf.h" PALTEST(c_runtime_swscanf_test14_paltest_swscanf_test14, "c_runtime/swscanf/test14/paltest_swscanf_test14") { if (PAL_Initialize(argc, argv)) { return FAIL; } DoFloatTest(convert("123.0"), convert("%e"), 123.0f); DoFloatTest(convert("123.0"), convert("%2e"), 12.0f); DoFloatTest(convert("10E1"), convert("%e"), 100.0f); DoFloatTest(convert("-12.01e-2"), convert("%e"), -0.1201f); DoFloatTest(convert("+12.01e-2"), convert("%e"), 0.1201f); DoFloatTest(convert("-12.01e+2"), convert("%e"), -1201.0f); DoFloatTest(convert("+12.01e+2"), convert("%e"), 1201.0f); DoFloatTest(convert("1234567890.0123456789f"), convert("%e"), 1234567936); PAL_Terminate(); return PASS; }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /*============================================================================ ** ** Source: test14.c ** ** Purpose: Tests swscanf with floats (exponential notation, lowercase) ** ** **==========================================================================*/ #include <palsuite.h> #include "../swscanf.h" PALTEST(c_runtime_swscanf_test14_paltest_swscanf_test14, "c_runtime/swscanf/test14/paltest_swscanf_test14") { if (PAL_Initialize(argc, argv)) { return FAIL; } DoFloatTest(convert("123.0"), convert("%e"), 123.0f); DoFloatTest(convert("123.0"), convert("%2e"), 12.0f); DoFloatTest(convert("10E1"), convert("%e"), 100.0f); DoFloatTest(convert("-12.01e-2"), convert("%e"), -0.1201f); DoFloatTest(convert("+12.01e-2"), convert("%e"), 0.1201f); DoFloatTest(convert("-12.01e+2"), convert("%e"), -1201.0f); DoFloatTest(convert("+12.01e+2"), convert("%e"), 1201.0f); DoFloatTest(convert("1234567890.0123456789f"), convert("%e"), 1234567936); PAL_Terminate(); return PASS; }
-1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./src/native/corehost/hostmisc/longfile.windows.cpp
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. //The logic in this file was ported from https://github.com/dotnet/coreclr/blob/54891e0650e69f08832f75a40dc102efc6115d38/src/utilcode/longfilepathwrappers.cpp //Please reflect any change here into the above file too! #include "pal.h" #include "trace.h" #include "utils.h" #include "longfile.h" const pal::char_t LongFile::DirectorySeparatorChar = _X('\\'); const pal::char_t LongFile::AltDirectorySeparatorChar = _X('/'); const pal::char_t LongFile::VolumeSeparatorChar = _X(':'); const pal::string_t LongFile::ExtendedPrefix = _X("\\\\?\\"); const pal::string_t LongFile::DevicePathPrefix = _X("\\\\.\\"); const pal::string_t LongFile::UNCExtendedPathPrefix = _X("\\\\?\\UNC\\"); const pal::string_t LongFile::UNCPathPrefix = _X("\\\\"); bool LongFile::IsNormalized(const pal::string_t& path) { return path.empty() || LongFile::IsDevice(path) || LongFile::IsExtended(path) || LongFile::IsUNCExtended(path); } bool ShouldNormalizeWorker(const pal::string_t& path) { if (LongFile::IsNormalized(path)) return false; if (!LongFile::IsPathNotFullyQualified(path) && path.size() < MAX_PATH) return false; return true; } //For longpath names on windows, if the paths are normalized they are always prefixed with //extended syntax, Windows does not do any more normalizations on this string and uses it as is //So we should ensure that there are NO adjacent DirectorySeparatorChar bool AssertRepeatingDirSeparator(const pal::string_t& path) { if (path.empty()) return true; pal::string_t path_to_check = path; if (LongFile::IsDevice(path)) { path_to_check.erase(0, LongFile::DevicePathPrefix.length()); } else if (LongFile::IsExtended(path)) { path_to_check.erase(0, LongFile::ExtendedPrefix.length()); } else if (LongFile::IsUNCExtended(path)) { path_to_check.erase(0, LongFile::UNCExtendedPathPrefix.length()); } else if (path_to_check.compare(0, LongFile::UNCPathPrefix.length(), LongFile::UNCPathPrefix) == 0) { path_to_check.erase(0, LongFile::UNCPathPrefix.length()); } pal::string_t dirSeparator; dirSeparator.push_back(LongFile::DirectorySeparatorChar); dirSeparator.push_back(LongFile::DirectorySeparatorChar); assert(path_to_check.find(dirSeparator) == pal::string_t::npos); pal::string_t altDirSeparator; altDirSeparator.push_back(LongFile::AltDirectorySeparatorChar); altDirSeparator.push_back(LongFile::AltDirectorySeparatorChar); assert(path_to_check.find(altDirSeparator) == pal::string_t::npos); pal::string_t combDirSeparator1; combDirSeparator1.push_back(LongFile::DirectorySeparatorChar); combDirSeparator1.push_back(LongFile::AltDirectorySeparatorChar); assert(path_to_check.find(combDirSeparator1) == pal::string_t::npos); pal::string_t combDirSeparator2; combDirSeparator2.push_back(LongFile::AltDirectorySeparatorChar); combDirSeparator2.push_back(LongFile::DirectorySeparatorChar); assert(path_to_check.find(combDirSeparator2) == pal::string_t::npos); assert(path_to_check.find(_X("..")) == pal::string_t::npos); return true; } bool LongFile::ShouldNormalize(const pal::string_t& path) { bool retval = ShouldNormalizeWorker(path); assert(retval || AssertRepeatingDirSeparator(path)); return retval; } bool LongFile::IsExtended(const pal::string_t& path) { return path.compare(0, ExtendedPrefix.length(), ExtendedPrefix) == 0; } bool LongFile::IsUNCExtended(const pal::string_t& path) { return path.compare(0, UNCExtendedPathPrefix.length(), UNCExtendedPathPrefix) == 0; } bool LongFile::IsDevice(const pal::string_t& path) { return path.compare(0, DevicePathPrefix.length(), DevicePathPrefix) == 0; } // Relative here means it could be relative to current directory on the relevant drive // NOTE: Relative segments ( \..\) are not considered relative // Returns true if the path specified is relative to the current drive or working directory. // Returns false if the path is fixed to a specific drive or UNC path. This method does no // validation of the path (URIs will be returned as relative as a result). // Handles paths that use the alternate directory separator. It is a frequent mistake to // assume that rooted paths (Path.IsPathRooted) are not relative. This isn't the case. bool LongFile::IsPathNotFullyQualified(const pal::string_t& path) { if (path.length() < 2) { return true; // It isn't fixed, it must be relative. There is no way to specify a fixed path with one character (or less). } if (IsDirectorySeparator(path[0])) { return !IsDirectorySeparator(path[1]); // There is no valid way to specify a relative path with two initial slashes } return (path.length() < 3) //The only way to specify a fixed path that doesn't begin with two slashes is the drive, colon, slash format- "i.e. C:\" || (path[1] != VolumeSeparatorChar) || !IsDirectorySeparator(path[2]); } bool LongFile::ContainsDirectorySeparator(const pal::string_t & path) { return path.find(DirectorySeparatorChar) != pal::string_t::npos || path.find(AltDirectorySeparatorChar) != pal::string_t::npos; } bool LongFile::IsDirectorySeparator(const pal::char_t c) { return c == DirectorySeparatorChar || c == AltDirectorySeparatorChar; }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. //The logic in this file was ported from https://github.com/dotnet/coreclr/blob/54891e0650e69f08832f75a40dc102efc6115d38/src/utilcode/longfilepathwrappers.cpp //Please reflect any change here into the above file too! #include "pal.h" #include "trace.h" #include "utils.h" #include "longfile.h" const pal::char_t LongFile::DirectorySeparatorChar = _X('\\'); const pal::char_t LongFile::AltDirectorySeparatorChar = _X('/'); const pal::char_t LongFile::VolumeSeparatorChar = _X(':'); const pal::string_t LongFile::ExtendedPrefix = _X("\\\\?\\"); const pal::string_t LongFile::DevicePathPrefix = _X("\\\\.\\"); const pal::string_t LongFile::UNCExtendedPathPrefix = _X("\\\\?\\UNC\\"); const pal::string_t LongFile::UNCPathPrefix = _X("\\\\"); bool LongFile::IsNormalized(const pal::string_t& path) { return path.empty() || LongFile::IsDevice(path) || LongFile::IsExtended(path) || LongFile::IsUNCExtended(path); } bool ShouldNormalizeWorker(const pal::string_t& path) { if (LongFile::IsNormalized(path)) return false; if (!LongFile::IsPathNotFullyQualified(path) && path.size() < MAX_PATH) return false; return true; } //For longpath names on windows, if the paths are normalized they are always prefixed with //extended syntax, Windows does not do any more normalizations on this string and uses it as is //So we should ensure that there are NO adjacent DirectorySeparatorChar bool AssertRepeatingDirSeparator(const pal::string_t& path) { if (path.empty()) return true; pal::string_t path_to_check = path; if (LongFile::IsDevice(path)) { path_to_check.erase(0, LongFile::DevicePathPrefix.length()); } else if (LongFile::IsExtended(path)) { path_to_check.erase(0, LongFile::ExtendedPrefix.length()); } else if (LongFile::IsUNCExtended(path)) { path_to_check.erase(0, LongFile::UNCExtendedPathPrefix.length()); } else if (path_to_check.compare(0, LongFile::UNCPathPrefix.length(), LongFile::UNCPathPrefix) == 0) { path_to_check.erase(0, LongFile::UNCPathPrefix.length()); } pal::string_t dirSeparator; dirSeparator.push_back(LongFile::DirectorySeparatorChar); dirSeparator.push_back(LongFile::DirectorySeparatorChar); assert(path_to_check.find(dirSeparator) == pal::string_t::npos); pal::string_t altDirSeparator; altDirSeparator.push_back(LongFile::AltDirectorySeparatorChar); altDirSeparator.push_back(LongFile::AltDirectorySeparatorChar); assert(path_to_check.find(altDirSeparator) == pal::string_t::npos); pal::string_t combDirSeparator1; combDirSeparator1.push_back(LongFile::DirectorySeparatorChar); combDirSeparator1.push_back(LongFile::AltDirectorySeparatorChar); assert(path_to_check.find(combDirSeparator1) == pal::string_t::npos); pal::string_t combDirSeparator2; combDirSeparator2.push_back(LongFile::AltDirectorySeparatorChar); combDirSeparator2.push_back(LongFile::DirectorySeparatorChar); assert(path_to_check.find(combDirSeparator2) == pal::string_t::npos); assert(path_to_check.find(_X("..")) == pal::string_t::npos); return true; } bool LongFile::ShouldNormalize(const pal::string_t& path) { bool retval = ShouldNormalizeWorker(path); assert(retval || AssertRepeatingDirSeparator(path)); return retval; } bool LongFile::IsExtended(const pal::string_t& path) { return path.compare(0, ExtendedPrefix.length(), ExtendedPrefix) == 0; } bool LongFile::IsUNCExtended(const pal::string_t& path) { return path.compare(0, UNCExtendedPathPrefix.length(), UNCExtendedPathPrefix) == 0; } bool LongFile::IsDevice(const pal::string_t& path) { return path.compare(0, DevicePathPrefix.length(), DevicePathPrefix) == 0; } // Relative here means it could be relative to current directory on the relevant drive // NOTE: Relative segments ( \..\) are not considered relative // Returns true if the path specified is relative to the current drive or working directory. // Returns false if the path is fixed to a specific drive or UNC path. This method does no // validation of the path (URIs will be returned as relative as a result). // Handles paths that use the alternate directory separator. It is a frequent mistake to // assume that rooted paths (Path.IsPathRooted) are not relative. This isn't the case. bool LongFile::IsPathNotFullyQualified(const pal::string_t& path) { if (path.length() < 2) { return true; // It isn't fixed, it must be relative. There is no way to specify a fixed path with one character (or less). } if (IsDirectorySeparator(path[0])) { return !IsDirectorySeparator(path[1]); // There is no valid way to specify a relative path with two initial slashes } return (path.length() < 3) //The only way to specify a fixed path that doesn't begin with two slashes is the drive, colon, slash format- "i.e. C:\" || (path[1] != VolumeSeparatorChar) || !IsDirectorySeparator(path[2]); } bool LongFile::ContainsDirectorySeparator(const pal::string_t & path) { return path.find(DirectorySeparatorChar) != pal::string_t::npos || path.find(AltDirectorySeparatorChar) != pal::string_t::npos; } bool LongFile::IsDirectorySeparator(const pal::char_t c) { return c == DirectorySeparatorChar || c == AltDirectorySeparatorChar; }
-1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./src/tests/JIT/jit64/mcc/interop/native_i8c.cpp
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. #include <stdarg.h> #include "native.h" MCC_API VType8 sum(double count1, int count2, __int64 count3, float count4, short count5, double count6, ...) { int count = (int)count1 + (int)count2 + (int)count3 + (int)count4 + (int)count5 + (int)count6; VType8 res; va_list args; // zero out res res.reset(); // initialize variable arguments. va_start(args, count6); for (int i = 0; i < count; ++i) { VType8 val = va_arg(args, VType8); res.add(val); } // reset variable arguments. va_end(args); return res; }
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. #include <stdarg.h> #include "native.h" MCC_API VType8 sum(double count1, int count2, __int64 count3, float count4, short count5, double count6, ...) { int count = (int)count1 + (int)count2 + (int)count3 + (int)count4 + (int)count5 + (int)count6; VType8 res; va_list args; // zero out res res.reset(); // initialize variable arguments. va_start(args, count6); for (int i = 0; i < count; ++i) { VType8 val = va_arg(args, VType8); res.add(val); } // reset variable arguments. va_end(args); return res; }
-1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./eng/docker/Readme.md
# Docker Build Infrastructure Provides reusable docker build infrastructure for the dotnet/runtime repo. ## libraries-sdk Dockerfiles The `libraries-sdk` Dockerfiles can be used to build dotnet sdk docker images that contain the current libraries built from source. These images can be used to build dockerized dotnet services that target the current libraries. Currently, debian and windows nanoserver sdk's are supported. ### Building the images To build the linux image locally ```powershell PS> .\build-docker-sdk.ps1 -t dotnet-linux-sdk-current ``` and for Windows: ```powershell PS> .\build-docker-sdk.ps1 -w -t dotnet-nanoserver-sdk-current ``` To use Debug builds: ```powershell PS> .\build-docker-sdk.ps1 -c Debug -t dotnet-sdk-current ```
# Docker Build Infrastructure Provides reusable docker build infrastructure for the dotnet/runtime repo. ## libraries-sdk Dockerfiles The `libraries-sdk` Dockerfiles can be used to build dotnet sdk docker images that contain the current libraries built from source. These images can be used to build dockerized dotnet services that target the current libraries. Currently, debian and windows nanoserver sdk's are supported. ### Building the images To build the linux image locally ```powershell PS> .\build-docker-sdk.ps1 -t dotnet-linux-sdk-current ``` and for Windows: ```powershell PS> .\build-docker-sdk.ps1 -w -t dotnet-nanoserver-sdk-current ``` To use Debug builds: ```powershell PS> .\build-docker-sdk.ps1 -c Debug -t dotnet-sdk-current ```
-1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./src/coreclr/pal/tests/palsuite/debug_api/OutputDebugStringW/test1/test1.cpp
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /*============================================================= ** ** Source: test1.c ** ** Purpose: Intended to be the child process of a debugger. Calls ** OutputDebugStringW once with a normal string, once with an empty ** string ** ** **============================================================*/ #define UNICODE #include <palsuite.h> PALTEST(debug_api_OutputDebugStringW_test1_paltest_outputdebugstringw_test1, "debug_api/OutputDebugStringW/test1/paltest_outputdebugstringw_test1") { WCHAR *str1; WCHAR *str2; if(0 != (PAL_Initialize(argc, argv))) { return FAIL; } str1 = convert("Foo!"); str2 = convert(""); OutputDebugStringW(str1); OutputDebugStringW(str2); free(str1); free(str2); PAL_Terminate(); return PASS; }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /*============================================================= ** ** Source: test1.c ** ** Purpose: Intended to be the child process of a debugger. Calls ** OutputDebugStringW once with a normal string, once with an empty ** string ** ** **============================================================*/ #define UNICODE #include <palsuite.h> PALTEST(debug_api_OutputDebugStringW_test1_paltest_outputdebugstringw_test1, "debug_api/OutputDebugStringW/test1/paltest_outputdebugstringw_test1") { WCHAR *str1; WCHAR *str2; if(0 != (PAL_Initialize(argc, argv))) { return FAIL; } str1 = convert("Foo!"); str2 = convert(""); OutputDebugStringW(str1); OutputDebugStringW(str2); free(str1); free(str2); PAL_Terminate(); return PASS; }
-1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./src/coreclr/vm/disassembler.cpp
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. #include "common.h" #include "disassembler.h" #include "dllimport.h" #if USE_DISASSEMBLER // TODO: Which contracts should be used where? Currently, everything is using LIMITED_METHOD_CONTRACT. #if USE_COREDISTOOLS_DISASSEMBLER HMODULE Disassembler::s_libraryHandle = nullptr; InitDisasm_t *Disassembler::External_InitDisasm = nullptr; FinishDisasm_t *Disassembler::External_FinishDisasm = nullptr; DisasmInstruction_t *Disassembler::External_DisasmInstruction = nullptr; #endif // USE_COREDISTOOLS_DISASSEMBLER Disassembler::ExternalDisassembler *Disassembler::s_availableExternalDisassembler = nullptr; #if defined(TARGET_AMD64) || defined(TARGET_X86) // static bool Disassembler::IsRexPrefix(UINT8 potentialRexByte) { LIMITED_METHOD_CONTRACT; #ifdef TARGET_AMD64 return (potentialRexByte & 0xf0) == REX_PREFIX_BASE; #else // !TARGET_AMD64 return false; #endif // TARGET_AMD64 } // static UINT8 Disassembler::DecodeModFromModRm(UINT8 modRm) { LIMITED_METHOD_CONTRACT; return modRm >> 6; } // static UINT8 Disassembler::DecodeRegOrOpCodeFromModRm(UINT8 modRm) { LIMITED_METHOD_CONTRACT; return (modRm >> 3) & 0x7; } // static UINT8 Disassembler::DecodeRmFromModRm(UINT8 modRm) { LIMITED_METHOD_CONTRACT; return modRm & 0x7; } #endif // defined(TARGET_AMD64) || defined(TARGET_X86) // static bool Disassembler::IsAvailable() { LIMITED_METHOD_CONTRACT; #if USE_COREDISTOOLS_DISASSEMBLER return s_libraryHandle != nullptr; #else // !USE_COREDISTOOLS_DISASSEMBLER return true; #endif // USE_COREDISTOOLS_DISASSEMBLER } #if _DEBUG #define DISPLAYERROR(FMT, ...) wprintf(FMT, __VA_ARGS__) #else #define DISPLAYERROR(FMT, ...) (void)0 #endif namespace { HMODULE LoadCoreDisToolsModule(PathString &libPath) { LIMITED_METHOD_CONTRACT; LPCWSTR sysDirectory = GetInternalSystemDirectory(); LPCWSTR libFileName = MAKEDLLNAME(W("coredistools")); // Look for the coredistools module next to the clr binary libPath.AppendPrintf(W("%s%s"), sysDirectory, libFileName); LPCWSTR libraryName = libPath.GetUnicode(); return CLRLoadLibrary(libraryName); } } void Disassembler::StaticInitialize() { LIMITED_METHOD_CONTRACT; #if USE_COREDISTOOLS_DISASSEMBLER _ASSERTE(!IsAvailable()); PathString libPath; HMODULE libraryHandle = LoadCoreDisToolsModule(libPath); if (libraryHandle == nullptr) return; External_InitDisasm = reinterpret_cast<decltype(External_InitDisasm)>(GetProcAddress(libraryHandle, "InitDisasm")); if (External_InitDisasm == nullptr) { DISPLAYERROR( W("GetProcAddress failed for library '%s', function 'InitDisasm': error %u\n"), libPath.GetUnicode(), GetLastError()); return; } External_DisasmInstruction = reinterpret_cast<decltype(External_DisasmInstruction)>(GetProcAddress(libraryHandle, "DisasmInstruction")); if (External_DisasmInstruction == nullptr) { DISPLAYERROR( W("GetProcAddress failed for library '%s', function 'DisasmInstruction': error %u\n"), libPath.GetUnicode(), GetLastError()); return; } External_FinishDisasm = reinterpret_cast<decltype(External_FinishDisasm)>(GetProcAddress(libraryHandle, "FinishDisasm")); if (External_FinishDisasm == nullptr) { DISPLAYERROR( W("GetProcAddress failed for library '%s', function 'FinishDisasm': error %u\n"), libPath.GetUnicode(), GetLastError()); return; } // Set this last to indicate successful load of the library and all exports s_libraryHandle = libraryHandle; _ASSERTE(IsAvailable()); #endif // USE_COREDISTOOLS_DISASSEMBLER } // static void Disassembler::StaticClose() { LIMITED_METHOD_CONTRACT; if (!IsAvailable()) { return; } #if USE_COREDISTOOLS_DISASSEMBLER CLRFreeLibrary(s_libraryHandle); s_libraryHandle = nullptr; #endif } Disassembler::Disassembler() { LIMITED_METHOD_CONTRACT; _ASSERTE(IsAvailable()); // TODO: Is it ok to save and reuse an instance of the LLVM-based disassembler? It may later be used from a different // thread, and it may be deleted from a different thread than the one from which it was created. // Try to get an external disassembler that is already available for use before creating one ExternalDisassembler *externalDisassembler = FastInterlockExchangePointer(&s_availableExternalDisassembler, static_cast<ExternalDisassembler *>(nullptr)); if (externalDisassembler == nullptr) { #if USE_COREDISTOOLS_DISASSEMBLER // First parameter: // - Empty string for the current architecture // - A string of the form "x86_64-pc-win32" externalDisassembler = External_InitDisasm(Target_Host); #elif USE_MSVC_DISASSEMBLER #ifdef TARGET_X86 externalDisassembler = ExternalDisassembler::PdisNew(ExternalDisassembler::distX86); #elif defined(TARGET_AMD64) externalDisassembler = ExternalDisassembler::PdisNew(ExternalDisassembler::distX8664); #endif // defined(TARGET_X86) || defined(TARGET_AMD64) #endif // USE_COREDISTOOLS_DISASSEMBLER || USE_MSVC_DISASSEMBLER } _ASSERTE(externalDisassembler != nullptr); m_externalDisassembler = externalDisassembler; } Disassembler::~Disassembler() { LIMITED_METHOD_CONTRACT; _ASSERTE(IsAvailable()); // Save the external disassembler for future use. We only save one instance, so delete a previously saved one. ExternalDisassembler *externalDisassemblerToDelete = FastInterlockExchangePointer(&s_availableExternalDisassembler, m_externalDisassembler); if (externalDisassemblerToDelete == nullptr) { return; } #if USE_COREDISTOOLS_DISASSEMBLER External_FinishDisasm(externalDisassemblerToDelete); #elif USE_MSVC_DISASSEMBLER delete externalDisassemblerToDelete; #endif // USE_COREDISTOOLS_DISASSEMBLER || USE_MSVC_DISASSEMBLER } SIZE_T Disassembler::DisassembleInstruction(const UINT8 *code, SIZE_T codeLength, InstructionType *instructionTypeRef) const { LIMITED_METHOD_CONTRACT; _ASSERTE(IsAvailable()); #if USE_COREDISTOOLS_DISASSEMBLER SIZE_T instructionLength = External_DisasmInstruction(m_externalDisassembler, code, code, codeLength); #elif USE_MSVC_DISASSEMBLER SIZE_T instructionLength = m_externalDisassembler->CbDisassemble(reinterpret_cast<ExternalDisassembler::ADDR>(code), code, codeLength); #endif // USE_COREDISTOOLS_DISASSEMBLER || USE_MSVC_DISASSEMBLER _ASSERTE(instructionLength <= codeLength); if (instructionTypeRef != nullptr) { if (instructionLength == 0) { *instructionTypeRef = InstructionType::Unknown; } else { #if USE_COREDISTOOLS_DISASSEMBLER *instructionTypeRef = DetermineInstructionType(code, instructionLength); #elif USE_MSVC_DISASSEMBLER *instructionTypeRef = DetermineInstructionType(m_externalDisassembler->Trmt()); #endif // USE_COREDISTOOLS_DISASSEMBLER || USE_MSVC_DISASSEMBLER } } return instructionLength; } // static InstructionType Disassembler::DetermineInstructionType( #if USE_COREDISTOOLS_DISASSEMBLER const UINT8 *instructionCode, SIZE_T instructionCodeLength #elif USE_MSVC_DISASSEMBLER ExternalDisassembler::TRMT terminationType #endif // USE_COREDISTOOLS_DISASSEMBLER || USE_MSVC_DISASSEMBLER ) { LIMITED_METHOD_CONTRACT; #if USE_COREDISTOOLS_DISASSEMBLER _ASSERTE(instructionCodeLength != 0); SIZE_T i = 0; if (Disassembler::IsRexPrefix(instructionCode[i])) { ++i; } switch (instructionCode[i]) { case 0xe8: // call near rel #ifdef TARGET_X86 case 0x9a: // call far ptr #endif // TARGET_X86 return InstructionType::Call_DirectUnconditional; case 0xff: ++i; if (i >= instructionCodeLength) { break; } switch (Disassembler::DecodeRegOrOpCodeFromModRm(instructionCode[i])) { case 2: // call near r/m case 3: // call far m return InstructionType::Call_IndirectUnconditional; case 4: // jmp near r/m case 5: // jmp far m return InstructionType::Branch_IndirectUnconditional; } break; } #elif USE_MSVC_DISASSEMBLER switch (terminationType) { case ExternalDisassembler::trmtCall: return InstructionType::Call_DirectUnconditional; case ExternalDisassembler::trmtCallInd: return InstructionType::Call_IndirectUnconditional; case ExternalDisassembler::trmtBraInd: return InstructionType::Branch_IndirectUnconditional; } #endif // USE_COREDISTOOLS_DISASSEMBLER || USE_MSVC_DISASSEMBLER return InstructionType::Unknown; } #endif // USE_DISASSEMBLER
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. #include "common.h" #include "disassembler.h" #include "dllimport.h" #if USE_DISASSEMBLER // TODO: Which contracts should be used where? Currently, everything is using LIMITED_METHOD_CONTRACT. #if USE_COREDISTOOLS_DISASSEMBLER HMODULE Disassembler::s_libraryHandle = nullptr; InitDisasm_t *Disassembler::External_InitDisasm = nullptr; FinishDisasm_t *Disassembler::External_FinishDisasm = nullptr; DisasmInstruction_t *Disassembler::External_DisasmInstruction = nullptr; #endif // USE_COREDISTOOLS_DISASSEMBLER Disassembler::ExternalDisassembler *Disassembler::s_availableExternalDisassembler = nullptr; #if defined(TARGET_AMD64) || defined(TARGET_X86) // static bool Disassembler::IsRexPrefix(UINT8 potentialRexByte) { LIMITED_METHOD_CONTRACT; #ifdef TARGET_AMD64 return (potentialRexByte & 0xf0) == REX_PREFIX_BASE; #else // !TARGET_AMD64 return false; #endif // TARGET_AMD64 } // static UINT8 Disassembler::DecodeModFromModRm(UINT8 modRm) { LIMITED_METHOD_CONTRACT; return modRm >> 6; } // static UINT8 Disassembler::DecodeRegOrOpCodeFromModRm(UINT8 modRm) { LIMITED_METHOD_CONTRACT; return (modRm >> 3) & 0x7; } // static UINT8 Disassembler::DecodeRmFromModRm(UINT8 modRm) { LIMITED_METHOD_CONTRACT; return modRm & 0x7; } #endif // defined(TARGET_AMD64) || defined(TARGET_X86) // static bool Disassembler::IsAvailable() { LIMITED_METHOD_CONTRACT; #if USE_COREDISTOOLS_DISASSEMBLER return s_libraryHandle != nullptr; #else // !USE_COREDISTOOLS_DISASSEMBLER return true; #endif // USE_COREDISTOOLS_DISASSEMBLER } #if _DEBUG #define DISPLAYERROR(FMT, ...) wprintf(FMT, __VA_ARGS__) #else #define DISPLAYERROR(FMT, ...) (void)0 #endif namespace { HMODULE LoadCoreDisToolsModule(PathString &libPath) { LIMITED_METHOD_CONTRACT; LPCWSTR sysDirectory = GetInternalSystemDirectory(); LPCWSTR libFileName = MAKEDLLNAME(W("coredistools")); // Look for the coredistools module next to the clr binary libPath.AppendPrintf(W("%s%s"), sysDirectory, libFileName); LPCWSTR libraryName = libPath.GetUnicode(); return CLRLoadLibrary(libraryName); } } void Disassembler::StaticInitialize() { LIMITED_METHOD_CONTRACT; #if USE_COREDISTOOLS_DISASSEMBLER _ASSERTE(!IsAvailable()); PathString libPath; HMODULE libraryHandle = LoadCoreDisToolsModule(libPath); if (libraryHandle == nullptr) return; External_InitDisasm = reinterpret_cast<decltype(External_InitDisasm)>(GetProcAddress(libraryHandle, "InitDisasm")); if (External_InitDisasm == nullptr) { DISPLAYERROR( W("GetProcAddress failed for library '%s', function 'InitDisasm': error %u\n"), libPath.GetUnicode(), GetLastError()); return; } External_DisasmInstruction = reinterpret_cast<decltype(External_DisasmInstruction)>(GetProcAddress(libraryHandle, "DisasmInstruction")); if (External_DisasmInstruction == nullptr) { DISPLAYERROR( W("GetProcAddress failed for library '%s', function 'DisasmInstruction': error %u\n"), libPath.GetUnicode(), GetLastError()); return; } External_FinishDisasm = reinterpret_cast<decltype(External_FinishDisasm)>(GetProcAddress(libraryHandle, "FinishDisasm")); if (External_FinishDisasm == nullptr) { DISPLAYERROR( W("GetProcAddress failed for library '%s', function 'FinishDisasm': error %u\n"), libPath.GetUnicode(), GetLastError()); return; } // Set this last to indicate successful load of the library and all exports s_libraryHandle = libraryHandle; _ASSERTE(IsAvailable()); #endif // USE_COREDISTOOLS_DISASSEMBLER } // static void Disassembler::StaticClose() { LIMITED_METHOD_CONTRACT; if (!IsAvailable()) { return; } #if USE_COREDISTOOLS_DISASSEMBLER CLRFreeLibrary(s_libraryHandle); s_libraryHandle = nullptr; #endif } Disassembler::Disassembler() { LIMITED_METHOD_CONTRACT; _ASSERTE(IsAvailable()); // TODO: Is it ok to save and reuse an instance of the LLVM-based disassembler? It may later be used from a different // thread, and it may be deleted from a different thread than the one from which it was created. // Try to get an external disassembler that is already available for use before creating one ExternalDisassembler *externalDisassembler = FastInterlockExchangePointer(&s_availableExternalDisassembler, static_cast<ExternalDisassembler *>(nullptr)); if (externalDisassembler == nullptr) { #if USE_COREDISTOOLS_DISASSEMBLER // First parameter: // - Empty string for the current architecture // - A string of the form "x86_64-pc-win32" externalDisassembler = External_InitDisasm(Target_Host); #elif USE_MSVC_DISASSEMBLER #ifdef TARGET_X86 externalDisassembler = ExternalDisassembler::PdisNew(ExternalDisassembler::distX86); #elif defined(TARGET_AMD64) externalDisassembler = ExternalDisassembler::PdisNew(ExternalDisassembler::distX8664); #endif // defined(TARGET_X86) || defined(TARGET_AMD64) #endif // USE_COREDISTOOLS_DISASSEMBLER || USE_MSVC_DISASSEMBLER } _ASSERTE(externalDisassembler != nullptr); m_externalDisassembler = externalDisassembler; } Disassembler::~Disassembler() { LIMITED_METHOD_CONTRACT; _ASSERTE(IsAvailable()); // Save the external disassembler for future use. We only save one instance, so delete a previously saved one. ExternalDisassembler *externalDisassemblerToDelete = FastInterlockExchangePointer(&s_availableExternalDisassembler, m_externalDisassembler); if (externalDisassemblerToDelete == nullptr) { return; } #if USE_COREDISTOOLS_DISASSEMBLER External_FinishDisasm(externalDisassemblerToDelete); #elif USE_MSVC_DISASSEMBLER delete externalDisassemblerToDelete; #endif // USE_COREDISTOOLS_DISASSEMBLER || USE_MSVC_DISASSEMBLER } SIZE_T Disassembler::DisassembleInstruction(const UINT8 *code, SIZE_T codeLength, InstructionType *instructionTypeRef) const { LIMITED_METHOD_CONTRACT; _ASSERTE(IsAvailable()); #if USE_COREDISTOOLS_DISASSEMBLER SIZE_T instructionLength = External_DisasmInstruction(m_externalDisassembler, code, code, codeLength); #elif USE_MSVC_DISASSEMBLER SIZE_T instructionLength = m_externalDisassembler->CbDisassemble(reinterpret_cast<ExternalDisassembler::ADDR>(code), code, codeLength); #endif // USE_COREDISTOOLS_DISASSEMBLER || USE_MSVC_DISASSEMBLER _ASSERTE(instructionLength <= codeLength); if (instructionTypeRef != nullptr) { if (instructionLength == 0) { *instructionTypeRef = InstructionType::Unknown; } else { #if USE_COREDISTOOLS_DISASSEMBLER *instructionTypeRef = DetermineInstructionType(code, instructionLength); #elif USE_MSVC_DISASSEMBLER *instructionTypeRef = DetermineInstructionType(m_externalDisassembler->Trmt()); #endif // USE_COREDISTOOLS_DISASSEMBLER || USE_MSVC_DISASSEMBLER } } return instructionLength; } // static InstructionType Disassembler::DetermineInstructionType( #if USE_COREDISTOOLS_DISASSEMBLER const UINT8 *instructionCode, SIZE_T instructionCodeLength #elif USE_MSVC_DISASSEMBLER ExternalDisassembler::TRMT terminationType #endif // USE_COREDISTOOLS_DISASSEMBLER || USE_MSVC_DISASSEMBLER ) { LIMITED_METHOD_CONTRACT; #if USE_COREDISTOOLS_DISASSEMBLER _ASSERTE(instructionCodeLength != 0); SIZE_T i = 0; if (Disassembler::IsRexPrefix(instructionCode[i])) { ++i; } switch (instructionCode[i]) { case 0xe8: // call near rel #ifdef TARGET_X86 case 0x9a: // call far ptr #endif // TARGET_X86 return InstructionType::Call_DirectUnconditional; case 0xff: ++i; if (i >= instructionCodeLength) { break; } switch (Disassembler::DecodeRegOrOpCodeFromModRm(instructionCode[i])) { case 2: // call near r/m case 3: // call far m return InstructionType::Call_IndirectUnconditional; case 4: // jmp near r/m case 5: // jmp far m return InstructionType::Branch_IndirectUnconditional; } break; } #elif USE_MSVC_DISASSEMBLER switch (terminationType) { case ExternalDisassembler::trmtCall: return InstructionType::Call_DirectUnconditional; case ExternalDisassembler::trmtCallInd: return InstructionType::Call_IndirectUnconditional; case ExternalDisassembler::trmtBraInd: return InstructionType::Branch_IndirectUnconditional; } #endif // USE_COREDISTOOLS_DISASSEMBLER || USE_MSVC_DISASSEMBLER return InstructionType::Unknown; } #endif // USE_DISASSEMBLER
-1
dotnet/runtime
66,308
Add tests for `ijwhost`
- Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
elinor-fung
2022-03-07T19:28:56Z
2022-03-08T17:14:44Z
fa5dcda23c681031b5d2bd68482702baef80b836
627851323fe8f15539c163aabd7d7c644766c549
Add tests for `ijwhost`. - Move IJW build files from `src/tests/Interop/IJW` to `eng/native/ijw` - Add IJW test library to corehost/test - Add tests using actual `ijwhost` loaded by: - native host - managed, framework-dependent host - managed, self-contained host - Remove test explicitly calling into SPCL to load - `ijwhost` handles that cc @AaronRobinsonMSFT @jkoritzinsky
./src/coreclr/md/runtime/strongnameinternal.cpp
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // // Strong name APIs which are not exposed publicly but are used by CLR code // #include "stdafx.h" #include "strongnameinternal.h" #include "thekey.h" #include "ecmakey.h" #include "sha1.h" //--------------------------------------------------------------------------------------- // // Check to see if a public key blob is the ECMA public key blob // // Arguments: // pbKey - public key blob to check // cbKey - size in bytes of pbKey // bool StrongNameIsEcmaKey(_In_reads_(cbKey) const BYTE *pbKey, DWORD cbKey) { CONTRACTL { NOTHROW; GC_NOTRIGGER; } CONTRACTL_END; // The key should be the same size as the ECMA key if (cbKey != sizeof(g_rbNeutralPublicKey)) { return false; } const PublicKeyBlob *pKeyBlob = reinterpret_cast<const PublicKeyBlob *>(pbKey); return StrongNameIsEcmaKey(*pKeyBlob); } //--------------------------------------------------------------------------------------- // // Check to see if a public key blob is the ECMA public key blob // // Arguments: // keyPublicKey - Key to check to see if it matches the ECMA key // bool StrongNameIsEcmaKey(const PublicKeyBlob &keyPublicKey) { CONTRACTL { NOTHROW; GC_NOTRIGGER; } CONTRACTL_END; return StrongNameSizeOfPublicKey(keyPublicKey) == sizeof(g_rbNeutralPublicKey) && memcmp(reinterpret_cast<const BYTE *>(&keyPublicKey), g_rbNeutralPublicKey, sizeof(g_rbNeutralPublicKey)) == 0; } //--------------------------------------------------------------------------------------- // // Verify that a public key blob looks like a reasonable public key // // Arguments: // pbBuffer - buffer to verify the format of // cbBuffer - size of pbBuffer // bool StrongNameIsValidPublicKey(_In_reads_(cbBuffer) const BYTE *pbBuffer, DWORD cbBuffer) { CONTRACTL { PRECONDITION(CheckPointer(pbBuffer)); NOTHROW; GC_NOTRIGGER; } CONTRACTL_END; // The buffer must be at least as large as the public key structure if (cbBuffer < sizeof(PublicKeyBlob)) { return false; } // The buffer must be the same size as the structure header plus the trailing key data const PublicKeyBlob *pkeyPublicKey = reinterpret_cast<const PublicKeyBlob *>(pbBuffer); if (GET_UNALIGNED_VAL32(&pkeyPublicKey->cbPublicKey) != cbBuffer - offsetof(PublicKeyBlob, PublicKey)) { return false; } // The buffer itself looks reasonable, but the public key structure needs to be validated as well return StrongNameIsValidPublicKey(*pkeyPublicKey); } //--------------------------------------------------------------------------------------- // // Verify that a public key blob looks like a reasonable public key. // // Arguments: // keyPublicKey - key blob to verify // // Notes: // This can be a very expensive operation, since it involves importing keys. // bool StrongNameIsValidPublicKey(const PublicKeyBlob &keyPublicKey) { CONTRACTL { NOTHROW; GC_NOTRIGGER; } CONTRACTL_END; // The ECMA key doesn't look like a valid key so it will fail the below checks. If we were passed that // key, then we can skip them if (StrongNameIsEcmaKey(keyPublicKey)) { return true; } // If a hash algorithm is specified, it must be a sensible value bool fHashAlgorithmValid = GET_ALG_CLASS(GET_UNALIGNED_VAL32(&keyPublicKey.HashAlgID)) == ALG_CLASS_HASH && GET_ALG_SID(GET_UNALIGNED_VAL32(&keyPublicKey.HashAlgID)) >= ALG_SID_SHA1; if (keyPublicKey.HashAlgID != 0 && !fHashAlgorithmValid) { return false; } // If a signature algorithm is specified, it must be a sensible value bool fSignatureAlgorithmValid = GET_ALG_CLASS(GET_UNALIGNED_VAL32(&keyPublicKey.SigAlgID)) == ALG_CLASS_SIGNATURE; if (keyPublicKey.SigAlgID != 0 && !fSignatureAlgorithmValid) { return false; } // The key blob must indicate that it is a PUBLICKEYBLOB if (keyPublicKey.PublicKey[0] != PUBLICKEYBLOB) { return false; } return true; } //--------------------------------------------------------------------------------------- // // Determine the number of bytes that a public key blob occupies, including the key portion // // Arguments: // keyPublicKey - key blob to calculate the size of // DWORD StrongNameSizeOfPublicKey(const PublicKeyBlob &keyPublicKey) { CONTRACTL { NOTHROW; GC_NOTRIGGER; } CONTRACTL_END; return offsetof(PublicKeyBlob, PublicKey) + // Size of the blob header plus GET_UNALIGNED_VAL32(&keyPublicKey.cbPublicKey); // the number of bytes in the key } // Size in bytes of strong name token. #define SN_SIZEOF_TOKEN 8 // Determine the size of a PublicKeyBlob structure given the size of the key // portion. #define SN_SIZEOF_KEY(_pKeyBlob) (offsetof(PublicKeyBlob, PublicKey) + GET_UNALIGNED_VAL32(&(_pKeyBlob)->cbPublicKey)) // We allow a special abbreviated form of the Microsoft public key (16 bytes // long: 0 for both alg ids, 4 for key length and 4 bytes of 0 for the key // itself). This allows us to build references to system libraries that are // platform neutral (so a 3rd party can build mscorlib replacements). The // special zero PK is just shorthand for the local runtime's real system PK, // which is always used to perform the signature verification, so no security // hole is opened by this. Therefore we need to store a copy of the real PK (for // this platform) here. // the actual definition of the microsoft key is in separate file to allow custom keys #include "thekey.h" #define SN_THE_KEY() ((PublicKeyBlob*)g_rbTheKey) #define SN_SIZEOF_THE_KEY() sizeof(g_rbTheKey) #define SN_THE_KEYTOKEN() ((PublicKeyBlob*)g_rbTheKeyToken) // Determine if the given public key blob is the neutral key. #define SN_IS_NEUTRAL_KEY(_pk) (SN_SIZEOF_KEY((PublicKeyBlob*)(_pk)) == sizeof(g_rbNeutralPublicKey) && \ memcmp((_pk), g_rbNeutralPublicKey, sizeof(g_rbNeutralPublicKey)) == 0) #define SN_IS_THE_KEY(_pk) (SN_SIZEOF_KEY((PublicKeyBlob*)(_pk)) == sizeof(g_rbTheKey) && \ memcmp((_pk), g_rbTheKey, sizeof(g_rbTheKey)) == 0) // Silverlight platform key #define SN_THE_SILVERLIGHT_PLATFORM_KEYTOKEN() ((PublicKeyBlob*)g_rbTheSilverlightPlatformKeyToken) #define SN_IS_THE_SILVERLIGHT_PLATFORM_KEY(_pk) (SN_SIZEOF_KEY((PublicKeyBlob*)(_pk)) == sizeof(g_rbTheSilverlightPlatformKey) && \ memcmp((_pk), g_rbTheSilverlightPlatformKey, sizeof(g_rbTheSilverlightPlatformKey)) == 0) // Silverlight key #define SN_IS_THE_SILVERLIGHT_KEY(_pk) (SN_SIZEOF_KEY((PublicKeyBlob*)(_pk)) == sizeof(g_rbTheSilverlightKey) && \ memcmp((_pk), g_rbTheSilverlightKey, sizeof(g_rbTheSilverlightKey)) == 0) #define SN_THE_SILVERLIGHT_KEYTOKEN() ((PublicKeyBlob*)g_rbTheSilverlightKeyToken) // Free buffer allocated by routines below. VOID StrongNameFreeBuffer(BYTE *pbMemory) // [in] address of memory to free { if (pbMemory != (BYTE*)SN_THE_KEY() && pbMemory != g_rbNeutralPublicKey) delete [] pbMemory; } // Create a strong name token from a public key blob. HRESULT StrongNameTokenFromPublicKey(BYTE *pbPublicKeyBlob, // [in] public key blob ULONG cbPublicKeyBlob, BYTE **ppbStrongNameToken, // [out] strong name token ULONG *pcbStrongNameToken) { HRESULT hr = S_OK; #ifndef DACCESS_COMPILE SHA1Hash sha1; BYTE *pHash = NULL; DWORD i; PublicKeyBlob *pPublicKey = NULL; DWORD dwHashLenMinusTokenSize = 0; if (!StrongNameIsValidPublicKey(pbPublicKeyBlob, cbPublicKeyBlob)) { hr = CORSEC_E_INVALID_PUBLICKEY; goto Exit; } // Allocate a buffer for the output token. *ppbStrongNameToken = new (nothrow) BYTE[SN_SIZEOF_TOKEN]; if (*ppbStrongNameToken == NULL) { hr = E_OUTOFMEMORY; goto Exit; } *pcbStrongNameToken = SN_SIZEOF_TOKEN; // We cache a couple of common cases. if (SN_IS_NEUTRAL_KEY(pbPublicKeyBlob)) { memcpy_s(*ppbStrongNameToken, *pcbStrongNameToken, g_rbNeutralPublicKeyToken, SN_SIZEOF_TOKEN); goto Exit; } if (cbPublicKeyBlob == SN_SIZEOF_THE_KEY() && memcmp(pbPublicKeyBlob, SN_THE_KEY(), cbPublicKeyBlob) == 0) { memcpy_s(*ppbStrongNameToken, *pcbStrongNameToken, SN_THE_KEYTOKEN(), SN_SIZEOF_TOKEN); goto Exit; } if (SN_IS_THE_SILVERLIGHT_PLATFORM_KEY(pbPublicKeyBlob)) { memcpy_s(*ppbStrongNameToken, *pcbStrongNameToken, SN_THE_SILVERLIGHT_PLATFORM_KEYTOKEN(), SN_SIZEOF_TOKEN); goto Exit; } if (SN_IS_THE_SILVERLIGHT_KEY(pbPublicKeyBlob)) { memcpy_s(*ppbStrongNameToken, *pcbStrongNameToken, SN_THE_SILVERLIGHT_KEYTOKEN(), SN_SIZEOF_TOKEN); goto Exit; } // To compute the correct public key token, we need to make sure the public key blob // was not padded with extra bytes that CAPI CryptImportKey would've ignored. // Without this round trip, we would blindly compute the hash over the padded bytes // which could make finding a public key token collision a significantly easier task // since an attacker wouldn't need to work hard on generating valid key pairs before hashing. if (cbPublicKeyBlob <= sizeof(PublicKeyBlob)) { hr = CORSEC_E_INVALID_PUBLICKEY; goto Error; } // Check that the blob type is PUBLICKEYBLOB. pPublicKey = (PublicKeyBlob*) pbPublicKeyBlob; if (pPublicKey->PublicKey + GET_UNALIGNED_VAL32(&pPublicKey->cbPublicKey) < pPublicKey->PublicKey) { hr = CORSEC_E_INVALID_PUBLICKEY; goto Error; } if (cbPublicKeyBlob < SN_SIZEOF_KEY(pPublicKey)) { hr = CORSEC_E_INVALID_PUBLICKEY; goto Error; } if (*(BYTE*) pPublicKey->PublicKey /* PUBLICKEYSTRUC->bType */ != PUBLICKEYBLOB) { hr = CORSEC_E_INVALID_PUBLICKEY; goto Error; } // Compute a hash over the public key. sha1.AddData(pbPublicKeyBlob, cbPublicKeyBlob); pHash = sha1.GetHash(); static_assert(SHA1_HASH_SIZE >= SN_SIZEOF_TOKEN, "SN_SIZEOF_TOKEN must be smaller or equal to the SHA1_HASH_SIZE"); dwHashLenMinusTokenSize = SHA1_HASH_SIZE - SN_SIZEOF_TOKEN; // Take the last few bytes of the hash value for our token. (These are the // low order bytes from a network byte order point of view). Reverse the // order of these bytes in the output buffer to get host byte order. for (i = 0; i < SN_SIZEOF_TOKEN; i++) (*ppbStrongNameToken)[SN_SIZEOF_TOKEN - (i + 1)] = pHash[i + dwHashLenMinusTokenSize]; goto Exit; Error: if (*ppbStrongNameToken) { delete [] *ppbStrongNameToken; *ppbStrongNameToken = NULL; } Exit: #else DacNotImpl(); #endif // #ifndef DACCESS_COMPILE return hr; }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // // Strong name APIs which are not exposed publicly but are used by CLR code // #include "stdafx.h" #include "strongnameinternal.h" #include "thekey.h" #include "ecmakey.h" #include "sha1.h" //--------------------------------------------------------------------------------------- // // Check to see if a public key blob is the ECMA public key blob // // Arguments: // pbKey - public key blob to check // cbKey - size in bytes of pbKey // bool StrongNameIsEcmaKey(_In_reads_(cbKey) const BYTE *pbKey, DWORD cbKey) { CONTRACTL { NOTHROW; GC_NOTRIGGER; } CONTRACTL_END; // The key should be the same size as the ECMA key if (cbKey != sizeof(g_rbNeutralPublicKey)) { return false; } const PublicKeyBlob *pKeyBlob = reinterpret_cast<const PublicKeyBlob *>(pbKey); return StrongNameIsEcmaKey(*pKeyBlob); } //--------------------------------------------------------------------------------------- // // Check to see if a public key blob is the ECMA public key blob // // Arguments: // keyPublicKey - Key to check to see if it matches the ECMA key // bool StrongNameIsEcmaKey(const PublicKeyBlob &keyPublicKey) { CONTRACTL { NOTHROW; GC_NOTRIGGER; } CONTRACTL_END; return StrongNameSizeOfPublicKey(keyPublicKey) == sizeof(g_rbNeutralPublicKey) && memcmp(reinterpret_cast<const BYTE *>(&keyPublicKey), g_rbNeutralPublicKey, sizeof(g_rbNeutralPublicKey)) == 0; } //--------------------------------------------------------------------------------------- // // Verify that a public key blob looks like a reasonable public key // // Arguments: // pbBuffer - buffer to verify the format of // cbBuffer - size of pbBuffer // bool StrongNameIsValidPublicKey(_In_reads_(cbBuffer) const BYTE *pbBuffer, DWORD cbBuffer) { CONTRACTL { PRECONDITION(CheckPointer(pbBuffer)); NOTHROW; GC_NOTRIGGER; } CONTRACTL_END; // The buffer must be at least as large as the public key structure if (cbBuffer < sizeof(PublicKeyBlob)) { return false; } // The buffer must be the same size as the structure header plus the trailing key data const PublicKeyBlob *pkeyPublicKey = reinterpret_cast<const PublicKeyBlob *>(pbBuffer); if (GET_UNALIGNED_VAL32(&pkeyPublicKey->cbPublicKey) != cbBuffer - offsetof(PublicKeyBlob, PublicKey)) { return false; } // The buffer itself looks reasonable, but the public key structure needs to be validated as well return StrongNameIsValidPublicKey(*pkeyPublicKey); } //--------------------------------------------------------------------------------------- // // Verify that a public key blob looks like a reasonable public key. // // Arguments: // keyPublicKey - key blob to verify // // Notes: // This can be a very expensive operation, since it involves importing keys. // bool StrongNameIsValidPublicKey(const PublicKeyBlob &keyPublicKey) { CONTRACTL { NOTHROW; GC_NOTRIGGER; } CONTRACTL_END; // The ECMA key doesn't look like a valid key so it will fail the below checks. If we were passed that // key, then we can skip them if (StrongNameIsEcmaKey(keyPublicKey)) { return true; } // If a hash algorithm is specified, it must be a sensible value bool fHashAlgorithmValid = GET_ALG_CLASS(GET_UNALIGNED_VAL32(&keyPublicKey.HashAlgID)) == ALG_CLASS_HASH && GET_ALG_SID(GET_UNALIGNED_VAL32(&keyPublicKey.HashAlgID)) >= ALG_SID_SHA1; if (keyPublicKey.HashAlgID != 0 && !fHashAlgorithmValid) { return false; } // If a signature algorithm is specified, it must be a sensible value bool fSignatureAlgorithmValid = GET_ALG_CLASS(GET_UNALIGNED_VAL32(&keyPublicKey.SigAlgID)) == ALG_CLASS_SIGNATURE; if (keyPublicKey.SigAlgID != 0 && !fSignatureAlgorithmValid) { return false; } // The key blob must indicate that it is a PUBLICKEYBLOB if (keyPublicKey.PublicKey[0] != PUBLICKEYBLOB) { return false; } return true; } //--------------------------------------------------------------------------------------- // // Determine the number of bytes that a public key blob occupies, including the key portion // // Arguments: // keyPublicKey - key blob to calculate the size of // DWORD StrongNameSizeOfPublicKey(const PublicKeyBlob &keyPublicKey) { CONTRACTL { NOTHROW; GC_NOTRIGGER; } CONTRACTL_END; return offsetof(PublicKeyBlob, PublicKey) + // Size of the blob header plus GET_UNALIGNED_VAL32(&keyPublicKey.cbPublicKey); // the number of bytes in the key } // Size in bytes of strong name token. #define SN_SIZEOF_TOKEN 8 // Determine the size of a PublicKeyBlob structure given the size of the key // portion. #define SN_SIZEOF_KEY(_pKeyBlob) (offsetof(PublicKeyBlob, PublicKey) + GET_UNALIGNED_VAL32(&(_pKeyBlob)->cbPublicKey)) // We allow a special abbreviated form of the Microsoft public key (16 bytes // long: 0 for both alg ids, 4 for key length and 4 bytes of 0 for the key // itself). This allows us to build references to system libraries that are // platform neutral (so a 3rd party can build mscorlib replacements). The // special zero PK is just shorthand for the local runtime's real system PK, // which is always used to perform the signature verification, so no security // hole is opened by this. Therefore we need to store a copy of the real PK (for // this platform) here. // the actual definition of the microsoft key is in separate file to allow custom keys #include "thekey.h" #define SN_THE_KEY() ((PublicKeyBlob*)g_rbTheKey) #define SN_SIZEOF_THE_KEY() sizeof(g_rbTheKey) #define SN_THE_KEYTOKEN() ((PublicKeyBlob*)g_rbTheKeyToken) // Determine if the given public key blob is the neutral key. #define SN_IS_NEUTRAL_KEY(_pk) (SN_SIZEOF_KEY((PublicKeyBlob*)(_pk)) == sizeof(g_rbNeutralPublicKey) && \ memcmp((_pk), g_rbNeutralPublicKey, sizeof(g_rbNeutralPublicKey)) == 0) #define SN_IS_THE_KEY(_pk) (SN_SIZEOF_KEY((PublicKeyBlob*)(_pk)) == sizeof(g_rbTheKey) && \ memcmp((_pk), g_rbTheKey, sizeof(g_rbTheKey)) == 0) // Silverlight platform key #define SN_THE_SILVERLIGHT_PLATFORM_KEYTOKEN() ((PublicKeyBlob*)g_rbTheSilverlightPlatformKeyToken) #define SN_IS_THE_SILVERLIGHT_PLATFORM_KEY(_pk) (SN_SIZEOF_KEY((PublicKeyBlob*)(_pk)) == sizeof(g_rbTheSilverlightPlatformKey) && \ memcmp((_pk), g_rbTheSilverlightPlatformKey, sizeof(g_rbTheSilverlightPlatformKey)) == 0) // Silverlight key #define SN_IS_THE_SILVERLIGHT_KEY(_pk) (SN_SIZEOF_KEY((PublicKeyBlob*)(_pk)) == sizeof(g_rbTheSilverlightKey) && \ memcmp((_pk), g_rbTheSilverlightKey, sizeof(g_rbTheSilverlightKey)) == 0) #define SN_THE_SILVERLIGHT_KEYTOKEN() ((PublicKeyBlob*)g_rbTheSilverlightKeyToken) // Free buffer allocated by routines below. VOID StrongNameFreeBuffer(BYTE *pbMemory) // [in] address of memory to free { if (pbMemory != (BYTE*)SN_THE_KEY() && pbMemory != g_rbNeutralPublicKey) delete [] pbMemory; } // Create a strong name token from a public key blob. HRESULT StrongNameTokenFromPublicKey(BYTE *pbPublicKeyBlob, // [in] public key blob ULONG cbPublicKeyBlob, BYTE **ppbStrongNameToken, // [out] strong name token ULONG *pcbStrongNameToken) { HRESULT hr = S_OK; #ifndef DACCESS_COMPILE SHA1Hash sha1; BYTE *pHash = NULL; DWORD i; PublicKeyBlob *pPublicKey = NULL; DWORD dwHashLenMinusTokenSize = 0; if (!StrongNameIsValidPublicKey(pbPublicKeyBlob, cbPublicKeyBlob)) { hr = CORSEC_E_INVALID_PUBLICKEY; goto Exit; } // Allocate a buffer for the output token. *ppbStrongNameToken = new (nothrow) BYTE[SN_SIZEOF_TOKEN]; if (*ppbStrongNameToken == NULL) { hr = E_OUTOFMEMORY; goto Exit; } *pcbStrongNameToken = SN_SIZEOF_TOKEN; // We cache a couple of common cases. if (SN_IS_NEUTRAL_KEY(pbPublicKeyBlob)) { memcpy_s(*ppbStrongNameToken, *pcbStrongNameToken, g_rbNeutralPublicKeyToken, SN_SIZEOF_TOKEN); goto Exit; } if (cbPublicKeyBlob == SN_SIZEOF_THE_KEY() && memcmp(pbPublicKeyBlob, SN_THE_KEY(), cbPublicKeyBlob) == 0) { memcpy_s(*ppbStrongNameToken, *pcbStrongNameToken, SN_THE_KEYTOKEN(), SN_SIZEOF_TOKEN); goto Exit; } if (SN_IS_THE_SILVERLIGHT_PLATFORM_KEY(pbPublicKeyBlob)) { memcpy_s(*ppbStrongNameToken, *pcbStrongNameToken, SN_THE_SILVERLIGHT_PLATFORM_KEYTOKEN(), SN_SIZEOF_TOKEN); goto Exit; } if (SN_IS_THE_SILVERLIGHT_KEY(pbPublicKeyBlob)) { memcpy_s(*ppbStrongNameToken, *pcbStrongNameToken, SN_THE_SILVERLIGHT_KEYTOKEN(), SN_SIZEOF_TOKEN); goto Exit; } // To compute the correct public key token, we need to make sure the public key blob // was not padded with extra bytes that CAPI CryptImportKey would've ignored. // Without this round trip, we would blindly compute the hash over the padded bytes // which could make finding a public key token collision a significantly easier task // since an attacker wouldn't need to work hard on generating valid key pairs before hashing. if (cbPublicKeyBlob <= sizeof(PublicKeyBlob)) { hr = CORSEC_E_INVALID_PUBLICKEY; goto Error; } // Check that the blob type is PUBLICKEYBLOB. pPublicKey = (PublicKeyBlob*) pbPublicKeyBlob; if (pPublicKey->PublicKey + GET_UNALIGNED_VAL32(&pPublicKey->cbPublicKey) < pPublicKey->PublicKey) { hr = CORSEC_E_INVALID_PUBLICKEY; goto Error; } if (cbPublicKeyBlob < SN_SIZEOF_KEY(pPublicKey)) { hr = CORSEC_E_INVALID_PUBLICKEY; goto Error; } if (*(BYTE*) pPublicKey->PublicKey /* PUBLICKEYSTRUC->bType */ != PUBLICKEYBLOB) { hr = CORSEC_E_INVALID_PUBLICKEY; goto Error; } // Compute a hash over the public key. sha1.AddData(pbPublicKeyBlob, cbPublicKeyBlob); pHash = sha1.GetHash(); static_assert(SHA1_HASH_SIZE >= SN_SIZEOF_TOKEN, "SN_SIZEOF_TOKEN must be smaller or equal to the SHA1_HASH_SIZE"); dwHashLenMinusTokenSize = SHA1_HASH_SIZE - SN_SIZEOF_TOKEN; // Take the last few bytes of the hash value for our token. (These are the // low order bytes from a network byte order point of view). Reverse the // order of these bytes in the output buffer to get host byte order. for (i = 0; i < SN_SIZEOF_TOKEN; i++) (*ppbStrongNameToken)[SN_SIZEOF_TOKEN - (i + 1)] = pHash[i + dwHashLenMinusTokenSize]; goto Exit; Error: if (*ppbStrongNameToken) { delete [] *ppbStrongNameToken; *ppbStrongNameToken = NULL; } Exit: #else DacNotImpl(); #endif // #ifndef DACCESS_COMPILE return hr; }
-1