/external/llvm/lib/ExecutionEngine/Orc/ |
D | OrcCBindingsStack.h | 49 virtual void removeModule() = 0; in DEFINE_SIMPLE_CONVERSION_FUNCTIONS() 62 void removeModule() override { return Layer.removeModuleSet(Handle); } in DEFINE_SIMPLE_CONVERSION_FUNCTIONS() 219 void removeModule(ModuleHandleT H) { in DEFINE_SIMPLE_CONVERSION_FUNCTIONS() 220 GenericHandles[H]->removeModule(); in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
|
D | OrcCBindings.cpp | 87 J.removeModule(H); in LLVMOrcRemoveModule()
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | LLVMContext.h | 96 void removeModule(Module*);
|
/external/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.h | 101 bool removeModule(Module *M) { in removeModule() function 220 bool removeModule(Module *M) override;
|
D | MCJIT.cpp | 116 bool MCJIT::removeModule(Module *M) { in removeModule() function in MCJIT 118 return OwnedModules.removeModule(M); in removeModule()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
D | KaleidoscopeJIT.h | 93 void removeModule(ModuleHandle H) { in removeModule() function
|
/external/llvm/examples/Kaleidoscope/include/ |
D | KaleidoscopeJIT.h | 75 void removeModule(ModuleHandleT H) { in removeModule() function
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | LLVMContext.cpp | 53 void LLVMContext::removeModule(Module *M) { in removeModule() function in LLVMContext
|
D | Module.cpp | 53 Context.removeModule(this); in ~Module()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
D | KaleidoscopeJIT.h | 103 void removeModule(ModuleHandle H) { in removeModule() function
|
/external/llvm/include/llvm/IR/ |
D | LLVMContext.h | 248 void removeModule(Module*);
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
D | KaleidoscopeJIT.h | 113 void removeModule(ModuleHandle H) { in removeModule() function
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | LLVMContext.h | 275 void removeModule(Module*);
|
/external/llvm/docs/tutorial/ |
D | BuildingAJIT1.rst | 67 3. void removeModule(Handle H) -- Remove a module from the JIT, releasing any 81 J.removeModule(H); 100 expression, and then use the removeModule method to remove the code again 156 addModule method, and can be passed to the removeModule method to remove a 285 void removeModule(ModuleHandle H) { 299 We now come to the last method in our JIT API: removeModule. This method is
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/ |
D | JIT.h | 113 virtual bool removeModule(Module *M);
|
D | JIT.cpp | 357 bool JIT::removeModule(Module *M) { in removeModule() function in JIT 358 bool result = ExecutionEngine::removeModule(M); in removeModule()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
D | KaleidoscopeJIT.h | 194 void removeModule(ModuleHandle H) { in removeModule() function
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/ |
D | KaleidoscopeJIT.h | 226 void removeModule(ModuleHandle H) { in removeModule() function
|
/external/llvm/lib/IR/ |
D | LLVMContext.cpp | 163 void LLVMContext::removeModule(Module *M) { in removeModule() function in LLVMContext
|
D | Module.cpp | 59 Context.removeModule(this); in ~Module()
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/ |
D | ExecutionEngineBindings.cpp | 217 unwrap(EE)->removeModule(Mod); in LLVMRemoveModule()
|
/external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/ |
D | ExecutionEngine.h | 219 virtual bool removeModule(Module *M);
|
/external/llvm/include/llvm/ExecutionEngine/ |
D | ExecutionEngine.h | 203 virtual bool removeModule(Module *M);
|
/external/llvm/lib/ExecutionEngine/ |
D | ExecutionEngineBindings.cpp | 262 unwrap(EE)->removeModule(Mod); in LLVMRemoveModule()
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
D | toy.cpp | 605 TheJIT->removeModule(H); in HandleTopLevelExpression()
|