[Mlir-commits] [mlir] 5cba1c6 - [SVE] Remove calls to VectorType::getNumElements from mlir
Christopher Tetreault
llvmlistbot at llvm.org
Mon Jun 29 10:29:53 PDT 2020
Author: Christopher Tetreault
Date: 2020-06-29T10:29:39-07:00
New Revision: 5cba1c6336c790877b631e4fcd3cb6e49452a00c
URL: https://github.com/llvm/llvm-project/commit/5cba1c6336c790877b631e4fcd3cb6e49452a00c
DIFF: https://github.com/llvm/llvm-project/commit/5cba1c6336c790877b631e4fcd3cb6e49452a00c.diff
LOG: [SVE] Remove calls to VectorType::getNumElements from mlir
Reviewers: efriedma, ftynse, rriddle
Reviewed By: ftynse, rriddle
Subscribers: tschuett, rkruppe, psnobl, mehdi_amini, rriddle, jpienaar, shauheen, antiagainst, nicolasvasilache, arpith-jacob, mgester, lucyrfox, aartbik, liufengdb, stephenneuendorffer, Joonsoo, grosul1, Kayjukh, jurahul, msifontes
Tags: #mlir
Differential Revision: https://reviews.llvm.org/D82583
Added:
Modified:
mlir/lib/Conversion/StandardToLLVM/StandardToLLVM.cpp
mlir/lib/Dialect/LLVMIR/IR/LLVMDialect.cpp
mlir/lib/Target/LLVMIR/ModuleTranslation.cpp
Removed:
################################################################################
diff --git a/mlir/lib/Conversion/StandardToLLVM/StandardToLLVM.cpp b/mlir/lib/Conversion/StandardToLLVM/StandardToLLVM.cpp
index eb49794dc2cb..9b651bb8b80a 100644
--- a/mlir/lib/Conversion/StandardToLLVM/StandardToLLVM.cpp
+++ b/mlir/lib/Conversion/StandardToLLVM/StandardToLLVM.cpp
@@ -2184,7 +2184,7 @@ struct RsqrtOpLowering : public ConvertOpToLLVMPattern<RsqrtOp> {
[&](LLVM::LLVMType llvmVectorTy, ValueRange operands) {
auto splatAttr = SplatElementsAttr::get(
mlir::VectorType::get(
- {cast<llvm::VectorType>(llvmVectorTy.getUnderlyingType())
+ {cast<llvm::FixedVectorType>(llvmVectorTy.getUnderlyingType())
->getNumElements()},
floatType),
floatOne);
diff --git a/mlir/lib/Dialect/LLVMIR/IR/LLVMDialect.cpp b/mlir/lib/Dialect/LLVMIR/IR/LLVMDialect.cpp
index 9ae7c8878dab..6de98ca89ec1 100644
--- a/mlir/lib/Dialect/LLVMIR/IR/LLVMDialect.cpp
+++ b/mlir/lib/Dialect/LLVMIR/IR/LLVMDialect.cpp
@@ -104,8 +104,9 @@ static ParseResult parseCmpOp(OpAsmParser &parser, OperationState &result) {
return parser.emitError(trailingTypeLoc, "expected LLVM IR dialect type");
if (argType.getUnderlyingType()->isVectorTy())
resultType = LLVMType::getVectorTy(
- resultType, llvm::cast<llvm::VectorType>(argType.getUnderlyingType())
- ->getNumElements());
+ resultType,
+ llvm::cast<llvm::FixedVectorType>(argType.getUnderlyingType())
+ ->getNumElements());
result.addTypes({resultType});
return success();
@@ -1815,7 +1816,8 @@ LLVMType LLVMType::getVectorElementType() {
llvm::cast<llvm::VectorType>(getUnderlyingType())->getElementType());
}
unsigned LLVMType::getVectorNumElements() {
- return llvm::cast<llvm::VectorType>(getUnderlyingType())->getNumElements();
+ return llvm::cast<llvm::FixedVectorType>(getUnderlyingType())
+ ->getNumElements();
}
bool LLVMType::isVectorTy() { return getUnderlyingType()->isVectorTy(); }
diff --git a/mlir/lib/Target/LLVMIR/ModuleTranslation.cpp b/mlir/lib/Target/LLVMIR/ModuleTranslation.cpp
index 7c7043c72d3c..633fe5e19703 100644
--- a/mlir/lib/Target/LLVMIR/ModuleTranslation.cpp
+++ b/mlir/lib/Target/LLVMIR/ModuleTranslation.cpp
@@ -121,7 +121,7 @@ llvm::Constant *ModuleTranslation::getLLVMConstant(llvm::Type *llvmType,
elementType = arrayTy->getElementType();
numElements = arrayTy->getNumElements();
} else {
- auto *vectorTy = cast<llvm::VectorType>(llvmType);
+ auto *vectorTy = cast<llvm::FixedVectorType>(llvmType);
elementType = vectorTy->getElementType();
numElements = vectorTy->getNumElements();
}
More information about the Mlir-commits
mailing list