Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfCorrelator.cpp165 return InstrProfCorrelatorImpl<uint64_t>::get(std::move(*CtxOrErr), *Obj, in get()
168 return InstrProfCorrelatorImpl<uint32_t>::get(std::move(*CtxOrErr), *Obj, in get()
176 if (auto *C = dyn_cast<InstrProfCorrelatorImpl<uint32_t>>(this)) { in getDataSize()
178 } else if (auto *C = dyn_cast<InstrProfCorrelatorImpl<uint64_t>>(this)) { in getDataSize()
187 InstrProfCorrelatorImpl<uint32_t>::InstrProfCorrelatorImpl( in InstrProfCorrelatorImpl() function in llvm::InstrProfCorrelatorImpl
189 : InstrProfCorrelatorImpl(InstrProfCorrelatorKind::CK_32Bit, in InstrProfCorrelatorImpl()
192 InstrProfCorrelatorImpl<uint64_t>::InstrProfCorrelatorImpl( in InstrProfCorrelatorImpl() function in llvm::InstrProfCorrelatorImpl
194 : InstrProfCorrelatorImpl(InstrProfCorrelatorKind::CK_64Bit, in InstrProfCorrelatorImpl()
197 bool InstrProfCorrelatorImpl<uint32_t>::classof(const InstrProfCorrelator *C) { in classof()
201 bool InstrProfCorrelatorImpl<uint64_t>::classof(const InstrProfCorrelator *C) { in classof()
[all …]
H A DInstrProfReader.cpp672 InstrProfCorrelatorImpl<IntPtrT> *BIDFetcherCorrelatorImpl = in readHeader()
673 dyn_cast_or_null<InstrProfCorrelatorImpl<IntPtrT>>( in readHeader()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfCorrelator.h131 class InstrProfCorrelatorImpl : public InstrProfCorrelator {
133 InstrProfCorrelatorImpl(std::unique_ptr<InstrProfCorrelator::Context> Ctx);
145 static llvm::Expected<std::unique_ptr<InstrProfCorrelatorImpl<IntPtrT>>>
171 InstrProfCorrelatorImpl(InstrProfCorrelatorKind Kind,
180 class DwarfInstrProfCorrelator : public InstrProfCorrelatorImpl<IntPtrT> {
184 : InstrProfCorrelatorImpl<IntPtrT>(std::move(Ctx)),
234 class BinaryInstrProfCorrelator : public InstrProfCorrelatorImpl<IntPtrT> {
237 : InstrProfCorrelatorImpl<IntPtrT>(std::move(Ctx)) {}
H A DInstrProfReader.h334 const InstrProfCorrelatorImpl<IntPtrT> *Correlator;
385 Correlator(dyn_cast_or_null<const InstrProfCorrelatorImpl<IntPtrT>>( in RawInstrProfReader()