Lines Matching refs:TheFunction
616 Function *TheFunction = Builder.GetInsertBlock()->getParent(); in codegen() local
620 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction); in codegen()
638 TheFunction->getBasicBlockList().push_back(ElseBB); in codegen()
650 TheFunction->getBasicBlockList().push_back(MergeBB); in codegen()
682 Function *TheFunction = Builder.GetInsertBlock()->getParent(); in codegen() local
684 BasicBlock *LoopBB = BasicBlock::Create(TheContext, "loop", TheFunction); in codegen()
733 BasicBlock::Create(TheContext, "afterloop", TheFunction); in codegen()
776 Function *TheFunction = getFunction(P.getName()); in codegen() local
777 if (!TheFunction) in codegen()
781 BasicBlock *BB = BasicBlock::Create(TheContext, "entry", TheFunction); in codegen()
786 for (auto &Arg : TheFunction->args()) in codegen()
794 verifyFunction(*TheFunction); in codegen()
797 TheFPM->run(*TheFunction); in codegen()
799 return TheFunction; in codegen()
803 TheFunction->eraseFromParent(); in codegen()