| /netbsd-src/external/mit/lua/dist/src/ |
| H A D | ldo.c | 170 CallInfo *ci; in relstack() 187 CallInfo *ci; in correctstack() 281 CallInfo *ci; in stackinuse() 337 CallInfo *ci = L->ci; in luaD_hook() 373 void luaD_hookcall (lua_State *L, CallInfo *ci) { in luaD_hookcall() 391 static void rethook (lua_State *L, CallInfo *ci, int nres) { in rethook() 489 void luaD_poscall (lua_State *L, CallInfo *ci, int nres) { in luaD_poscall() 506 l_sinline CallInfo *prepCallInfo (lua_State *L, StkId func, int nret, in prepCallInfo() 508 CallInfo *ci = L->ci = next_ci(L); /* new frame */ in prepCallInfo() 523 CallInfo *ci; in precallC() [all …]
|
| H A D | lstate.h | 16 typedef struct CallInfo CallInfo; typedef 179 struct CallInfo { struct 182 struct CallInfo *previous, *next; /* dynamic call link */ argument 318 CallInfo *ci; /* call info for current function */ 326 CallInfo base_ci; /* CallInfo for first level (C calling Lua) */ 400 LUAI_FUNC CallInfo *luaE_extendCI (lua_State *L);
|
| H A D | ldebug.c | 41 static const char *funcnamefromcall (lua_State *L, CallInfo *ci, 45 static int currentpc (CallInfo *ci) { in currentpc() 102 static int getcurrentline (CallInfo *ci) { in getcurrentline() 118 static void settraps (CallInfo *ci) { in settraps() 166 CallInfo *ci; in lua_getstack() 188 static const char *findvararg (CallInfo *ci, int n, StkId *pos) { in findvararg() 200 const char *luaG_findlocal (lua_State *L, CallInfo *ci, int n, StkId *pos) { in luaG_findlocal() 323 static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name) { in getfuncname() 332 Closure *f, CallInfo *ci) { in auxgetinfo() 390 CallInfo *ci; in lua_getinfo() [all …]
|
| H A D | lstate.c | 109 CallInfo *luaE_extendCI (lua_State *L) { in luaE_extendCI() 110 CallInfo *ci; in luaE_extendCI() 112 ci = luaM_new(L, CallInfo); in luaE_extendCI() 127 CallInfo *ci = L->ci; in luaE_freeCI() 128 CallInfo *next = ci->next; in luaE_freeCI() 143 CallInfo *ci = L->ci->next; /* first free CallInfo */ in luaE_shrinkCI() 144 CallInfo *next; in luaE_shrinkCI() 148 CallInfo *next2 = next->next; /* next's next */ in luaE_shrinkCI() 185 int i; CallInfo *ci; in stack_init() 328 CallInfo *ci = L->ci = &L->base_ci; /* unwind CallInfo list */ in luaE_resetthread()
|
| H A D | ldo.h | 70 LUAI_FUNC void luaD_hookcall (lua_State *L, CallInfo *ci); 71 LUAI_FUNC int luaD_pretailcall (lua_State *L, CallInfo *ci, StkId func, 73 LUAI_FUNC CallInfo *luaD_precall (lua_State *L, StkId func, int nResults); 80 LUAI_FUNC void luaD_poscall (lua_State *L, CallInfo *ci, int nres);
|
| H A D | ltm.h | 103 CallInfo *ci, const Proto *p); 104 LUAI_FUNC void luaT_getvarargs (lua_State *L, CallInfo *ci,
|
| H A D | ltm.c | 249 void luaT_adjustvarargs (lua_State *L, int nfixparams, CallInfo *ci, in luaT_adjustvarargs() 269 void luaT_getvarargs (lua_State *L, CallInfo *ci, StkId where, int wanted) { in luaT_getvarargs()
|
| H A D | ldebug.h | 42 LUAI_FUNC const char *luaG_findlocal (lua_State *L, CallInfo *ci, int n,
|
| H A D | lvm.h | 139 LUAI_FUNC void luaV_execute (lua_State *L, CallInfo *ci);
|
| H A D | lapi.c | 67 CallInfo *ci = L->ci; in index2value() 102 CallInfo *ci = L->ci; in index2stack() 119 CallInfo *ci; in lua_checkstack() 188 CallInfo *ci; in lua_settop() 1077 CallInfo *ci = L->ci; in lua_pcallk()
|
| H A D | lua.h | 516 struct CallInfo *i_ci; /* active function */
|
| H A D | lvm.c | 858 CallInfo *ci = L->ci; 1230 void luaV_execute (lua_State *L, CallInfo *ci) { 1776 CallInfo *newci;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/ |
| H A D | BPFAbstractMemberAccess.cpp | 123 struct CallInfo { struct in __anon465f9f0e0111::BPFAbstractMemberAccess 130 typedef std::stack<std::pair<CallInst *, CallInfo>> CallInfoStack; 146 std::map<CallInst *, std::pair<CallInst *, CallInfo>> AIChain; 150 std::map<CallInst *, CallInfo> BaseAICalls; 154 void traceAICall(CallInst *Call, CallInfo &ParentInfo); 156 CallInfo &ParentInfo); 158 CallInfo &ParentInfo); 161 bool IsPreserveDIAccessIndexCall(const CallInst *Call, CallInfo &Cinfo); 174 Value *computeBaseAndAccessKey(CallInst *Call, CallInfo &CInfo, 176 MDNode *computeAccessKey(CallInst *Call, CallInfo &CInfo, [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | StackSafetyAnalysis.cpp | 98 template <typename CalleeTy> struct CallInfo { struct 104 CallInfo(const CalleeTy *Callee, size_t ParamNo) in CallInfo() argument 108 bool operator()(const CallInfo &L, const CallInfo &R) const { in operator ()() 125 using CallsTy = std::map<CallInfo<CalleeTy>, ConstantRange, 126 typename CallInfo<CalleeTy>::Less>; 424 US.Calls.emplace(CallInfo<GlobalValue>(Callee, ArgNo), Offsets); in analyzeAllUses() 702 Use.Calls.emplace(CallInfo<GlobalValue>(F, C.first.ParamNo), C.second); in resolveAllCalls() 1047 US.Calls.emplace(CallInfo<FunctionSummary>(S, Call.ParamNo), in generateParamAccessSummary()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGObjCRuntime.h | 329 const CGFunctionInfo &CallInfo; member 334 : CallInfo(callInfo), MessengerType(messengerType) {} in MessageSendInfo()
|
| H A D | CGCall.cpp | 4591 RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo, in EmitCall() argument 4603 QualType RetTy = CallInfo.getReturnType(); in EmitCall() 4604 const ABIArgInfo &RetAI = CallInfo.getReturnInfo(); in EmitCall() 4606 llvm::FunctionType *IRFuncTy = getTypes().GetFunctionType(CallInfo); in EmitCall() 4627 if (!(CallInfo.isVariadic() && CallInfo.getArgStruct())) { in EmitCall() 4650 if (llvm::StructType *ArgStruct = CallInfo.getArgStruct()) { in EmitCall() 4661 auto Align = CallInfo.getArgStructAlignment(); in EmitCall() 4668 ClangToLLVMArgMapping IRFunctionArgs(CGM.getContext(), CallInfo); in EmitCall() 4705 assert(CallInfo.arg_size() == CallArgs.size() && in EmitCall() 4708 CGFunctionInfo::const_arg_iterator info_it = CallInfo.arg_begin(); in EmitCall() [all …]
|
| H A D | CGExprCXX.cpp | 85 MemberCallInfo CallInfo = commonEmitCXXMemberOrOperatorCall( in EmitCXXMemberOrOperatorCall() local 88 Args, FPT, CallInfo.ReqArgs, CallInfo.PrefixSize); in EmitCXXMemberOrOperatorCall()
|
| H A D | CGObjCGNU.cpp | 2062 if (CGM.ReturnTypeUsesSRet(MSI.CallInfo)) in LookupIMP() 2078 if (CGM.ReturnTypeUsesSRet(MSI.CallInfo)) in LookupIMPSuper() 2623 RValue msgRet = CGF.EmitCall(MSI.CallInfo, callee, Return, ActualArgs, &call); in GenerateMessageSendSuper() 2720 } else if (CGM.ReturnTypeUsesSRet(MSI.CallInfo)) { in GenerateMessageSend() 2741 RValue msgRet = CGF.EmitCall(MSI.CallInfo, callee, Return, ActualArgs, &call); in GenerateMessageSend()
|
| H A D | CodeGenFunction.h | 3940 RValue EmitCall(const CGFunctionInfo &CallInfo, const CGCallee &Callee, 3944 RValue EmitCall(const CGFunctionInfo &CallInfo, const CGCallee &Callee, 3948 return EmitCall(CallInfo, Callee, ReturnValue, Args, callOrInvoke,
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | MachineFunction.h | 1099 CallSiteInfoImpl &&CallInfo) { 1102 CallSitesInfo.try_emplace(CallI, std::move(CallInfo)).second;
|
| H A D | SelectionDAG.h | 1939 void addCallSiteInfo(const SDNode *CallNode, CallSiteInfoImpl &&CallInfo) { 1940 SDCallSiteDbgInfo[CallNode].CSInfo = std::move(CallInfo);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | GVNHoist.cpp | 217 class CallInfo { class 1175 CallInfo CI; in hoistExpressions()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeDAG.cpp | 2025 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI); in ExpandLibCall() local 2027 if (!CallInfo.second.getNode()) { in ExpandLibCall() 2033 LLVM_DEBUG(dbgs() << "Created libcall: "; CallInfo.first.dump(&DAG)); in ExpandLibCall() 2034 return CallInfo.first; in ExpandLibCall() 2184 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI); in ExpandDivRemLibCall() local 2188 DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr, MachinePointerInfo()); in ExpandDivRemLibCall() 2189 Results.push_back(CallInfo.first); in ExpandDivRemLibCall() 2282 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI); in ExpandSinCosLibCall() local 2285 DAG.getLoad(RetVT, dl, CallInfo.second, SinPtr, MachinePointerInfo())); in ExpandSinCosLibCall() 2287 DAG.getLoad(RetVT, dl, CallInfo.second, CosPtr, MachinePointerInfo())); in ExpandSinCosLibCall()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/ |
| H A D | SparcISelLowering.cpp | 2190 std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI); in LowerF128Op() local 2194 return CallInfo.first; in LowerF128Op() 2198 Chain = CallInfo.second; in LowerF128Op() 2241 std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI); in LowerF128Compare() local 2244 SDValue Result = CallInfo.first; in LowerF128Compare()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AVR/ |
| H A D | AVRISelLowering.cpp | 467 std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI); in LowerDivRem() local 468 return CallInfo.first; in LowerDivRem()
|