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

  /frameworks/compile/slang/
slang_rs_check_ast.cpp 57 const clang::VectorType *VectorTy;
61 VectorTy = clang::dyn_cast_or_null<clang::VectorType>(Ty);
63 if (VectorTy) {
65 VectorTy->getElementType()->getUnqualifiedDesugaredType());
76 if (VectorTy) {
77 switch (VectorTy->getNumElements()) {
130 if (VectorTy) {
131 DiagBuilder << VectorTy->getNumElements();
  /external/llvm/lib/Target/R600/
AMDGPUPromoteAlloca.cpp 193 VectorType *VectorTy = arrayTypeToVecType(AllocaTy);
196 << *AllocaTy << " -> " << *VectorTy << '\n');
206 Value *BitCast = Builder.CreateBitCast(Alloca, VectorTy->getPointerTo(0));
216 Value *BitCast = Builder.CreateBitCast(Alloca, VectorTy->getPointerTo(0));
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 289 /// VectorTy - This tracks the type that we should promote the vector to if
292 VectorType *VectorTy;
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');
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 || EltSize == VectorTy->getElementType(
    [all...]
SROA.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp 60 typedef std::vector<std::pair<KeyT, ValueT> > VectorTy;
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(),
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 431 CAMLprim value llvm_vector_size(LLVMTypeRef VectorTy) {
432 return Val_int(LLVMGetVectorSize(VectorTy));
    [all...]
  /external/llvm/include/llvm-c/
Core.h 1087 unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy);
    [all...]
  /external/llvm/lib/IR/
Core.cpp 494 unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy) {
495 return unwrap<VectorType>(VectorTy)->getNumElements();
    [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 475 milliseconds