Home
last modified time | relevance | path

Searched refs:CallInfo (Results 1 – 25 of 40) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFAbstractMemberAccess.cpp126 struct CallInfo { struct in __anond41272030111::BPFAbstractMemberAccess
133 typedef std::stack<std::pair<CallInst *, CallInfo>> CallInfoStack;
149 std::map<CallInst *, std::pair<CallInst *, CallInfo>> AIChain;
153 std::map<CallInst *, CallInfo> BaseAICalls;
160 void ResetMetadata(struct CallInfo &CInfo);
164 void traceAICall(CallInst *Call, CallInfo &ParentInfo);
166 CallInfo &ParentInfo);
168 CallInfo &ParentInfo);
171 bool IsPreserveDIAccessIndexCall(const CallInst *Call, CallInfo &Cinfo);
182 Value *computeBaseAndAccessKey(CallInst *Call, CallInfo &CInfo,
[all …]
/freebsd/contrib/lua/src/
H A Dldo.c166 CallInfo *ci; in relstack()
183 CallInfo *ci; in correctstack()
277 CallInfo *ci; in stackinuse()
333 CallInfo *ci = L->ci; in luaD_hook()
369 void luaD_hookcall (lua_State *L, CallInfo *ci) { in luaD_hookcall()
387 static void rethook (lua_State *L, CallInfo *ci, int nres) { in rethook()
485 void luaD_poscall (lua_State *L, CallInfo *ci, int nres) { in luaD_poscall()
502 l_sinline CallInfo *prepCallInfo (lua_State *L, StkId func, int nret, in prepCallInfo()
504 CallInfo *ci = L->ci = next_ci(L); /* new frame */ in prepCallInfo()
519 CallInfo *ci; in precallC()
[all …]
H A Dlstate.h14 typedef struct CallInfo CallInfo; typedef
177 struct CallInfo { struct
180 struct CallInfo *previous, *next; /* dynamic call link */ argument
316 CallInfo *ci; /* call info for current function */
324 CallInfo base_ci; /* CallInfo for first level (C calling Lua) */
398 LUAI_FUNC CallInfo *luaE_extendCI (lua_State *L);
H A Dldebug.c37 static const char *funcnamefromcall (lua_State *L, CallInfo *ci,
41 static int currentpc (CallInfo *ci) { in currentpc()
98 static int getcurrentline (CallInfo *ci) { in getcurrentline()
114 static void settraps (CallInfo *ci) { in settraps()
162 CallInfo *ci; in lua_getstack()
184 static const char *findvararg (CallInfo *ci, int n, StkId *pos) { in findvararg()
196 const char *luaG_findlocal (lua_State *L, CallInfo *ci, int n, StkId *pos) { in luaG_findlocal()
319 static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name) { in getfuncname()
328 Closure *f, CallInfo *ci) { in auxgetinfo()
386 CallInfo *ci; in lua_getinfo()
[all …]
H A Dlstate.c105 CallInfo *luaE_extendCI (lua_State *L) { in luaE_extendCI()
106 CallInfo *ci; in luaE_extendCI()
108 ci = luaM_new(L, CallInfo); in luaE_extendCI()
123 CallInfo *ci = L->ci; in luaE_freeCI()
124 CallInfo *next = ci->next; in luaE_freeCI()
139 CallInfo *ci = L->ci->next; /* first free CallInfo */ in luaE_shrinkCI()
140 CallInfo *next; in luaE_shrinkCI()
144 CallInfo *next2 = next->next; /* next's next */ in luaE_shrinkCI()
181 int i; CallInfo *ci; in stack_init()
324 CallInfo *ci = L->ci = &L->base_ci; /* unwind CallInfo list */ in luaE_resetthread()
H A Dldo.h68 LUAI_FUNC void luaD_hookcall (lua_State *L, CallInfo *ci);
69 LUAI_FUNC int luaD_pretailcall (lua_State *L, CallInfo *ci, StkId func,
71 LUAI_FUNC CallInfo *luaD_precall (lua_State *L, StkId func, int nResults);
78 LUAI_FUNC void luaD_poscall (lua_State *L, CallInfo *ci, int nres);
H A Dltm.h99 CallInfo *ci, const Proto *p);
100 LUAI_FUNC void luaT_getvarargs (lua_State *L, CallInfo *ci,
H A Dldebug.h40 LUAI_FUNC const char *luaG_findlocal (lua_State *L, CallInfo *ci, int n,
H A Dltm.c238 void luaT_adjustvarargs (lua_State *L, int nfixparams, CallInfo *ci, in luaT_adjustvarargs()
258 void luaT_getvarargs (lua_State *L, CallInfo *ci, StkId where, int wanted) { in luaT_getvarargs()
H A Dlvm.h133 LUAI_FUNC void luaV_execute (lua_State *L, CallInfo *ci);
H A Dlapi.c61 CallInfo *ci = L->ci; in index2value()
96 CallInfo *ci = L->ci; in index2stack()
113 CallInfo *ci; in lua_checkstack()
182 CallInfo *ci; in lua_settop()
1067 CallInfo *ci = L->ci; in lua_pcallk()
/freebsd/sys/contrib/openzfs/module/lua/
H A Dldebug.c31 static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name);
34 static int currentpc (CallInfo *ci) { in currentpc()
40 static int currentline (CallInfo *ci) { in currentline()
47 CallInfo *ci = L->ci; /* get function that yielded */ in swapextra()
90 CallInfo *ci; in lua_getstack()
112 static const char *findvararg (CallInfo *ci, int n, StkId *pos) { in findvararg()
124 static const char *findlocal (lua_State *L, CallInfo *ci, int n, in findlocal()
227 Closure *f, CallInfo *ci) { in auxgetinfo()
280 CallInfo *ci; in lua_getinfo()
458 static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name) { in getfuncname()
[all …]
H A Dlstate.h69 typedef struct CallInfo { struct
72 struct CallInfo *previous, *next; /* dynamic call link */ argument
89 } CallInfo; argument
159 CallInfo *ci; /* call info for current function */
176 CallInfo base_ci; /* CallInfo for first level (C calling Lua) */
224 LUAI_FUNC CallInfo *luaE_extendCI (lua_State *L);
H A Dlstate.c108 CallInfo *luaE_extendCI (lua_State *L) { in luaE_extendCI()
109 CallInfo *ci = luaM_new(L, CallInfo); in luaE_extendCI()
119 CallInfo *ci = L->ci; in luaE_freeCI()
120 CallInfo *next = ci->next; in luaE_freeCI()
130 int i; CallInfo *ci; in stack_init()
H A Dldo.c226 CallInfo *ci; in correctstack()
278 CallInfo *ci; in stackinuse()
303 CallInfo *ci = L->ci; in luaD_hook()
327 static void callhook (lua_State *L, CallInfo *ci) { in callhook()
381 CallInfo *ci; in luaD_precall()
448 CallInfo *ci = L->ci; in luaD_poscall()
497 CallInfo *ci = L->ci; in finishCcall()
539 static CallInfo *findpcall (lua_State *L) { in findpcall()
540 CallInfo *ci; in findpcall()
551 CallInfo *ci = findpcall(L); in recover()
[all …]
H A Dlvm.c59 CallInfo *ci = L->ci; in traceexec()
484 CallInfo *ci = L->ci; in luaV_finishOp()
595 CallInfo *ci = L->ci; in luaV_execute()
794 CallInfo *nci = L->ci; /* called frame */ in luaV_execute()
795 CallInfo *oci = nci->previous; /* caller frame */ in luaV_execute()
H A Dlapi.c52 CallInfo *ci = L->ci; in index2addr()
90 CallInfo *ci = L->ci; in lua_checkstack()
950 CallInfo *ci = L->ci; in lua_pcallk()
H A Dlgc.c506 CallInfo *ci; in traversestack()
511 sizeof(CallInfo) * n; in traversestack()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DMemProfContextDisambiguation.cpp204 struct CallInfo final : public std::pair<CallTy, unsigned /*Clone number*/> { struct in __anonf01a58700111::CallsiteContextGraph
206 CallInfo(const Base &B) : Base(B) {} in CallInfo() argument
207 CallInfo(CallTy Call = nullptr, unsigned CloneNo = 0) in CallInfo() function
226 friend raw_ostream &operator<<(raw_ostream &OS, const CallInfo &Call) { in operator <<()
246 CallInfo Call;
342 ContextNode(bool IsAllocation, CallInfo C) in ContextNode()
370 void setCall(CallInfo C) { Call = C; } in setCall()
438 ContextNode *addAllocNode(CallInfo Call, const FuncTy *F);
458 MapVector<FuncTy *, std::vector<CallInfo>> FuncToCallsWithMetadata;
512 MapVector<CallInfo, ContextNode *> &TailCallToContextNodeMap);
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DStackSafetyAnalysis.cpp100 template <typename CalleeTy> struct CallInfo { struct
106 CallInfo(const CalleeTy *Callee, size_t ParamNo) in CallInfo() argument
110 bool operator()(const CallInfo &L, const CallInfo &R) const { in operator ()()
128 using CallsTy = std::map<CallInfo<CalleeTy>, ConstantRange,
129 typename CallInfo<CalleeTy>::Less>;
539 US.Calls.emplace(CallInfo<GlobalValue>(Callee, ArgNo), Offsets); in analyzeAllUses()
814 Use.Calls.emplace(CallInfo<GlobalValue>(F, C.first.ParamNo), C.second); in resolveAllCalls()
1179 US.Calls.emplace(CallInfo<FunctionSummary>(S, Call.ParamNo), in generateParamAccessSummary()
102 Callee__anonc3460ea90111::CallInfo global() argument
104 ParamNo__anonc3460ea90111::CallInfo global() argument
109 Less__anonc3460ea90111::CallInfo global() argument
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCRuntime.h330 const CGFunctionInfo &CallInfo; member
335 : CallInfo(callInfo), MessengerType(messengerType) {} in MessageSendInfo()
H A DCGCall.cpp5011 RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo, in EmitCall() argument
5024 QualType RetTy = CallInfo.getReturnType(); in EmitCall()
5025 const ABIArgInfo &RetAI = CallInfo.getReturnInfo(); in EmitCall()
5027 llvm::FunctionType *IRFuncTy = getTypes().GetFunctionType(CallInfo); in EmitCall()
5054 if (llvm::StructType *ArgStruct = CallInfo.getArgStruct()) { in EmitCall()
5065 auto Align = CallInfo.getArgStructAlignment(); in EmitCall()
5072 ClangToLLVMArgMapping IRFunctionArgs(CGM.getContext(), CallInfo); in EmitCall()
5114 assert(CallInfo.arg_size() == CallArgs.size() && in EmitCall()
5117 CGFunctionInfo::const_arg_iterator info_it = CallInfo.arg_begin(); in EmitCall()
5131 IsArgumentMaybeUndef(TargetDecl, CallInfo.getNumRequiredArgs(), ArgNo); in EmitCall()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineFunction.h1350 void addCallSiteInfo(const MachineInstr *CallI, CallSiteInfo &&CallInfo) {
1353 CallSitesInfo.try_emplace(CallI, std::move(CallInfo)).second;
/freebsd/sys/contrib/openzfs/include/sys/lua/
H A Dlua.h413 struct CallInfo *i_ci; /* active function */
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DGVNHoist.cpp214 class CallInfo { class
1146 CallInfo CI; in hoistExpressions()

12