V8-CheatSheet
V8 CheatSheet | JavaScript V8 引擎必知必会

Parse | 语法解析
Compile | 编译
GC 垃圾回收
void MarkCompactCollector::CollectGarbage() {
Prepare();
MarkLiveObjects();
SweepLargeObjectSpace();
if (compacting_collection_) {
EncodeForwardingAddresses();
UpdatePointers();
RelocateObjects();
RebuildRSets();
} else {
SweepSpaces();
}
Finish();
}
Concurrent Marking | 并发标记
主流
