Skip to content

Commit d7c7326

Browse files
committedJun 6, 2024
8331885: C2: meet between unloaded and speculative types is not symmetric
Backport-of: 7652f9811bfddf08650b0c3277012074873deade
1 parent 8991255 commit d7c7326

File tree

3 files changed

+20
-8
lines changed

3 files changed

+20
-8
lines changed
 

‎src/hotspot/share/opto/type.cpp

+12-8
Original file line numberDiff line numberDiff line change
@@ -4173,24 +4173,24 @@ const TypeInstPtr *TypeInstPtr::xmeet_unloaded(const TypeInstPtr *tinst, const T
41734173
//
41744174
assert(loaded->ptr() != TypePtr::Null, "insanity check");
41754175
//
4176-
if (loaded->ptr() == TypePtr::TopPTR) { return unloaded; }
4176+
if (loaded->ptr() == TypePtr::TopPTR) { return unloaded->with_speculative(speculative); }
41774177
else if (loaded->ptr() == TypePtr::AnyNull) { return make(ptr, unloaded->klass(), interfaces, false, nullptr, off, instance_id, speculative, depth); }
4178-
else if (loaded->ptr() == TypePtr::BotPTR) { return TypeInstPtr::BOTTOM; }
4178+
else if (loaded->ptr() == TypePtr::BotPTR) { return TypeInstPtr::BOTTOM->with_speculative(speculative); }
41794179
else if (loaded->ptr() == TypePtr::Constant || loaded->ptr() == TypePtr::NotNull) {
4180-
if (unloaded->ptr() == TypePtr::BotPTR) { return TypeInstPtr::BOTTOM; }
4181-
else { return TypeInstPtr::NOTNULL; }
4180+
if (unloaded->ptr() == TypePtr::BotPTR) { return TypeInstPtr::BOTTOM->with_speculative(speculative); }
4181+
else { return TypeInstPtr::NOTNULL->with_speculative(speculative); }
41824182
}
4183-
else if (unloaded->ptr() == TypePtr::TopPTR) { return unloaded; }
4183+
else if (unloaded->ptr() == TypePtr::TopPTR) { return unloaded->with_speculative(speculative); }
41844184

4185-
return unloaded->cast_to_ptr_type(TypePtr::AnyNull)->is_instptr();
4185+
return unloaded->cast_to_ptr_type(TypePtr::AnyNull)->is_instptr()->with_speculative(speculative);
41864186
}
41874187

41884188
// Both are unloaded, not the same class, not Object
41894189
// Or meet unloaded with a different loaded class, not java/lang/Object
41904190
if (ptr != TypePtr::BotPTR) {
4191-
return TypeInstPtr::NOTNULL;
4191+
return TypeInstPtr::NOTNULL->with_speculative(speculative);
41924192
}
4193-
return TypeInstPtr::BOTTOM;
4193+
return TypeInstPtr::BOTTOM->with_speculative(speculative);
41944194
}
41954195

41964196

@@ -4593,6 +4593,10 @@ const TypeInstPtr* TypeInstPtr::remove_speculative() const {
45934593
_instance_id, nullptr, _inline_depth);
45944594
}
45954595

4596+
const TypeInstPtr* TypeInstPtr::with_speculative(const TypePtr* speculative) const {
4597+
return make(_ptr, klass(), _interfaces, klass_is_exact(), const_oop(), _offset, _instance_id, speculative, _inline_depth);
4598+
}
4599+
45964600
const TypePtr* TypeInstPtr::with_inline_depth(int depth) const {
45974601
if (!UseInlineDepthForSpeculativeTypes) {
45984602
return this;

‎src/hotspot/share/opto/type.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -1356,6 +1356,7 @@ class TypeInstPtr : public TypeOopPtr {
13561356

13571357
// Speculative type helper methods.
13581358
virtual const TypeInstPtr* remove_speculative() const;
1359+
const TypeInstPtr* with_speculative(const TypePtr* speculative) const;
13591360
virtual const TypePtr* with_inline_depth(int depth) const;
13601361
virtual const TypePtr* with_instance_id(int instance_id) const;
13611362

‎test/hotspot/jtreg/compiler/runtime/unloaded/TestMHUnloaded.java

+7
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,16 @@
3131
*
3232
* @compile TestMHUnloaded.java TestMHUnloadedHelper.java
3333
* @run driver jdk.test.lib.helpers.ClassFileInstaller compiler.runtime.unloaded.TestMHUnloadedHelper
34+
*
35+
* @run main/othervm -Xbootclasspath/a:.
36+
* -Xbatch -XX:-TieredCompilation -XX:CompileCommand=exclude,*::test
37+
* -XX:+UnlockDiagnosticVMOptions -XX:+PrintCompilation -XX:+PrintInlining
38+
* compiler.runtime.unloaded.TestMHUnloaded
39+
*
3440
* @run main/othervm -Xbootclasspath/a:.
3541
* -Xbatch -XX:-TieredCompilation -XX:CompileCommand=exclude,*::test
3642
* -XX:+UnlockDiagnosticVMOptions -XX:+PrintCompilation -XX:+PrintInlining
43+
* -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline
3744
* compiler.runtime.unloaded.TestMHUnloaded
3845
*/
3946

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Jun 6, 2024

@openjdk-notifier[bot]
Please sign in to comment.