Home | History | Annotate | Download | only in Chapter4

Lines Matching defs:TheModule

677 static std::unique_ptr<Module> TheModule;
690 if (auto *F = TheModule->getFunction(Name))
1018 Function::Create(FT, Function::ExternalLinkage, Name, TheModule.get());
1089 TheModule = llvm::make_unique<Module>("my cool jit", TheContext);
1090 TheModule->setDataLayout(TheJIT->getTargetMachine().createDataLayout());
1097 auto M = std::move(TheModule);
1137 auto H = TheJIT->addModule(std::move(TheModule));