条件 JIT 编译

发布于 2024-09-19 03:23:45 字数 570 浏览 4 评论 0原文

在 Java 中,我们可以像这样进行条件编译。

private static final boolean DO_CHECK = false;

...

if (DO_CHECK) {
   // code here
}

编译器会看到 DO_CHECK 始终为 false,并删除整个 if 语句。然而,有时,特别是在库代码中,我们不能使用条件编译,但我想知道,我们可以使用条件JIT编译吗?

 private final boolean doCheck;

 public LibraryClass(boolean d) {
    doCheck = d;
 }


 public void oftenCalledMethod() {
     if (doCheck) {
       ...
     }
 }

如果我们使用 doCheck = false 构造 LibraryClass,JIT 编译器(在 Hotspot 中)是否也会删除 if 语句?

更新:我刚刚意识到 JIT 编译很可能不是在实例级别完成的,所以我认为这不起作用,但也许有一种静态方法?

In Java we can do conditional compilation like so

private static final boolean DO_CHECK = false;

...

if (DO_CHECK) {
   // code here
}

The compiler will see that DO_CHECK is always false and remove the entire if-statement. However, sometimes, especially in library code, we can't use conditional compilation, but I'm wondering, can we use conditional JIT-compilation?

 private final boolean doCheck;

 public LibraryClass(boolean d) {
    doCheck = d;
 }


 public void oftenCalledMethod() {
     if (doCheck) {
       ...
     }
 }

If we construct LibraryClass with doCheck = false, will the JIT-compiler (in Hotspot) remove the if-statement as well?

Update: I just realised that JIT-compilation is most probably not done on instance level, so I think this wouldn't work, but maybe there's a static way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

俏︾媚 2024-09-26 03:23:45

JIT 代表“及时”。这意味着在虚拟机认为需要它之前就编译了一些东西。因此,根据检查的原子性级别,您可能会发现永远不会运行的代码无论如何都不会被 JIT 编译。

JIT stands for "just in time". That means stuff is compiled just before the VM thinks it needs it. So depending on the level of atomicity of checking you might find the code that never gets run never gets JIT compiled anyway.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文