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

  /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...]

Completed in 57 milliseconds