HomeSort by relevance Sort by last modified time
    Searched defs:VectorTy (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/Transforms/ObjCARC/
BlotMapVector.h 22 typedef std::vector<std::pair<KeyT, ValueT>> VectorTy;
24 VectorTy Vector;
27 typedef typename VectorTy::iterator iterator;
28 typedef typename VectorTy::const_iterator const_iterator;
42 for (typename VectorTy::const_iterator I = Vector.begin(), E = Vector.end();
  /frameworks/compile/slang/
slang_rs_check_ast.cpp 60 const clang::VectorType *VectorTy;
64 VectorTy = clang::dyn_cast_or_null<clang::VectorType>(Ty);
66 if (VectorTy) {
68 VectorTy->getElementType()->getUnqualifiedDesugaredType());
79 if (VectorTy) {
80 switch (VectorTy->getNumElements()) {
133 if (VectorTy) {
134 DiagBuilder << VectorTy->getNumElements();
  /external/llvm/lib/Target/AMDGPU/
AMDGPUPromoteAlloca.cpp 198 VectorType *VectorTy = arrayTypeToVecType(AllocaTy);
201 << *AllocaTy << " -> " << *VectorTy << '\n');
211 Value *BitCast = Builder.CreateBitCast(Alloca, VectorTy->getPointerTo(0));
221 Value *BitCast = Builder.CreateBitCast(Alloca, VectorTy->getPointerTo(0));
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 295 /// VectorTy - This tracks the type that we should promote the vector to if
298 VectorType *VectorTy;
314 ScalarKind(Unknown), VectorTy(nullptr), HadNonMemTransferAccess(false),
350 if (ScalarKind == Vector && VectorTy->getBitWidth() != AllocaSize * 8)
361 assert(VectorTy && "Missing type for vector scalar.");
363 << *VectorTy << '\n');
364 NewTy = VectorTy; // Use the vector type.
393 /// (VectorTy) so far at the offset specified by Offset (which is specified in
403 /// and stores would mutate the memory. We mark this by setting VectorTy
432 (!VectorTy || EltSize == VectorTy->getElementType(
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]

Completed in 166 milliseconds