Searched refs:call_inst (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptx86ABIFixups.cpp28 bool isRSAPICall(llvm::Module &module, llvm::CallInst *call_inst) { argument
32 const auto func_name = call_inst->getCalledFunction()->getName();
36 if (call_inst->getCalledFunction()->isIntrinsic())
42 bool isRSLargeReturnCall(llvm::Module &module, llvm::CallInst *call_inst) { argument
54 if (!call_inst || !call_inst->getCalledFunction())
57 return call_inst->getCalledFunction()
71 bool isRSAllocationTyCallSite(llvm::Module &module, llvm::CallInst *call_inst) { argument
73 if (!call_inst->hasByValArgument())
75 for (const auto *param : call_inst
81 cloneToStructRetFnTy(llvm::CallInst *call_inst) argument
134 llvm::CallInst *call_inst = local
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Di386ly-tdep.c41 static const unsigned char call_inst[] = local
45 if (memcmp (opcode, call_inst, 7) == 0)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRDynamicChecks.cpp389 CallInst *call_inst = dyn_cast<CallInst>(inst); variable
391 if (!call_inst)
392 return false; // call_inst really shouldn't be nullptr, because otherwise
409 if (call_inst->hasStructRetAttr()) {
410 target_object = call_inst->getArgOperand(1);
411 selector = call_inst->getArgOperand(2);
413 target_object = call_inst->getArgOperand(0);
414 selector = call_inst->getArgOperand(1);
418 target_object = call_inst->getArgOperand(1);
419 selector = call_inst
474 CallInst *call_inst = dyn_cast<CallInst>(&i); variable
[all...]
H A DIRForTarget.h349 /// \param[in] call_inst
354 bool MaybeHandleCallArguments(llvm::CallInst *call_inst);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
H A DIRInterpreter.cpp521 CallInst *call_inst = dyn_cast<CallInst>(&ii); local
523 if (!call_inst) {
529 if (!CanIgnoreCall(call_inst) && !support_function_calls) {
1336 const CallInst *call_inst = cast<CallInst>(inst); local
1338 if (CanIgnoreCall(call_inst))
1342 llvm::Type *returnType = call_inst->getType();
1373 const llvm::Value *val = call_inst->getCalledValue();
1402 const int numArgs = call_inst->getNumArgOperands();
1416 llvm::Value *arg_op = call_inst->getArgOperand(i);

Completed in 1434 milliseconds