HomeSort by relevance Sort by last modified time
    Searched defs:TheModule (Results 26 - 50 of 64) sorted by null

12 3

  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
MachineModuleInfo.h 94 const Module *TheModule;
158 void setModule(const Module *M) { TheModule = M; }
159 const Module *getModule() const { return TheModule; }
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/CodeGen/
MachineModuleInfo.h 85 const Module *TheModule;
148 void setModule(const Module *M) { TheModule = M; }
149 const Module *getModule() const { return TheModule; }
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/CodeGen/
MachineModuleInfo.h 85 const Module *TheModule;
148 void setModule(const Module *M) { TheModule = M; }
149 const Module *getModule() const { return TheModule; }
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/CodeGen/
MachineModuleInfo.h 85 const Module *TheModule;
158 void setModule(const Module *M) { TheModule = M; }
159 const Module *getModule() const { return TheModule; }
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/CodeGen/
MachineModuleInfo.h 85 const Module *TheModule;
158 void setModule(const Module *M) { TheModule = M; }
159 const Module *getModule() const { return TheModule; }
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/CodeGen/
MachineModuleInfo.h 85 const Module *TheModule;
158 void setModule(const Module *M) { TheModule = M; }
159 const Module *getModule() const { return TheModule; }
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/CodeGen/
MachineModuleInfo.h 85 const Module *TheModule;
158 void setModule(const Module *M) { TheModule = M; }
159 const Module *getModule() const { return TheModule; }
  /external/clang/lib/CodeGen/
CGCUDANV.cpp 38 llvm::Module &TheModule;
86 TheModule(CGM.getModule()) {
184 llvm::GlobalValue::InternalLinkage, "__cuda_register_globals", &TheModule);
271 llvm::GlobalValue::InternalLinkage, "__cuda_module_ctor", &TheModule);
300 TheModule, FatbinWrapperTy, true, llvm::GlobalValue::InternalLinkage,
311 TheModule, VoidPtrPtrTy, false, llvm::GlobalValue::InternalLinkage,
349 llvm::GlobalValue::InternalLinkage, "__cuda_module_dtor", &TheModule);
BackendUtil.cpp 60 Module *TheModule;
96 PerFunctionPasses = new legacy::FunctionPassManager(TheModule);
128 TheModule(M), CodeGenerationTime("Code Generation Time"),
331 Triple TargetTriple(TheModule->getTargetTriple());
528 std::string Triple = TheModule->getTargetTriple();
654 llvm::Triple TargetTriple(TheModule->getTargetTriple());
699 TheModule->setDataLayout(TM->createDataLayout());
709 TheModule->getContext().diagnose(DI);
753 for (Function &F : *TheModule)
761 PerModulePasses->run(*TheModule);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 393 static std::unique_ptr<Module> TheModule;
437 Function *CalleeF = TheModule->getFunction(Callee);
462 Function::Create(FT, Function::ExternalLinkage, Name, TheModule.get());
474 Function *TheFunction = TheModule->getFunction(Proto->getName());
587 TheModule = llvm::make_unique<Module>("my cool jit", TheContext);
593 TheModule->dump();
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 402 static std::unique_ptr<Module> TheModule;
415 if (auto *F = TheModule->getFunction(Name))
489 Function::Create(FT, Function::ExternalLinkage, Name, TheModule.get());
541 TheModule = llvm::make_unique<Module>("my cool jit", TheContext);
542 TheModule->setDataLayout(TheJIT->getTargetMachine().createDataLayout());
545 TheFPM = llvm::make_unique<legacy::FunctionPassManager>(TheModule.get());
564 TheJIT->addModule(std::move(TheModule));
592 auto H = TheJIT->addModule(std::move(TheModule));
  /external/llvm/include/llvm/CodeGen/
MachineModuleInfo.h 115 /// TheModule - This is the LLVM Module being worked on.
116 const Module *TheModule;
222 void setModule(const Module *M) { TheModule = M; }
223 const Module *getModule() const { return TheModule; }
  /external/llvm/tools/llvm-lto/
llvm-lto.cpp 384 static void writeModuleToFile(Module &TheModule, StringRef Filename) {
388 maybeVerifyModule(TheModule);
389 WriteBitcodeToFile(&TheModule, OS, /* ShouldPreserveUseListOrder */ true);
527 auto TheModule = loadModule(Filename, Ctx);
529 ThinGenerator.promote(*TheModule, *Index);
535 writeModuleToFile(*TheModule, OutputName);
558 auto TheModule = loadModule(Filename, Ctx);
560 ThinGenerator.crossModuleImport(*TheModule, *Index);
566 writeModuleToFile(*TheModule, OutputName);
589 auto TheModule = loadModule(Filename, Ctx)
    [all...]
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter3/
toy.cpp 348 static Module *TheModule;
384 Function *CalleeF = TheModule->getFunction(Callee);
408 Function *F = Function::Create(FT, Function::ExternalLinkage, Name, TheModule);
415 F = TheModule->getFunction(Name);
554 TheModule = new Module("my cool jit", Context);
560 TheModule->dump();
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter4/
toy.cpp 355 static Module *TheModule;
392 Function *CalleeF = TheModule->getFunction(Callee);
416 Function *F = Function::Create(FT, Function::ExternalLinkage, Name, TheModule);
423 F = TheModule->getFunction(Name);
573 TheModule = new Module("my cool jit", Context);
577 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
583 FunctionPassManager OurFPM(TheModule);
610 TheModule->dump();
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineModuleInfo.h 102 /// TheModule - This is the LLVM Module being worked on.
103 const Module *TheModule;
193 void setModule(const Module *M) { TheModule = M; }
194 const Module *getModule() const { return TheModule; }
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 527 static std::unique_ptr<Module> TheModule;
540 if (auto *F = TheModule->getFunction(Name))
761 Function::Create(FT, Function::ExternalLinkage, Name, TheModule.get());
813 TheModule = llvm::make_unique<Module>("my cool jit", TheContext);
814 TheModule->setDataLayout(TheJIT->getTargetMachine().createDataLayout());
817 TheFPM = llvm::make_unique<legacy::FunctionPassManager>(TheModule.get());
836 TheJIT->addModule(std::move(TheModule));
864 auto H = TheJIT->addModule(std::move(TheModule));
  /external/llvm/lib/Target/X86/
X86WinEHState.cpp 90 Module *TheModule = nullptr;
128 TheModule = &M;
133 assert(TheModule == &M);
134 TheModule = nullptr;
175 Type *Int8PtrType = Type::getInt8PtrTy(TheModule->getContext());
176 SetJmp3 = TheModule->getOrInsertFunction(
178 Type::getInt32Ty(TheModule->getContext()),
179 {Int8PtrType, Type::getInt32Ty(TheModule->getContext())},
217 LLVMContext &Context = TheModule->getContext();
236 LLVMContext &Context = TheModule->getContext()
    [all...]
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
toy.cpp 456 static Module *TheModule;
493 Function *CalleeF = TheModule->getFunction(Callee);
661 Function *F = Function::Create(FT, Function::ExternalLinkage, Name, TheModule);
668 F = TheModule->getFunction(Name);
818 TheModule = new Module("my cool jit", Context);
822 TheExecutionEngine = EngineBuilder(TheModule).setErrorStr(&ErrStr).create();
828 FunctionPassManager OurFPM(TheModule);
855 TheModule->dump();
  /external/clang/lib/Frontend/
CompilerInstance.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 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));
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 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));
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 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));
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 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));
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 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);
    [all...]

Completed in 1342 milliseconds

12 3