Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp229 SmallVectorImpl<CallSiteEntry> &CallSites, in computeCallSiteTable() argument
256 Asm->getMBBExceptionSym(MBB), CallSites.size()}); in computeCallSiteTable()
295 CallSites.push_back({LastLabel, BeginLabel, nullptr, 0}); in computeCallSiteTable()
316 CallSiteEntry &Prev = CallSites.back(); in computeCallSiteTable()
326 CallSites.push_back(Site); in computeCallSiteTable()
331 if (CallSites.size() < SiteNo) in computeCallSiteTable()
332 CallSites.resize(SiteNo); in computeCallSiteTable()
333 CallSites[SiteNo - 1] = Site; in computeCallSiteTable()
348 CallSites.push_back(Site); in computeCallSiteTable()
351 CallSiteRanges.back().CallSiteEndIdx = CallSites.size(); in computeCallSiteTable()
[all …]
H A DWasmException.cpp78 SmallVectorImpl<CallSiteEntry> &CallSites, in computeCallSiteTable() argument
93 if (CallSites.size() < LPadIndex + 1) in computeCallSiteTable()
94 CallSites.resize(LPadIndex + 1); in computeCallSiteTable()
95 CallSites[LPadIndex] = Site; in computeCallSiteTable()
H A DWasmException.h34 SmallVectorImpl<CallSiteEntry> &CallSites,
H A DEHStreamer.h112 SmallVectorImpl<CallSiteEntry> &CallSites,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DInliner.cpp318 SmallVector<std::pair<CallBase *, int>, 16> CallSites; in inlineCallsImpl() local
358 CallSites.push_back(std::make_pair(CB, -1)); in inlineCallsImpl()
362 LLVM_DEBUG(dbgs() << ": " << CallSites.size() << " call sites.\n"); in inlineCallsImpl()
365 if (CallSites.empty()) in inlineCallsImpl()
370 unsigned FirstCallInSCC = CallSites.size(); in inlineCallsImpl()
372 if (Function *F = CallSites[I].first->getCalledFunction()) in inlineCallsImpl()
374 std::swap(CallSites[I--], CallSites[--FirstCallInSCC]); in inlineCallsImpl()
388 for (unsigned CSi = 0; CSi != CallSites.size(); ++CSi) { in inlineCallsImpl()
389 auto &P = CallSites[CSi]; in inlineCallsImpl()
478 for (auto &II : CallSites) in inlineCallsImpl()
[all …]
H A DWholeProgramDevirt.cpp413 std::vector<VirtualCallSite> CallSites; member
495 CSI.CallSites.push_back({VTable, CB, NumUnsafeUses}); in addCallSite()
1066 for (auto &&VCallSite : CSInfo.CallSites) { in applySingleImplDevirt()
1312 for (auto &&VCallSite : CSInfo.CallSites) { in applyICallBranchFunnel()
1409 for (auto Call : CSInfo.CallSites) in applyUniformRetValOpt()
1517 for (auto &&Call : CSInfo.CallSites) { in applyUniqueRetValOpt()
1585 for (auto Call : CSInfo.CallSites) { in applyVirtualConstProp()
H A DLowerTypeTests.cpp408 std::vector<CallInst *> CallSites; member
1172 for (CallInst *CI : TIUI.CallSites) { in lowerTypeTestCalls()
2076 AddTypeIdUse(TypeId).CallSites.push_back(CI); in lower()