JIT 是 PyPy 中 PVM 的一部分吗?
Is JIT a part of the PVM in PyPy?
JIT 是 PyPy 中 PVM 的一部分吗?
JIT 是否将经常使用的代码转换为机器码,如果是这种情况,那么是否在不将其转换为机器码的情况下解释其余代码(除了经常执行的代码)?
PyPy 是实现还是解释器?
Is JIT a part of the PVM in PyPy?
JIT 编译器可以被认为是虚拟机的一部分,是的。不过,这完全是定义问题。如果有人画了一张图,其中 JIT 被表示为一个单独的组件,只是与 VM 紧密集成,我也接受。
Does JIT translates frequently used code into machine code
是的。
is the remaining code (apart from the frequently executed one) interpreted without converting it into machine code?
是的,字节码将被解释直到它被执行得足够频繁,并且代码中执行得不够频繁的部分继续被解释。
Is PyPy an implementation or an interpreter?
解释器是编程语言的实现。
JIT 是 PyPy 中 PVM 的一部分吗?
JIT 是否将经常使用的代码转换为机器码,如果是这种情况,那么是否在不将其转换为机器码的情况下解释其余代码(除了经常执行的代码)?
PyPy 是实现还是解释器?
Is JIT a part of the PVM in PyPy?
JIT 编译器可以被认为是虚拟机的一部分,是的。不过,这完全是定义问题。如果有人画了一张图,其中 JIT 被表示为一个单独的组件,只是与 VM 紧密集成,我也接受。
Does JIT translates frequently used code into machine code
是的。
is the remaining code (apart from the frequently executed one) interpreted without converting it into machine code?
是的,字节码将被解释直到它被执行得足够频繁,并且代码中执行得不够频繁的部分继续被解释。
Is PyPy an implementation or an interpreter?
解释器是编程语言的实现。