Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8186216 Use ldc + condy instead of invokedynamic for constant lambdas
  3. JDK-8193894

compare the performace of using ldc + condy vs indy for non-capturing lambdas

XMLWordPrintable

    • Icon: Sub-task Sub-task
    • Resolution: Unresolved
    • Icon: P3 P3
    • tbd
    • 10
    • tools

      One of the projects under the Amber project umbrella is dynamic constants [1], which is currently developed at repo [2]. Most of the development is in the hotspot and libraries side. The main development on the compiler side so far has been the generation of an ldc of a condy instead of an indy call for the invocation of non-capturing lambdas. The goal of this task is to evaluate the difference, performance-wise, between both approaches.

      This alternative generation, ldc + condy, is active by default in the condy project. In order to generate lambda invocations in the old way the following option should be passed to the compiler: -XDforNonCapturingLambda=generateIndy, to explicitly use the new approach whenever possible the option is: -XDforNonCapturingLambda=generateCondy

      Below there is a code example for which and ldc of a condy should be generated instead of an indy:

      import java.util.stream.*;

      public class CondyForLambdaSmokeTest {
          void lookForThisMethod() {
              IntStream.of(1,2,3).reduce((a,b) -> a+b);
          }
      }

      [1] http://openjdk.java.net/jeps/309
      [2] http://hg.openjdk.java.net/amber/amber branch: condy

            redestad Claes Redestad
            vromero Vicente Arturo Romero Zaldivar
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated: