Home
last modified time | relevance | path

Searched refs:ElemCount (Results 1 – 7 of 7) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DExpandVectorPredication.cpp149 ElementCount ElemCount);
192 ElementCount ElemCount) { in convertEVLToMask() argument
195 if (ElemCount.isScalable()) { in convertEVLToMask()
197 Type *BoolVecTy = VectorType::get(Builder.getInt1Ty(), ElemCount); in convertEVLToMask()
207 unsigned NumElems = ElemCount.getFixedValue(); in convertEVLToMask()
299 ElementCount ElemCount = VPI.getStaticVectorLength(); in foldEVLIntoMask() local
300 Value *VLMask = convertEVLToMask(Builder, OldEVLParam, ElemCount); in foldEVLIntoMask()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DMVETailPredication.cpp207 Value *ElemCount = ActiveLaneMask->getOperand(1); in IsSafeActiveMask() local
209 if (!L->makeLoopInvariant(ElemCount, Changed)) in IsSafeActiveMask()
212 auto *EC= SE->getSCEV(ElemCount); in IsSafeActiveMask()
228 if ((ConstElemCount = dyn_cast<ConstantInt>(ElemCount))) { in IsSafeActiveMask()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DOperator.cpp51 int64_t ElemCount = 1; in getMaxPreservedAlignment() local
53 ElemCount = OpC->getZExtValue(); in getMaxPreservedAlignment()
54 Offset = DL.getTypeAllocSize(GTI.getIndexedType()) * ElemCount; in getMaxPreservedAlignment()
H A DIntrinsicInst.cpp287 auto ElemCount = VT->getElementCount(); in getStaticVectorLength() local
288 return ElemCount; in getStaticVectorLength()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonVectorCombine.cpp70 Type *getByteTy(int ElemCount = 0) const;
73 Type *getBoolTy(int ElemCount = 0) const;
424 int ElemCount = VecTy->getElementCount().getFixedValue(); in getMask() local
425 return HVC.getFullValue(HVC.getBoolTy(ElemCount)); in getMask()
938 assert(ElemCount >= 0); in getByteTy()
940 if (ElemCount == 0) in getByteTy()
942 return VectorType::get(ByteTy, ElemCount, /*Scalable*/ false); in getByteTy()
946 assert(ElemCount >= 0); in getBoolTy()
948 if (ElemCount == 0) in getBoolTy()
1115 int ElemCount = Ty->getElementCount().getFixedValue(); in concat() local
[all …]
/freebsd-13.1/contrib/llvm-project/libcxx/src/filesystem/
H A Doperations.cpp1770 int ElemCount = DetermineLexicalElementCount(PPBase); in lexically_relative() local
1771 if (ElemCount < 0) in lexically_relative()
1775 if (ElemCount == 0 && (PP.atEnd() || *PP == PS(""))) in lexically_relative()
1782 while (ElemCount--) in lexically_relative()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1109 if (Optional<uint64_t> ElemCount = in getTypeSize() local
1111 Size *= *ElemCount; in getTypeSize()