Home | History | Annotate | Download | only in IPO

Lines Matching defs:insert

417   if (!seen_values.insert(V2).second)
518 VisitedBBs.insert(F1BBs[0]);
531 if (!VisitedBBs.insert(F1TI->getSuccessor(i)))
565 /// Insert a ComparableFunction into the FnSet, or merge it away if it's
567 bool insert(ComparableFunction &NewF);
596 /// The set of all distinct functions. Use the insert() and remove() methods
633 // Insert only strong functions and merge them. Strong function merging
642 Changed |= insert(CF);
646 // Insert only weak functions and merge them. By doing these second we
657 Changed |= insert(CF);
821 // Insert a ComparableFunction into the FnSet, or merge it away if equal to one
823 bool MergeFunctions::insert(ComparableFunction &NewF) {
824 std::pair<FnSetType::iterator, bool> Result = FnSet.insert(NewF);