-
Bug
-
Resolution: Fixed
-
P3
-
repo-valhalla
-
x86
Benchmarks location: http://cr.openjdk.java.net/~skuksenko/valhalla/legacy/benchmarks/
Benchmarks: org.openjdk.list.ListIter
Performance regression on Valhalla from -30% to -70%.
Reasons typechecks (to Integer and SampleTask, which are classes not arrays):
1. Loading class ptr is not hoisted out of loop
movabs $0x7f93e3b32200,%r11 ; {metadata('org/openjdk/valhalla/tofind0/ListIter$SampleTask')}
At the same moment r11 is not used and maybe initialized out of loop. In case -XX:-EnableValhalla it is done.
2. Clearing ArrayStorageProperties bits before class ptr comparision:
0x00007f9523f78b2b: mov 0x8(%r12),%r10
0x00007f9523f78b30: shl $0x3,%r10
0x00007f9523f78b34: sar $0x3,%r10
0x00007f9523f78b38: movabs $0x7f93e3b32200,%r11 ; {metadata('org/openjdk/valhalla/tofind0/ListIter$SampleTask')}
0x00007f9523f78b42: cmp %r11,%r10
0x00007f9523f78b45: jne 0x00007f9523f78ce2 ;*checkcast
In reality we don't need to clear that bits at all. Final comparison is performed with class pointer (not array) and doesn't depends on that bits.
Two issues about covers ListIter::hash and ListIter::sum benchmarks.
ListIter::tasks besides has other issues as loading this$0, modCound are also could be moved out of loop.
Benchmarks: org.openjdk.list.ListIter
Performance regression on Valhalla from -30% to -70%.
Reasons typechecks (to Integer and SampleTask, which are classes not arrays):
1. Loading class ptr is not hoisted out of loop
movabs $0x7f93e3b32200,%r11 ; {metadata('org/openjdk/valhalla/tofind0/ListIter$SampleTask')}
At the same moment r11 is not used and maybe initialized out of loop. In case -XX:-EnableValhalla it is done.
2. Clearing ArrayStorageProperties bits before class ptr comparision:
0x00007f9523f78b2b: mov 0x8(%r12),%r10
0x00007f9523f78b30: shl $0x3,%r10
0x00007f9523f78b34: sar $0x3,%r10
0x00007f9523f78b38: movabs $0x7f93e3b32200,%r11 ; {metadata('org/openjdk/valhalla/tofind0/ListIter$SampleTask')}
0x00007f9523f78b42: cmp %r11,%r10
0x00007f9523f78b45: jne 0x00007f9523f78ce2 ;*checkcast
In reality we don't need to clear that bits at all. Final comparison is performed with class pointer (not array) and doesn't depends on that bits.
Two issues about covers ListIter::hash and ListIter::sum benchmarks.
ListIter::tasks besides has other issues as loading this$0, modCound are also could be moved out of loop.
- relates to
-
JDK-8231613 [lworld] TestLWorld::test92/test94 fail due to unexpected trap count
-
- Resolved
-
-
JDK-8336782 [lworld] CallStaticJavaNode::remove_useless_allocation does not handle dying subgraph
-
- Resolved
-
-
JDK-8301664 [lworld] Inconsistent CastPP type leads to infinite loop in PhaseIterGVN::optimize
-
- Resolved
-
-
JDK-8229288 [lworld] C2 should not clear storage property bits if comparing to non-inline array klass
-
- Resolved
-