Home
last modified time | relevance | path

Searched refs:InstrProfCorrelatorImpl (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/lib/ProfileData/
H A DInstrProfCorrelator.cpp97 if (auto *C = dyn_cast<InstrProfCorrelatorImpl<uint32_t>>(this)) { in getDataSize()
99 } else if (auto *C = dyn_cast<InstrProfCorrelatorImpl<uint64_t>>(this)) { in getDataSize()
108 InstrProfCorrelatorImpl<uint32_t>::InstrProfCorrelatorImpl( in InstrProfCorrelatorImpl() function in llvm::InstrProfCorrelatorImpl
110 : InstrProfCorrelatorImpl(InstrProfCorrelatorKind::CK_32Bit, in InstrProfCorrelatorImpl()
113 InstrProfCorrelatorImpl<uint64_t>::InstrProfCorrelatorImpl( in InstrProfCorrelatorImpl() function in llvm::InstrProfCorrelatorImpl
115 : InstrProfCorrelatorImpl(InstrProfCorrelatorKind::CK_64Bit, in InstrProfCorrelatorImpl()
118 bool InstrProfCorrelatorImpl<uint32_t>::classof(const InstrProfCorrelator *C) { in classof()
129 llvm::Expected<std::unique_ptr<InstrProfCorrelatorImpl<IntPtrT>>>
130 InstrProfCorrelatorImpl<IntPtrT>::get( in get()
144 Error InstrProfCorrelatorImpl<IntPtrT>::correlateProfileData() { in correlateProfileData()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/ProfileData/
H A DInstrProfCorrelator.h90 class InstrProfCorrelatorImpl : public InstrProfCorrelator {
92 InstrProfCorrelatorImpl(std::unique_ptr<InstrProfCorrelator::Context> Ctx);
104 static llvm::Expected<std::unique_ptr<InstrProfCorrelatorImpl<IntPtrT>>>
118 InstrProfCorrelatorImpl(InstrProfCorrelatorKind Kind, in InstrProfCorrelatorImpl() function
132 class DwarfInstrProfCorrelator : public InstrProfCorrelatorImpl<IntPtrT> {
136 : InstrProfCorrelatorImpl<IntPtrT>(std::move(Ctx)), in DwarfInstrProfCorrelator()
H A DInstrProfReader.h264 const InstrProfCorrelatorImpl<IntPtrT> *Correlator;
291 Correlator(dyn_cast_or_null<const InstrProfCorrelatorImpl<IntPtrT>>( in RawInstrProfReader()