Home
last modified time | relevance | path

Searched refs:call_inst (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptx86ABIFixups.cpp51 if (!call_inst || !call_inst->getCalledFunction()) in isRSLargeReturnCall()
54 return call_inst->getCalledFunction() in isRSLargeReturnCall()
65 if (!call_inst->hasByValArgument()) in isRSAllocationTyCallSite()
84 assert(call_inst && "no CallInst"); in cloneToStructRetFnTy()
127 llvm::CallInst *call_inst = in findRSCallSites() local
129 if (!call_inst || !call_inst->getCalledFunction()) in findRSCallSites()
132 if (isRSAPICall(call_inst) && predicate(call_inst)) { in findRSCallSites()
149 for (auto call_inst : rs_callsites) { in fixupX86StructRetCalls() local
166 call_inst); in fixupX86StructRetCalls()
197 call_inst->eraseFromParent(); in fixupX86StructRetCalls()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRDynamicChecks.cpp387 CallInst *call_inst = dyn_cast<CallInst>(inst); in InstrumentInstruction() local
389 if (!call_inst) in InstrumentInstruction()
407 if (call_inst->hasStructRetAttr()) { in InstrumentInstruction()
408 target_object = call_inst->getArgOperand(1); in InstrumentInstruction()
409 selector = call_inst->getArgOperand(2); in InstrumentInstruction()
412 selector = call_inst->getArgOperand(1); in InstrumentInstruction()
416 target_object = call_inst->getArgOperand(1); in InstrumentInstruction()
417 selector = call_inst->getArgOperand(2); in InstrumentInstruction()
472 CallInst *call_inst = dyn_cast<CallInst>(&i); in InspectInstruction() local
474 if (call_inst) { in InspectInstruction()
[all …]
H A DIRForTarget.h341 bool MaybeHandleCallArguments(llvm::CallInst *call_inst);
/llvm-project-15.0.7/lldb/source/Expression/
H A DIRInterpreter.cpp528 CallInst *call_inst = dyn_cast<CallInst>(&ii); in CanInterpret() local
530 if (!call_inst) { in CanInterpret()
536 if (!CanIgnoreCall(call_inst) && !support_function_calls) { in CanInterpret()
1329 const CallInst *call_inst = cast<CallInst>(inst); in Interpret() local
1331 if (CanIgnoreCall(call_inst)) in Interpret()
1335 llvm::Type *returnType = call_inst->getType(); in Interpret()
1366 const llvm::Value *val = call_inst->getCalledOperand(); in Interpret()
1378 llvm::FunctionType *prototype = call_inst->getFunctionType(); in Interpret()
1381 const int numArgs = call_inst->arg_size(); in Interpret()
1395 llvm::Value *arg_op = call_inst->getArgOperand(i); in Interpret()