memory - Go 的精确 GC 是如何工作的?

标签 memory go garbage-collection

Go 1.3 实现了一个 precise垃圾收集器。

它是如何精确识别指针的?

最佳答案

看看“Changes to the garbage collector”,机制似乎很简单:

Starting with Go 1.3, the runtime assumes that values with pointer type contain pointers and other values do not.

This assumption is fundamental to the precise behavior of both stack expansion and garbage collection.

Programs that use package unsafe to store integers in pointer-typed values are illegal and will crash if the runtime detects the behavior.
Programs that use package unsafe to store pointers in integer-typed values are also illegal but more difficult to diagnose during execution.

reddit thread添加:

Basically a GC has to find out which objects are reachable, to do this it has to follow pointers lying on the stack to every object they point to and then follow the pointers in the objects to every object they point to until it no longer encounters new objects.
Every object not encountered by the GC is then garbage.

The problem with that is that it requires the GC to know what a pointer is:

  • a precise GC has that information,
  • a conservative GC has to assume that every value on the stack may be a pointer if it is identical with the address of an allocated object.

As a result conservate GCs tend to keep a lot of unreachable objects around and have to do more work (traverse dead object graphs).

关于memory - Go 的精确 GC 是如何工作的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26422896/

相关文章:

java - Object.toString 或 Object.hashCode 是否给出了对象的内存地址

python - python字符串比较的内存限制

go - 具有相对路径的包布局

go - 如何在 Windows 上从 Golang 执行 netsh 命令

JAVA - 我是否应该在使用后为每个实例化对象设置 null?

c# - 使用 Process Class c# 列出进程内存和 CPU 使用情况时出现问题

ios - 从 App Store 下载时,我的 Iphone 应用程序的大小是多少?

go - 这是Go中的编译器技巧吗?

java - 如何估计调用 System.gc() 时剩余的内存量?

Java 8 Metaspace - 避免减少