Home | History | Annotate | Download | only in Chapter3

Lines Matching defs:TheModule

689 static std::unique_ptr<Module> TheModule;
701 if (auto *F = TheModule->getFunction(Name))
1029 Function::Create(FT, Function::ExternalLinkage, Name, TheModule.get());
1093 TheModule = llvm::make_unique<Module>("my cool jit", TheContext);
1094 TheModule->setDataLayout(TheJIT->getTargetMachine().createDataLayout());
1102 TheJIT->addModule(std::move(TheModule));
1130 auto H = TheJIT->addModule(std::move(TheModule));