Skip to content

Commit 802b88a

Browse files
committed
Compare frames at jump
1 parent 090e9df commit 802b88a

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

src/hotspot/share/classfile/stackMapFrame.cpp

+7
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,13 @@ bool StackMapFrame::is_assignable_to(
191191
return false;
192192
}
193193

194+
// Check that assert unset fields are compatible
195+
bool compatible = unset_fields_compatible(target->assert_unset_fields());
196+
log_info(verification)("Frames compatible: %s", compatible ? "true":"false");
197+
if (!compatible) {
198+
return false;
199+
}
200+
194201
if ((_flags | target->flags()) == target->flags()) {
195202
return true;
196203
} else {

src/hotspot/share/classfile/stackMapFrame.hpp

+13
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,19 @@ class StackMapFrame : public ResourceObj {
200200
return is_subset;
201201
}
202202

203+
bool unset_fields_compatible(AssertUnsetFieldTable* table) const {
204+
// table is target from stackmaptable
205+
bool compatible = true;
206+
auto is_unset = [this, &table, &compatible] (const NameAndSig& key, const NameAndSig& value) {
207+
if (!value._satisfied) {
208+
bool tmp = table->get(key)->_satisfied;
209+
compatible &= !tmp;
210+
}
211+
};
212+
_assert_unset_fields->iterate_all(is_unset);
213+
return compatible;
214+
}
215+
203216
void print_strict_fields() {
204217
auto printfields = [&] (const NameAndSig& key, const NameAndSig& value) {
205218
log_info(verification)("Strict field: %s%s (Satisfied: %s)",

0 commit comments

Comments
 (0)