Home
last modified time | relevance | path

Searched refs:Vec1 (Results 1 – 5 of 5) sorted by relevance

/external/clang/lib/AST/
DASTImporter.cpp485 const DependentSizedExtVectorType *Vec1 in IsStructurallyEquivalent() local
490 Vec1->getSizeExpr(), Vec2->getSizeExpr())) in IsStructurallyEquivalent()
493 Vec1->getElementType(), in IsStructurallyEquivalent()
501 const VectorType *Vec1 = cast<VectorType>(T1); in IsStructurallyEquivalent() local
504 Vec1->getElementType(), in IsStructurallyEquivalent()
507 if (Vec1->getNumElements() != Vec2->getNumElements()) in IsStructurallyEquivalent()
509 if (Vec1->getVectorKind() != Vec2->getVectorKind()) in IsStructurallyEquivalent()
/external/llvm/test/Bindings/Ocaml/
Dvmcore.ml1049 * RUN: grep {%build_extractelement = extractelement <4 x i32> %Vec1, i32 %P2} < %t.ll
1050 * RUN: grep {%build_insertelement = insertelement <4 x i32> %Vec1, i32 %P1, i32 %P2} < %t.ll
1051 …* RUN: grep {%build_shufflevector = shufflevector <4 x i32> %Vec1, <4 x i32> %Vec2, <4 x i32> <i32…
1076 let vec1 = build_insertelement t1 p1 p2 "Vec1" atentry in
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp2306 Value *Vec1, *Vec2, *Mask; in ParseFunctionBody() local
2307 if (getValueTypePair(Record, OpNum, NextValueNo, Vec1) || in ParseFunctionBody()
2308 getValue(Record, OpNum, Vec1->getType(), Vec2)) in ParseFunctionBody()
2313 I = new ShuffleVectorInst(Vec1, Vec2, Mask); in ParseFunctionBody()
/external/clang/lib/Sema/
DSemaOverload.cpp5772 Vec1 = CandidateTypes[0].vector_begin(), in addGenericBinaryArithmeticOverloads() local
5774 Vec1 != Vec1End; ++Vec1) { in addGenericBinaryArithmeticOverloads()
5779 QualType LandR[2] = { *Vec1, *Vec2 }; in addGenericBinaryArithmeticOverloads()
5782 if ((*Vec1)->isExtVectorType() || !(*Vec2)->isExtVectorType()) in addGenericBinaryArithmeticOverloads()
5783 Result = *Vec1; in addGenericBinaryArithmeticOverloads()
5981 Vec1 = CandidateTypes[0].vector_begin(), in addAssignmentArithmeticOverloads() local
5983 Vec1 != Vec1End; ++Vec1) { in addAssignmentArithmeticOverloads()
5991 ParamTypes[0] = S.Context.getLValueReferenceType(*Vec1); in addAssignmentArithmeticOverloads()
5997 ParamTypes[0] = S.Context.getVolatileType(*Vec1); in addAssignmentArithmeticOverloads()
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeDAG.cpp2131 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1); in ExpandBUILD_VECTOR() local
2139 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data()); in ExpandBUILD_VECTOR()