You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By looking at the code of Isolate::FindPendingDeopt():
uword Isolate::FindPendingDeopt(uword fp) const {
for (intptr_t i = 0; i < pending_deopts_->length(); i++) {
if ((*pending_deopts_)[i].fp() == fp) {
return (*pending_deopts_)[i].pc();
}
}
FATAL("Missing pending deopt entry");
return0;
It seems to not hit the FATAL but rather a SEGV which might indicate there is some concurrent access of the background compiler to Isolate::pending_deopts_
From this buildbot log:
By looking at the code of
Isolate::FindPendingDeopt()
:It seems to not hit the FATAL but rather a SEGV which might indicate there is some concurrent access of the background compiler to
Isolate::pending_deopts_
/cc @mraleph
The text was updated successfully, but these errors were encountered: