Lines Matching defs:AggrEntry
1726 ErrorOr<AggregatedLBREntry> AggrEntry = parseAggregatedLBREntry();
1727 if (std::error_code EC = AggrEntry.getError())
1730 for (const uint64_t Addr : {AggrEntry->From.Offset, AggrEntry->To.Offset})
1734 AggregatedLBRs.emplace_back(std::move(AggrEntry.get()));
1746 for (const AggregatedLBREntry &AggrEntry : AggregatedLBRs) {
1747 switch (AggrEntry.EntryType) {
1749 doBranch(AggrEntry.From.Offset, AggrEntry.To.Offset, AggrEntry.Count,
1750 AggrEntry.Mispreds, /*IsPreagg*/ true);
1754 LBREntry First{AggrEntry.EntryType == AggregatedLBREntry::FT
1755 ? AggrEntry.From.Offset
1757 AggrEntry.From.Offset, false};
1758 LBREntry Second{AggrEntry.To.Offset, AggrEntry.To.Offset, false};
1759 doTrace(First, Second, AggrEntry.Count);
1760 NumTraces += AggrEntry.Count;