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

Incorrect code generated for simple integer multiplication

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Fixed
    • Icon: P2 P2
    • 1.4.0
    • 1.4.0
    • hotspot
    • None
    • beta2
    • generic
    • solaris

      When compiled with -Xcomp -XX:CompileOnly=.bar, the following program produces the wrong answer:

      public class foo2 {
          public static void main(String[] args) {
      int v2 = bar_none();
              System.out.println("v2 = " + java.lang.Integer.toHexString(v2) );
          }

          static int bar_none() {
      return bar(0x6EEEEEE, 0x5FFFFFFF);
          }

          static int bar(int a1, int a2) {
              int v1, v2, v3, v4;

              v3 = 0x6FEFEFEF;
      v1 = 0xCFEFF05C;
              v2 = (a1*v1) * v3;
              return v2;
          }
      }

            rasbold Chuck Rasbold
            rasbold Chuck Rasbold
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: