@@ -4173,24 +4173,24 @@ const TypeInstPtr *TypeInstPtr::xmeet_unloaded(const TypeInstPtr *tinst, const T
4173
4173
//
4174
4174
assert (loaded->ptr () != TypePtr::Null, " insanity check" );
4175
4175
//
4176
- if (loaded->ptr () == TypePtr::TopPTR) { return unloaded; }
4176
+ if (loaded->ptr () == TypePtr::TopPTR) { return unloaded-> with_speculative (speculative) ; }
4177
4177
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) ; }
4179
4179
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) ; }
4182
4182
}
4183
- else if (unloaded->ptr () == TypePtr::TopPTR) { return unloaded; }
4183
+ else if (unloaded->ptr () == TypePtr::TopPTR) { return unloaded-> with_speculative (speculative) ; }
4184
4184
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) ;
4186
4186
}
4187
4187
4188
4188
// Both are unloaded, not the same class, not Object
4189
4189
// Or meet unloaded with a different loaded class, not java/lang/Object
4190
4190
if (ptr != TypePtr::BotPTR) {
4191
- return TypeInstPtr::NOTNULL;
4191
+ return TypeInstPtr::NOTNULL-> with_speculative (speculative) ;
4192
4192
}
4193
- return TypeInstPtr::BOTTOM;
4193
+ return TypeInstPtr::BOTTOM-> with_speculative (speculative) ;
4194
4194
}
4195
4195
4196
4196
@@ -4593,6 +4593,10 @@ const TypeInstPtr* TypeInstPtr::remove_speculative() const {
4593
4593
_instance_id, nullptr , _inline_depth);
4594
4594
}
4595
4595
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
+
4596
4600
const TypePtr* TypeInstPtr::with_inline_depth (int depth) const {
4597
4601
if (!UseInlineDepthForSpeculativeTypes) {
4598
4602
return this ;
1 commit comments
openjdk-notifier[bot] commentedon Jun 6, 2024
Review
Issues