/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/Orc/ |
D | GlobalMappingLayer.h | 56 Error removeModule(ModuleHandleT H) { return BaseLayer.removeModule(H); } in removeModule() function
|
D | IRTransformLayer.h | 73 Error removeModule(VModuleKey K) { return BaseLayer.removeModule(K); } in removeModule() function
|
D | LazyEmittingLayer.h | 92 return EmitState != NotEmitted ? BaseLayer.removeModule(K) in removeModuleFromBaseLayer() 214 Error removeModule(VModuleKey K) { in removeModule() function
|
D | IRCompileLayer.h | 93 Error removeModule(VModuleKey K) { return BaseLayer.removeObject(K); } in removeModule() function
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
D | KaleidoscopeJIT.h | 93 void removeModule(VModuleKey K) { in removeModule() function 94 cantFail(CompileLayer.removeModule(K)); in removeModule()
|
/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-7.0/llvm/lib/ExecutionEngine/Orc/ |
D | OrcCBindingsStack.h | 59 virtual Error removeModule(orc::VModuleKey K) = 0; in DEFINE_SIMPLE_CONVERSION_FUNCTIONS() 71 Error removeModule(orc::VModuleKey K) override { in DEFINE_SIMPLE_CONVERSION_FUNCTIONS() 72 return Layer.removeModule(K); in DEFINE_SIMPLE_CONVERSION_FUNCTIONS() 91 Error removeModule(orc::VModuleKey K) override { in DEFINE_SIMPLE_CONVERSION_FUNCTIONS() 354 LLVMOrcErrorCode removeModule(orc::VModuleKey K) { in removeModule() function 356 if (auto Err = KeyLayers[K]->removeModule(K)) in removeModule()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
D | KaleidoscopeJIT.h | 102 void removeModule(VModuleKey K) { in removeModule() function 103 cantFail(OptimizeLayer.removeModule(K)); in removeModule()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/include/ |
D | KaleidoscopeJIT.h | 72 void removeModule(VModuleKey K) { in removeModule() function 74 cantFail(CompileLayer.removeModule(K)); in removeModule()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
D | KaleidoscopeJIT.h | 126 void removeModule(VModuleKey K) { in removeModule() function 127 cantFail(CODLayer.removeModule(K)); in removeModule()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
D | KaleidoscopeJIT.h | 196 void removeModule(VModuleKey K) { in removeModule() function 197 cantFail(OptimizeLayer.removeModule(K)); in removeModule()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/ |
D | KaleidoscopeJIT.h | 213 void removeModule(VModuleKey K) { in removeModule() function 214 cantFail(OptimizeLayer.removeModule(K)); in removeModule()
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/tutorial/ |
D | BuildingAJIT2.rst | 123 cantFail(OptimizeLayer.removeModule(H)); 127 OptimizeLayer in our key methods: addModule, findSymbol, and removeModule. In 186 void removeModule(ModuleHandleT H) { BaseLayer.removeModule(H); } 223 | ModuleHandleT | set when calling findSymbolIn, removeModule, or | 242 | removeModule | defined in these modules will no longer be available, and | 247 | findSymbol | removed by a call to removeModule). In |
|
D | BuildingAJIT1.rst | 72 3. void removeModule(Handle H) -- Remove a module from the JIT, releasing any 85 J.removeModule(H); 104 expression, and then use the removeModule method to remove the code again 168 addModule method, and can be passed to the removeModule method to remove a 295 void removeModule(ModuleHandle H) { 296 cantFail(CompileLayer.removeModule(H)); 315 We now come to the last method in our JIT API: removeModule. This method is 325 ``CompileLayer::addModule`` and ``JITSymbol::getAddress``, removeModule may
|
/external/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.h | 101 bool removeModule(Module *M) { in removeModule() function 220 bool removeModule(Module *M) override;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.h | 101 bool removeModule(Module *M) { in removeModule() function 220 bool removeModule(Module *M) override;
|
/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/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
D | KaleidoscopeJIT.h | 103 void removeModule(ModuleHandle H) { in removeModule() function
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
D | KaleidoscopeJIT.h | 113 void removeModule(ModuleHandle H) { in removeModule() function
|
/external/llvm/include/llvm/IR/ |
D | LLVMContext.h | 248 void removeModule(Module*);
|
/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-7.0/llvm/include/llvm/IR/ |
D | LLVMContext.h | 338 void removeModule(Module*);
|