谁在何时调用describeConstable()? [英] Who calls describeConstable(), and when?

查看:127
本文介绍了谁在何时调用describeConstable()?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我很高兴地偶然发现了

I have stumbled somewhat happily into Constable and the like in JDK 15. I mostly understand.

在研究了所有编译器理论并且甚至理解了一点点之后,我仍然发现这个问题:谁调用了 Constable describeConstable()方法,何时?? Brian的演示似乎暗示了它是在编译时以某种方式访问​​的.对于此类事情幼稚,我期望它出现在

After frolicking through all the compiler theory and even understanding a little bit of it, I find I still have this question: Who calls a Constable's describeConstable() method, and when? Brian's presentation seemed to imply it is somehow accessed at compile time. Being naïve about such things, I was expecting it to show up in the usage page under jdk.compiler or something. Instead, the only consumption seems to be in the jdk.incubator.foreign package. (Obviously I understand it may be used by some private machinery somewhere that isn't exposed by the usage page; hence my question.)

我将 Thread.dumpStack()放在实现 Constable 并返回 Optional.ofNullable(null)只是为了查看会发生什么,而…在编译或运行时什么都没有发生.

I placed a Thread.dumpStack() in a describeConstable() implementation of a dumb class that implements Constable and that returns Optional.ofNullable(null) just to see what would happen and…nothing happened at compile- or runtime.

(我确实知道,直到JDK 12之前,如果您想编写动态常量,就必须使用ASM或ByteBuddy或类似的东西.但是,我天真地看起来,就像 Constable 一样,允许您的用户类插入" Java编译器并允许 it 为您进行常量编写.我也知道 java.lang.constant 主要是为编译器作者准备的,但是在我看来 Constable 有点例外,最后,我显然明白 I 可以随时调用此方法我希望,但这显然不是它的目的.)

(I do know that until JDK 12 if you wanted to write dynamic constants you had to use ASM or ByteBuddy or something similar. To my naïve eyes it looks, though, like Constable is there to allow your user class to "plug into" the Java compiler and allow it to do the constant writing for you. I am also aware that the classes and methods in java.lang.constant are primarily intended for compiler writers, but Constable seemed to me to be a bit of an exception. Finally, I obviously understand that I can call this method any time I wish, but that's clearly not what it's intended for.)

编辑:非常感谢以下一些非常有帮助和耐心的回答和评论,我想我已经开始了解它了(我不是一个编译器人员,因此点应该很明显).虽然我知道一旦 X实例实现Constable 存在,那么 ContantDesc 就会从其 describeConstable()返回必须由其他常量描述符组成(本身),而据我了解,常量工厂"(例如 ClassDesc#of()等)可能会在编译时调用,并且显然必须仅接受其他常量作为它们可能需要的任何参数,我仍然不清楚如何任意 X实现Constable 首先在编译过程中实例化,同时…正在被编译(!),使得 describeConstable()

EDIT: Thanks (very much) to some of the extremely helpful and patient answers and comments below, I think I'm starting to get it (I'm not a compiler guy which by this point should be quite obvious). While I understand that once an instance of X implements Constable exists then the ContantDesc it returns from its describeConstable() must be made (itself) of other constant descriptors, and while I understand that "constant factories" (such as ClassDesc#of() and so on) may be called at compile time and obviously must accept only other constants as any arguments they might require, I'm still not clear on how an arbitrary X implements Constable is instantiated during compilation in the first place while…it is being compiled (!) such that describeConstable() can be called on it at compile time.

请牢记这个问题的答案可能是我在总体上缺少关于编译器的基本知识,或者是它们在静态分析过程中遇到的麻烦.我只是看到一个实例方法( describeConstable()),该实例方法需要在对象的实例( X实现Constable )上调用,并具有对象有人必须调用其构造函数.我不清楚Java编译器如何知道如何使用其任意的,可能是多参数的构造函数构造 X实现Constable ,以便随后可以在其上调用 describeConstable()它.

Please kindly bear in mind the answer to this question may be something rudimentary that I'm missing about compilers in general, or the sorts of hijinks they get up to during static analysis. I just see an instance method (describeConstable()) that needs to be invoked on an instance of an object (X implements Constable) and in order to have an instance of an object someone has to call its constructor. It's unclear to me how the Java compiler could know how to construct my X implements Constable with its arbitrary, possibly multi-argument constructor so that it could then call describeConstable() on it.

推荐答案

到目前为止,我将说出我的理解和了解.这确实是一个有趣的功能.

I will say what I understood and know, so far. It is indeed an interesting feature.

谁调用了Constable的describeConstable()

Who calls a Constable's describeConstable()

javac 将.

什么时候?

首次调用/需要时.

更详细的说明.您知道lambda是如何编译的吗?如果没有,这是其中的简短介绍(稍后会有所帮助):

A more detailed explanation. Do you know how lambdas are compiled? If not, here is the very short intro in that (it will help a lot later):

Runnable r = () -> {System.out.println("easy, peasy");};
r.run();

如果您查看字节码,将会有一个 invokedynamic 调用:

if you look at the bytecode, there is going to be an invokedynamic call:

invokedynamic #7,  0 // InvokeDynamic #0:run:()Ljava/lang/Runnable;

依次将其称为引导程序".方法:

this, in turn, will call a "bootstrap" method:

BootstrapMethods:
 0: #39 REF_invokeStatic java/lang/invoke/LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;

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