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

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 2385 Type *SrcEltType = SrcType->getElementType();
2399 ((GEPEltType->isArrayTy() && isa<FixedVectorType>(SrcEltType) &&
2400 areMatchingArrayAndVecTypes(GEPEltType, SrcEltType, DL)) ||
2401 (isa<FixedVectorType>(GEPEltType) && SrcEltType->isArrayTy() &&
2402 areMatchingArrayAndVecTypes(SrcEltType, GEPEltType, DL)))) {
2410 ? Builder.CreateInBoundsGEP(SrcEltType, SrcOp, {Ops[1], Ops[2]})
2411 : Builder.CreateGEP(SrcEltType, SrcOp, {Ops[1], Ops[2]});
2466 ? Builder.CreateInBoundsGEP(SrcEltType, SrcOp, NewIndices)
2467 : Builder.CreateGEP(SrcEltType, SrcOp, NewIndices);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprScalar.cpp 1660 QualType SrcEltType = SrcType->castAs<VectorType>()->getElementType(),
1687 bool InputSigned = SrcEltType->isSignedIntegerOrEnumerationType();

Completed in 28 milliseconds