summaryrefslogtreecommitdiff
path: root/src/vm/typehandle.h
AgeCommit message (Collapse)AuthorFilesLines
2019-01-23Remove all traces of FEATURE_STACK_PROBE. (#22149)Filip Navara1-1/+0
2018-12-03Remove IsNeutralDomain() (#21318)Steve MacLean1-2/+0
* Remove IsNeutralDomain() * PR feedback
2018-11-26Disable domain neutral loading (#21156)Jan Kotas1-1/+1
2018-11-09Delete dead/unreachable code related to remoting (#20880)Jan Kotas1-2/+0
2018-08-11Make RuntimeType sealed and deleted support for introspection only loads ↵Jan Kotas1-6/+0
(#19427) - Sealed Runtime makes `is RuntimeType` and similar checks faster. These checks are fairly common in reflection. - Delete support for introspection only loads from the runtime. We do not plan to use in .NET Core. The support for introspection loads inherited from RuntimeType and thus it is incompatible with sealed RuntimeType.
2018-06-15Delete bitrotten appdomain agility checks (#18489)Jan Kotas1-8/+0
Fixes #18484
2018-01-21Remove AppDomainLeaks configuration option (#15956)antofik1-1/+1
Removed all usages of AppDomainLeaks configuration option and CHECK_APP_DOMAIN_LEAKS feature Fix #12094
2017-08-30Support checking for HFA types in altjitCarol Eidt1-2/+0
When using an HFA altjit with a non-HFA coreclr, `FEATURE_HFA` will not be defined in the runtime. In this case, instead of caching the information on the `MethodTable`, it will be recomputed for every call to query for an HFA type or to get the base element type. In order to do this, the functionality must be available on a built class, so implement these methods on `EEClass` instead of `MethodTableBuilder` (which was already using `GetHalfBakedClass()` to access some of the `EEClass` functionality). Fix #13092
2017-07-31Implement Type.IsByRefLike for CoreCLR (#13123)Atsushi Kanamori1-0/+3
Since this already exists in CoreRT and the virtual method will get propagated to CoreCLR, we might as well make it work here before an IsByRefLike check finds its way into shared code and starts throwing NotSupportedExceptions on CoreCLR.
2016-03-09Delete dead codeJan Kotas1-4/+0
- Delete BINDER, STANDALONE_BINDER and MDIL ifdefs
2016-01-27Update license headersdotnet-bot1-4/+3
2015-01-30Initial commit to populate CoreCLR repo dotnet-bot1-0/+838
[tfs-changeset: 1407945]