Lines Matching refs:AggrEntry
1732 ErrorOr<AggregatedLBREntry> AggrEntry = parseAggregatedLBREntry(); in parsePreAggregatedLBRSamples() local
1733 if (std::error_code EC = AggrEntry.getError()) in parsePreAggregatedLBRSamples()
1737 getBinaryFunctionContainingAddress(AggrEntry->From.Offset)) in parsePreAggregatedLBRSamples()
1740 getBinaryFunctionContainingAddress(AggrEntry->To.Offset)) in parsePreAggregatedLBRSamples()
1743 AggregatedLBRs.emplace_back(std::move(AggrEntry.get())); in parsePreAggregatedLBRSamples()
1755 for (const AggregatedLBREntry &AggrEntry : AggregatedLBRs) { in processPreAggregated() local
1756 switch (AggrEntry.EntryType) { in processPreAggregated()
1758 doBranch(AggrEntry.From.Offset, AggrEntry.To.Offset, AggrEntry.Count, in processPreAggregated()
1759 AggrEntry.Mispreds); in processPreAggregated()
1763 LBREntry First{AggrEntry.EntryType == AggregatedLBREntry::FT in processPreAggregated()
1764 ? AggrEntry.From.Offset in processPreAggregated()
1766 AggrEntry.From.Offset, false}; in processPreAggregated()
1767 LBREntry Second{AggrEntry.To.Offset, AggrEntry.To.Offset, false}; in processPreAggregated()
1768 doTrace(First, Second, AggrEntry.Count); in processPreAggregated()
1769 NumTraces += AggrEntry.Count; in processPreAggregated()