Searched refs:ElemCount (Results 1 – 10 of 10) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | MVETailPredication.cpp | 203 Value *ElemCount = ActiveLaneMask->getOperand(1); in IsSafeActiveMask() local 205 if (!L->makeLoopInvariant(ElemCount, Changed)) in IsSafeActiveMask() 208 auto *EC= SE->getSCEV(ElemCount); in IsSafeActiveMask() 256 if ((ConstElemCount = dyn_cast<ConstantInt>(ElemCount))) { in IsSafeActiveMask()
|
/freebsd/contrib/llvm-project/libcxx/src/filesystem/ |
H A D | path.cpp | 281 int ElemCount = DetermineLexicalElementCount(PPBase); in lexically_relative() local 282 if (ElemCount < 0) in lexically_relative() 286 if (ElemCount == 0 && (PP.atEnd() || *PP == PATHSTR(""))) in lexically_relative() 293 while (ElemCount--) in lexically_relative()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | PointerSubChecker.cpp | 77 DefinedOrUnknownSVal ElemCount = in checkArrayBounds() local 80 ElemCount, SVB.getConditionType()) in checkArrayBounds()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | ExpandVectorPredication.cpp | 165 ElementCount ElemCount); 231 ElementCount ElemCount) { in convertEVLToMask() argument 234 if (ElemCount.isScalable()) { in convertEVLToMask() 236 Type *BoolVecTy = VectorType::get(Builder.getInt1Ty(), ElemCount); in convertEVLToMask() 246 unsigned NumElems = ElemCount.getFixedValue(); in convertEVLToMask() 700 ElementCount ElemCount = VPI.getStaticVectorLength(); in foldEVLIntoMask() local 701 Value *VLMask = convertEVLToMask(Builder, OldEVLParam, ElemCount); in foldEVLIntoMask()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Operator.cpp | 103 const uint64_t ElemCount = OpC ? OpC->getZExtValue() : 1; in getMaxPreservedAlignment() local 104 Offset = GTI.getSequentialElementStride(DL) * ElemCount; in getMaxPreservedAlignment()
|
H A D | IntrinsicInst.cpp | 390 auto ElemCount = VT->getElementCount(); in getStaticVectorLength() local 391 return ElemCount; in getStaticVectorLength()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/ |
H A D | VECustomDAG.cpp | 435 unsigned ElemCount = ResultVT.getVectorNumElements(); in getMaskBroadcast() local 436 MVT CmpVecTy = MVT::getVectorVT(ScalarBoolVT, ElemCount); in getMaskBroadcast() 444 MVT BoolVecTy = MVT::getVectorVT(MVT::i1, ElemCount); in getMaskBroadcast()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonVectorCombine.cpp | 87 Type *getByteTy(int ElemCount = 0) const; 90 Type *getBoolTy(int ElemCount = 0) const; 2180 auto HexagonVectorCombine::getByteTy(int ElemCount) const -> Type * { in getByteTy() 2181 assert(ElemCount >= 0); in getByteTy() 2183 if (ElemCount == 0) in getByteTy() 2185 return VectorType::get(ByteTy, ElemCount, /*Scalable=*/false); in getByteTy() 2188 auto HexagonVectorCombine::getBoolTy(int ElemCount) const -> Type * { in getBoolTy() 2189 assert(ElemCount >= 0); in getBoolTy() 2191 if (ElemCount == 0) in getBoolTy() 2193 return VectorType::get(BoolTy, ElemCount, /*Scalable=*/false); in getBoolTy()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDie.cpp | 537 if (std::optional<uint64_t> ElemCount = in getTypeSizeImpl() local 539 Size *= *ElemCount; in getTypeSizeImpl()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ExprConstant.cpp | 1046 uint64_t ElemCount, bool Diag) { in CheckArraySize() argument 1052 ElemCount > uint64_t(std::numeric_limits<unsigned>::max())) { in CheckArraySize() 1054 FFDiag(Loc, diag::note_constexpr_new_too_large) << ElemCount; in CheckArraySize() 1064 if (ElemCount > Limit) { in CheckArraySize() 1067 << ElemCount << Limit; in CheckArraySize()
|