Home
last modified time | relevance | path

Searched defs:Callee (Results 1 – 25 of 214) sorted by relevance

123456789

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/
H A DAArch64SMEAttributes.h102 bool requiresLazySave(const SMEAttrs &Callee) const { in requiresLazySave()
130 bool requiresPreservingZT0(const SMEAttrs &Callee) const { in requiresPreservingZT0()
133 bool requiresDisablingZABeforeCall(const SMEAttrs &Callee) const { in requiresDisablingZABeforeCall()
137 bool requiresEnablingZAAfterCall(const SMEAttrs &Callee) const { in requiresEnablingZAAfterCall()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCallPromotionUtils.cpp381 CallBase &llvm::versionCallSite(CallBase &CB, Value *Callee, in versionCallSite()
395 bool llvm::isLegalToPromote(const CallBase &CB, Function *Callee, in isLegalToPromote()
481 CallBase &llvm::promoteCall(CallBase &CB, Function *Callee, in promoteCall()
563 CallBase &llvm::promoteCallWithIfThenElse(CallBase &CB, Function *Callee, in promoteCallWithIfThenElse()
576 Function *Callee, in promoteCallWithVTableCmp()
600 Value *Callee = CB.getCalledOperand(); in tryPromoteCall() local
H A DSimplifyLibCalls.cpp485 Function *Callee = CI->getCalledFunction(); in optimizeStrChr() local
726 Function *Callee = CI->getCalledFunction(); in optimizeStpCpy() local
815 Function *Callee = CI->getCalledFunction(); in optimizeStrLCpy() local
840 Function *Callee = CI->getCalledFunction(); in optimizeStringNCpy() local
2294 Function *Callee = Pow->getCalledFunction(); in optimizePow() local
2405 Function *Callee = CI->getCalledFunction(); in optimizeExp2() local
2455 Function *Callee = CI->getCalledFunction(); in optimizeFMinFMax() local
2699 Function *Callee = CI->getCalledFunction(); in optimizeSqrt() local
2771 Function *Callee = CI->getCalledFunction(); in optimizeTrigInversionPairs() local
2855 FunctionCallee Callee = getOrInsertLibFunc( in insertSinCosCall() local
[all …]
H A DLibCallsShrinkWrap.cpp295 Function *Callee = CI.getCalledFunction(); in checkCandidate() local
489 Function *Callee = CI->getCalledFunction(); in perform() local
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DInliner.cpp264 if (Function *Callee = CB->getCalledFunction()) { in run() local
336 Function &Callee = *CB->getCalledFunction(); in run() local
521 llvm::any_of(InlinedCallees, [&](Function *Callee) { in run()
539 for (auto *Callee : DeadFunctionsInComdats) in run() local
H A DModuleInliner.cpp149 if (Function *Callee = CB->getCalledFunction()) { in run() local
184 Function &Callee = *CB->getCalledFunction(); in run() local
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DSyntheticCountsUtils.cpp56 auto Callee = CGT::edge_dest(E.second); in propagateFromSCC() local
69 auto Callee = CGT::edge_dest(E.second); in propagateFromSCC() local
H A DReplayInlineAdvisor.cpp60 StringRef Callee = CalleeCaller.first.rsplit(": '").second; in ReplayInlineAdvisor() local
111 StringRef Callee = CB.getCalledFunction()->getName(); in getAdviceImpl() local
H A DCallGraph.cpp101 const Function *Callee = Call->getCalledFunction(); in populateCallGraphNode() local
229 void CallGraphNode::removeAnyCallEdgeTo(CallGraphNode *Callee) { in removeAnyCallEdgeTo()
241 void CallGraphNode::removeOneAbstractEdgeTo(CallGraphNode *Callee) { in removeOneAbstractEdgeTo()
H A DInlineAdvisor.cpp155 Function &Callee = *CB.getCalledFunction(); in getDefaultInlineAdvice() local
384 Function *Callee = CB.getCalledFunction(); in shouldInline() local
493 const Function &Callee, const Function &Caller, bool AlwaysInline, in emitInlinedInto()
511 const Function &Callee, const Function &Caller, const InlineCost &IC, in emitInlinedIntoBasedOnCost()
595 auto &Callee = *CB.getCalledFunction(); in getMandatoryKind() local
H A DMemoryBuiltins.cpp172 if (const Function *Callee = CB->getCalledFunction()) in getCalledFunction() local
180 getAllocationDataForFunction(const Function *Callee, AllocType AllocTy, in getAllocationDataForFunction()
225 if (const Function *Callee = getCalledFunction(V, IsNoBuiltinCall)) in getAllocationData() local
235 if (const Function *Callee = getCalledFunction(V, IsNoBuiltinCall)) in getAllocationData() local
245 const Function *Callee = in getAllocationSize() local
500 std::optional<FreeFnsTy> getFreeFunctionDataForFunction(const Function *Callee, in getFreeFunctionDataForFunction()
514 const Function *Callee = getCalledFunction(I, IsNoBuiltin); in getAllocationFamily() local
560 const Function *Callee = getCalledFunction(CB, IsNoBuiltinCall); in getFreedOperand() local
913 Function *Callee = CB->getCalledFunction(); in findLoadSizeOffset() local
H A DCallGraphSCCPass.cpp289 Function *Callee = Call->getCalledFunction(); in RefreshCallGraph() local
306 Function *Callee = Call->getCalledFunction(); in RefreshCallGraph() local
348 if (Function *Callee = Call->getCalledFunction()) { in RefreshCallGraph() local
372 if (Function *Callee = Call->getCalledFunction()) { in RefreshCallGraph() local
H A DMLInlineAdvisor.cpp131 if (Function *Callee = CS->getCalledFunction()) { in getInlinableCS() local
286 Function *Callee = Advice.getCallee(); in onSuccessfulInlining() local
347 auto &Callee = *CB.getCalledFunction(); in getAdviceImpl() local
H A DStackSafetyAnalysis.cpp102 const CalleeTy *Callee = nullptr; member
529 const GlobalValue *Callee = in analyzeAllUses() local
598 updateOneNode(const CalleeTy * Callee) updateOneNode() argument
623 getArgumentAccessRange(const CalleeTy * Callee,unsigned ParamNo,const ConstantRange & Offsets) const getArgumentAccessRange() argument
664 updateOneNode(const CalleeTy * Callee,FunctionInfo<CalleeTy> & FS) updateOneNode() argument
695 for (auto &Callee : Callees) runDataFlow() local
702 const CalleeTy *Callee = WorkList.pop_back_val(); runDataFlow() local
[all...]
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DAbstractCallSite.cpp36 const Function *Callee = CB.getCalledFunction(); in getCallbackUses() local
86 Function *Callee = CB->getCalledFunction(); in AbstractCallSite() local
H A DAttributes.cpp2188 static bool checkDenormMode(const Function &Caller, const Function &Callee) { in checkDenormMode()
2205 static bool checkStrictFP(const Function &Caller, const Function &Callee) { in checkStrictFP()
2213 static bool isEqual(const Function &Caller, const Function &Callee) { in isEqual()
2218 static bool isEqual(const Function &Caller, const Function &Callee, in isEqual()
2229 static void setAND(Function &Caller, const Function &Callee) { in setAND()
2241 static void setOR(Function &Caller, const Function &Callee) { in setOR()
2249 static void adjustCallerSSPLevel(Function &Caller, const Function &Callee) { in adjustCallerSSPLevel()
2279 static void adjustCallerStackProbes(Function &Caller, const Function &Callee) { in adjustCallerStackProbes()
2290 adjustCallerStackProbeSize(Function &Caller, const Function &Callee) { in adjustCallerStackProbeSize()
2318 adjustMinLegalVectorWidth(Function &Caller, const Function &Callee) { in adjustMinLegalVectorWidth()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DProfiledCallGraph.h87 addProfiledFunction(Callee->getFuncName()); variable
104 addProfiledFunction(Callee->getFuncName()); variable
/freebsd/contrib/llvm-project/clang/lib/Analysis/plugins/SampleAnalyzer/
H A DMainCallChecker.cpp20 const Expr *Callee = CE->getCallee(); in checkPreStmt() local
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVCallLowering.h35 Register Callee; member
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_function_call_trie.h392 auto* Callee = TopNode->Callees.find_element( in enterFunction() local
513 for (const auto Callee : NP.Node->Callees) { in deepCopyInto() local
574 for (const auto Callee : NT.OrigNode->Callees) { in mergeInto() local
/freebsd/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DObjCARCAPElim.cpp46 if (const Function *Callee = CB.getCalledFunction()) { in MayAutorelease() local
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCUDA.cpp228 const FunctionDecl *Callee) { in IdentifyPreference()
707 const FunctionDecl *Callee) { in RecordImplicitHostDeviceFuncUsedByDevice()
882 bool SemaCUDA::CheckCall(SourceLocation Loc, FunctionDecl *Callee) { in CheckCall()
952 void SemaCUDA::CheckLambdaCapture(CXXMethodDecl *Callee, in CheckLambdaCapture()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUAnnotateKernelFeatures.cpp76 const Function *Callee = in addFeatureAttributes() local
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLowerEmscriptenEHSjLj.cpp593 static bool canLongjmp(const Value *Callee) { in canLongjmp()
674 static bool isEmAsmCall(const Value *Callee) { in isEmAsmCall()
1088 const Value *Callee = II->getCalledOperand(); in runEHOnFunction() local
1182 const Function *Callee = CI->getCalledFunction(); in runEHOnFunction() local
1401 const Value *Callee = CI->getCalledOperand(); in handleLongjmpableCallsForEmscriptenSjLj() local
1672 const Value *Callee = CI->getCalledOperand(); in handleLongjmpableCallsForWasmSjLj() local
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXTargetTransformInfo.h89 const Function *Callee) const { in areInlineCompatible()

123456789