Searched defs:VectorTy (Results 1 - 6 of 6) sorted by relevance

/external/llvm/lib/Target/R600/
H A DAMDGPUPromoteAlloca.cpp193 VectorType *VectorTy = arrayTypeToVecType(AllocaTy); local
196 << *AllocaTy << " -> " << *VectorTy << '\n'); local
206 Value *BitCast = Builder.CreateBitCast(Alloca, VectorTy->getPointerTo(0));
216 Value *BitCast = Builder.CreateBitCast(Alloca, VectorTy->getPointerTo(0));
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp289 /// VectorTy - This tracks the type that we should promote the vector to if
292 VectorType *VectorTy; member in class:__anon26334::ConvertToScalarInfo
308 ScalarKind(Unknown), VectorTy(nullptr), HadNonMemTransferAccess(false),
344 if (ScalarKind == Vector && VectorTy->getBitWidth() != AllocaSize * 8)
355 assert(VectorTy && "Missing type for vector scalar.");
357 << *VectorTy << '\n'); local
358 NewTy = VectorTy; // Use the vector type.
387 /// (VectorTy) so far at the offset specified by Offset (which is specified in
397 /// and stores would mutate the memory. We mark this by setting VectorTy
426 (!VectorTy || EltSiz
[all...]
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp60 typedef std::vector<std::pair<KeyT, ValueT> > VectorTy; typedef in class:__anon26262::MapVector
62 VectorTy Vector;
65 typedef typename VectorTy::iterator iterator;
66 typedef typename VectorTy::const_iterator const_iterator;
80 for (typename VectorTy::const_iterator I = Vector.begin(),
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c431 CAMLprim value llvm_vector_size(LLVMTypeRef VectorTy) { argument
432 return Val_int(LLVMGetVectorSize(VectorTy));
/external/llvm/lib/IR/
H A DCore.cpp494 unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy) { argument
495 return unwrap<VectorType>(VectorTy)->getNumElements();
/external/clang/lib/Sema/
H A DSemaExpr.cpp5155 bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty, argument
5157 assert(VectorTy->isVectorType() && "Not a vector type!");
5160 if (!VectorTypesMatch(*this, Ty, VectorTy))
5165 << VectorTy << Ty << R;
5169 << VectorTy << Ty << R;

Completed in 9434 milliseconds