[llvm] [ProfileData] Use std::vector for ValueData (NFC) (PR #95194)
Mingming Liu via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 12 11:37:09 PDT 2024
================
@@ -847,19 +847,26 @@ void InstrProfValueSiteRecord::merge(InstrProfValueSiteRecord &Input,
Input.sortByTargetValues();
auto I = ValueData.begin();
auto IE = ValueData.end();
+ std::vector<InstrProfValueData> Merged;
+ Merged.reserve(std::max(ValueData.size(), Input.ValueData.size()));
for (const InstrProfValueData &J : Input.ValueData) {
- while (I != IE && I->Value < J.Value)
+ while (I != IE && I->Value < J.Value) {
+ Merged.push_back(*I);
++I;
+ }
if (I != IE && I->Value == J.Value) {
bool Overflowed;
I->Count = SaturatingMultiplyAdd(J.Count, Weight, I->Count, &Overflowed);
if (Overflowed)
Warn(instrprof_error::counter_overflow);
+ Merged.push_back(*I);
++I;
continue;
}
- ValueData.insert(I, J);
+ Merged.push_back(J);
}
+ Merged.insert(Merged.end(), I, IE);
----------------
minglotus-6 wrote:
I forgot to advance iterators in the comment but thanks for following up!
https://github.com/llvm/llvm-project/pull/95194
More information about the llvm-commits
mailing list