/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | DerivedTypes.h | 454 static VectorType *getInteger(VectorType *VTy) { in getInteger() 463 static VectorType *getExtendedElementVectorType(VectorType *VTy) { in getExtendedElementVectorType() 472 static VectorType *getTruncatedElementVectorType(VectorType *VTy) { in getTruncatedElementVectorType() 497 static VectorType *getSubdividedVectorType(VectorType *VTy, int NumSubdivs) { in getSubdividedVectorType() 507 static VectorType *getHalfElementsVectorType(VectorType *VTy) { in getHalfElementsVectorType() 517 static VectorType *getDoubleElementsVectorType(VectorType *VTy) { in getDoubleElementsVectorType() 551 static FixedVectorType *getInteger(FixedVectorType *VTy) { in getInteger() 555 static FixedVectorType *getExtendedElementVectorType(FixedVectorType *VTy) { in getExtendedElementVectorType() 559 static FixedVectorType *getTruncatedElementVectorType(FixedVectorType *VTy) { in getTruncatedElementVectorType() 564 static FixedVectorType *getSubdividedVectorType(FixedVectorType *VTy, in getSubdividedVectorType() [all …]
|
H A D | GetElementPtrTypeIterator.h | 82 else if (auto *VTy = dyn_cast<VectorType>(Ty)) global() variable
|
H A D | GlobalObject.h | 46 : GlobalValue(Ty, VTy, Ops, NumOps, Linkage, Name, AddressSpace) { in GlobalValue() argument
|
H A D | IRBuilder.h | 846 VectorType *VTy = VectorType::get(Type::getInt1Ty(Context), NumElts); in getAllOnesMask() local 2049 Type *VTy = V->getType(); variable 2064 Type *VTy = V->getType(); variable
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | ValueTypes.cpp | 155 if (VectorType *VTy = dyn_cast<VectorType>(LLVMTy)) in getExtendedSizeInBits() local 261 VectorType *VTy = cast<VectorType>(Ty); in getVT() local 284 VectorType *VTy = cast<VectorType>(Ty); in getEVT() local
|
H A D | LowLevelTypeUtils.cpp | 21 if (auto VTy = dyn_cast<VectorType>(&Ty)) { in getLLTForType() local
|
H A D | ExpandLargeDivRem.cpp | 59 VectorType *VTy = cast<FixedVectorType>(BO->getType()); in scalarize() local
|
H A D | ReplaceWithVeclib.cpp | 105 auto *VTy = dyn_cast<VectorType>(II->getType()); in replaceWithCallToVeclib() local
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Constants.cpp | 151 if (auto *VTy = dyn_cast<FixedVectorType>(getType())) { in isNotOneValue() local 196 if (auto *VTy = dyn_cast<FixedVectorType>(getType())) { in isNotMinSignedValue() local 218 if (auto *VTy = dyn_cast<FixedVectorType>(getType())) { in isFiniteNonZeroFP() local 239 if (auto *VTy = dyn_cast<FixedVectorType>(getType())) { in isNormalFP() local 260 if (auto *VTy = dyn_cast<FixedVectorType>(getType())) { in hasExactInverseFP() local 281 if (auto *VTy = dyn_cast<FixedVectorType>(getType())) { in isNaN() local 304 auto *VTy = dyn_cast<VectorType>(getType()); in isElementWiseEqual() local 325 if (auto *VTy = dyn_cast<VectorType>(C->getType())) { in containsUndefinedElement() local 361 if (auto *VTy = dyn_cast<FixedVectorType>(getType())) { in containsConstantExpression() local 411 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) in getIntegerValue() local [all …]
|
H A D | Function.cpp | 1029 } else if (VectorType *VTy = dyn_cast<VectorType>(Ty)) { in getMangledTypeStr() local 1430 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) in DecodeFixedType() local 1437 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) in DecodeFixedType() local 1447 VectorType *VTy = dyn_cast<VectorType>(Ty); in DecodeFixedType() local 1458 if (auto *VTy = dyn_cast<VectorType>(Ty)) in DecodeFixedType() local 1464 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) in DecodeFixedType() local 1470 VectorType *VTy = dyn_cast<VectorType>(Ty); in DecodeFixedType() local 1651 if (VectorType *VTy = dyn_cast<VectorType>(NewTy)) in matchIntrinsicType() local 1666 if (VectorType *VTy = dyn_cast<VectorType>(NewTy)) in matchIntrinsicType() local 1743 if (auto *VTy = dyn_cast<VectorType>(NewTy)) { in matchIntrinsicType() local
|
H A D | ConstantFold.cpp | 472 auto *VTy = VectorType::get(EltTy, MaskEltCount); in ConstantFoldShuffleVectorInstruction() local 583 } else if (auto *VTy = dyn_cast<FixedVectorType>(C->getType())) { in ConstantFoldUnaryInstruction() local 895 } else if (auto *VTy = dyn_cast<VectorType>(C1->getType())) { in ConstantFoldBinaryInstruction() local
|
H A D | Type.cpp | 190 const VectorType *VTy = cast<VectorType>(this); in getPrimitiveSizeInBits() local 207 if (auto *VTy = dyn_cast<VectorType>(this)) in getFPMantissaWidth() local 224 if (auto *VTy = dyn_cast<VectorType>(this)) in isSizedDerivedType() local
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | VFABIDemangling.cpp |
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMTargetTransformInfo.h | 193 bool forceScalarizeMaskedGather(VectorType *VTy, Align Alignment) { in forceScalarizeMaskedGather() 201 bool forceScalarizeMaskedScatter(VectorType *VTy, Align Alignment) { in forceScalarizeMaskedScatter()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86TargetTransformInfo.h | 269 bool forceScalarizeMaskedScatter(VectorType *VTy, Align Alignment) { in forceScalarizeMaskedScatter()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVTargetTransformInfo.h | 269 bool forceScalarizeMaskedGather(VectorType *VTy, Align Alignment) { in forceScalarizeMaskedGather() 274 bool forceScalarizeMaskedScatter(VectorType *VTy, Align Alignment) { in forceScalarizeMaskedScatter()
|
H A D | RISCVCodeGenPrepare.cpp | 187 auto *VTy = cast<VectorType>(II.getType()); in expandVPStrideLoad() local
|
H A D | RISCVTargetTransformInfo.cpp | 635 auto *VTy = cast<VectorType>(VecTy); in getInterleavedMemoryOpCost() local 730 auto &VTy = *cast<VectorType>(DataTy); in getGatherScatterOpCost() local 753 auto &VTy = *cast<VectorType>(DataTy); in getStridedMemoryOpCost() local 1949 auto *VTy = dyn_cast<VectorType>(DataTy); in isLegalMaskedCompressStore() local
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPULateCodeGenPrepare.cpp | 124 FixedVectorType *VTy = dyn_cast<FixedVectorType>(ITy); in shouldReplace() local 195 FixedVectorType *VTy = cast<FixedVectorType>(OriginalType); in calculateConvertType() local 211 FixedVectorType *VTy = cast<FixedVectorType>(V->getType()); in convertToOptType() local
|
H A D | AMDGPUInstCombineIntrinsic.cpp | 67 Type *VTy = V.getType(); in canSafelyConvertTo16Bit() local 105 Type *VTy = V.getType(); in convertTo16Bit() local 379 auto *VTy = cast<FixedVectorType>(UseV->getType()); in trimTrailingZerosInVector() local 404 auto *VTy = cast<FixedVectorType>(V->getType()); in defaultComponentBroadcast() local
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyTargetTransformInfo.cpp | 63 if (auto *VTy = dyn_cast<VectorType>(Ty)) { in getArithmeticInstrCost() local
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | BasicTTIImpl.h | 91 InstructionCost getBroadcastShuffleOverhead(FixedVectorType *VTy, in getBroadcastShuffleOverhead() 108 InstructionCost getPermuteShuffleOverhead(FixedVectorType *VTy, in getPermuteShuffleOverhead() 129 InstructionCost getExtractSubvectorOverhead(VectorType *VTy, in getExtractSubvectorOverhead() 157 InstructionCost getInsertSubvectorOverhead(VectorType *VTy, in getInsertSubvectorOverhead() 960 if (auto *VTy = dyn_cast<FixedVectorType>(Ty)) { variable 1949 if (auto *VTy = dyn_cast<VectorType>(Ty)) { in getTypeBasedIntrinsicInstrCost() local 2397 if (auto *VTy = dyn_cast<VectorType>(Ty)) { in getTypeBasedIntrinsicInstrCost() local 2544 auto *VTy = cast<FixedVectorType>(Ty); in getOrderedReductionCost() local
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
H A D | SystemZTargetTransformInfo.cpp | 419 auto *VTy = cast<FixedVectorType>(Ty); in getNumVectorRegs() local 531 auto *VTy = cast<FixedVectorType>(Ty); in getArithmeticInstrCost() local 1297 auto *VTy = cast<FixedVectorType>(ParamTys.front()); in getVectorIntrinsicInstrCost() local
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64TargetTransformInfo.cpp | 531 if (VectorType *VTy = dyn_cast<VectorType>(BucketPtrsTy)) in getHistogramCost() local 549 if (auto *VTy = dyn_cast<ScalableVectorType>(RetTy)) in getIntrinsicInstrCost() local 1759 VectorType *VTy = cast<VectorType>(II.getType()); in instCombineSVETBL() local 3039 if (auto *VTy = dyn_cast<ScalableVectorType>(Ty)) in getArithmeticInstrCost() local 3128 if (auto *VTy = dyn_cast<FixedVectorType>(Ty)) { in getArithmeticInstrCost() local 3432 if (auto *VTy = dyn_cast<ScalableVectorType>(Ty)) in getMemoryOpCost() local 3821 if (auto *VTy = dyn_cast<ScalableVectorType>(Ty)) in getMinMaxReductionCost() local 3873 if (auto *VTy = dyn_cast<ScalableVectorType>(ValTy)) in getArithmeticReductionCost() local 3889 auto *VTy = cast<ScalableVectorType>(ValTy); in getArithmeticReductionCost() local
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | GlobalISelEmitter.cpp | 748 for (const TypeSetByHwMode &VTy : Src.getExtTypes()) { in createAndImportSelDAGMatcher() local 1147 ValueTypeByHwMode VTy = ChildTypes.front().getValueTypeByHwMode(); in importChildMatcher() local 1841 const TypeSetByHwMode &VTy = Child0.getExtType(0); in inferRegClassFromPattern() local 1846 const TypeSetByHwMode &VTy = N.getExtType(0); in inferRegClassFromPattern() local 2045 const TypeSetByHwMode &VTy = Src.getExtType(I); in runOnPattern() local
|