Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [ORC] Errorize the ORC APIs. | Lang Hames | 2017-07-07 | 1 | -2/+4 |
| | | | | | | | | This patch updates the ORC layers and utilities to return and propagate llvm::Errors where appropriate. This is necessary to allow ORC to safely handle error cases in cross-process and remote JITing. llvm-svn: 307350 | ||||
* | [ORC] Update GlobalMappingLayer::addModuleSet to addModule. | Lang Hames | 2017-07-06 | 1 | -1/+1 |
| | | | | | | This layer was accidentally left out of r306166. llvm-svn: 307319 | ||||
* | [ExecutionEngine][MCJIT][Orc] Replace RuntimeDyld::SymbolInfo with JITSymbol. | Lang Hames | 2016-08-01 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | This patch replaces RuntimeDyld::SymbolInfo with JITSymbol: A symbol class that is capable of lazy materialization (i.e. the symbol definition needn't be emitted until the address is requested). This can be used to support common and weak symbols in the JIT (though this is not implemented in this patch). For consistency, RuntimeDyld::SymbolResolver is renamed to JITSymbolResolver. For space efficiency a new class, JITEvaluatedSymbol, is introduced that behaves like the old RuntimeDyld::SymbolInfo - i.e. it is just a pair of an address and symbol flags. Instances of JITEvaluatedSymbol can be used in symbol-tables to avoid paying the space cost of the materializer. llvm-svn: 277386 | ||||
* | Add a global mapping layer for Orc. Adapted from a patch by Andy Somogyi. | Lang Hames | 2015-08-27 | 1 | -0/+55 |
Thanks Andy! llvm-svn: 246226 |