Searched refs:call_inst (Results 1 – 3 of 3) sorted by relevance
372 CallInst *call_inst = dyn_cast<CallInst>(inst); in InstrumentInstruction() local 374 if (!call_inst) in InstrumentInstruction() 375 return false; // call_inst really shouldn't be nullptr, because otherwise in InstrumentInstruction() 392 if (call_inst->hasStructRetAttr()) { in InstrumentInstruction() 393 target_object = call_inst->getArgOperand(1); in InstrumentInstruction() 394 selector = call_inst->getArgOperand(2); in InstrumentInstruction() 396 target_object = call_inst->getArgOperand(0); in InstrumentInstruction() 397 selector = call_inst->getArgOperand(1); in InstrumentInstruction() 401 target_object = call_inst->getArgOperand(1); in InstrumentInstruction() 402 selector = call_inst in InstrumentInstruction() 452 CallInst *call_inst = dyn_cast<CallInst>(&i); InspectInstruction() local [all...]
253 /// \param[in] call_inst258 bool MaybeHandleCallArguments(llvm::CallInst *call_inst);
558 CallInst *call_inst = dyn_cast<CallInst>(&ii); in CanInterpret() local560 if (!call_inst) { in CanInterpret()566 if (!CanIgnoreCall(call_inst) && !support_function_calls) { in CanInterpret()1422 const CallInst *call_inst = cast<CallInst>(inst); in Interpret() local1424 if (CanIgnoreCall(call_inst)) in Interpret()1428 llvm::Type *returnType = call_inst->getType(); in Interpret()1459 const llvm::Value *val = call_inst->getCalledOperand(); in Interpret()1471 llvm::FunctionType *prototype = call_inst->getFunctionType(); in Interpret()1474 const int numArgs = call_inst->arg_size(); in Interpret()1488 llvm::Value *arg_op = call_inst->getArgOperand(i); in Interpret()