Lines Matching refs:IntPtrT

460 template <class IntPtrT>
461 InstrProfKind RawInstrProfReader<IntPtrT>::getProfileKind() const { in getProfileKind()
465 template <class IntPtrT>
467 RawInstrProfReader<IntPtrT>::getTemporalProfTraces( in getTemporalProfTraces()
484 template <class IntPtrT>
485 bool RawInstrProfReader<IntPtrT>::hasFormat(const MemoryBuffer &DataBuffer) { in hasFormat()
490 return RawInstrProf::getMagic<IntPtrT>() == Magic || in hasFormat()
491 llvm::byteswap(RawInstrProf::getMagic<IntPtrT>()) == Magic; in hasFormat()
494 template <class IntPtrT>
495 Error RawInstrProfReader<IntPtrT>::readHeader() { in readHeader()
502 ShouldSwapBytes = Header->Magic != RawInstrProf::getMagic<IntPtrT>(); in readHeader()
506 template <class IntPtrT>
507 Error RawInstrProfReader<IntPtrT>::readNextHeader(const char *CurrentPos) { in readNextHeader()
526 if (Magic != swap(RawInstrProf::getMagic<IntPtrT>())) in readNextHeader()
534 template <class IntPtrT>
535 Error RawInstrProfReader<IntPtrT>::createSymtab(InstrProfSymtab &Symtab) { in createSymtab()
538 for (const RawInstrProf::ProfileData<IntPtrT> *I = Data; I != DataEnd; ++I) { in createSymtab()
539 const IntPtrT FPtr = swap(I->FunctionPointer); in createSymtab()
547 template <class IntPtrT>
548 Error RawInstrProfReader<IntPtrT>::readHeader( in readHeader()
587 auto DataSize = NumData * sizeof(RawInstrProf::ProfileData<IntPtrT>); in readHeader()
614 Data = reinterpret_cast<const RawInstrProf::ProfileData<IntPtrT> *>( in readHeader()
635 template <class IntPtrT>
636 Error RawInstrProfReader<IntPtrT>::readName(NamedInstrProfRecord &Record) { in readName()
641 template <class IntPtrT>
642 Error RawInstrProfReader<IntPtrT>::readFuncHash(NamedInstrProfRecord &Record) { in readFuncHash()
647 template <class IntPtrT>
648 Error RawInstrProfReader<IntPtrT>::readRawCounts( in readRawCounts()
715 template <class IntPtrT>
716 Error RawInstrProfReader<IntPtrT>::readRawBitmapBytes(InstrProfRecord &Record) { in readRawBitmapBytes()
758 template <class IntPtrT>
759 Error RawInstrProfReader<IntPtrT>::readValueProfilingData( in readValueProfilingData()
787 template <class IntPtrT>
788 Error RawInstrProfReader<IntPtrT>::readNextRecord(NamedInstrProfRecord &Record) { in readNextRecord()
821 template <class IntPtrT>
822 Error RawInstrProfReader<IntPtrT>::readBinaryIds( in readBinaryIds()
829 template <class IntPtrT>
830 Error RawInstrProfReader<IntPtrT>::printBinaryIds(raw_ostream &OS) { in printBinaryIds()