Home | History | Annotate | Download | only in Chapter7

Lines Matching defs:TheModule

689 static std::unique_ptr<Module> TheModule;
702 if (auto *F = TheModule->getFunction(Name))
1030 Function::Create(FT, Function::ExternalLinkage, Name, TheModule.get());
1097 TheModule = llvm::make_unique<Module>("my cool jit", TheContext);
1098 TheModule->setDataLayout(TheJIT->getTargetMachine().createDataLayout());
1101 TheFPM = llvm::make_unique<legacy::FunctionPassManager>(TheModule.get());
1120 TheJIT->addModule(std::move(TheModule));
1148 auto H = TheJIT->addModule(std::move(TheModule));