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

  /external/llvm/include/llvm/IR/
DerivedTypes.h 268 /// isValidElementType - Return true if the specified type is valid as a
270 static bool isValidElementType(Type *ElemTy);
343 /// isValidElementType - Return true if the specified type is valid as a
345 static bool isValidElementType(Type *ElemTy);
423 /// isValidElementType - Return true if the specified type is valid as a
425 static bool isValidElementType(Type *ElemTy);
460 /// isValidElementType - Return true if the specified type is valid as a
462 static bool isValidElementType(Type *ElemTy);
  /external/llvm/lib/IR/
Type.cpp 598 bool StructType::isValidElementType(Type *ElemTy) {
681 assert(isValidElementType(ElementType) && "Invalid type for array element!");
692 bool ArrayType::isValidElementType(Type *ElemTy) {
709 assert(isValidElementType(ElementType) && "Element type of a VectorType must "
722 bool VectorType::isValidElementType(Type *ElemTy) {
733 assert(isValidElementType(EltTy) && "Invalid type for pointer element!");
761 bool PointerType::isValidElementType(Type *ElemTy) {
767 return isValidElementType(ElemTy) && !ElemTy->isFunctionTy();
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 112 static bool isValidElementType(Type *Ty) {
113 return VectorType::isValidElementType(Ty) && !Ty->isX86_FP80Ty() &&
    [all...]
BBVectorize.cpp     [all...]
LoopVectorize.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 812 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp     [all...]
InstCombineCasts.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]

Completed in 1068 milliseconds