Home
last modified time | relevance | path

Searched refs:Ty0 (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86RegisterBankInfo.cpp
H A DX86InstCombineIntrinsic.cpp3301 auto *Ty0 = II.getArgOperand(0)->getType(); in simplifyDemandedVectorEltsIntrinsic() local
3302 unsigned InnerVWidth = cast<FixedVectorType>(Ty0)->getNumElements(); in simplifyDemandedVectorEltsIntrinsic()
3305 unsigned NumLanes = Ty0->getPrimitiveSizeInBits() / 128; in simplifyDemandedVectorEltsIntrinsic()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/GISel/
H A DX86RegisterBankInfo.cpp331 const LLT Ty0 = MRI.getType(Op0.getReg()); in getInstrMapping() local
336 OpRegBankIdx[0] = getPartialMappingIdx(MI, Ty0, /* isFP= */ FirstArgIsFP); in getInstrMapping()
360 const LLT Ty0 = MRI.getType(Op0.getReg()); in getInstrMapping() local
363 bool isFPTrunc = (Ty0.getSizeInBits() == 32 || Ty0.getSizeInBits() == 64) && in getInstrMapping()
366 Ty0.getSizeInBits() == 128 && in getInstrMapping()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationLegality.cpp406 static Type *getWiderType(const DataLayout &DL, Type *Ty0, Type *Ty1) { in getWiderType() argument
407 Ty0 = convertPointerToIntegerType(DL, Ty0); in getWiderType()
409 if (Ty0->getScalarSizeInBits() > Ty1->getScalarSizeInBits()) in getWiderType()
410 return Ty0; in getWiderType()
H A DSLPVectorizer.cpp818 Type *Ty0 = Op0->getType(); in getSameOpcode() local
821 if (Ty0 == Ty1) { in getSameOpcode()
835 Type *Ty0 = BaseInst->getOperand(0)->getType(); in getSameOpcode() local
837 if (Ty0 == Ty1) { in getSameOpcode()
6451 Type *Ty0 = cast<GEPOperator>(VL0)->getSourceElementType(); in getScalarsVectorizationState() local
6457 if (Ty0 != CurTy) { in getScalarsVectorizationState()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.h445 TypePair typeExtendToWider(MVT Ty0, MVT Ty1) const;
446 TypePair typeWidenToWider(MVT Ty0, MVT Ty1) const;
H A DHexagonLoopIdiomRecognition.cpp1106 Type *Ty0 = P->getIncomingValue(0)->getType(); in promoteTypes() local
1108 if (PTy != Ty0) { in promoteTypes()
1109 assert(Ty0 == DestTy); in promoteTypes()
1111 P->mutateType(Ty0); in promoteTypes()
1117 P->mutateType(Ty0); in promoteTypes()
H A DHexagonISelLoweringHVX.cpp2327 HexagonTargetLowering::typeExtendToWider(MVT Ty0, MVT Ty1) const {
2331 assert(Ty0.isVector() == Ty1.isVector()); in typeExtendToWider()
2333 MVT ElemTy0 = Ty0.getScalarType(); in typeExtendToWider()
2350 if (!Ty0.isVector()) { in typeExtendToWider()
2356 unsigned NumElem = Ty0.getVectorNumElements(); in typeExtendToWider()
2364 HexagonTargetLowering::typeWidenToWider(MVT Ty0, MVT Ty1) const {
2367 assert(Ty0.isVector() && Ty1.isVector()); in typeWidenToWider()
2369 unsigned Len0 = Ty0.getVectorNumElements(); in typeWidenToWider()
2372 return {Ty0, Ty1}; in typeWidenToWider()
2375 return {MVT::getVectorVT(Ty0 in typeWidenToWider()
2328 typeExtendToWider(MVT Ty0,MVT Ty1) const typeExtendToWider() argument
2365 typeWidenToWider(MVT Ty0,MVT Ty1) const typeWidenToWider() argument
[all...]
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.cpp647 static unsigned getElSizeLog2Diff(Type *Ty0, Type *Ty1) { in getElSizeLog2Diff() argument
648 unsigned Bits0 = Ty0->getScalarSizeInBits(); in getElSizeLog2Diff()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineVerifier.cpp245 bool verifyVectorElementMatch(LLT Ty0, LLT Ty1, const MachineInstr *MI);
994 bool MachineVerifier::verifyVectorElementMatch(LLT Ty0, LLT Ty1, in verifyVectorElementMatch() argument
996 if (Ty0.isVector() != Ty1.isVector()) { in verifyVectorElementMatch()
1006 if (Ty0.isVector() && Ty0.getElementCount() != Ty1.getElementCount()) { in verifyVectorElementMatch()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp6305 Type *Ty0 = Call.getArgOperand(0)->getType(); in visitIntrinsicCall() local
6307 Check(Ty0->isPtrOrPtrVectorTy(), in visitIntrinsicCall()
6312 Ty0->isVectorTy() == Ty1->isVectorTy(), in visitIntrinsicCall()
6315 if (Ty0->isVectorTy()) in visitIntrinsicCall()
6316 Check(cast<VectorType>(Ty0)->getElementCount() == in visitIntrinsicCall()
6321 Check(DL.getIndexTypeSizeInBits(Ty0) == Ty1->getScalarSizeInBits(), in visitIntrinsicCall()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp3419 Type *Ty0 = StTy->getContainedType(0); in ConstantFoldStructCall() local
3422 if (auto *FVTy0 = dyn_cast<FixedVectorType>(Ty0)) { in ConstantFoldStructCall()