-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JIT: Remove HANDLER_ENTRY_MUST_BE_IN_HOT_SECTION #101611
JIT: Remove HANDLER_ENTRY_MUST_BE_IN_HOT_SECTION #101611
Conversation
/azp run runtime-jit-experimental |
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch |
Azure Pipelines successfully started running 1 pipeline(s). |
// we assert that it is OK to create new blocks. | ||
// | ||
assert(fgPredsComputed); | ||
assert(fgSafeBasicBlockCreation); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We previously needed to these transition blocks when splitting after a BBJ_COND
. Since removing its implicit fallthrough behavior, we no longer create transition blocks here.
Build failure in |
Late follow-up to #71273. I noticed
fgRelocateEHRegions
currently never tries to move handler regions (even if we aren't doing hot/cold splitting) becausefgDetermineFirstColdBlock
must keep handler entries hot, which is no longer true. I plan to enable that functionality in the next PR; for now, this cleans up all the dead code around HANDLER_ENTRY_MUST_BE_IN_HOT_SECTION. This should be a no-diff change.cc @dotnet/jit-contrib, @AndyAyersMS PTAL. Thanks!