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

  /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/llvm/lib/IR/
Operator.cpp 51 int64_t ElemCount = 1;
53 ElemCount = OpC->getZExtValue();
54 Offset = DL.getTypeAllocSize(GTI.getIndexedType()) * ElemCount;
IntrinsicInst.cpp 287 auto ElemCount = VT->getElementCount();
288 return 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...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
TFUtils.cpp 71 size_t ElemCount) {
75 for (size_t I = 0; I < ElemCount; ++I)
  /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/DebugInfo/DWARF/
DWARFContext.cpp 1109 if (Optional<uint64_t> ElemCount =
1111 Size *= *ElemCount;

Completed in 26 milliseconds