Searched refs:SortedAttrs (Results 1 – 3 of 3) sorted by relevance
1043 SmallVector<Attribute, 8> SortedAttrs(Attrs.begin(), Attrs.end()); in get() local1044 llvm::sort(SortedAttrs); in get()1045 return getSorted(C, SortedAttrs); in get()1049 ArrayRef<Attribute> SortedAttrs) { in getSorted() argument1050 if (SortedAttrs.empty()) in getSorted()1057 assert(llvm::is_sorted(SortedAttrs) && "Expected sorted attributes!"); in getSorted()1058 for (const auto &Attr : SortedAttrs) in getSorted()1069 void *Mem = ::operator new(totalSizeToAlloc<Attribute>(SortedAttrs.size())); in getSorted()1070 PA = new (Mem) AttributeSetNode(SortedAttrs); in getSorted()
309 ArrayRef<Attribute> SortedAttrs);