Lines Matching refs:IntPtrT
316 template <class IntPtrT>
317 InstrProfKind RawInstrProfReader<IntPtrT>::getProfileKind() const { in getProfileKind()
321 template <class IntPtrT>
322 bool RawInstrProfReader<IntPtrT>::hasFormat(const MemoryBuffer &DataBuffer) { in hasFormat()
327 return RawInstrProf::getMagic<IntPtrT>() == Magic || in hasFormat()
328 sys::getSwappedBytes(RawInstrProf::getMagic<IntPtrT>()) == Magic; in hasFormat()
331 template <class IntPtrT>
332 Error RawInstrProfReader<IntPtrT>::readHeader() { in readHeader()
339 ShouldSwapBytes = Header->Magic != RawInstrProf::getMagic<IntPtrT>(); in readHeader()
343 template <class IntPtrT>
344 Error RawInstrProfReader<IntPtrT>::readNextHeader(const char *CurrentPos) { in readNextHeader()
363 if (Magic != swap(RawInstrProf::getMagic<IntPtrT>())) in readNextHeader()
371 template <class IntPtrT>
372 Error RawInstrProfReader<IntPtrT>::createSymtab(InstrProfSymtab &Symtab) { in createSymtab()
375 for (const RawInstrProf::ProfileData<IntPtrT> *I = Data; I != DataEnd; ++I) { in createSymtab()
376 const IntPtrT FPtr = swap(I->FunctionPointer); in createSymtab()
384 template <class IntPtrT>
385 Error RawInstrProfReader<IntPtrT>::readHeader( in readHeader()
408 auto DataSize = NumData * sizeof(RawInstrProf::ProfileData<IntPtrT>); in readHeader()
432 Data = reinterpret_cast<const RawInstrProf::ProfileData<IntPtrT> *>( in readHeader()
458 template <class IntPtrT>
459 Error RawInstrProfReader<IntPtrT>::readName(NamedInstrProfRecord &Record) { in readName()
464 template <class IntPtrT>
465 Error RawInstrProfReader<IntPtrT>::readFuncHash(NamedInstrProfRecord &Record) { in readFuncHash()
470 template <class IntPtrT>
471 Error RawInstrProfReader<IntPtrT>::readRawCounts( in readRawCounts()
517 template <class IntPtrT>
518 Error RawInstrProfReader<IntPtrT>::readValueProfilingData( in readValueProfilingData()
546 template <class IntPtrT>
547 Error RawInstrProfReader<IntPtrT>::readNextRecord(NamedInstrProfRecord &Record) { in readNextRecord()
578 template <class IntPtrT>
579 Error RawInstrProfReader<IntPtrT>::printBinaryIds(raw_ostream &OS) { in printBinaryIds()