Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8347459

C2: missing transformation for chain of shifts/multiplications by constants

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Fixed
    • Icon: P4 P4
    • 25
    • 25
    • hotspot
    • b16

      I noticed that:

          private static int test1(int i) {
              return ((i * 1024) * 1024);
          }

      is compiled down to:

      (LShiftI (LShiftI Parm #10) #10)

      when it could be:

      (LShiftI Parm #20)

      I suppose there are other missing similar transformations with shift variants and multiplication.

            mchevalier Marc Chevalier
            roland Roland Westrelin
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

              Created:
              Updated:
              Resolved: