-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
[VPlan] Run recipe removal and simplification after optimizeForVFAndUF. #125926
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -170,6 +170,14 @@ struct Recipe_match { | |
if ((!matchRecipeAndOpcode<RecipeTys>(R) && ...)) | ||
return false; | ||
|
||
if (!(std::is_same_v<VPWidenEVLRecipe, RecipeTys> || ...) && | ||
isa<VPWidenEVLRecipe>(R)) { | ||
// Don't match VPWidenEVLRecipe if it is not explicitly part of RecipeTys. | ||
// Otherwise we might match it unexpectedly when trying to match | ||
// VPWidenRecipe, of which VPWidenEVLRecipe is a subclass of. | ||
Comment on lines
+173
to
+177
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this relevant in general for any recipe that is a subclass of another? |
||
return false; | ||
} | ||
|
||
assert(R->getNumOperands() == std::tuple_size<Ops_t>::value && | ||
"recipe with matched opcode the expected number of operands"); | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -163,6 +163,10 @@ struct VPlanTransforms { | |
/// Lower abstract recipes to concrete ones, that can be codegen'd. | ||
static void convertToConcreteRecipes(VPlan &Plan); | ||
|
||
/// Perform instcombine-like simplifications on recipes in \p Plan. Use \p | ||
/// CanonicalIVTy as type for all un-typed live-ins in VPTypeAnalysis. | ||
static void simplifyRecipes(VPlan &Plan, Type &CanonicalIVTy); | ||
Comment on lines
+166
to
+168
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would be better for all live-ins to carry their type, e.g., by holding an underlying Undef to hold the Type for live-ins whose Value is not (yet) available, rather than supplying this type externally to VPTypeAnalysis, simplifyRecipes(), etc. In general, better to encode all IR information inside VPlan than to pass it as additional operands to VPlanTransforms. |
||
|
||
/// If there's a single exit block, optimize its phi recipes that use exiting | ||
/// IV values by feeding them precomputed end values instead, possibly taken | ||
/// one step backwards. | ||
|
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.
Which passes can/should be wrapped with runPass()?
Would be better to have each pass take care of printing and/or verification itself, somehow, rather than extracting this aspect to an explicit external wrapper.