"Isolate" 在 V8 中的作用是什么?以及如何单独制作 "Isolate" ?

What's the role of "Isolate" in V8? and how can it be possible to make "Isolate" isolately?

我目前发现的 "Isolate" 的解释。

exp #1: http://izs.me/v8-docs/classv8_1_1Isolate.html

"Isolate 表示 V8 引擎的一个孤立实例。 V8 分离株具有完全独立的状态。来自一个隔离区的对象不得用于其他隔离区。当 V8 被初始化时,一个默认的 isolate 被隐式地创建和输入。嵌入器可以创建额外的隔离并在多个线程中并行使用它们。在任何给定时间,最多只能有一个线程进入隔离区。 Locker/UnlockerAPI可以用来同步。"

exp #2: https://developers.google.com/v8/get_started

"An isolate is a VM instance with its own heap."

好的,我明白了。 "Isolate"是一个isolate线程,可以单独运行。以下是我的问题。

  1. 对我来说它看起来就像线程,只是它有自己的堆。有什么区别吗?

  2. 我觉得"Isolate"可以用来实现并发GC。上面的定义说每个 "Isolate" 不能在其他 "Isolate" 中使用。但是并发 GC 应该检查(或标记)主(或其他)线程(或隔离)的活动对象。怎么可能?

  3. 怎么可能保护自己的对象呢? "Isolate" 是线程而不是进程。所以其他线程如果知道地址就可以访问该线程的对象。怎么保护呢?而且我无法理解自己堆的含义。因为如果其他线程知道地址,它可以被其他线程访问。普通线程可以在内存中拥有它们的堆 space。由于堆的地址 space 没有完全分开,但是如果一个线程 malloc 一个内存,除非其他线程知道地址,否则其他线程如何使用它?每个线程只是 malloc 自己的堆 space 和 "Isolate" 有自己的堆 space 有什么区别?

我的问题可以很简单地概括为"Isolate"的作用是什么,怎么可能有自己的堆space,为什么一定要有自己的堆。

如果有人分享 "Isolate" 的一些好的文档,将会非常有帮助。 感谢阅读。

----把问题说清楚---- 我的问题的关键是 问:是什么让 google 在 V8 中实现隔离? isolate 有什么好处,什么是在 V8 中使用 isolate 的好例子?他们(隔离)同时执行什么?

隔离:我们可以 运行 多个 JavaScript 函数独立使用 V8 的单个实例。

  1. It looks like just thread for me, except that it has its own heap. is there any difference?

它们是正交的,一个线程可以同时执行多个isolate,而一个isolate一次只能被一个线程执行。当然,一个 isolate 可以在不同的时间由不同的线程执行,但这可能并不常见。一个 isolate 只是一个 JavaScript VM 的实例,它只有自己的 JavaScript 堆,正常的进程堆仍然在进程中正常共享。

  1. I think "Isolate" can be used for implementing concurrent GC. The definition above says that each "Isolate" cannot be used in other "Isolate". But concurrent GC should check(or mark) the main(or other) thread(or Isolate)'s live objects. How can it be possible?

Mark&Sweep GC 中的非压缩扫描操作可以从另一个线程同时执行。其他 GC 操作,如 compacting sweep、scavenge、marking 只能在 JS 不在 isolate 中执行时执行。

  1. How can it be possible to protect their own objects? "Isolate" is a thread not a process. So other thread can access that thread's object if it knows the address. How could protect it? And I cannot understand the meaning of own heap. Because it can be accessed by other thread if other thread knows the address. And normal thread can have their heap in memory space. Since address space of heap is not seperated exactly but if one thread malloc a memory, how could other thread use it unless others know the address? What's the difference each thread just malloc their own heap space and "Isolate" have its own heap space?

好吧,你不知道地址,不可能让它坚持 V8 API。即使您可以获得地址,使用该地址也不安全,因为 V8 不断地在其堆中移动内容。并且 malloc 不会 return 指向某个 isolate 的 js 堆的地址,因为显然该内存已被 isolate 分配。