| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
[vm] Fix race between DartEntry::InvokeFunction and background compiler / other isolates.
Before:
code := function.CurrentCode()
safepoint transition VM->Generated (might yield to background compiler's safepoint operation)
InvokeEntryStub(code)
After:
safepoint transition VM->Generated (might yield to background compiler's safepoint operation)
code := function.CurrentCode()
InvokeEntryStub(code)
TEST=ci
Bug: https://github.com/dart-lang/sdk/issues/60492
Bug: https://github.com/dart-lang/sdk/issues/62169
Change-Id: I9f0ac207361ed38101ca3fae10766894c4c5e47c
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/467480
Commit-Queue: Ryan Macnak <rma...@google.com>
Reviewed-by: Alexander Markov <alexm...@google.com>
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |