Searched refs:vectorSize (Results 1 – 4 of 4) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/CodeGen/ |
| H A D | SwiftCallingConv.h | 140 bool isLegalVectorType(CodeGenModule &CGM, CharUnits vectorSize, 142 bool isLegalVectorType(CodeGenModule &CGM, CharUnits vectorSize, 147 splitLegalVectorType(CodeGenModule &CGM, CharUnits vectorSize, 154 void legalizeVectorType(CodeGenModule &CGM, CharUnits vectorSize,
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | SwiftCallingConv.cpp | 676 bool swiftcall::isLegalVectorType(CodeGenModule &CGM, CharUnits vectorSize, in isLegalVectorType() argument 678 return isLegalVectorType(CGM, vectorSize, vectorTy->getElementType(), in isLegalVectorType() 682 bool swiftcall::isLegalVectorType(CodeGenModule &CGM, CharUnits vectorSize, in isLegalVectorType() argument 686 .isLegalVectorTypeForSwift(vectorSize, eltTy, numElts); in isLegalVectorType() 690 swiftcall::splitLegalVectorType(CodeGenModule &CGM, CharUnits vectorSize, in splitLegalVectorType() argument 697 if (isLegalVectorType(CGM, vectorSize / 2, eltTy, numElts / 2)) in splitLegalVectorType()
|
| H A D | TargetInfo.cpp | 132 bool SwiftABIInfo::isLegalVectorTypeForSwift(CharUnits vectorSize, in isLegalVectorTypeForSwift() argument 137 return (vectorSize.getQuantity() > 8 && vectorSize.getQuantity() <= 16); in isLegalVectorTypeForSwift() 6177 bool ARMABIInfo::isLegalVectorTypeForSwift(CharUnits vectorSize, in isLegalVectorTypeForSwift() argument 6185 if (vectorSize.getQuantity() != 8 && in isLegalVectorTypeForSwift() 6186 (vectorSize.getQuantity() != 16 || numElts == 1)) in isLegalVectorTypeForSwift()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaType.cpp | 2381 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue()); in BuildExtVectorType() local 2383 if (vectorSize == 0) { in BuildExtVectorType() 2389 if (VectorType::isVectorSizeTooLarge(vectorSize)) { in BuildExtVectorType() 2395 return Context.getExtVectorType(T, vectorSize); in BuildExtVectorType()
|