Home
last modified time | relevance | path

Searched refs:CallSites (Results 1 – 13 of 13) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DMemProf.h336 llvm::SmallVector<llvm::SmallVector<FrameId>> CallSites; member
340 CallSites.clear(); in clear()
347 CallSites.append(Other.CallSites); in merge()
357 for (const auto &Frames : CallSites) { in serializedSize()
369 if (Other.CallSites.size() != CallSites.size())
377 for (size_t I = 0; I < CallSites.size(); I++) {
378 if (CallSites[I] != Other.CallSites[I])
405 llvm::SmallVector<llvm::SmallVector<Frame>> CallSites; member
414 for (const ArrayRef<FrameId> Site : Record.CallSites) { in MemProfRecord()
419 CallSites.push_back(Frames); in MemProfRecord()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp231 SmallVectorImpl<CallSiteEntry> &CallSites, in computeCallSiteTable() argument
318 CallSiteEntry &Prev = CallSites.back(); in computeCallSiteTable()
328 CallSites.push_back(Site); in computeCallSiteTable()
333 if (CallSites.size() < SiteNo) in computeCallSiteTable()
334 CallSites.resize(SiteNo); in computeCallSiteTable()
335 CallSites[SiteNo - 1] = Site; in computeCallSiteTable()
350 CallSites.push_back(Site); in computeCallSiteTable()
415 SmallVector<CallSiteEntry, 64> CallSites; in emitExceptionTable() local
532 const CallSiteEntry &S = CallSites[CallSiteIdx]; in emitExceptionTable()
597 I = CallSites.begin(), E = CallSites.end(); I != E; ++I, ++idx) { in emitExceptionTable()
[all …]
H A DWasmException.cpp79 SmallVectorImpl<CallSiteEntry> &CallSites, in computeCallSiteTable() argument
94 if (CallSites.size() < LPadIndex + 1) in computeCallSiteTable()
95 CallSites.resize(LPadIndex + 1); in computeCallSiteTable()
96 CallSites[LPadIndex] = Site; in computeCallSiteTable()
H A DWasmException.h36 SmallVectorImpl<CallSiteEntry> &CallSites,
H A DEHStreamer.h112 SmallVectorImpl<CallSiteEntry> &CallSites,
/freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/
H A DMemProf.cpp27 LE.write<uint64_t>(CallSites.size()); in serialize()
28 for (const auto &Frames : CallSites) { in serialize()
72 Record.CallSites.push_back(Frames); in deserialize()
H A DRawMemProfReader.cpp469 Record.CallSites.push_back(*Loc); in mapRawProfileToRecords()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp455 std::vector<VirtualCallSite> CallSites; member
537 CSI.CallSites.push_back({VTable, CB, NumUnsafeUses}); in addCallSite()
1175 for (auto &&VCallSite : CSInfo.CallSites) { in applySingleImplDevirt()
1467 for (auto &&VCallSite : CSInfo.CallSites) { in applyICallBranchFunnel()
1585 for (auto Call : CSInfo.CallSites) { in applyUniformRetValOpt()
1697 for (auto &&Call : CSInfo.CallSites) { in applyUniqueRetValOpt()
1767 for (auto Call : CSInfo.CallSites) { in applyVirtualConstProp()
H A DFunctionSpecialization.cpp732 for (CallBase *Call : S.CallSites) { in run()
870 AllSpecs[Index].CallSites.push_back(&CS); in findSpecializations()
917 Spec.CallSites.push_back(&CS); in findSpecializations()
H A DLowerTypeTests.cpp436 std::vector<CallInst *> CallSites; member
1167 for (CallInst *CI : TIUI.CallSites) { in lowerTypeTestCalls()
2258 AddTypeIdUse(TypeId).CallSites.push_back(CI); in lower()
H A DAttributorAttributes.cpp12459 Eliminated, CallSites, in trackStatistics()
12462 STATS_DECLTRACK(Specialized, CallSites, in trackStatistics()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DFunctionSpecialization.h135 SmallVector<CallBase *> CallSites; member
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemProfiler.cpp743 for (auto &CS : MemProfRec->CallSites) { in readMemprof()