Searched refs:ElemCount (Results 1 - 9 of 9) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/Target/ARM/
H A DMVETailPredication.cpp203 Value *ElemCount = ActiveLaneMask->getOperand(1); local
205 if (!L->makeLoopInvariant(ElemCount, Changed))
208 auto *EC= SE->getSCEV(ElemCount);
256 if ((ConstElemCount = dyn_cast<ConstantInt>(ElemCount))) {
308 dbgs() << "ARM TP: - ElemCount = " << *EC << "\n";
312 dbgs() << "ARM TP: - (ElemCount+VW-1) / VW = " << *Ceil << "\n";
/freebsd-current/contrib/llvm-project/libcxx/src/filesystem/
H A Dpath.cpp281 int ElemCount = DetermineLexicalElementCount(PPBase); local
282 if (ElemCount < 0)
286 if (ElemCount == 0 && (PP.atEnd() || *PP == PATHSTR("")))
293 while (ElemCount--)
/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DOperator.cpp89 const uint64_t ElemCount = OpC ? OpC->getZExtValue() : 1; local
90 Offset = GTI.getSequentialElementStride(DL) * ElemCount;
H A DIntrinsicInst.cpp395 auto ElemCount = VT->getElementCount();
396 return ElemCount;
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DExpandVectorPredication.cpp162 /// \p ElemCount
165 ElementCount ElemCount);
231 ElementCount ElemCount) {
234 if (ElemCount.isScalable()) {
236 Type *BoolVecTy = VectorType::get(Builder.getInt1Ty(), ElemCount);
246 unsigned NumElems = ElemCount.getFixedValue();
676 ElementCount ElemCount = VPI.getStaticVectorLength(); local
677 Value *VLMask = convertEVLToMask(Builder, OldEVLParam, ElemCount);
229 convertEVLToMask(IRBuilder< &Builder, Value *EVLParam, ElementCount ElemCount) argument
/freebsd-current/contrib/llvm-project/llvm/lib/Target/VE/
H A DVECustomDAG.cpp435 unsigned ElemCount = ResultVT.getVectorNumElements(); local
436 MVT CmpVecTy = MVT::getVectorVT(ScalarBoolVT, ElemCount);
444 MVT BoolVecTy = MVT::getVectorVT(MVT::i1, ElemCount);
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonVectorCombine.cpp87 Type *getByteTy(int ElemCount = 0) const;
90 Type *getBoolTy(int ElemCount = 0) const;
2180 auto HexagonVectorCombine::getByteTy(int ElemCount) const -> Type * {
2181 assert(ElemCount >= 0);
2183 if (ElemCount == 0)
2185 return VectorType::get(ByteTy, ElemCount, /*Scalable=*/false);
2188 auto HexagonVectorCombine::getBoolTy(int ElemCount) const -> Type * {
2189 assert(ElemCount >= 0);
2191 if (ElemCount == 0)
2193 return VectorType::get(BoolTy, ElemCount, /*Scalabl
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDie.cpp537 if (std::optional<uint64_t> ElemCount =
539 Size *= *ElemCount;
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp1041 uint64_t ElemCount, bool Diag) {
1047 ElemCount > uint64_t(std::numeric_limits<unsigned>::max())) {
1049 FFDiag(Loc, diag::note_constexpr_new_too_large) << ElemCount;
1059 if (ElemCount > Limit) {
1062 << ElemCount << Limit;
1040 CheckArraySize(SourceLocation Loc, unsigned BitWidth, uint64_t ElemCount, bool Diag) argument

Completed in 282 milliseconds