Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp231 SmallVectorImpl<CallSiteEntry> &CallSites, in computeCallSiteTable() argument
258 Asm->getMBBExceptionSym(MBB), CallSites.size()}); in computeCallSiteTable()
297 CallSites.push_back({LastLabel, BeginLabel, nullptr, 0}); in computeCallSiteTable()
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()
353 CallSiteRanges.back().CallSiteEndIdx = CallSites.size(); in computeCallSiteTable()
[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/contrib/llvm-project/llvm/lib/ProfileData/
H A DMemProf.cpp81 for (const auto &Frames : Record.CallSites) { in serializedSizeV0()
146 LE.write<uint64_t>(Record.CallSites.size()); in serializeV0()
147 for (const auto &Frames : Record.CallSites) { in serializeV0()
251 Record.CallSites.push_back(Frames); in deserializeV0()
353 Record.CallSites.reserve(CallSiteIds.size()); in toMemProfRecord()
355 Record.CallSites.push_back(Callback(CSId)); in toMemProfRecord()
H A DMemProfReader.cpp250 for (auto &CS : Record.CallSites) { in MemProfReader()
555 Record.CallSites.push_back(*Loc); in mapRawProfileToRecords()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DMemProf.h417 llvm::SmallVector<llvm::SmallVector<FrameId>> CallSites; member
424 CallSites.clear(); in clear()
431 CallSites.append(Other.CallSites); in merge()
476 llvm::SmallVector<std::vector<Frame>> CallSites; member
485 for (const ArrayRef<FrameId> Site : Record.CallSites) { in MemProfRecord()
490 CallSites.push_back(Frames); in MemProfRecord()
502 if (!CallSites.empty()) { in print()
504 for (const std::vector<Frame> &Frames : CallSites) { in print()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DFunctionSpecialization.h135 SmallVector<CallBase *> CallSites; in InstCostVisitor()
114 SmallVector<CallBase *> CallSites; global() member
/freebsd/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()
1168 for (auto &&VCallSite : CSInfo.CallSites) { in applySingleImplDevirt()
1459 for (auto &&VCallSite : CSInfo.CallSites) { in applyICallBranchFunnel()
1577 for (auto Call : CSInfo.CallSites) { in applyUniformRetValOpt()
1689 for (auto &&Call : CSInfo.CallSites) { in applyUniqueRetValOpt()
1759 for (auto Call : CSInfo.CallSites) { in applyVirtualConstProp()
H A DFunctionSpecialization.cpp734 for (CallBase *Call : S.CallSites) { in run()
872 AllSpecs[Index].CallSites.push_back(&CS); in findSpecializations()
919 Spec.CallSites.push_back(&CS); in findSpecializations()
H A DLowerTypeTests.cpp436 std::vector<CallInst *> CallSites; member
1167 for (CallInst *CI : TIUI.CallSites) { in lowerTypeTestCalls()
2260 AddTypeIdUse(TypeId).CallSites.push_back(CI); in lower()
H A DAttributorAttributes.cpp12449 Eliminated, CallSites, in trackStatistics()
12452 STATS_DECLTRACK(Specialized, CallSites, in trackStatistics()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemProfiler.cpp858 for (auto &CS : MemProfRec->CallSites) { in readMemprof()