Searched defs:VectorTy (Results 1 - 6 of 6) sorted by relevance
/external/llvm/lib/Transforms/ObjCARC/ |
H A D | ObjCARCOpts.cpp | 56 typedef std::vector<std::pair<KeyT, ValueT> > VectorTy; typedef in class:__anon9897::MapVector 58 VectorTy Vector; 61 typedef typename VectorTy::iterator iterator; 62 typedef typename VectorTy::const_iterator const_iterator; 76 for (typename VectorTy::const_iterator I = Vector.begin(),
|
/external/llvm/lib/Transforms/Scalar/ |
H A D | ScalarReplAggregates.cpp | 288 /// VectorTy - This tracks the type that we should promote the vector to if 291 VectorType *VectorTy; member in class:__anon9964::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...] |
/external/llvm/bindings/ocaml/llvm/ |
H A D | llvm_ocaml.c | 373 CAMLprim value llvm_vector_size(LLVMTypeRef VectorTy) { argument 374 return Val_int(LLVMGetVectorSize(VectorTy));
|
/external/llvm/lib/Transforms/Vectorize/ |
H A D | LoopVectorize.cpp | 3301 Type *VectorTy = ToVectorTy(RetTy, VF); local 3335 return TTI.getArithmeticInstrCost(I->getOpcode(), VectorTy); 3344 return TTI.getCmpSelInstrCost(I->getOpcode(), VectorTy, CondTy); 3349 VectorTy = ToVectorTy(ValTy, VF); 3350 return TTI.getCmpSelInstrCost(I->getOpcode(), VectorTy); 3358 VectorTy = ToVectorTy(ValTy, VF); 3368 return TTI.getAddressComputationCost(VectorTy) + 3369 TTI.getMemoryOpCost(I->getOpcode(), VectorTy, Alignment, AS); 3386 VectorTy, i); 3397 unsigned Cost = TTI.getAddressComputationCost(VectorTy); [all...] |
/external/llvm/lib/IR/ |
H A D | Core.cpp | 407 unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy) { argument 408 return unwrap<VectorType>(VectorTy)->getNumElements();
|
/external/clang/lib/Sema/ |
H A D | SemaExpr.cpp | 4538 bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty, argument 4540 assert(VectorTy->isVectorType() && "Not a vector type!"); 4543 if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty)) 4548 << VectorTy << Ty << R; 4552 << VectorTy << Ty << R;
|
Completed in 258 milliseconds