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

repeated uncommon trapping for new of klass which is being initialized

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • hs19
    • hs19
    • hotspot
    • b04
    • sparc
    • solaris_9
    • Verified

        That doesn't make much sense unless klass initialization hasn't been
        completed yet. Could all these copy calls be being made from a class
        initializer? This test case has the recompilation behaviour you're
        seeing.

        public class abs {
          public Object copy() {
              return new abs();
          }

          static {
              for (int i = 0; i < 10000000; i++) {
                  abs qc = new abs();
                  Object o = qc.copy();
              }
          }

          public static void main(String[] args) {
          }
        }

        The rules for dealing with classes that are in the being_initialized
        state are somewhat complicated since only the initializing thread is
        allowed to instantiate instances of that class while it's being
        initialized. Other threads must block so a dynamic check is required
        before executing the new. C2 just falls back to the interpreter through an uncommon trap with reason uninitialized which throws out the code and may end up recompiling. It should really just emit a guarded new so you only end up with on extra uncommon trap once the init completes.

              never Tom Rodriguez
              never Tom Rodriguez
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: