summaryrefslogtreecommitdiff
path: root/src/vm/pefile.h
AgeCommit message (Collapse)AuthorFilesLines
2017-02-12Remove never defined FEATURE_FUSIONdanmosemsft1-177/+0
2017-02-12Remove never defined FEATURE_APPX_BINDERdanmosemsft1-4/+0
2017-02-12Remove always defined FEATURE_HOST_ASSEMBLY_RESOLVERdanmosemsft1-4/+0
2017-02-10Remove always undefined FEATURE_CAS_POLICYdanmosemsft1-16/+0
2017-02-10Remove always defined FEATURE_CORECLRdanmosemsft1-31/+0
2016-07-28Enable RefEmitted assemblies to have Fallback LoadContext notionGaurav Khanna1-0/+26
2016-05-07Remove FEATURE_HOSTED_BINDER definition (#4838)Jan Vorlicek1-21/+1
The FEATURE_HOSTED_BINDER is always on so remove it from all the sources.
2016-03-23Remove special casing of platform assembliesJan Kotas1-3/+0
2016-01-27Update license headersdotnet-bot1-4/+3
2015-05-26Fix the virtual destructor warningJan Vorlicek1-0/+2
This change changes destructors to be virtual or adds virtual ones where they were missing based on the clang warnings.
2015-05-07Merge changes from parent branchdotnet-bot1-0/+1
[tfs-changeset: 1466545]
2015-03-06Add a fourth parameter to the DEFINE_DACVAR macro that is the actual fully ↵Mike McLaughlin1-1/+0
qualified name of the static/global. First pass at the global DAC table support for Linux. Explicitly build the table in the coreclr module instead of extract it from the pdb and put it in a resource. Fixed the SVR gc globals in the DAC table. They had to be seperated and initialized in gceesvr.cpp. Start on global pointer table. PAL functions to write and read the DAC table address between processes. The dac table is now copied from the coreclr process to the DAC/debugger process. The tables were not being built with exactly the same defines so they weren't the same size. Fixed a bug in the read memory implementation. Still assumes pid = 0. Changed the dacTable entries to be RVAs and renabled getting the corclr module base addres (m_globalBase). Added dac table address file cleanup on coreclr shutdown. Filled in the vtable entries in the global dac table. Changed some of the VPTR_* macros to be defined on the coreclr side (RS) to defined a constructor that is used to get the vtable in dactable.cpp. These changes required default constructors to be added to some of the classes. Changed getting the vtable address to not invoke the destructors since the constructor used didn't do anything (like initialize variables, etc.). Added a TODO comment about the debuggee pid not being available in the dac table address file name. Fixed Windows build. Created a couple of new VPTR_* macros that add a default constructor only if building coreclr (not DAC) on Linux. Comment on how these DAC table functions are temporary.
2015-01-30Initial commit to populate CoreCLR repo dotnet-bot1-0/+1239
[tfs-changeset: 1407945]