Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/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()
932 auto HexagonVectorCombine::getByteTy(int ElemCount) const -> Type * { in getByteTy()
933 assert(ElemCount >= 0); in getByteTy()
935 if (ElemCount == 0) in getByteTy()
937 return VectorType::get(ByteTy, ElemCount, /*Scalable*/ false); in getByteTy()
940 auto HexagonVectorCombine::getBoolTy(int ElemCount) const -> Type * { in getBoolTy()
941 assert(ElemCount >= 0); in getBoolTy()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DTFUtils.cpp71 size_t ElemCount) { in writeTensorValues() argument
75 for (size_t I = 0; I < ElemCount; ++I) in writeTensorValues()
/netbsd-src/external/apache2/llvm/dist/libcxx/src/filesystem/
H A Doperations.cpp1767 int ElemCount = DetermineLexicalElementCount(PPBase); in lexically_relative() local
1768 if (ElemCount < 0) in lexically_relative()
1772 if (ElemCount == 0 && (PP.atEnd() || *PP == PS(""))) in lexically_relative()
1779 while (ElemCount--) in lexically_relative()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1109 if (Optional<uint64_t> ElemCount = in getTypeSize() local
1111 Size *= *ElemCount; in getTypeSize()