Lines Matching refs:TheFunction
328 Function *TheFunction = TheModule->getFunction(Proto->getName());
330 if (!TheFunction)
331 TheFunction = Proto->codegen();
333 if (!TheFunction)
336 if (!TheFunction->empty())
349 BasicBlock *BB = BasicBlock::Create(TheContext, "entry", TheFunction);
354 for (auto &Arg : TheFunction->args())
359 (named "entry"), which is inserted into ``TheFunction``. The second line
377 verifyFunction(*TheFunction);
379 return TheFunction;
396 TheFunction->eraseFromParent();