/external/llvm/unittests/ExecutionEngine/MCJIT/ |
D | MCJITMultipleModuleTest.cpp | 98 TheJIT->addModule(std::move(B)); in TEST_F() 118 TheJIT->addModule(std::move(B)); in TEST_F() 139 TheJIT->addModule(std::move(B)); in TEST_F() 160 TheJIT->addModule(std::move(B)); in TEST_F() 181 TheJIT->addModule(std::move(B)); in TEST_F() 221 TheJIT->addModule(std::move(B)); in TEST_F() 254 TheJIT->addModule(std::move(B)); in TEST_F() 255 TheJIT->addModule(std::move(C)); in TEST_F() 279 TheJIT->addModule(std::move(B)); in TEST_F() 280 TheJIT->addModule(std::move(C)); in TEST_F() [all …]
|
/external/llvm/test/LTO/X86/ |
D | diagnostic-handler-noexit.ll | 2 ; This test verifies that after addModule() encounters an error, the diagnostic 3 ; handler does not call exit(1) and instead returns to the caller of addModule.
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
D | KaleidoscopeJIT.h | 100 ModuleHandle addModule(std::unique_ptr<Module> M) { in addModule() function 172 addModule(std::move(M)); in addFunctionAST()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/ |
D | KaleidoscopeJIT.h | 116 ModuleHandle addModule(std::unique_ptr<Module> M) { in addModule() function 200 addModule(std::move(M)); in addFunctionAST()
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | LLVMContext.h | 93 void addModule(Module*);
|
/external/llvm/tools/llvm-lto/ |
D | llvm-lto.cpp | 445 ThinGenerator.addModule(Filename, InputBuffers.back()->getBuffer()); in thinLink() 553 ThinGenerator.addModule(MemBuffer->getBufferIdentifier(), in import() 584 ThinGenerator.addModule(MemBuffer->getBufferIdentifier(), in internalize() 672 ThinGenerator.addModule(Filename, InputBuffers.back()->getBuffer()); in runAll() 794 } else if (!CodeGen.addModule(Module.get())) { in main()
|
/external/swiftshader/third_party/LLVM/tools/lto/ |
D | LTOCodeGenerator.h | 37 bool addModule(struct LTOModule*, std::string& errMsg);
|
D | lto.cpp | 211 return cg->addModule(mod, sLastErrorString); in lto_codegen_add_module()
|
/external/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.h | 97 void addModule(std::unique_ptr<Module> M) { in addModule() function 216 void addModule(std::unique_ptr<Module> M) override;
|
D | MCJIT.cpp | 91 OwnedModules.addModule(std::move(First)); in MCJIT() 107 void MCJIT::addModule(std::unique_ptr<Module> M) { in addModule() function in MCJIT 113 OwnedModules.addModule(std::move(M)); in addModule()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
D | KaleidoscopeJIT.h | 57 ModuleHandle addModule(std::unique_ptr<Module> M) { in addModule() function
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/ |
D | JitManager.cpp | 189 mpExec->addModule(std::move(newModule)); in SetupNewModule() 226 mpExec->addModule(std::move(newModule)); in SetupModuleFromIR()
|
/external/llvm/examples/Kaleidoscope/include/ |
D | KaleidoscopeJIT.h | 56 ModuleHandleT addModule(std::unique_ptr<Module> M) { in addModule() function
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | LLVMContext.cpp | 49 void LLVMContext::addModule(Module *M) { in addModule() function in LLVMContext
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
D | KaleidoscopeJIT.h | 67 ModuleHandle addModule(std::unique_ptr<Module> M) { in addModule() function
|
/external/llvm/tools/lli/ |
D | OrcLazyJIT.cpp | 146 auto MainHandle = J.addModule(std::move(M)); in runOrcLazyJIT()
|
/external/llvm/include/llvm/IR/ |
D | LLVMContext.h | 245 void addModule(Module*);
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
D | KaleidoscopeJIT.h | 77 ModuleHandle addModule(std::unique_ptr<Module> M) { in addModule() function
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | LLVMContext.h | 272 void addModule(Module*);
|
/external/llvm/include/llvm/LTO/legacy/ |
D | ThinLTOCodeGenerator.h | 55 void addModule(StringRef Identifier, StringRef Data);
|
D | LTOCodeGenerator.h | 73 bool addModule(struct LTOModule *);
|
/external/llvm/docs/tutorial/ |
D | BuildingAJIT1.rst | 63 1. Handle addModule(Module &M) -- Make the given IR module available for 77 Handle H = J.addModule(*M); 156 addModule method, and can be passed to the removeModule method to remove a 185 ModuleHandle addModule(std::unique_ptr<Module> M) { 214 Now we come to the first of our JIT API methods: addModule. This method is 274 directly from our addModule method.
|
/external/clang/include/clang/Serialization/ |
D | ModuleManager.h | 214 AddModuleResult addModule(StringRef FileName, ModuleKind Type,
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/ |
D | JIT.h | 109 virtual void addModule(Module *M);
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 564 TheJIT->addModule(std::move(TheModule)); in HandleDefinition() 592 auto H = TheJIT->addModule(std::move(TheModule)); in HandleTopLevelExpression()
|