Searched refs:CstTy (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ShuffleDecodeConstantPool.cpp37 Type *CstTy = C->getType(); local
38 if (!CstTy->isVectorTy())
41 Type *CstEltTy = CstTy->getVectorElementType();
45 unsigned CstSizeInBits = CstTy->getPrimitiveSizeInBits();
46 unsigned CstEltSizeInBits = CstTy->getScalarSizeInBits();
47 unsigned NumCstElts = CstTy->getVectorNumElements();
H A DX86ISelLowering.cpp6282 Type *CstTy = Cst->getType();
6283 unsigned CstSizeInBits = CstTy->getPrimitiveSizeInBits();
6284 if (!CstTy->isVectorTy() || (CstSizeInBits % SizeInBits) != 0)
6287 unsigned SrcEltSizeInBits = CstTy->getScalarSizeInBits();
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64PromoteConstant.cpp240 static bool isConstantUsingVectorTy(const Type *CstTy) { argument
241 if (CstTy->isVectorTy())
243 if (CstTy->isStructTy()) {
244 for (unsigned EltIdx = 0, EndEltIdx = CstTy->getStructNumElements();
246 if (isConstantUsingVectorTy(CstTy->getStructElementType(EltIdx)))
248 } else if (CstTy->isArrayTy())
249 return isConstantUsingVectorTy(CstTy->getArrayElementType());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3015 Type *CstTy = Cst->getType();
3016 if ((NumElts * BitWidth) == CstTy->getPrimitiveSizeInBits()) {
3019 if (CstTy->isVectorTy()) {
3022 CstTy = Cst->getType();
3026 if (CstTy->isVectorTy() && BitWidth == CstTy->getScalarSizeInBits()) {
3051 } else if (BitWidth == CstTy->getPrimitiveSizeInBits()) {
4000 Type *CstTy = Cst->getType();
4001 if (CstTy->isVectorTy() &&
4002 (NumElts * VTBits) == CstTy
[all...]

Completed in 168 milliseconds