HomeSort by relevance Sort by last modified time
    Searched refs:VectorTy (Results 1 - 14 of 14) 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/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();
  /external/llvm/lib/Target/R600/
AMDGPUPromoteAlloca.cpp 194 VectorType *VectorTy = arrayTypeToVecType(AllocaTy);
197 << *AllocaTy << " -> " << *VectorTy << '\n');
207 Value *BitCast = Builder.CreateBitCast(Alloca, VectorTy->getPointerTo(0));
217 Value *BitCast = Builder.CreateBitCast(Alloca, VectorTy->getPointerTo(0));
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 294 /// VectorTy - This tracks the type that we should promote the vector to if
297 VectorType *VectorTy;
313 ScalarKind(Unknown), VectorTy(nullptr), HadNonMemTransferAccess(false),
349 if (ScalarKind == Vector && VectorTy->getBitWidth() != AllocaSize * 8)
360 assert(VectorTy && "Missing type for vector scalar.");
362 << *VectorTy << '\n');
363 NewTy = VectorTy; // Use the vector type.
392 /// (VectorTy) so far at the offset specified by Offset (which is specified in
402 /// and stores would mutate the memory. We mark this by setting VectorTy
431 (!VectorTy || EltSize == VectorTy->getElementType(
    [all...]
SROA.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.h 418 bool canCombineStoreAndExtract(Type *VectorTy, Value *Idx,
ARMISelLowering.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 433 CAMLprim value llvm_vector_size(LLVMTypeRef VectorTy) {
434 return Val_int(LLVMGetVectorSize(VectorTy));
    [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h 298 /// Return true if the target can combine store(extractelement VectorTy,
301 virtual bool canCombineStoreAndExtract(Type *VectorTy, Value *Idx,
    [all...]
  /external/llvm/include/llvm-c/
Core.h 1093 unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy);
    [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]
  /external/llvm/lib/IR/
Core.cpp 496 unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy) {
497 return unwrap<VectorType>(VectorTy)->getNumElements();
    [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 416 milliseconds