Lines Matching defs:call_inst
371 CallInst *call_inst = dyn_cast<CallInst>(inst);
373 if (!call_inst)
374 return false; // call_inst really shouldn't be nullptr, because otherwise
391 if (call_inst->hasStructRetAttr()) {
392 target_object = call_inst->getArgOperand(1);
393 selector = call_inst->getArgOperand(2);
395 target_object = call_inst->getArgOperand(0);
396 selector = call_inst->getArgOperand(1);
400 target_object = call_inst->getArgOperand(1);
401 selector = call_inst->getArgOperand(2);
451 CallInst *call_inst = dyn_cast<CallInst>(&i);
453 if (call_inst) {
454 const llvm::Function *called_function = GetCalledFunction(call_inst);
463 PrintValue(call_inst).c_str());