HomeSort by: relevance | last modified time | path
    Searched refs:isValidElementType (Results 1 - 15 of 15) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/IR/
Type.cpp 548 bool StructType::isValidElementType(Type *ElemTy) {
599 assert(isValidElementType(ElementType) && "Invalid type for array element!");
610 bool ArrayType::isValidElementType(Type *ElemTy) {
635 bool VectorType::isValidElementType(Type *ElemTy) {
646 assert(isValidElementType(ElementType) && "Element type of a VectorType must "
668 assert(isValidElementType(ElementType) && "Element type of a VectorType must "
689 assert(isValidElementType(EltTy) && "Invalid type for pointer element!");
732 bool PointerType::isValidElementType(Type *ElemTy) {
740 return isValidElementType(ElemTy) && !ElemTy->isFunctionTy();
Globals.cpp 342 assert(!Ty->isFunctionTy() && PointerType::isValidElementType(Ty) &&
366 assert(!Ty->isFunctionTy() && PointerType::isValidElementType(Ty) &&
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DerivedTypes.h 314 static bool isValidElementType(Type *ElemTy);
378 static bool isValidElementType(Type *ElemTy);
513 static bool isValidElementType(Type *ElemTy);
671 static bool isValidElementType(Type *ElemTy);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
LoopVectorizationLegality.cpp 747 if ((!VectorType::isValidElementType(I.getType()) &&
759 if (!VectorType::isValidElementType(T)) {
LoadStoreVectorizer.cpp 809 if (!VectorType::isValidElementType(Ty->getScalarType()))
856 if (!VectorType::isValidElementType(Ty->getScalarType()))
SLPVectorizer.cpp 197 static bool isValidElementType(Type *Ty) {
198 return VectorType::isValidElementType(Ty) && !Ty->isX86_FP80Ty() &&
3022 if (Ty != SrcTy || !isValidElementType(Ty)) {
3426 if (!isValidElementType(EltTy))
6753 if (!isValidElementType(SI->getValueOperand()->getType()))
6765 if (!isValidElementType(Idx->getType()))
6800 if (!isa<InsertElementInst>(V) && !isValidElementType(Ty)) {
7314 if (!isValidElementType(Ty) || Ty->isPointerTy())
LoopVectorize.cpp 6570 if (Ty->isTokenTy() || !VectorType::isValidElementType(Ty))
6822 assert(VectorType::isValidElementType(J->getType()) &&
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUPromoteAlloca.cpp 418 if (VectorType::isValidElementType(ArrayTy->getElementType()) &&
  /src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLParser.cpp 1146 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
2626 if (!PointerType::isValidElementType(Result))
2638 if (!PointerType::isValidElementType(Result))
3010 if (!StructType::isValidElementType(Ty))
3018 if (!StructType::isValidElementType(Ty))
3069 if (!VectorType::isValidElementType(EltTy))
3073 if (!ArrayType::isValidElementType(EltTy))
7396 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 1807 !PointerType::isValidElementType(ResultTy))
1932 if (!ResultTy || !ArrayType::isValidElementType(ResultTy))
1943 if (!ResultTy || !StructType::isValidElementType(ResultTy))
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 2465 if (!VectorType::isValidElementType(TgtTy))
InstCombineCasts.cpp 2269 if (!VectorType::isValidElementType(DestType))
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Type.h 3434 static bool isValidElementType(QualType T) {
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 4056 assert(MatrixType::isValidElementType(ElementTy) &&
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaType.cpp 2658 !MatrixType::isValidElementType(ElementTy)) {

Completed in 60 milliseconds