Home
last modified time | relevance | path

Searched refs:vectorSize (Results 1 – 9 of 9) sorted by relevance

/llvm-project/clang/include/clang/CodeGen/
H A DSwiftCallingConv.h139 bool isLegalVectorType(CodeGenModule &CGM, CharUnits vectorSize,
141 bool isLegalVectorType(CodeGenModule &CGM, CharUnits vectorSize,
146 splitLegalVectorType(CodeGenModule &CGM, CharUnits vectorSize,
153 void legalizeVectorType(CodeGenModule &CGM, CharUnits vectorSize,
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/altera/
H A Dunroll-loops.cpp71 void cxx_for_loops(int *A, int vectorSize) { in cxx_for_loops() argument
86 int b[vectorSize]; in cxx_for_loops()
492 void fully_unrolled_unknown_bounds(int vectorSize) { in fully_unrolled_unknown_bounds() argument
510 for (int i = 0; i < vectorSize; ++i) { in fully_unrolled_unknown_bounds()
/llvm-project/mlir/lib/Dialect/Linalg/TransformOps/
H A DGPUHeuristics.cpp56 LDBG("--greedily determined vectorSize: " in CopyMappingInfo()
70 LDBG("--vectorSize: " << this->vectorSize); in CopyMappingInfo()
220 << totalNumThreads << " and vectorSize: " << desiredVectorSize); in inferNumThreadsImpl()
249 this->vectorSize = desiredVectorSize; in inferNumThreadsImpl()
261 os << "vectorSize: " << vectorSize << ", "; in print()
/llvm-project/clang/lib/CodeGen/
H A DSwiftCallingConv.cpp687 bool swiftcall::isLegalVectorType(CodeGenModule &CGM, CharUnits vectorSize,
690 CGM, vectorSize, vectorTy->getElementType(), in isLegalVectorType()
694 bool swiftcall::isLegalVectorType(CodeGenModule &CGM, CharUnits vectorSize,
697 return getSwiftABIInfo(CGM).isLegalVectorType(vectorSize, eltTy, numElts); in isLegalVectorType()
701 swiftcall::splitLegalVectorType(CodeGenModule &CGM, CharUnits vectorSize,
708 if (isLegalVectorType(CGM, vectorSize / 2, eltTy, numElts / 2)) in splitLegalVectorType()
688 isLegalVectorType(CodeGenModule & CGM,CharUnits vectorSize,llvm::VectorType * vectorTy) isLegalVectorType() argument
695 isLegalVectorType(CodeGenModule & CGM,CharUnits vectorSize,llvm::Type * eltTy,unsigned numElts) isLegalVectorType() argument
702 splitLegalVectorType(CodeGenModule & CGM,CharUnits vectorSize,llvm::VectorType * vectorTy) splitLegalVectorType() argument
/llvm-project/mlir/include/mlir/Dialect/Linalg/TransformOps/
H A DGPUHeuristics.h103 int64_t vectorSize; member
/llvm-project/flang/lib/Lower/
H A DConvertType.cpp324 auto vectorSize{tySpec.scope()->size()}; in genVectorType()
348 int64_t numOfElements = vectorSize / vecElemKind; in genVectorType()
365 return fir::VectorType::get(vectorSize * 8, in genVectorType()
323 auto vectorSize{tySpec.scope()->size()}; genVectorType() local
/llvm-project/mlir/lib/Dialect/Vector/Transforms/
H A DVectorTransferSplitRewritePatterns.cpp56 int64_t vectorSize = xferOp.getVectorType().getDimSize(resultIdx); in createInBoundsCond() local
58 b, loc, b.getAffineDimExpr(0) + b.getAffineConstantExpr(vectorSize), in createInBoundsCond()
/llvm-project/clang/lib/Sema/
H A DSemaType.cpp2433 unsigned vectorSize = static_cast<unsigned>(vecSize->getZExtValue()); in BuildMatrixType()
2435 if (vectorSize == 0) { in BuildMatrixType()
2441 return Context.getExtVectorType(T, vectorSize); in BuildMatrixType()
2412 unsigned vectorSize = static_cast<unsigned>(vecSize->getZExtValue()); BuildExtVectorType() local
/llvm-project/mlir/lib/Dialect/Vector/IR/
H A DVectorOps.cpp4320 int64_t vectorSize = op.getVectorType().getDimSize(resultIdx);
4322 return cstOp.value() + vectorSize <= sourceSize; in getCanonicalizationPatterns()
4131 int64_t vectorSize = op.getVectorType().getDimSize(resultIdx); isInBounds() local