Lines Matching refs:MemProfCallStackIndexes
135 llvm::DenseMap<CallStackId, LinearCallStackId> &MemProfCallStackIndexes) { in serializeV3() argument
142 assert(MemProfCallStackIndexes.contains(N.CSId)); in serializeV3()
143 LE.write<LinearCallStackId>(MemProfCallStackIndexes[N.CSId]); in serializeV3()
150 assert(MemProfCallStackIndexes.contains(CS.CSId)); in serializeV3()
151 LE.write<LinearCallStackId>(MemProfCallStackIndexes[CS.CSId]); in serializeV3()
158 llvm::DenseMap<CallStackId, LinearCallStackId> &MemProfCallStackIndexes) { in serializeV4() argument
165 assert(MemProfCallStackIndexes.contains(N.CSId)); in serializeV4()
166 LE.write<LinearCallStackId>(MemProfCallStackIndexes[N.CSId]); in serializeV4()
173 assert(MemProfCallStackIndexes.contains(CS.CSId)); in serializeV4()
174 LE.write<LinearCallStackId>(MemProfCallStackIndexes[CS.CSId]); in serializeV4()
183 llvm::DenseMap<CallStackId, LinearCallStackId> *MemProfCallStackIndexes) in serialize()
190 serializeV3(*this, Schema, OS, *MemProfCallStackIndexes); in serialize()
193 serializeV4(*this, Schema, OS, *MemProfCallStackIndexes); in serialize()