Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProf.cpp741 Sum.ValueCounts[VK] += KindSum; in accumulateCounts()
759 Overlap.Base.ValueCounts[ValueKind], in overlap()
760 Overlap.Test.ValueCounts[ValueKind]); in overlap()
762 I->Count, J->Count, FuncLevelOverlap.Base.ValueCounts[ValueKind], in overlap()
763 FuncLevelOverlap.Test.ValueCounts[ValueKind]); in overlap()
771 Overlap.Overlap.ValueCounts[ValueKind] += Score; in overlap()
772 FuncLevelOverlap.Overlap.ValueCounts[ValueKind] += FuncLevelScore; in overlap()
1536 if (Test.ValueCounts[I] >= 1.0f) in addOneMismatch()
1537 Mismatch.ValueCounts[I] += in addOneMismatch()
1538 MismatchFunc.ValueCounts[I] / Test.ValueCounts[I]; in addOneMismatch()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProf.h736 std::array<double, IPVK_Last - IPVK_First + 1> ValueCounts = {}; member
741 ValueCounts.fill(0.0f); in reset()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp8010 DenseMap<SDValue, unsigned> ValueCounts; in LowerBUILD_VECTOR() local
8021 ValueCounts.insert(std::make_pair(V, 0)); in LowerBUILD_VECTOR()
8022 unsigned &Count = ValueCounts[V]; in LowerBUILD_VECTOR()
8030 if (ValueCounts.size() != 1) in LowerBUILD_VECTOR()
8032 if (!Value.getNode() && !ValueCounts.empty()) in LowerBUILD_VECTOR()
8033 Value = ValueCounts.begin()->first; in LowerBUILD_VECTOR()
8035 if (ValueCounts.empty()) in LowerBUILD_VECTOR()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp3528 DenseMap<SDValue, unsigned> ValueCounts; in lowerBuildVectorViaDominantValues()
3543 ValueCounts.insert(std::make_pair(V, 0)); in lowerBuildVectorViaDominantValues()
3544 unsigned &Count = ValueCounts[V]; in lowerBuildVectorViaDominantValues()
3567 (ValueCounts.size() <= Log2_32(NumDefElts)))) { in lowerBuildVectorViaDominantValues()
3579 !LastOp.isUndef() && ValueCounts[LastOp] == 1 && in lowerBuildVectorViaDominantValues()
3597 if (ValueCounts[V] == 1) { in lowerBuildVectorViaDominantValues()
3527 DenseMap<SDValue, unsigned> ValueCounts; lowerBuildVectorViaDominantValues() local