dotnet / corert

This repo contains CoreRT, an experimental .NET Core runtime optimized for AOT (ahead of time compilation) scenarios, with the accompanying compiler toolchain.

Home Page:http://dot.net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[CppCodeGen] Enable conservative GC

jkotas opened this issue · comments

Remove artificially high GC budget for CppCodeGen and make conservative GC stack scanning work.

commented

Can Boehm GC be an option?

Plugging in a Boehm GC is likely to be more work than enabling the conservative GC scanning for the GC that we have.

commented

@jkotas Great that you already have a GC that can enable conservative GC.

So ... any update ?

So ... any update ?

I think maintainers of corert should update their readme and issues,otherwise we don't know how the project going on,however,what we all know is,corert is still in ALPHA.
When will it become release?Maybe three years or longer.

The CppCodegen code generation backend of CoreRT is currently in a community supported mode. The reasons for that are explained here. We (Microsoft) do provide guidance, code reviews, and accept pull requests for it because we recognize the value of it for the .NET ecosystem, but we're not actively paid to work on CppCodegen for reasons explained in the linked comment.

CppCodegen is making progress, but we don't have timelines or shipping dates. E.g. in January, a Samsung employee contributed reflection support for CppCodegen (#6700).

The RyuJIT code generation backend (that generates native code for supported processors, as opposed to portable C++) in CoreRT is much more complete at this point.