Home
last modified time | relevance | path

Searched refs:FnInfos (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DStackMaps.cpp517 auto CurrentIt = FnInfos.find(AP.CurrentFnSym); in recordStackMapOpers()
518 if (CurrentIt != FnInfos.end()) in recordStackMapOpers()
521 FnInfos.insert(std::make_pair(AP.CurrentFnSym, FunctionInfo(FrameSize))); in recordStackMapOpers()
581 LLVM_DEBUG(dbgs() << WSMP << "#functions = " << FnInfos.size() << '\n'); in emitStackmapHeader()
582 OS.emitInt32(FnInfos.size()); in emitStackmapHeader()
601 for (auto const &FR : FnInfos) { in emitFunctionFrameRecords()
713 assert((!CSInfos.empty() || FnInfos.empty()) && in serializeToStackMapSection()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DStackMaps.h297 FnInfos.clear(); in reset()
351 FnInfoMap &getFnInfos() { return FnInfos; } in getFnInfos()
359 FnInfoMap FnInfos; variable