gpt4 book ai didi

javascript - "Isolate"在V8中的作用是什么?怎么可能单独制作 "Isolate"呢?

转载 作者:数据小太阳 更新时间:2023-10-29 06:06:15 26 4
gpt4 key购买 nike

到目前为止我发现的“隔离”的解释。

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

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

实验#2:https://developers.google.com/v8/get_started

“隔离是一个具有自己堆的 VM 实例。”

好的,我明白了。 “隔离”是一个可以单独运行的隔离线程。以下是我的问题。

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

  2. 我认为“隔离”可以用于实现并发 GC。上面的定义说每个“Isolate”不能用于其他“Isolate”。但是并发 GC 应该检查(或标记)主(或其他)线程(或隔离)的事件对象。怎么可能?

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

我的问题可以很容易地概括为“Isolate”的作用是什么,怎么可能有自己的堆空间,为什么要有自己的堆。

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

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

最佳答案

  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 不会返回指向某个 isolate 的 js 堆的地址,因为显然该内存已被 isolate 分配。

关于javascript - "Isolate"在V8中的作用是什么?怎么可能单独制作 "Isolate"呢?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29299397/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com