RSet 存在的原理及价值。如上图所示,记录了Region中的引用关系。使得垃圾收集器不需要扫描整个堆找谁引用了当前分区中的对象,只需要扫描RSet即可。

Points-into :代表谁指向了我;
Point-out: 我指向了谁
SATB(Snapshot-At-The-Beginning)起始快照
三色算法
G1垃圾收集器官方文档解读https://www.oracle.com/technetwork/tutorials/tutorials-1876574.html

Exploring the JVM Architecture
Hotspot Architecture

