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

  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTStructuralEquivalence.cpp 808 const auto *Vec1 = cast<DependentSizedExtVectorType>(T1);
810 if (!IsStructurallyEquivalent(Context, Vec1->getSizeExpr(),
813 if (!IsStructurallyEquivalent(Context, Vec1->getElementType(),
820 const auto *Vec1 = cast<DependentVectorType>(T1);
822 if (Vec1->getVectorKind() != Vec2->getVectorKind())
824 if (!IsStructurallyEquivalent(Context, Vec1->getSizeExpr(),
827 if (!IsStructurallyEquivalent(Context, Vec1->getElementType(),
835 const auto *Vec1 = cast<VectorType>(T1);
837 if (!IsStructurallyEquivalent(Context, Vec1->getElementType(),
840 if (Vec1->getNumElements() != Vec2->getNumElements()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 298 Value *Vec1 = nullptr;
323 if (!Vec1 || Vec1 == Vec)
324 Vec1 = Vec;
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 4355 Value *Vec1, *Vec2, *Mask;
4356 if (getValueTypePair(Record, OpNum, NextValueNo, Vec1, &FullTy) ||
4357 popValue(Record, OpNum, NextValueNo, Vec1->getType(), Vec2))
4362 if (!Vec1->getType()->isVectorTy() || !Vec2->getType()->isVectorTy())
4365 I = new ShuffleVectorInst(Vec1, Vec2, Mask);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 10184 SDValue Vec1 = Op.getOperand(1);
10192 SDValue ExtVec = DAG.getNode(ISD::ANY_EXTEND, DL, WideVT, Vec1);
11325 /// %vec1 = extractelement { <4 x i32>, <4 x i32> } %ld2, i32 1

Completed in 55 milliseconds