Home
last modified time | relevance | path

Searched refs:ValueCounts (Results 1 – 4 of 4) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/ProfileData/
DInstrProf.cpp520 Sum.ValueCounts[VK] += KindSum; in accumulateCounts()
538 Overlap.Base.ValueCounts[ValueKind], in overlap()
539 Overlap.Test.ValueCounts[ValueKind]); in overlap()
541 I->Count, J->Count, FuncLevelOverlap.Base.ValueCounts[ValueKind], in overlap()
542 FuncLevelOverlap.Test.ValueCounts[ValueKind]); in overlap()
550 Overlap.Overlap.ValueCounts[ValueKind] += Score; in overlap()
551 FuncLevelOverlap.Overlap.ValueCounts[ValueKind] += FuncLevelScore; in overlap()
1206 if (Test.ValueCounts[I] >= 1.0f) in addOneMismatch()
1207 Mismatch.ValueCounts[I] += in addOneMismatch()
1208 MismatchFunc.ValueCounts[I] / Test.ValueCounts[I]; in addOneMismatch()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
DInstrProf.h600 double ValueCounts[IPVK_Last - IPVK_First + 1]; member
601 CountSumOrPercent() : NumEntries(0), CountSum(0.0f), ValueCounts() {} in CountSumOrPercent()
606 ValueCounts[I] = 0.0f; in reset()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
DRISCVISelLowering.cpp1703 DenseMap<SDValue, unsigned> ValueCounts; in lowerBUILD_VECTOR() local
1711 ValueCounts.insert(std::make_pair(V, 0)); in lowerBUILD_VECTOR()
1712 unsigned &Count = ValueCounts[V]; in lowerBUILD_VECTOR()
1731 (ValueCounts.size() <= Log2_32(NumDefElts)))) { in lowerBUILD_VECTOR()
1741 if (ValueCounts[V] == 1) { in lowerBUILD_VECTOR()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/
DARMISelLowering.cpp7727 DenseMap<SDValue, unsigned> ValueCounts; in LowerBUILD_VECTOR() local
7738 ValueCounts.insert(std::make_pair(V, 0)); in LowerBUILD_VECTOR()
7739 unsigned &Count = ValueCounts[V]; in LowerBUILD_VECTOR()
7747 if (ValueCounts.size() != 1) in LowerBUILD_VECTOR()
7749 if (!Value.getNode() && !ValueCounts.empty()) in LowerBUILD_VECTOR()
7750 Value = ValueCounts.begin()->first; in LowerBUILD_VECTOR()
7752 if (ValueCounts.empty()) in LowerBUILD_VECTOR()