タグ

il2cppに関するlxyumaのブックマーク (1)

  • IL2CPP internals: Garbage collector integration | Unity Blog

    This is the seventh post in the IL2CPP Internals series. In this post, we will explore a bit about how the IL2CPP runtime integrates with a garbage collector. Specifically, we’ll see how the GC roots in managed code are communicated to the native garbage collector. As with all of the posts in this series, this post deals with implementation details that can and likely will change in the future. In

    IL2CPP internals: Garbage collector integration | Unity Blog
    lxyuma
    lxyuma 2015/12/19
    il2cppはBoehm-Demers-Weiser GC。(Rootから辿ってるのでmark sweapっぽいが、使い方次第で世代別GCも出来る様子。カウント式でないので循環参照は発生しない?)今後、CoreCLR gcに移るかも。
  • 1