Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DMemProf.cpp175 llvm::DenseMap<CallStackId, LinearCallStackId> &MemProfCallStackIndexes) { in serializeV3() argument
182 assert(MemProfCallStackIndexes.contains(N.CSId)); in serializeV3()
183 LE.write<LinearCallStackId>(MemProfCallStackIndexes[N.CSId]); in serializeV3()
190 assert(MemProfCallStackIndexes.contains(CSId)); in serializeV3()
191 LE.write<LinearCallStackId>(MemProfCallStackIndexes[CSId]); in serializeV3()
197 llvm::DenseMap<CallStackId, LinearCallStackId> *MemProfCallStackIndexes) in serialize()
208 serializeV3(*this, Schema, OS, *MemProfCallStackIndexes); in serialize()
H A DInstrProfWriter.cpp457 *MemProfCallStackIndexes = nullptr) { in writeMemProfRecords() argument
459 MemProfCallStackIndexes); in writeMemProfRecords()
571 MemProfCallStackIndexes; in writeMemProfCallStackArray() local
578 MemProfCallStackIndexes = Builder.takeCallStackPos(); in writeMemProfCallStackArray()
583 return MemProfCallStackIndexes; in writeMemProfCallStackArray()
740 MemProfCallStackIndexes = writeMemProfCallStackArray( in writeMemProfV3() local
746 &MemProfCallStackIndexes); in writeMemProfV3()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DMemProf.h451 *MemProfCallStackIndexes = nullptr) const;
590 llvm::DenseMap<CallStackId, LinearCallStackId> *MemProfCallStackIndexes; variable
597 llvm::DenseMap<CallStackId, LinearCallStackId> *MemProfCallStackIndexes) in RecordWriterTrait() argument
599 MemProfCallStackIndexes(MemProfCallStackIndexes) {} in RecordWriterTrait()
624 V.serialize(*Schema, Out, Version, MemProfCallStackIndexes); in EmitData()