CompilerConfiguration: clarify indy is always on#2319
CompilerConfiguration: clarify indy is always on#2319dilyanpalauzov wants to merge 1 commit intoapache:masterfrom
Conversation
|
"always enabled" should probably read "enabled by default" -- it is still possible to disable until all the call site code is removed (see #1934) |
|
At https://groovy-lang.org/releasenotes/groovy-4.0.html#Groovy4.0-indy-only is written:
For me this means that classic-site based bytecode cannot be generated and thus indy-generation is always enabled. (from the above hyperlink)
Is #1934 about removing support for interpreting files, compiled using Groovy 3 and utilizing call-site based bytecode? |
|
You can still set system property "groovy.target.indy" to false or you can set optimization option "indy" to false. This will enable the old call site code generation. These default to true in Groovy 4+ and no separate artifacts are created or tested. |
|
Is my reading of https://groovy-lang.org/releasenotes/groovy-4.0.html#Groovy4.0-indy-only correct, that (there is written) with Groovy 4.0 only indy-code can be generated, and call-site based code cannot be generated? If my reading of that text is correct, is the text at the hyperlink also correct? |
Consider applying also this patch. I think it is useful in eliminating no-indy cases, but I am not going to validate myself this assumption.
I think when searching with
all occurences should be evaluated, whether they can be deleted.
This probably is also irrelevant now from subprojects/performance/README.adoc: