summaryrefslogtreecommitdiff
path: root/src/vm/peimage.h
AgeCommit message (Collapse)AuthorFilesLines
2019-05-17Delete unnecessary locale arguments (#24624)Jan Kotas1-2/+1
Everything in the runtime should use Invariant culture. It is not necessary to pass the locale arguments around.
2019-04-18Move R2R-specific code to be outside FEATURE_PREJIT (#24075)Jan Kotas1-4/+1
This refactoring is preparation for disabling fragile NGen support in the runtime. It keeps fragile-NGen specific code under FEATURE_PREJIT and moves the code required to support R2R to be outside FEATURE_PREJIT. The eventual goal is to compile the runtime without FEATURE_PREJIT defined to avoid fragile-NGen specific overhead.
2018-10-31Remove superfluous 'const' qualifier from trivial return types (#20652)Michał Janiszewski1-14/+14
The 'const' used in this context has no meaning
2018-09-06Enable IJW Native calling managed (#19750)Morgan Brown1-0/+44
* Adds back code required to make IJW native->managed calls (if the runtime is already started) and includes a simple test.
2018-08-14Delete dead code (#19452)Jan Kotas1-20/+0
Unused strong name signing paths and related code
2018-08-11Make RuntimeType sealed and deleted support for introspection only loads ↵Jan Kotas1-8/+3
(#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-02-11Delete PEFingerPrint.* (#16325)Jan Kotas1-1/+0
Unnecessary dummy type on CoreCLR
2017-05-23Direct mapping of IL-assembly images that don't contain writeable sections.Ruben Ayrapetyan1-1/+1
2017-05-23Extract PEImage::CreateLayoutMapped and PEImage::CreateLayoutFlat from ↵Ruben Ayrapetyan1-0/+6
PEImage::GetLayoutInternal.
2017-02-14Remove never defined FEATURE_MIXEDMODEdanmosemsft1-46/+0
2017-02-14Remove never defined FEATURE_INCLUDE_ALL_INTERFACESdanmosemsft1-3/+0
2017-02-12Remove never defined FEATURE_FUSIONdanmosemsft1-44/+0
2017-02-10Remove always defined FEATURE_CORECLRdanmosemsft1-10/+0
2017-02-10Remove always undefined FEATURE_APTCAdanmosemsft1-7/+0
2016-05-07Remove FEATURE_HOSTED_BINDER definition (#4838)Jan Vorlicek1-2/+0
The FEATURE_HOSTED_BINDER is always on so remove it from all the sources.
2016-01-27Update license headersdotnet-bot1-4/+3
2015-08-25Replace MAX_PATH with new defines in vm.Lakshmi Priya Sekar1-1/+1
2015-01-30Initial commit to populate CoreCLR repo dotnet-bot1-0/+504
[tfs-changeset: 1407945]