Searched refs:call_inst (Results 1 – 6 of 6) sorted by relevance
27 static bool isRSAPICall(llvm::CallInst *call_inst) { in isRSAPICall() argument30 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() argument51 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() argument65 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 …]
387 CallInst *call_inst = dyn_cast<CallInst>(inst); in InstrumentInstruction() local389 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 …]
341 bool MaybeHandleCallArguments(llvm::CallInst *call_inst);
41 static const unsigned char call_inst[] = in i386lynx_saved_pc_after_call() local45 if (memcmp (opcode, call_inst, 7) == 0) in i386lynx_saved_pc_after_call()
403 * i386ly-tdep.c (i386lynx_saved_pc_after_call): Change call_inst
554 CallInst *call_inst = dyn_cast<CallInst>(&ii); in CanInterpret() local556 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() local1394 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()