Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8021936 | 8 | Carlos Lucasius | P4 | Resolved | Fixed | b101 |
In MacroAssembler::tlab_refill():
if (TLABStats) {
ldr(tmp2, Address(Rthread, JavaThread::tlab_slow_allocations_offset()));
add(tmp2, tmp1, 1);
str(tmp2, Address(Rthread, JavaThread::tlab_slow_allocations_offset()));
}
Looks like the one occurrence of "tmp1" should be "tmp2" instead.
if (TLABStats) {
ldr(tmp2, Address(Rthread, JavaThread::tlab_slow_allocations_offset()));
add(tmp2, tmp1, 1);
str(tmp2, Address(Rthread, JavaThread::tlab_slow_allocations_offset()));
}
Looks like the one occurrence of "tmp1" should be "tmp2" instead.
- backported by
-
JDK-8021936 ARM: typo may produce bad stats with TLABStats enabled
-
- Resolved
-