-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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] Verify scalar types in VPlanVerifier. NFCI #122679
Changes from all commits
fe36dfe
f7b716d
561b1a9
f18d8db
6ad47a9
71ec919
d7fec40
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 |
---|---|---|
|
@@ -60,7 +60,10 @@ Type *VPTypeAnalysis::inferScalarTypeForRecipe(const VPInstruction *R) { | |
} | ||
case Instruction::ICmp: | ||
case VPInstruction::ActiveLaneMask: | ||
return inferScalarType(R->getOperand(1)); | ||
assert(inferScalarType(R->getOperand(0)) == | ||
inferScalarType(R->getOperand(1)) && | ||
"different types inferred for different operands"); | ||
return IntegerType::get(Ctx, 1); | ||
case VPInstruction::ComputeReductionResult: { | ||
auto *PhiR = cast<VPReductionPHIRecipe>(R->getOperand(0)); | ||
auto *OrigPhi = cast<PHINode>(PhiR->getUnderlyingValue()); | ||
|
@@ -71,6 +74,9 @@ Type *VPTypeAnalysis::inferScalarTypeForRecipe(const VPInstruction *R) { | |
case VPInstruction::FirstOrderRecurrenceSplice: | ||
case VPInstruction::Not: | ||
case VPInstruction::ResumePhi: | ||
case VPInstruction::CalculateTripCountMinusVF: | ||
case VPInstruction::CanonicalIVIncrementForPart: | ||
case VPInstruction::AnyOf: | ||
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. The documentation for
which implies to me that the input does not have to be a vector of i1 types. For example, the input could be a vector of i32s and any lane that's non-zero could lead to a return value of
I wonder if it's also worth tightening up the documentation of AnyOf to say something like:
|
||
return SetResultTyFromOp(); | ||
case VPInstruction::ExtractFromEnd: { | ||
Type *BaseTy = inferScalarType(R->getOperand(0)); | ||
|
@@ -79,6 +85,9 @@ Type *VPTypeAnalysis::inferScalarTypeForRecipe(const VPInstruction *R) { | |
return BaseTy; | ||
} | ||
case VPInstruction::LogicalAnd: | ||
assert(inferScalarType(R->getOperand(0))->isIntegerTy(1) && | ||
inferScalarType(R->getOperand(1))->isIntegerTy(1) && | ||
"LogicalAnd operands should be bool"); | ||
return IntegerType::get(Ctx, 1); | ||
case VPInstruction::PtrAdd: | ||
// Return the type based on the pointer argument (i.e. first operand). | ||
|
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.
Is this caught by the verifier?
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.
Yeah in about 34 of the test cases, it mainly triggers when checking the operands of an or VPInstruction. The below is from llvm/test/Transforms/LoopVectorize/single_early_exit.ll and triggers the asesrtion on
vp<%11>
:EMIT vp<%10> = icmp
has an inferred scalar type of i64 from the vector-trip-countvp<%1>
.But
vp<%9>
gets i1 from theWIDEN ir<%cmp3> = icmp
.I think the EMIT icmp should also be i1, to bring it inline with VPWidenRecipe: