Home
last modified time | relevance | path

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

12

/src/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFAbstractMemberAccess.cpp126 struct CallInfo { struct in __anon248473d80111::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 …]
/src/sys/contrib/openzfs/module/lua/
H A Dldebug.c32 static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name);
35 static int currentpc (CallInfo *ci) { in currentpc()
41 static int currentline (CallInfo *ci) { in currentline()
48 CallInfo *ci = L->ci; /* get function that yielded */ in swapextra()
91 CallInfo *ci; in lua_getstack()
113 static const char *findvararg (CallInfo *ci, int n, StkId *pos) { in findvararg()
125 static const char *findlocal (lua_State *L, CallInfo *ci, int n, in findlocal()
228 Closure *f, CallInfo *ci) { in auxgetinfo()
281 CallInfo *ci; in lua_getinfo()
459 static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name) { in getfuncname()
[all …]
H A Dlstate.h70 typedef struct CallInfo { struct
73 struct CallInfo *previous, *next; /* dynamic call link */ argument
90 } CallInfo; argument
160 CallInfo *ci; /* call info for current function */
177 CallInfo base_ci; /* CallInfo for first level (C calling Lua) */
225 LUAI_FUNC CallInfo *luaE_extendCI (lua_State *L);
H A Dlstate.c109 CallInfo *luaE_extendCI (lua_State *L) { in luaE_extendCI()
110 CallInfo *ci = luaM_new(L, CallInfo); in luaE_extendCI()
120 CallInfo *ci = L->ci; in luaE_freeCI()
121 CallInfo *next = ci->next; in luaE_freeCI()
131 int i; CallInfo *ci; in stack_init()
H A Dldo.c227 CallInfo *ci; in correctstack()
279 CallInfo *ci; in stackinuse()
304 CallInfo *ci = L->ci; in luaD_hook()
328 static void callhook (lua_State *L, CallInfo *ci) { in callhook()
382 CallInfo *ci; in luaD_precall()
449 CallInfo *ci = L->ci; in luaD_poscall()
498 CallInfo *ci = L->ci; in finishCcall()
540 static CallInfo *findpcall (lua_State *L) { in findpcall()
541 CallInfo *ci; in findpcall()
552 CallInfo *ci = findpcall(L); in recover()
[all …]
H A Dlvm.c60 CallInfo *ci = L->ci; in traceexec()
485 CallInfo *ci = L->ci; in luaV_finishOp()
596 CallInfo *ci = L->ci; in luaV_execute()
795 CallInfo *nci = L->ci; /* called frame */ in luaV_execute()
796 CallInfo *oci = nci->previous; /* caller frame */ in luaV_execute()
H A Dlapi.c53 CallInfo *ci = L->ci; in index2addr()
91 CallInfo *ci = L->ci; in lua_checkstack()
951 CallInfo *ci = L->ci; in lua_pcallk()
H A Dlgc.c507 CallInfo *ci; in traversestack()
512 sizeof(CallInfo) * n; in traversestack()
/src/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DMemProfContextDisambiguation.cpp204 struct CallInfo final : public std::pair<CallTy, unsigned /*Clone number*/> { struct in __anon482839e50111::CallsiteContextGraph
206 CallInfo(const Base &B) : Base(B) {} in CallInfo() function
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 …]
/src/contrib/lua/src/
H A Dldo.c163 CallInfo *ci; in relstack()
180 CallInfo *ci; in correctstack()
284 CallInfo *ci; in stackinuse()
340 CallInfo *ci = L->ci; in luaD_hook()
376 void luaD_hookcall (lua_State *L, CallInfo *ci) { in luaD_hookcall()
394 static void rethook (lua_State *L, CallInfo *ci, int nres) { in rethook()
492 void luaD_poscall (lua_State *L, CallInfo *ci, int nres) { in luaD_poscall()
509 l_sinline CallInfo *prepCallInfo (lua_State *L, StkId func, int nret, in prepCallInfo()
511 CallInfo *ci = L->ci = next_ci(L); /* new frame */ in prepCallInfo()
526 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,
44 static int currentpc (CallInfo *ci) { in currentpc()
101 static int getcurrentline (CallInfo *ci) { in getcurrentline()
117 static void settraps (CallInfo *ci) { in settraps()
165 CallInfo *ci; in lua_getstack()
187 static const char *findvararg (CallInfo *ci, int n, StkId *pos) { in findvararg()
199 const char *luaG_findlocal (lua_State *L, CallInfo *ci, int n, StkId *pos) { in luaG_findlocal()
324 static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name) { in getfuncname()
333 Closure *f, CallInfo *ci) { in auxgetinfo()
391 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 freeCI()
124 CallInfo *next = ci->next; in 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()
326 CallInfo *ci = L->ci = &L->base_ci; /* unwind CallInfo list */ in luaE_resetthread()
H A Dldo.h69 LUAI_FUNC void luaD_hookcall (lua_State *L, CallInfo *ci);
70 LUAI_FUNC int luaD_pretailcall (lua_State *L, CallInfo *ci, StkId func,
72 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.h98 struct CallInfo *ci, const Proto *p);
99 LUAI_FUNC void luaT_getvarargs (lua_State *L, struct 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()
/src/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()
/src/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 …]
/src/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;
/src/sys/contrib/openzfs/include/sys/lua/
H A Dlua.h414 struct CallInfo *i_ci; /* active function */
/src/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DGVNHoist.cpp214 class CallInfo { class
1146 CallInfo CI; in hoistExpressions()

12