HomeSort by: relevance | last modified time | path
    Searched defs:ElemCount (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/IR/
Operator.cpp 51 int64_t ElemCount = 1;
53 ElemCount = OpC->getZExtValue();
54 Offset = DL.getTypeAllocSize(GTI.getIndexedType()) * ElemCount;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ExpandVectorPredication.cpp 146 /// \p ElemCount
149 ElementCount ElemCount);
192 ElementCount ElemCount) {
195 if (ElemCount.isScalable()) {
197 Type *BoolVecTy = VectorType::get(Builder.getInt1Ty(), ElemCount);
207 unsigned NumElems = ElemCount.getFixedValue();
299 ElementCount ElemCount = VPI.getStaticVectorLength();
300 Value *VLMask = convertEVLToMask(Builder, OldEVLParam, ElemCount);
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
MVETailPredication.cpp 207 Value *ElemCount = ActiveLaneMask->getOperand(1);
209 if (!L->makeLoopInvariant(ElemCount, Changed))
212 auto *EC= SE->getSCEV(ElemCount);
228 if ((ConstElemCount = dyn_cast<ConstantInt>(ElemCount))) {
279 dbgs() << "ARM TP: - ElemCount = "; EC->dump();
281 dbgs() << "ARM TP: - (ElemCount+VW-1) / VW = "; Ceil->dump();
  /src/external/apache2/llvm/dist/libcxx/src/filesystem/
operations.cpp 1767 int ElemCount = DetermineLexicalElementCount(PPBase);
1768 if (ElemCount < 0)
1772 if (ElemCount == 0 && (PP.atEnd() || *PP == PS("")))
1779 while (ElemCount--)
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonVectorCombine.cpp 70 Type *getByteTy(int ElemCount = 0) const;
73 Type *getBoolTy(int ElemCount = 0) const;
424 int ElemCount = VecTy->getElementCount().getFixedValue();
425 return HVC.getFullValue(HVC.getBoolTy(ElemCount));
932 auto HexagonVectorCombine::getByteTy(int ElemCount) const -> Type * {
933 assert(ElemCount >= 0);
935 if (ElemCount == 0)
937 return VectorType::get(ByteTy, ElemCount, /*Scalable*/ false);
940 auto HexagonVectorCombine::getBoolTy(int ElemCount) const -> Type * {
941 assert(ElemCount >= 0)
    [all...]

Completed in 19 milliseconds