群发词典
首页
查询
JIT compilation
JIT编译
常用释义
JIT编译
扩展信息
网络释义
即时编译
各装置的 VM 会在执行时进行
即时编译
(
JIT Compilation
),将程式码转换为该装置的原生码来执行。测试程式码时除了使用 PS …
实时编译
...观察,Nitro JavaScript 引擎是透过
实时编译
(
JIT compilation
)的方式来将JavaScript程序代码转换、优化,成为ARM处理器 …
例句
全部
One
of
the
activities
that
will
interfere
with
your
benchmark
is
JIT
compilation
of
your
code
.
JIT
会
编译
你
的
代码
,
这
也是
众多
影响
基准
测试
的
行为
之一
。
This
counter
is
updated
at
the
end
of
every
JIT
compilation
phase
.
在
每一
JIT
编译
阶段
的
结尾
更新
此
计数器
。
JIT
compilation
can
be
used for
softer
RT
scenarios
where
compilation
can
occur
when
no
higher
priority
work
needs
to be done
.
JIT
编译
可
用于
软
RT
场景
,
其中
编译
将
在
不
需要
执行
高
优先
级
任务
时
发生
。
The MMI
threshold
count
can
be
lowered
to
speed
up
JIT
compilation
of
a
method
or
increased
to
achieve
an
opposite
effect
.
可以
减小
MMI
上限
计数器
,
从而
加速
JIT
编译
一个
方法
的
过程
;
或者
增大
它
以
达到
相反
的
效果
。
The
JIT
compilation
of
a
Java
method
now
occurs
asynchronously
on
a
dedicated
thread
separate
from
the
calling
thread
.
Java
方法
的
JIT
编译
现在
在
一个
独立
于
进行
调用
的
线程
的
专用线
程
上
异步
地
执行
。
An AOT-compiled
method
is also subject
to
JIT
compilation
,
so
after
initial
execution
as AOT
code
,
it
may
be
optimised
further
by
the
JIT
.
AOT
编译
的
方法
仍然
属于
JIT
编译
处理
的
范围
,
所以
在
最初
以
AOT
代码
形式
执行
方法
之后
,
JIT
仍然
可以
进一步
优化
它
。
Although
JIT
compilation
provides
some
advantages
for
speeding up
execution
,
it
does
so
at the
cost
of
larger
amounts of
memory
.
虽然
JIT
编译
为
加快
执行
提供了
一些
优势
,
但是
这
是
以
巨大
的
内存
为
代价
进行
的
。
The
runtime
updates
its
metadata
tables
, places the
new
MSIL
into
the
process
,
and
sets
up a just-in-time
(
JIT
)
compilation
of
the
new
MSIL
.
运行
时
将
更新
其
元数据
表
、
将
新
MSIL
置于
进程
中
并
设置
对
新
MSIL
的
实时
(
JIT
)
编译
。
JIT
compilation
provides
environment
-
specific
optimization
,
runtime
type
safety
,
and
assembly
verification
.
JIT
编译
技术
提供
了
特定
环境
下
的
优化
、
运行时
类型
安全
以及
汇编
验证
。
for
frequently
executed
bytecode
,
JIT
compilation
is
used
to
run
at
high speed
,
after
an
initial
phase
of
slow
interpretation
.
为
频繁
执行
的
字节码
,
JIT
编译
用于
运行
高速
,
经过
一个
缓慢
的
解释
初始
阶段
。
A
JIT
compilation
phase
occurs
when
a
method
and its
dependencies
are compiled
.
JIT
编译
阶段
在
编译
方法
及其
依赖项
时
出现
。
Determines
whether the
JIT
compilation
process
can
verify
the
type
safety
of
the
assembly
.
确定
JIT
编译
过程
是否
可以
验证
程序
集
的
类型
安全
。
JIT
compilation
converts
MSIL
to
native
code
on
demand
at
application
run
time
,
when the
contents
of
an
assembly
are loaded
and
executed
.
在
应用程序
运行
时
,
JIT
编译
可以
在
加载
和
执行
程序集
内容
的
过程
中
根据
需要
将
MSIL
转换
为
本机
代码
。
You
can
greatly
increase
your
confidence
about achieving
steady
-
state
performance
if
you
can
determine
when
JIT
compilation
occurs
.
如果
可以
判断
什么
时候
JIT
编译
,
就
可以
更
有
把握
地
确定
稳定
状态
性能
。
Unlike
JIT
compilation
,
AOT
compilation
does not
employ
optimisations
based
on
the
dynamic
analysis
of an
executing
Java
method
.
与
JIT
编译
不同
,
AOT
编译
并不
根据
对
Java
方法
的
动态
分析
执行
优化
。
Although
platform
neutrality
is
maintained
with
JIT
compilation
,
it comes
at
a
price
.
尽管
通过
JIT
编译
保持
了
平台
无关
性
,
但是
付出
了
一定
代价
。
JIT
compilation
is
significantly
different
from
interpreting
code
.
JIT
编译
与
解释
代码
有
很
大
的
不同
。
You
can
disable
JIT
compilation
of
a
failing
method
using
the
SKIP
option
of the JITC_COMPILEOPT
variable
.
您
可以
使用
JITC_COMPILEOPT
变量
的
SKIP
选项
禁用
对
失败
方法
进行
JIT
编译
。
When
the
runtime
executes
this
assembly
,
it
reverts
to
JIT
compilation
for
the
methods
that
were
not
included
in
the
native
image
.
当
运行库
执行
此
程序集
时
,
对于
那些
不
包括
在
本
机
映像
中
的
方法
,
它
将
恢复
为
JIT
编译
。
ABAP
is
interpreted
byte
code
with
no
JIT
compilation
,
so
we
do
in
fact
run
an
interpreter
inside
another
interpreter
.
ABAP
是
用
字节
码
解释
的
,
与
JIT
不
兼容
,
因此
我们
实际上
是
在
一个
解释
器
中
运行
这
另一个
解释
器
。
Bochs
's
internal
instruction
cache
provides
a
nice
trade-off
to
traditional
JIT
compilation
.
Bochs
的
内部
指令
缓存
为
传统
JIT
编译
进行
了
很
好
的
权衡
。
Use
the Prelink
and
PrelinkAll
methods
to
cause
JIT
-
compilation
of
the
stub
that
supports
native
to
managed
calls
.
使用
Prelink
和
PrelinkAll
方法
来
引发
支持
本机
到
托管
调用
的
存根
(
stub
)
的
JIT
编译
。
Per
Apple
's
iPhone
policy
,
no
application
can
include
code
that
requires
Just-in-Time (
JIT
)
compilation
.
根据
苹果
的
iPhone
政策
,
任何
应用程序
都
不能
包含
需要
JIT
编译
的
代码
。
The JVM performs
JIT
compilation
of
byte
code
into
machine
code
.
JVM
可
将
字节
代码
即时
编译
为
机器
代码
。
See
Resources
for
more
details
on
JIT
compilation
.
有关
JIT
编译
的
更多
详细信息
,
请
参阅
参考资料
。
To
my
knowledge
,
no
perfect
way
to
detect
JIT
compilation
exists
.
根据
我
的
知识
,
还
没有
探测
JIT
编译
是否
发生
的
完美
方法
。
In
addition
,
you
can
configure
the
JIT
compilation
for
debugging
in
much
the
same
way
.
此外
,
还
可以
采用
十分
类似
的
方式
配置
JIT
编译
以
用于
调试
。
LinkDemand
happens
at
just-in-time
(
JIT
)
compilation
time
and
checks
only
the
immediate
caller
.
LinkDemand
在
实时
(
JIT
)
编译
时
发生
,
只
检查
直接
调用
方
。
Specifies
whether
JIT
compilation
generates
code
that is
easier
to
debug
.
指定
JIT
编译
是否
生成
更
易于
调试
的
代码
。
Default
JIT
compilation
, whereby the JIT compiler
thread
runs
at
low
priority
默认
JIT
编译
,
JIT
编译
器
线程
在
较低
优先
级
上
运行
更新时间:2025-06-11 01:01