Java HotSpot中固有方法的汇编实现代码在哪里? [英] Where is the assembly implementation code of the intrinsic method in Java HotSpot?

查看:102
本文介绍了Java HotSpot中固有方法的汇编实现代码在哪里?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

来自 http://hg.openjdk.java.net/jdk8/jdk8/hotspot/file/87ee5ee27509/src/share/vm/classfile/vmSymbols.hpp ,我可以看到内部方法声明如下:

from http://hg.openjdk.java.net/jdk8/jdk8/hotspot/file/87ee5ee27509/src/share/vm/classfile/vmSymbols.hpp, I can see the intrinsic method declare like:

do_intrinsic(_getByte, sun_misc_Unsafe, getByte_name, getByte_signature, F_RN) \

但是如何找到方法_getByte的实际实现(我认为是汇编代码)?

but how to find the actually implementation(assembly code I think) of the method _getByte?

推荐答案

但是如何找到实际的实现(我认为的汇编代码) _getByte

but how to find the actually implementation(assembly code I think) of the method _getByte

通过在IDE中寻找vmIntrinsics::_getByte或简单地greping HotSpot源.

By looking for vmIntrinsics::_getByte in your IDE or simply by grepping HotSpot sources.

但是,找不到汇编代码.通常,将对HotSpot中内在方法的调用转换为JIT编译器的中间表示(IR).在编译的解析阶段,会将相应的IR节点手动添加到节点图中.

However, you won't find the assembly code. Calls to intrinsic methods in HotSpot are typically translated to JIT compiler's intermediate representation (IR). Corresponding IR nodes are manually added to the node graph at the parsing stage of compilation.

由于不同的JIT编译器具有不同的IR,因此需要分别为C1和C2实现内在函数.

Since different JIT compilers have different IRs, intrinsics need to be implemented separately for C1 and C2.

例如,关于_getByte

登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆