Home
last modified time | relevance | path

Searched refs:TypeVec (Results 1 – 2 of 2) sorted by relevance

/external/llvm/utils/TableGen/
DCodeGenDAGPatterns.cpp58 TypeVec.push_back(VT); in TypeSet()
65 TypeVec.append(VTList.begin(), VTList.end()); in TypeSet()
72 array_pod_sort(TypeVec.begin(), TypeVec.end()); in TypeSet()
73 assert(std::unique(TypeVec.begin(), TypeVec.end()) == TypeVec.end()); in TypeSet()
90 TypeVec.push_back(VT); in FillWithPossibleTypes()
93 if (TypeVec.empty()) { in FillWithPossibleTypes()
99 if (TypeVec.size() == 1) return true; in FillWithPossibleTypes()
102 array_pod_sort(TypeVec.begin(), TypeVec.end()); in FillWithPossibleTypes()
103 TypeVec.erase(std::unique(TypeVec.begin(), TypeVec.end()), TypeVec.end()); in FillWithPossibleTypes()
111 return std::any_of(TypeVec.begin(), TypeVec.end(), isInteger); in hasIntegerTypes()
[all …]
DCodeGenDAGPatterns.h58 SmallVector<MVT::SimpleValueType, 4> TypeVec; variable
64 bool isCompletelyUnknown() const { return TypeVec.empty(); } in isCompletelyUnknown()
67 if (TypeVec.size() != 1) return false; in isConcrete()
68 unsigned char T = TypeVec[0]; (void)T; in isConcrete()
75 return (MVT::SimpleValueType)TypeVec[0]; in getConcrete()
83 assert(!TypeVec.empty() && "Not a type list!"); in getTypeList()
84 return TypeVec; in getTypeList()
88 return TypeVec.size() == 1 && TypeVec[0] == MVT::isVoid; in isVoid()
154 bool operator!=(const TypeSet &RHS) const { return TypeVec != RHS.TypeVec; }
155 bool operator==(const TypeSet &RHS) const { return TypeVec == RHS.TypeVec; }