Lines Matching refs:TheFunction
631 Function *TheFunction = Builder->GetInsertBlock()->getParent(); in codegen() local
635 BasicBlock *ThenBB = BasicBlock::Create(*TheContext, "then", TheFunction); in codegen()
653 TheFunction->getBasicBlockList().push_back(ElseBB); in codegen()
665 TheFunction->getBasicBlockList().push_back(MergeBB); in codegen()
697 Function *TheFunction = Builder->GetInsertBlock()->getParent(); in codegen() local
699 BasicBlock *LoopBB = BasicBlock::Create(*TheContext, "loop", TheFunction); in codegen()
748 BasicBlock::Create(*TheContext, "afterloop", TheFunction); in codegen()
791 Function *TheFunction = getFunction(P.getName()); in codegen() local
792 if (!TheFunction) in codegen()
796 BasicBlock *BB = BasicBlock::Create(*TheContext, "entry", TheFunction); in codegen()
801 for (auto &Arg : TheFunction->args()) in codegen()
809 verifyFunction(*TheFunction); in codegen()
812 TheFPM->run(*TheFunction); in codegen()
814 return TheFunction; in codegen()
818 TheFunction->eraseFromParent(); in codegen()