Searched refs:CalleeF (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp384 Function *CalleeF = TheModule->getFunction(Callee); local
385 if (CalleeF == 0)
389 if (CalleeF->arg_size() != Args.size())
398 return Builder.CreateCall(CalleeF, ArgsV, "calltmp");
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp392 Function *CalleeF = TheModule->getFunction(Callee); local
393 if (CalleeF == 0)
397 if (CalleeF->arg_size() != Args.size())
406 return Builder.CreateCall(CalleeF, ArgsV, "calltmp");
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp493 Function *CalleeF = TheModule->getFunction(Callee); local
494 if (CalleeF == 0)
498 if (CalleeF->arg_size() != Args.size())
507 return Builder.CreateCall(CalleeF, ArgsV, "calltmp");
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp597 Function *CalleeF = TheModule->getFunction(Callee); local
598 if (CalleeF == 0)
602 if (CalleeF->arg_size() != Args.size())
611 return Builder.CreateCall(CalleeF, ArgsV, "calltmp");
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp693 Function *CalleeF = TheModule->getFunction(Callee); local
694 if (CalleeF == 0)
698 if (CalleeF->arg_size() != Args.size())
707 return Builder.CreateCall(CalleeF, ArgsV, "calltmp");
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp914 if (Function *CalleeF = dyn_cast<Function>(Callee))
917 if (CalleeF->getCallingConv() != CS.getCallingConv() &&
921 !CalleeF->isDeclaration()) {
936 Constant::getNullValue(CalleeF->getType()));

Completed in 290 milliseconds