reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/InstCombine/InstCombineAddSub.cpp
  543     unsigned StartIdx = SimpVect.size();
  544     SimpVect.push_back(ThisAddend);
  558         SimpVect.push_back(T);
  563     if (StartIdx + 1 != SimpVect.size()) {
  565       R = *SimpVect[StartIdx];
  566       for (unsigned Idx = StartIdx + 1; Idx < SimpVect.size(); Idx++)
  567         R += *SimpVect[Idx];
  570       SimpVect.resize(StartIdx);
  573           SimpVect.push_back(&R);
  587     SimpVect.push_back(ConstAdd);
  590   if (!SimpVect.empty())
  591     Result = createNaryFAdd(SimpVect, InstrQuota);