Home
last modified time | relevance | path

Searched refs:addModule (Results 1 – 25 of 54) sorted by relevance

123

/external/llvm/unittests/ExecutionEngine/MCJIT/
DMCJITMultipleModuleTest.cpp98 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/
Ddiagnostic-handler-noexit.ll2 ; 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/
DKaleidoscopeJIT.h100 ModuleHandle addModule(std::unique_ptr<Module> M) { in addModule() function
172 addModule(std::move(M)); in addFunctionAST()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
DKaleidoscopeJIT.h116 ModuleHandle addModule(std::unique_ptr<Module> M) { in addModule() function
200 addModule(std::move(M)); in addFunctionAST()
/external/swiftshader/third_party/LLVM/include/llvm/
DLLVMContext.h93 void addModule(Module*);
/external/llvm/tools/llvm-lto/
Dllvm-lto.cpp445 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/
DLTOCodeGenerator.h37 bool addModule(struct LTOModule*, std::string& errMsg);
Dlto.cpp211 return cg->addModule(mod, sLastErrorString); in lto_codegen_add_module()
/external/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.h97 void addModule(std::unique_ptr<Module> M) { in addModule() function
216 void addModule(std::unique_ptr<Module> M) override;
DMCJIT.cpp91 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/
DKaleidoscopeJIT.h57 ModuleHandle addModule(std::unique_ptr<Module> M) { in addModule() function
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
DJitManager.cpp189 mpExec->addModule(std::move(newModule)); in SetupNewModule()
226 mpExec->addModule(std::move(newModule)); in SetupModuleFromIR()
/external/llvm/examples/Kaleidoscope/include/
DKaleidoscopeJIT.h56 ModuleHandleT addModule(std::unique_ptr<Module> M) { in addModule() function
/external/swiftshader/third_party/LLVM/lib/VMCore/
DLLVMContext.cpp49 void LLVMContext::addModule(Module *M) { in addModule() function in LLVMContext
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
DKaleidoscopeJIT.h67 ModuleHandle addModule(std::unique_ptr<Module> M) { in addModule() function
/external/llvm/tools/lli/
DOrcLazyJIT.cpp146 auto MainHandle = J.addModule(std::move(M)); in runOrcLazyJIT()
/external/llvm/include/llvm/IR/
DLLVMContext.h245 void addModule(Module*);
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
DKaleidoscopeJIT.h77 ModuleHandle addModule(std::unique_ptr<Module> M) { in addModule() function
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DLLVMContext.h272 void addModule(Module*);
/external/llvm/include/llvm/LTO/legacy/
DThinLTOCodeGenerator.h55 void addModule(StringRef Identifier, StringRef Data);
DLTOCodeGenerator.h73 bool addModule(struct LTOModule *);
/external/llvm/docs/tutorial/
DBuildingAJIT1.rst63 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/
DModuleManager.h214 AddModuleResult addModule(StringRef FileName, ModuleKind Type,
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
DJIT.h109 virtual void addModule(Module *M);
/external/llvm/examples/Kaleidoscope/Chapter4/
Dtoy.cpp564 TheJIT->addModule(std::move(TheModule)); in HandleDefinition()
592 auto H = TheJIT->addModule(std::move(TheModule)); in HandleTopLevelExpression()

123