-
Bug
-
Resolution: Fixed
-
P4
-
hs19
-
b04
-
sparc
-
solaris_9
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2195918 | 7 | Tom Rodriguez | P4 | Closed | Fixed | b102 |
JDK-2197834 | 6u23 | Tom Rodriguez | P4 | Resolved | Fixed | b01 |
JDK-2199734 | 6u22m | Tom Rodriguez | P4 | Resolved | Fixed | b01 |
JDK-2195313 | 6u22-rev | Dmitriy Samersoff | P4 | Resolved | Fixed | b06 |
JDK-2197543 | 6u21p | Tom Rodriguez | P4 | Resolved | Fixed | b03 |
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.
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.
- backported by
-
JDK-2195313 repeated uncommon trapping for new of klass which is being initialized
-
- Resolved
-
-
JDK-2197543 repeated uncommon trapping for new of klass which is being initialized
-
- Resolved
-
-
JDK-2197834 repeated uncommon trapping for new of klass which is being initialized
-
- Resolved
-
-
JDK-2199734 repeated uncommon trapping for new of klass which is being initialized
-
- Resolved
-
-
JDK-2195918 repeated uncommon trapping for new of klass which is being initialized
-
- Closed
-