-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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: Skip cost improvement check in 3-opt for exceptionally costly layouts #110069
JIT: Skip cost improvement check in 3-opt for exceptionally costly layouts #110069
Conversation
src/coreclr/jit/fgopt.cpp
Outdated
@@ -4927,21 +4927,33 @@ Compiler::ThreeOptLayout::ThreeOptLayout(Compiler* comp) | |||
// endPos - The inclusive ending index of the region | |||
// | |||
// Returns: | |||
// The region's layout cost | |||
// The region's layout cost, or 'BB_MAX_WEIGHT' for pathalogically costly layouts |
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.
// The region's layout cost, or 'BB_MAX_WEIGHT' for pathalogically costly layouts | |
// The region's layout cost, or 'BB_MAX_WEIGHT' for pathologically costly layouts |
/azp run runtime-coreclr libraries-jitstress, Antigen |
Azure Pipelines successfully started running 2 pipeline(s). |
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.
dont wanna approve anything
/azp run runtime-coreclr libraries-jitstress |
Azure Pipelines successfully started running 1 pipeline(s). |
cc @dotnet/jit-contrib, @AndyAyersMS PTAL. |
/ba-g Linux-arm64 NativeAOT build timed out. |
Fixes #109984.