Home
last modified time | relevance | path

Searched refs:Calls (Results 1 – 25 of 230) sorted by relevance

12345678910

/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DEscapeEnumerator.cpp60 SmallVector<Instruction *, 16> Calls; in Next() local
65 Calls.push_back(CI); in Next()
67 if (Calls.empty()) in Next()
91 for (unsigned I = Calls.size(); I != 0;) { in Next()
92 CallInst *CI = cast<CallInst>(Calls[--I]); in Next()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DPlaceSafepoints.cpp268 std::vector<CallInst *> &Calls, in scanOneBB() argument
275 Calls.push_back(CI); in scanOneBB()
295 std::vector<CallInst *> &Calls, in scanInlinedCode() argument
297 Calls.clear(); in scanInlinedCode()
300 scanOneBB(Start, End, Calls, Seen, Worklist); in scanInlinedCode()
304 scanOneBB(&*BB->begin(), End, Calls, Seen, Worklist); in scanInlinedCode()
660 std::vector<CallInst *> Calls; // new calls in INITIALIZE_PASS_DEPENDENCY() local
672 scanInlinedCode(&*Start, &*After, Calls, BBs); in INITIALIZE_PASS_DEPENDENCY()
673 assert(!Calls.empty() && "slow path not found for safepoint poll"); in INITIALIZE_PASS_DEPENDENCY()
680 for (auto *CI : Calls) { in INITIALIZE_PASS_DEPENDENCY()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DStackSafetyAnalysis.cpp127 CallsTy Calls; member
137 for (auto &Call : U.Calls) in operator <<()
532 for (auto &KV : US.Calls) { in updateOneUse()
698 std::swap(TmpCalls, Use.Calls); in resolveAllCalls()
739 KV.second.Calls.clear(); in createGlobalStackSafetyInfo()
754 for (auto &C : A.Calls) { in createGlobalStackSafetyInfo()
759 A.Calls = SrcF.Allocas.find(KV.first)->second.Calls; in createGlobalStackSafetyInfo()
763 P.Calls = SrcF.Params.find(KV.first)->second.Calls; in createGlobalStackSafetyInfo()
840 Param.Calls.reserve(PS.Calls.size()); in getParamAccesses()
841 for (auto &C : PS.Calls) { in getParamAccesses()
[all …]
H A DCallGraphSCCPass.cpp207 DenseMap<Value *, CallGraphNode *> Calls; in RefreshCallGraph() local
271 Calls.count(Call) || in RefreshCallGraph()
294 assert(!Calls.count(Call) && "Call site occurs in node multiple times"); in RefreshCallGraph()
300 Calls.insert(std::make_pair(Call, I->second)); in RefreshCallGraph()
330 Calls.find(Call); in RefreshCallGraph()
331 if (ExistingIt != Calls.end()) { in RefreshCallGraph()
335 Calls.erase(ExistingIt); in RefreshCallGraph()
410 assert(Calls.empty() && "Dangling pointers found in call sites map"); in RefreshCallGraph()
415 Calls.clear(); in RefreshCallGraph()
H A DAliasAnalysisEvaluator.cpp103 SmallSetVector<CallBase *, 16> Calls; in runInternal() local
127 Calls.insert(Call); in runInternal()
139 << " pointers, " << Calls.size() << " call sites\n"; in runInternal()
233 for (CallBase *Call : Calls) { in runInternal()
283 for (CallBase *CallA : Calls) { in runInternal()
284 for (CallBase *CallB : Calls) { in runInternal()
H A DInlineSizeEstimatorAnalysis.cpp57 Calls, enumerator
187 ++FF[NamedFeatureIndex::Calls]; in getFunctionFeatures()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DInliner.cpp717 SmallVector<std::pair<CallBase *, int>, 16> Calls; in run() local
732 Calls.push_back({CB, -1}); in run()
746 if (Calls.empty()) in run()
769 for (int I = 0; I < (int)Calls.size(); ++I) { in run()
774 Function &F = *Calls[I].first->getCaller(); in run()
791 for (; I < (int)Calls.size() && Calls[I].first->getCaller() == &F; ++I) { in run()
792 auto &P = Calls[I]; in run()
862 Calls.push_back({ICB, NewHistoryID}); in run()
879 Calls.erase( in run()
880 std::remove_if(Calls.begin() + I + 1, Calls.end(), in run()
[all …]
H A DAlwaysInliner.cpp46 SmallSetVector<CallBase *, 16> Calls; in run() local
59 Calls.clear(); in run()
64 Calls.insert(CB); in run()
66 for (CallBase *CB : Calls) { in run()
/netbsd/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DMallocSizeofChecker.cpp52 CallVec Calls; member in __anon918b152c0111::CastedAllocFinder
62 Calls.push_back(CallRecord(Parent, cast<Expr>(S), AllocCall.first, in VisitChild()
181 for (CastedAllocFinder::CallVec::iterator i = Finder.Calls.begin(), in checkASTCodeBody()
182 e = Finder.Calls.end(); i != e; ++i) { in checkASTCodeBody()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
H A DPtrState.cpp94 Calls.clear(); in clear()
110 Calls.insert(Other.Calls.begin(), Other.Calls.end()); in Merge()
H A DPtrState.h80 SmallPtrSet<Instruction *, 2> Calls; member
157 void InsertCall(Instruction *I) { RRI.Calls.insert(I); } in InsertCall()
H A DObjCARCOpts.cpp1787 for (Instruction *OrigRetain : RetainsToMove.Calls) { in MoveCalls()
1792 for (Instruction *OrigRelease : ReleasesToMove.Calls) { in MoveCalls()
1830 for (Instruction *NewRetainRelease : NewRetainRRI.Calls) { in PairUpRetainsAndReleases()
1841 if (!NewRetainReleaseRRI.Calls.count(NewRetain)) in PairUpRetainsAndReleases()
1844 if (ReleasesToMove.Calls.insert(NewRetainRelease).second) { in PairUpRetainsAndReleases()
1902 for (Instruction *NewReleaseRetain : NewReleaseRRI.Calls) { in PairUpRetainsAndReleases()
1913 if (!NewReleaseRetainRRI.Calls.count(NewRelease)) in PairUpRetainsAndReleases()
1916 if (RetainsToMove.Calls.insert(NewReleaseRetain).second) { in PairUpRetainsAndReleases()
/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaCoroutine.cpp438 Calls.IsInvalid = true; in buildCoawaitCalls()
441 Calls.Results[CallType] = Result.get(); in buildCoawaitCalls()
448 return Calls; in buildCoawaitCalls()
459 Calls.IsInvalid = true; in buildCoawaitCalls()
467 Calls.IsInvalid = true; in buildCoawaitCalls()
468 return Calls; in buildCoawaitCalls()
474 return Calls; in buildCoawaitCalls()
490 Calls.Results[ACT::ACT_Suspend] = TailCallSuspend; in buildCoawaitCalls()
500 Calls.IsInvalid = true; in buildCoawaitCalls()
502 Calls.Results[ACT::ACT_Suspend] = in buildCoawaitCalls()
[all …]
/netbsd/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/
H A Dfstream726 * Calls @c std::basic_filebuf::close(). If that function
917 * Calls @c std::basic_filebuf::open(__s,__mode|out). If that
937 * Calls @c std::basic_filebuf::open(__s,__mode|out). If that
956 * Calls @c std::basic_filebuf::open(s,mode|out). If that
976 * Calls @c std::basic_filebuf::open(__s,__mode|out). If that
989 * Calls @c std::basic_filebuf::close(). If that function
1173 * Calls @c std::basic_filebuf::open(__s,__mode). If that
1194 * Calls @c std::basic_filebuf::open(__s,__mode). If that
1214 * Calls @c std::basic_filebuf::open(__s,__mode). If that
1235 * Calls @c std::basic_filebuf::open(__s,__mode). If that
[all …]
/netbsd/external/gpl3/gcc/dist/libstdc++-v3/include/std/
H A Dfstream731 * Calls @c std::basic_filebuf::close(). If that function
922 * Calls @c std::basic_filebuf::open(__s,__mode|out). If that
942 * Calls @c std::basic_filebuf::open(__s,__mode|out). If that
961 * Calls @c std::basic_filebuf::open(s,mode|out). If that
981 * Calls @c std::basic_filebuf::open(__s,__mode|out). If that
994 * Calls @c std::basic_filebuf::close(). If that function
1178 * Calls @c std::basic_filebuf::open(__s,__mode). If that
1199 * Calls @c std::basic_filebuf::open(__s,__mode). If that
1219 * Calls @c std::basic_filebuf::open(__s,__mode). If that
1240 * Calls @c std::basic_filebuf::open(__s,__mode). If that
[all …]
/netbsd/external/lgpl3/gmp/dist/mpn/sparc64/ultrasparct3/
H A Dmissing.m463 dnl Calls __gmpn_umulh using a non-standard calling convention
78 dnl Calls __gmpn_lzcnt using a non-standard calling convention
/netbsd/external/gpl3/binutils.old/dist/bfd/doc/
H A Dopncls.texi26 Calls @code{bfd_find_target}, so @var{target} is interpreted as by
50 Calls @code{bfd_find_target}, so @var{target} is interpreted as by
127 Calls @code{bfd_find_target}, so @var{target} is interpreted as by
130 Calls @var{open_func} (which can call @code{bfd_zalloc} and
136 Calls @var{pread_func} to request @var{nbytes} of data from
142 Calls @var{close_func} when the BFD is later closed using
146 Calls @var{stat_func} to fill in a stat structure for bfd_stat,
/netbsd/external/gpl3/binutils/dist/bfd/doc/
H A Dopncls.texi26 Calls @code{bfd_find_target}, so @var{target} is interpreted as by
50 Calls @code{bfd_find_target}, so @var{target} is interpreted as by
137 Calls @code{bfd_find_target}, so @var{target} is interpreted as by
140 Calls @var{open_func} (which can call @code{bfd_zalloc} and
146 Calls @var{pread_func} to request @var{nbytes} of data from
152 Calls @var{close_func} when the BFD is later closed using
156 Calls @var{stat_func} to fill in a stat structure for bfd_stat,
/netbsd/external/cddl/dtracetoolkit/dist/Docs/Examples/
H A Dpl_syscalls_example.txt12 Calls for PID 305173,
H A Drb_syscalls_example.txt12 Calls for PID 146493,
/netbsd/external/cddl/dtracetoolkit/dist/Examples/
H A Dpl_syscalls_example.txt12 Calls for PID 305173,
H A Drb_syscalls_example.txt12 Calls for PID 146493,
H A Dsh_syscalls_example.txt15 Calls for PID 12966,
/netbsd/external/bsd/mdocml/dist/
H A Dmsec.in26 LINE("2", "System Calls Manual")
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp343 unsigned Calls = 0, Refs = 0, Functions = 0, Alias = 0, Globals = 0; in printIndexStats() local
349 Calls += FuncSummary->calls().size(); in printIndexStats()
359 << " globals) and " << (Calls + Refs) << " edges (" << Refs in printIndexStats()
360 << " refs and " << Calls << " calls)\n"; in printIndexStats()

12345678910