Searched refs:VectorTy (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp288 /// VectorTy - This tracks the type that we should promote the vector to if
291 VectorType *VectorTy; member in class:__anon9142::ConvertToScalarInfo
307 ScalarKind(Unknown), VectorTy(0), HadNonMemTransferAccess(false),
343 if (ScalarKind == Vector && VectorTy->getBitWidth() != AllocaSize * 8)
354 assert(VectorTy && "Missing type for vector scalar.");
356 << *VectorTy << '\n'); local
357 NewTy = VectorTy; // Use the vector type.
385 /// (VectorTy) so far at the offset specified by Offset (which is specified in
395 /// and stores would mutate the memory. We mark this by setting VectorTy
424 (!VectorTy || EltSiz
[all...]
H A DObjCARC.cpp54 typedef std::vector<std::pair<KeyT, ValueT> > VectorTy; typedef in class:__anon9117::MapVector
55 VectorTy Vector;
58 typedef typename VectorTy::iterator iterator;
59 typedef typename VectorTy::const_iterator const_iterator;
73 for (typename VectorTy::const_iterator I = Vector.begin(),
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c373 CAMLprim value llvm_vector_size(LLVMTypeRef VectorTy) { argument
374 return Val_int(LLVMGetVectorSize(VectorTy));
/external/llvm/include/llvm-c/
H A DCore.h938 unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy);
/external/llvm/lib/VMCore/
H A DCore.cpp400 unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy) { argument
401 return unwrap<VectorType>(VectorTy)->getNumElements();
/external/clang/lib/Sema/
H A DSemaExpr.cpp4404 bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty, argument
4406 assert(VectorTy->isVectorType() && "Not a vector type!");
4409 if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty))
4414 << VectorTy << Ty << R;
4418 << VectorTy << Ty << R;
/external/clang/include/clang/Sema/
H A DSema.h6751 bool CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty,

Completed in 432 milliseconds