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

C2 can not merge homogeneous adjacent two If

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Unresolved
    • Icon: P4 P4
    • tbd
    • 21
    • hotspot

          public static void test(int a, int b) { // ok, identical ifs, apply split_if
              if (a == b) {
                  int_field = 0x42;
              } else {
                  int_field = 42;
              }
              if (a == b) {
                  int_field = 0x42;
              } else {
                  int_field = 42;
              }
          }

          public static void test(int a, int b) { // do nothing
              if (a == b) {
                  int_field = 0x42;
              } else {
                  int_field = 42;
              }
              if (b == a) {
                  int_field = 0x42;
              } else {
                  int_field = 42;
              }
          }

            yyang Yi Yang
            yyang Yi Yang
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated: