Lines Matching refs:TheFunction
743 Function *TheFunction = Builder->GetInsertBlock()->getParent(); in codegen() local
747 BasicBlock *ThenBB = BasicBlock::Create(*TheContext, "then", TheFunction); in codegen()
765 TheFunction->getBasicBlockList().push_back(ElseBB); in codegen()
777 TheFunction->getBasicBlockList().push_back(MergeBB); in codegen()
809 Function *TheFunction = Builder->GetInsertBlock()->getParent(); in codegen() local
811 BasicBlock *LoopBB = BasicBlock::Create(*TheContext, "loop", TheFunction); in codegen()
860 BasicBlock::Create(*TheContext, "afterloop", TheFunction); in codegen()
903 Function *TheFunction = getFunction(P.getName()); in codegen() local
904 if (!TheFunction) in codegen()
912 BasicBlock *BB = BasicBlock::Create(*TheContext, "entry", TheFunction); in codegen()
917 for (auto &Arg : TheFunction->args()) in codegen()
925 verifyFunction(*TheFunction); in codegen()
928 TheFPM->run(*TheFunction); in codegen()
930 return TheFunction; in codegen()
934 TheFunction->eraseFromParent(); in codegen()