Home | History | Annotate | Download | only in Chapter5

Lines Matching defs:TheModule

699 static std::unique_ptr<Module> TheModule;
712 if (auto *F = TheModule->getFunction(Name))
1040 Function::Create(FT, Function::ExternalLinkage, Name, TheModule.get());
1111 TheModule = llvm::make_unique<Module>("my cool jit", TheContext);
1112 TheModule->setDataLayout(TheJIT->getTargetMachine().createDataLayout());
1119 auto M = std::move(TheModule);
1159 auto H = TheJIT->addModule(std::move(TheModule));