forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathReflection.cs
3036 lines (2497 loc) · 101 KB
/
Reflection.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#if MULTIMODULE_BUILD && !DEBUG
// Some tests won't work if we're using optimizing codegen, but scanner doesn't run.
// This currently happens in optimized multi-obj builds.
#define OPTIMIZED_MODE_WITHOUT_SCANNER
#endif
using System;
using System.Diagnostics.CodeAnalysis;
using System.Linq.Expressions;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Reflection;
[assembly: TestAssembly]
[module: TestModule]
internal static class ReflectionTest
{
private static int Main()
{
// Things I would like to test, but we don't fully support yet:
// * Interface method is reflectable if we statically called it through a constrained call
// * Delegate Invoke method is reflectable if we statically called it
//
// Tests for dependency graph in the compiler
//
TestSimpleDelegateTargets.Run();
TestVirtualDelegateTargets.Run();
TestRunClassConstructor.Run();
TestFieldMetadata.Run();
TestLinqInvocation.Run();
TestGenericMethodsHaveSameReflectability.Run();
#if !OPTIMIZED_MODE_WITHOUT_SCANNER
TestContainment.Run();
TestInterfaceMethod.Run();
TestByRefLikeTypeMethod.Run();
#endif
TestILScanner.Run();
TestTypeGetType.Run();
TestUnreferencedEnum.Run();
TestTypesInMethodSignatures.Run();
TestAttributeInheritance.Run();
Test113750Regression.Run();
TestStringConstructor.Run();
TestAssemblyAndModuleAttributes.Run();
TestAttributeExpressions.Run();
TestParameterAttributes.Run();
TestPropertyAndEventAttributes.Run();
TestNecessaryEETypeReflection.Run();
TestRuntimeLab929Regression.Run();
CodelessMethodMetadataTest.Run();
#if !REFLECTION_FROM_USAGE
TestNotReflectedIsNotReflectable.Run();
TestGenericInstantiationsAreEquallyReflectable.Run();
TestStackTraces.Run();
#endif
TestAttributeInheritance2.Run();
TestInvokeMethodMetadata.Run();
TestVTableOfNullableUnderlyingTypes.Run();
TestInterfaceLists.Run();
TestMethodConsistency.Run();
TestGenericMethodOnGenericType.Run();
TestIsValueTypeWithoutTypeHandle.Run();
TestMdArrayLoad.Run();
TestMdArrayLoad2.Run();
TestByRefTypeLoad.Run();
TestGenericLdtoken.Run();
TestAbstractGenericLdtoken.Run();
TestTypeHandlesVisibleFromIDynamicInterfaceCastable.Run();
TestCompilerGeneratedCode.Run();
Test105034Regression.Run();
TestMethodsNeededFromNativeLayout.Run();
TestFieldAndParamMetadata.Run();
//
// Mostly functionality tests
//
TestCreateDelegate.Run();
TestGetUninitializedObject.Run();
TestInstanceFields.Run();
TestReflectionInvoke.Run();
TestConstructors.Run();
TestInvokeMemberParamsCornerCase.Run();
TestDefaultInterfaceInvoke.Run();
TestCovariantReturnInvoke.Run();
TypeConstructionTest.Run();
TestThreadStaticFields.Run();
TestByRefReturnInvoke.Run();
TestAssemblyLoad.Run();
TestBaseOnlyUsedFromCode.Run();
TestEntryPoint.Run();
TestGenericAttributesOnEnum.Run();
TestLdtokenWithSignaturesDifferingInModifiers.Run();
return 100;
}
class TestReflectionInvoke
{
internal class InvokeTests
{
private string _world = "world";
public InvokeTests() { }
public InvokeTests(string message) { _world = message; }
#if OPTIMIZED_MODE_WITHOUT_SCANNER
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
#endif
public static string GetHello(string name)
{
return "Hello " + name;
}
#if OPTIMIZED_MODE_WITHOUT_SCANNER
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
#endif
public static void GetHelloByRef(string name, out string result)
{
result = "Hello " + name;
}
#if OPTIMIZED_MODE_WITHOUT_SCANNER
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
#endif
public static string GetHelloGeneric<T>(T obj)
{
return "Hello " + obj;
}
#if OPTIMIZED_MODE_WITHOUT_SCANNER
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
#endif
public string GetHelloInstance()
{
return "Hello " + _world;
}
#if OPTIMIZED_MODE_WITHOUT_SCANNER
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
#endif
public static unsafe string GetHelloPointer(char* ptr)
{
return "Hello " + unchecked((int)ptr);
}
#if OPTIMIZED_MODE_WITHOUT_SCANNER
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
#endif
public static unsafe string GetHelloPointerToo(char** ptr)
{
return "Hello " + unchecked((int)ptr);
}
#if OPTIMIZED_MODE_WITHOUT_SCANNER
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
#endif
public static unsafe bool* GetPointer(void* ptr, object dummyJustToMakeThisUseSharedThunk)
{
return (bool*)ptr;
}
}
internal class InvokeTestsGeneric<T>
{
private string _hi = "Hello ";
#if OPTIMIZED_MODE_WITHOUT_SCANNER
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
#endif
public string GetHelloGeneric<U>(U obj)
{
return _hi + obj + " " + typeof(U);
}
#if OPTIMIZED_MODE_WITHOUT_SCANNER
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
#endif
public string GetHello(object obj)
{
return _hi + obj + " " + typeof(T);
}
}
public static unsafe void Run()
{
Console.WriteLine(nameof(TestReflectionInvoke));
// Ensure things we reflect on are in the static callgraph
if (string.Empty.Length > 0)
{
InvokeTests.GetHelloGeneric<int>(0);
new InvokeTestsGeneric<int>().GetHelloGeneric<double>(0);
}
{
object? arg = "world";
MethodInfo helloMethod = typeof(InvokeTests).GetTypeInfo().GetDeclaredMethod("GetHello");
string result = (string)helloMethod.Invoke(null, new object[] { arg });
if (result != "Hello world")
throw new Exception();
result = (string)MethodInvoker.Create(helloMethod).Invoke(null, arg);
if (result != "Hello world")
throw new Exception();
result = (string)MethodInvoker.Create(helloMethod).Invoke(null, new Span<object?>(ref arg));
if (result != "Hello world")
throw new Exception();
}
{
object? arg = 12345;
MethodInfo helloGenericMethod = typeof(InvokeTests).GetTypeInfo().GetDeclaredMethod("GetHelloGeneric").MakeGenericMethod(typeof(int));
string result = (string)helloGenericMethod.Invoke(null, new object[] { arg });
if (result != "Hello 12345")
throw new Exception();
result = (string)MethodInvoker.Create(helloGenericMethod).Invoke(null, arg);
if (result != "Hello 12345")
throw new Exception();
result = (string)MethodInvoker.Create(helloGenericMethod).Invoke(null, new Span<object?>(ref arg));
if (result != "Hello 12345")
throw new Exception();
}
{
object? arg = "buddy";
MethodInfo helloGenericMethod = typeof(InvokeTests).GetTypeInfo().GetDeclaredMethod("GetHelloGeneric").MakeGenericMethod(typeof(string));
string result = (string)helloGenericMethod.Invoke(null, new object[] { arg });
if (result != "Hello buddy")
throw new Exception();
result = (string)MethodInvoker.Create(helloGenericMethod).Invoke(null, arg);
if (result != "Hello buddy")
throw new Exception();
result = (string)MethodInvoker.Create(helloGenericMethod).Invoke(null, new Span<object?>(ref arg));
if (result != "Hello buddy")
throw new Exception();
}
{
object? arg = typeof(string);
MethodInfo helloGenericMethod = typeof(InvokeTests).GetTypeInfo().GetDeclaredMethod("GetHelloGeneric").MakeGenericMethod(typeof(Type));
string result = (string)helloGenericMethod.Invoke(null, new object[] { arg });
if (result != "Hello System.String")
throw new Exception();
result = (string)MethodInvoker.Create(helloGenericMethod).Invoke(null, arg);
if (result != "Hello System.String")
throw new Exception();
result = (string)MethodInvoker.Create(helloGenericMethod).Invoke(null, new Span<object?>(ref arg));
if (result != "Hello System.String")
throw new Exception();
}
{
object? arg = "world";
MethodInfo helloByRefMethod = typeof(InvokeTests).GetTypeInfo().GetDeclaredMethod("GetHelloByRef");
object[] args = new object[] { arg, null };
helloByRefMethod.Invoke(null, args);
if ((string)args[1] != "Hello world")
throw new Exception();
args = new object[] { arg, null };
MethodInvoker.Create(helloByRefMethod).Invoke(null, new Span<object?>(args));
if ((string)args[1] != "Hello world")
throw new Exception();
}
{
MethodInfo helloPointerMethod = typeof(InvokeTests).GetTypeInfo().GetDeclaredMethod("GetHelloPointer");
string resultNull = (string)helloPointerMethod.Invoke(null, new object[] { null });
if (resultNull != "Hello 0")
throw new Exception();
resultNull = (string)MethodInvoker.Create(helloPointerMethod).Invoke(null, arg1: null);
if (resultNull != "Hello 0")
throw new Exception();
object? arg = null;
resultNull = (string)MethodInvoker.Create(helloPointerMethod).Invoke(null, new Span<object?>(ref arg));
if (resultNull != "Hello 0")
throw new Exception();
arg = Pointer.Box((void*)42, typeof(char*));
string resultVal = (string)helloPointerMethod.Invoke(null, new object[] { arg });
if (resultVal != "Hello 42")
throw new Exception();
resultNull = (string)MethodInvoker.Create(helloPointerMethod).Invoke(null, arg);
if (resultVal != "Hello 42")
throw new Exception();
resultNull = (string)MethodInvoker.Create(helloPointerMethod).Invoke(null, new Span<object?>(ref arg));
if (resultVal != "Hello 42")
throw new Exception();
}
{
MethodInfo helloPointerTooMethod = typeof(InvokeTests).GetTypeInfo().GetDeclaredMethod("GetHelloPointerToo");
object? arg = Pointer.Box((void*)85, typeof(char**));
string result = (string)helloPointerTooMethod.Invoke(null, new object[] { arg });
if (result != "Hello 85")
throw new Exception();
result = (string)MethodInvoker.Create(helloPointerTooMethod).Invoke(null, arg);
if (result != "Hello 85")
throw new Exception();
result = (string)MethodInvoker.Create(helloPointerTooMethod).Invoke(null, new Span<object?>(ref arg));
if (result != "Hello 85")
throw new Exception();
}
{
MethodInfo getPointerMethod = typeof(InvokeTests).GetTypeInfo().GetDeclaredMethod("GetPointer");
object? arg = Pointer.Box((void*)2018, typeof(void*));
object[] args = new object[] { arg, null };
object result = getPointerMethod.Invoke(null, args);
if (Pointer.Unbox(result) != (void*)2018)
throw new Exception();
result = MethodInvoker.Create(getPointerMethod).Invoke(null, arg, null);
if (Pointer.Unbox(result) != (void*)2018)
throw new Exception();
result = MethodInvoker.Create(getPointerMethod).Invoke(null, new Span<object?>(args));
if (Pointer.Unbox(result) != (void*)2018)
throw new Exception();
}
{
MethodInfo helloMethod = typeof(InvokeTestsGeneric<string>).GetTypeInfo().GetDeclaredMethod("GetHello");
object? arg = "world";
string result = (string)helloMethod.Invoke(new InvokeTestsGeneric<string>(), new object[] { arg });
if (result != "Hello world System.String")
throw new Exception();
result = (string)MethodInvoker.Create(helloMethod).Invoke(new InvokeTestsGeneric<string>(), arg);
if (result != "Hello world System.String")
throw new Exception();
result = (string)MethodInvoker.Create(helloMethod).Invoke(new InvokeTestsGeneric<string>(), new Span<object?>(ref arg));
if (result != "Hello world System.String")
throw new Exception();
}
{
MethodInfo helloGenericMethod = typeof(InvokeTestsGeneric<string>).GetTypeInfo().GetDeclaredMethod("GetHelloGeneric").MakeGenericMethod(typeof(object));
object? arg = "world";
string result = (string)helloGenericMethod.Invoke(new InvokeTestsGeneric<string>(), new object[] { arg });
if (result != "Hello world System.Object")
throw new Exception();
result = (string)MethodInvoker.Create(helloGenericMethod).Invoke(new InvokeTestsGeneric<string>(), arg);
if (result != "Hello world System.Object")
throw new Exception();
result = (string)MethodInvoker.Create(helloGenericMethod).Invoke(new InvokeTestsGeneric<string>(), new Span<object?>(ref arg));
if (result != "Hello world System.Object")
throw new Exception();
}
{
MethodInfo helloMethod = typeof(InvokeTestsGeneric<int>).GetTypeInfo().GetDeclaredMethod("GetHello");
object? arg = "world";
string result = (string)helloMethod.Invoke(new InvokeTestsGeneric<int>(), new object[] { arg });
if (result != "Hello world System.Int32")
throw new Exception();
result = (string)MethodInvoker.Create(helloMethod).Invoke(new InvokeTestsGeneric<int>(), arg);
if (result != "Hello world System.Int32")
throw new Exception();
result = (string)MethodInvoker.Create(helloMethod).Invoke(new InvokeTestsGeneric<int>(), new Span<object?>(ref arg));
if (result != "Hello world System.Int32")
throw new Exception();
}
{
MethodInfo helloGenericMethod = typeof(InvokeTestsGeneric<int>).GetTypeInfo().GetDeclaredMethod("GetHelloGeneric").MakeGenericMethod(typeof(double));
object? arg = 1.0;
string result = (string)helloGenericMethod.Invoke(new InvokeTestsGeneric<int>(), new object[] { arg });
if (result != "Hello 1 System.Double")
throw new Exception();
result = (string)MethodInvoker.Create(helloGenericMethod).Invoke(new InvokeTestsGeneric<int>(), arg);
if (result != "Hello 1 System.Double")
throw new Exception();
result = (string)MethodInvoker.Create(helloGenericMethod).Invoke(new InvokeTestsGeneric<int>(), new Span<object?>(ref arg));
if (result != "Hello 1 System.Double")
throw new Exception();
}
}
}
class TestInvokeMemberParamsCornerCase
{
public struct MyStruct { }
public static int Count(params MyStruct[] myStructs)
{
return myStructs.Length;
}
public static void Run()
{
Console.WriteLine(nameof(TestInvokeMemberParamsCornerCase));
// Needs MethodTable for MyStruct[] and the compiler should have created it.
typeof(TestInvokeMemberParamsCornerCase).InvokeMember(nameof(Count),
BindingFlags.InvokeMethod | BindingFlags.Public | BindingFlags.Static,
null, null, new object[] { default(MyStruct) });
}
}
class TestDefaultInterfaceInvoke
{
interface IFoo<T>
{
string Format(string s) => "IFoo<" + typeof(T) + ">::Format(" + s + ")";
sealed string InstanceMethod(string s) => "IFoo<" + typeof(T) + ">::InstanceMethod(" + s + ")";
}
interface IFoo
{
string Format(string s) => "IFoo::Format(" + s + ")";
sealed string InstanceMethod(string s) => "IFoo::InstanceMethod(" + s + ")";
}
interface IBar : IFoo
{
string IFoo.Format(string s) => "IBar::Format(" + s + ")";
}
class Foo : IFoo<string>, IFoo<object>, IFoo<int>, IFoo<Enum>, IBar
{
string IFoo<Enum>.Format(string s) => "Foo.IFoo<Enum>::Format(" + s + ")";
}
public static void Run()
{
Console.WriteLine(nameof(TestDefaultInterfaceInvoke));
{
var result = (string)typeof(IFoo<string>).GetMethod(nameof(IFoo<int>.Format)).Invoke(new Foo(), new object[] { "abc" });
if (result != "IFoo<System.String>::Format(abc)")
throw new Exception();
}
{
var result = (string)typeof(IFoo<object>).GetMethod(nameof(IFoo<int>.Format)).Invoke(new Foo(), new object[] { "abc" });
if (result != "IFoo<System.Object>::Format(abc)")
throw new Exception();
}
{
var result = (string)typeof(IFoo<int>).GetMethod(nameof(IFoo<int>.Format)).Invoke(new Foo(), new object[] { "abc" });
if (result != "IFoo<System.Int32>::Format(abc)")
throw new Exception();
}
{
var result = (string)typeof(IFoo<Enum>).GetMethod(nameof(IFoo<int>.Format)).Invoke(new Foo(), new object[] { "abc" });
if (result != "Foo.IFoo<Enum>::Format(abc)")
throw new Exception();
}
{
var result = (string)typeof(IFoo).GetMethod(nameof(IFoo.Format)).Invoke(new Foo(), new object[] { "abc" });
if (result != "IBar::Format(abc)")
throw new Exception();
}
{
var result = (string)typeof(IFoo).GetMethod(nameof(IFoo.InstanceMethod)).Invoke(new Foo(), new object[] { "abc" });
if (result != "IFoo::InstanceMethod(abc)")
throw new Exception();
}
{
var result = (string)typeof(IFoo<Enum>).GetMethod(nameof(IFoo<Enum>.InstanceMethod)).Invoke(new Foo(), new object[] { "abc" });
if (result != "IFoo<System.Enum>::InstanceMethod(abc)")
throw new Exception();
}
}
}
class TestCovariantReturnInvoke
{
interface IFoo
{
}
class Foo : IFoo
{
public readonly string State;
public Foo(string state) => State = state;
}
class Base
{
public virtual IFoo GetFoo() => throw new NotImplementedException();
}
class Derived : Base
{
public override Foo GetFoo() => new Foo("Derived");
}
class SuperDerived : Derived
{
public override Foo GetFoo() => new Foo("SuperDerived");
}
public static void Run()
{
Console.WriteLine(nameof(TestCovariantReturnInvoke));
MethodInfo mi = typeof(Base).GetMethod(nameof(Base.GetFoo));
if (((Foo)mi.Invoke(new Derived(), Array.Empty<object>())).State != "Derived")
throw new Exception();
if (((Foo)mi.Invoke(new SuperDerived(), Array.Empty<object>())).State != "SuperDerived")
throw new Exception();
}
}
class TestInstanceFields
{
public class FieldInvokeSample
{
public String InstanceField;
}
public class GenericFieldInvokeSample<T>
{
public int IntField;
public T TField;
}
private static void TestGenerics<T>(T value)
{
TypeInfo ti = typeof(GenericFieldInvokeSample<T>).GetTypeInfo();
var obj = new GenericFieldInvokeSample<T>();
FieldInfo intField = ti.GetDeclaredField("IntField");
obj.IntField = 1234;
if ((int)(intField.GetValue(obj)) != 1234)
throw new Exception();
FieldInfo tField = ti.GetDeclaredField("TField");
obj.TField = value;
if (!tField.GetValue(obj).Equals(value))
throw new Exception();
}
public static void Run()
{
Console.WriteLine(nameof(TestInstanceFields));
TypeInfo ti = typeof(FieldInvokeSample).GetTypeInfo();
FieldInfo instanceField = ti.GetDeclaredField("InstanceField");
FieldInvokeSample obj = new FieldInvokeSample();
String value = (String)(instanceField.GetValue(obj));
if (value != null)
throw new Exception();
obj.InstanceField = "Hi!";
value = (String)(instanceField.GetValue(obj));
if (value != "Hi!")
throw new Exception();
instanceField.SetValue(obj, "Bye!");
if (obj.InstanceField != "Bye!")
throw new Exception();
value = (String)(instanceField.GetValue(obj));
if (value != "Bye!")
throw new Exception();
TestGenerics(new object());
TestGenerics("Hi");
}
}
unsafe class TestThreadStaticFields
{
class Generic<T>
{
[ThreadStatic]
public static int ThreadStaticValueType;
[ThreadStatic]
public static object ThreadStaticReferenceType;
[ThreadStatic]
public static int* ThreadStaticPointerType;
}
class NonGeneric
{
[ThreadStatic]
public static int ThreadStaticValueType;
[ThreadStatic]
public static object ThreadStaticReferenceType;
[ThreadStatic]
public static int* ThreadStaticPointerType;
}
static void TestGeneric<T>()
{
var refType = new object();
Generic<T>.ThreadStaticValueType = 123;
Generic<T>.ThreadStaticReferenceType = refType;
Generic<T>.ThreadStaticPointerType = (int*)456;
{
var fd = typeof(Generic<T>).GetField(nameof(Generic<T>.ThreadStaticValueType));
var val = (int)fd.GetValue(null);
if (val != 123)
throw new Exception();
fd.SetValue(null, 234);
if (Generic<T>.ThreadStaticValueType != 234)
throw new Exception();
}
{
var fd = typeof(Generic<T>).GetField(nameof(Generic<T>.ThreadStaticReferenceType));
var val = fd.GetValue(null);
if (val != refType)
throw new Exception();
val = new object();
fd.SetValue(null, val);
if (Generic<T>.ThreadStaticReferenceType != val)
throw new Exception();
}
{
var fd = typeof(Generic<T>).GetField(nameof(Generic<T>.ThreadStaticPointerType));
var val = Pointer.Unbox(fd.GetValue(null));
if (val != (int*)456)
throw new Exception();
fd.SetValue(null, Pointer.Box((void*)678, typeof(int*)));
if (Generic<T>.ThreadStaticPointerType != (void*)678)
throw new Exception();
}
}
public static void Run()
{
Console.WriteLine(nameof(TestThreadStaticFields));
var refType = new object();
NonGeneric.ThreadStaticValueType = 123;
NonGeneric.ThreadStaticReferenceType = refType;
NonGeneric.ThreadStaticPointerType = (int*)456;
{
var fd = typeof(NonGeneric).GetField(nameof(NonGeneric.ThreadStaticValueType));
var val = (int)fd.GetValue(null);
if (val != 123)
throw new Exception();
fd.SetValue(null, 234);
if (NonGeneric.ThreadStaticValueType != 234)
throw new Exception();
}
{
var fd = typeof(NonGeneric).GetField(nameof(NonGeneric.ThreadStaticReferenceType));
var val = fd.GetValue(null);
if (val != refType)
throw new Exception();
val = new object();
fd.SetValue(null, val);
if (NonGeneric.ThreadStaticReferenceType != val)
throw new Exception();
}
{
var fd = typeof(NonGeneric).GetField(nameof(NonGeneric.ThreadStaticPointerType));
var val = Pointer.Unbox(fd.GetValue(null));
if (val != (int*)456)
throw new Exception();
fd.SetValue(null, Pointer.Box((void*)678, typeof(int*)));
if (NonGeneric.ThreadStaticPointerType != (void*)678)
throw new Exception();
}
TestGeneric<string>();
TestGeneric<int>();
}
}
class Test105034Regression
{
interface IFactory
{
object Make();
}
interface IOption<T> where T : new() { }
class OptionFactory<T> : IFactory where T : class, new()
{
public object Make() => new T();
}
class Gen<T> { }
struct Atom { }
static Type Register<T>() => typeof(T).GetGenericArguments()[0];
static IFactory Activate(Type t) => (IFactory)Activator.CreateInstance(typeof(OptionFactory<>).MakeGenericType(t));
public static void Run()
{
Console.WriteLine(nameof(Test105034Regression));
Wrap<Atom>();
static void Wrap<T>()
{
Type t = Register();
static Type Register() => Register<IOption<Gen<T>>>();
var f = Activate(t);
f.Make();
}
}
}
class TestMethodsNeededFromNativeLayout
{
class MyAttribute : Attribute;
class GenericClass<T> where T : class
{
[MethodImpl(MethodImplOptions.NoInlining)]
[My]
public static void GenericMethod<U>([My] string namedParameter = "Hello") { }
public GenericClass() => GenericMethod<T>(null);
}
[MethodImpl(MethodImplOptions.NoInlining)]
static Type GetObjectType() => typeof(object);
public static void Run()
{
// This tests that limited reflection metadata (that was only needed for native layout)
// works within the reflection stack.
Activator.CreateInstance(typeof(GenericClass<>).MakeGenericType(GetObjectType()));
// This should succeed because of the Activator
Type testType = GetTestType(nameof(TestMethodsNeededFromNativeLayout), "GenericClass`1");
// This should succeed because native layout forces the metadata.
// If this ever starts breaking, replace this pattern with something else that forces limited method metadata.
MethodInfo mi = testType.GetMethod(nameof(GenericClass<object>.GenericMethod));
// We got a MethodInfo that is limited, check the reflection APIs work fine with it
if (mi.Name != nameof(GenericClass<object>.GenericMethod))
throw new Exception("Name");
// Unless we're doing REFLECTION_FROM_USAGE, we don't expect to see attributes
#if !REFLECTION_FROM_USAGE
if (mi.GetCustomAttributes(inherit: true).Length != 0)
throw new Exception("Attributes");
#endif
// Unless we're doing REFLECTION_FROM_USAGE, we don't expect to be able to reflection-invoke
var mi2 = (MethodInfo)typeof(GenericClass<string>).GetMemberWithSameMetadataDefinitionAs(mi);
#if !REFLECTION_FROM_USAGE
try
#endif
{
mi2.MakeGenericMethod(typeof(string)).Invoke(null, [ null ]);
#if !REFLECTION_FROM_USAGE
throw new Exception("Invoke");
#endif
}
#if !REFLECTION_FROM_USAGE
catch (NotSupportedException)
{
}
#endif
// Parameter count should match no matter what
var parameters = mi.GetParameters();
if (parameters.Length != 1)
throw new Exception("ParamCount");
// But parameter names, default values, attributes should only work in REFLECTION_FROM_USAGE
#if !REFLECTION_FROM_USAGE
if (parameters[0].Name != null)
throw new Exception("ParamName");
if (parameters[0].HasDefaultValue)
throw new Exception("DefaultValue");
if (parameters[0].GetCustomAttributes(inherit: true).Length != 0)
throw new Exception("Attributes");
#endif
}
}
class TestFieldAndParamMetadata
{
public class FieldType;
public FieldType TheField;
public class ParameterType;
public static void TheMethod(ParameterType p) { }
public static void Run()
{
Type fieldType = typeof(TestFieldAndParamMetadata).GetField(nameof(TheField)).FieldType;
if (fieldType.Name != nameof(FieldType))
throw new Exception();
Type parameterType = typeof(TestFieldAndParamMetadata).GetMethod(nameof(TheMethod)).GetParameters()[0].ParameterType;
if (parameterType.Name != nameof(ParameterType))
throw new Exception();
}
}
class TestCreateDelegate
{
internal class Greeter
{
private string _who;
public Greeter(string who) { _who = who; }
#if OPTIMIZED_MODE_WITHOUT_SCANNER
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
#endif
public string Greet()
{
return "Hello " + _who;
}
}
delegate string GetHelloInstanceDelegate(Greeter o);
public static void Run()
{
Console.WriteLine(nameof(TestCreateDelegate));
TypeInfo ti = typeof(Greeter).GetTypeInfo();
MethodInfo mi = ti.GetDeclaredMethod(nameof(Greeter.Greet));
{
var d = (GetHelloInstanceDelegate)mi.CreateDelegate(typeof(GetHelloInstanceDelegate));
if (d(new Greeter("mom")) != "Hello mom")
throw new Exception();
}
{
var d = (Func<Greeter, string>)mi.CreateDelegate(typeof(Func<Greeter, string>));
if (d(new Greeter("pop")) != "Hello pop")
throw new Exception();
}
}
}
class TestGetUninitializedObject
{
struct NeverAllocated
{
public override int GetHashCode() => 800;
}
struct AlsoNeverAllocated
{
public override int GetHashCode() => 500;
}
class NeverAllocatedButUsedInGenericMethod<T>
{
}
class Atom;
[MethodImpl(MethodImplOptions.NoInlining)]
private static Type GetNeverAllocatedButUsedInGenericMethod() => typeof(NeverAllocatedButUsedInGenericMethod<>);
[MethodImpl(MethodImplOptions.NoInlining)]
public static object GenericMethod<T>() => null;
public static void Run()
{
Console.WriteLine(nameof(TestGetUninitializedObject));
// Check that the vtable of a type passed to GetUninitializedObject
// as a Nullable is intact.
var obj1 = RuntimeHelpers.GetUninitializedObject(typeof(NeverAllocated?));
if (obj1.GetHashCode() != 800)
throw new Exception();
// Check that the vtable of a type passed to GetUninitializedObject is intact.
var obj2 = RuntimeHelpers.GetUninitializedObject(typeof(AlsoNeverAllocated));
if (obj2.GetHashCode() != 500)
throw new Exception();
// Do what's needed so that we force an unconstructed MT for NeverAllocatedButUsedInGenericMethod<Atom> into the program
// 1. Statically call the method
// 2. Make the method visible target of reflection
// This will force the compiler to place the method generic dictionary into a hashtable addressable using the instantiation.
GenericMethod<NeverAllocatedButUsedInGenericMethod<Atom>>();
typeof(TestGetUninitializedObject).GetMethod(nameof(GenericMethod));
Type t1 = GetNeverAllocatedButUsedInGenericMethod().MakeGenericType(typeof(Atom));
_ = t1.TypeHandle; // Type handle is only suitable for casting but we can get it
bool thrown = true;
try
{
// Needs to throw, the MT is only a necessary MT, not constructed MT
RuntimeHelpers.GetUninitializedObject(t1);
thrown = false;
}
catch (NotSupportedException e)
{
if (!e.Message.Contains("ReflectionTest+TestGetUninitializedObject+NeverAllocatedButUsedInGenericMethod`1[ReflectionTest+TestGetUninitializedObject+Atom]"))
throw new Exception();
}
if (!thrown)
throw new Exception();
}
}
class TestParameterAttributes
{
#if OPTIMIZED_MODE_WITHOUT_SCANNER
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
#endif
public static bool Method([Parameter] ParameterType parameter)
{
return parameter == null;
}
public class ParameterType { }
class ParameterAttribute : Attribute
{
public ParameterAttribute([CallerMemberName] string memberName = null)
{
MemberName = memberName;
}
public string MemberName { get; }
}
public static void Run()
{
Console.WriteLine(nameof(TestParameterAttributes));
MethodInfo method = typeof(TestParameterAttributes).GetMethod(nameof(Method));
var attribute = method.GetParameters()[0].GetCustomAttribute<ParameterAttribute>();
if (attribute.MemberName != nameof(Method))
throw new Exception();
}
}
class TestPropertyAndEventAttributes
{