Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
DRenderScriptx86ABIFixups.cpp27 static bool isRSAPICall(llvm::CallInst *call_inst) { in isRSAPICall() argument
30 const auto func_name = call_inst->getCalledFunction()->getName(); in isRSAPICall()
34 if (call_inst->getCalledFunction()->isIntrinsic()) in isRSAPICall()
40 static bool isRSLargeReturnCall(llvm::CallInst *call_inst) { in isRSLargeReturnCall() argument
51 if (!call_inst || !call_inst->getCalledFunction()) in isRSLargeReturnCall()
54 return call_inst->getCalledFunction() in isRSLargeReturnCall()
64 static bool isRSAllocationTyCallSite(llvm::CallInst *call_inst) { in isRSAllocationTyCallSite() argument
65 if (!call_inst->hasByValArgument()) in isRSAllocationTyCallSite()
67 for (unsigned i = 0; i < call_inst->arg_size(); ++i) { in isRSAllocationTyCallSite()
68 if (llvm::Type *ByValTy = call_inst->getParamByValType(i)) in isRSAllocationTyCallSite()
[all …]
/openbsd/src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
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()
411 target_object = call_inst->getArgOperand(0); 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
[all …]
DIRForTarget.h341 bool MaybeHandleCallArguments(llvm::CallInst *call_inst);
/openbsd/src/gnu/usr.bin/binutils/gdb/
Di386ly-tdep.c41 static const unsigned char call_inst[] = in i386lynx_saved_pc_after_call() local
45 if (memcmp (opcode, call_inst, 7) == 0) in i386lynx_saved_pc_after_call()
DChangeLog-1993403 * i386ly-tdep.c (i386lynx_saved_pc_after_call): Change call_inst
/openbsd/src/gnu/llvm/lldb/source/Expression/
DIRInterpreter.cpp554 CallInst *call_inst = dyn_cast<CallInst>(&ii); in CanInterpret() local
556 if (!call_inst) { in CanInterpret()
562 if (!CanIgnoreCall(call_inst) && !support_function_calls) { in CanInterpret()
1392 const CallInst *call_inst = cast<CallInst>(inst); in Interpret() local
1394 if (CanIgnoreCall(call_inst)) in Interpret()
1398 llvm::Type *returnType = call_inst->getType(); in Interpret()
1429 const llvm::Value *val = call_inst->getCalledOperand(); in Interpret()
1441 llvm::FunctionType *prototype = call_inst->getFunctionType(); in Interpret()
1444 const int numArgs = call_inst->arg_size(); in Interpret()
1458 llvm::Value *arg_op = call_inst->getArgOperand(i); in Interpret()