Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-03-12Update dependencies (#5528)Michal Strehovský
Includes changes necessiated by the move of Vectors to CoreLib.
2017-08-22Emit IsByRefLike flag on generic definitions (#4346)Michal Strehovský
Also took the opportunity to make the IsByRefLike flag not be a property of the field layout (but use the newly approved custom attribute that everyone else uses). Fixes #4220.
2017-05-20Cache HasFinalizer (#3663)Michal Strehovský
With some changes I have in flight `GetFinalizer` in compiler traces went from "might be worth looking into making this faster" to "we spend 15% of compilation time here". The answer to `HasFinalizer` is cheap to cache and reduces the pressure on `GetFinalizer` significantly.
2017-04-14Add marshalling support for returning function pointers from native side as ↵Faizur Rahman
Delegates