search for: autoresolve

Displaying 3 results from an estimated 3 matches for "autoresolve".

Did you mean: autoresolver
2006 Oct 29
1
[LLVMdev] LLVM for numerical computations
Hello there, I am considering to use LLVM as part of a numerical software. I have never used LLVM, but I have tried to thoroughly read the material available on llvm.org. I would appreciate some early pointers. Please bare with me as I explained the matter as concisely as possible! And you can already see this is not going to be that concise… The part of our project LLVM could be
2007 Apr 17
1
[LLVMdev] Execution of generated code after multiple compiles fails
Hola LLVMers, I'm having a tricky time diagnosing something that is going on in my program and am hoping some of you might have used LLVM in a similar way before. All of this is using LLVM 1.9 on Mac OSX. Here is our usage pattern: 1. Read in a program in a language we are designing 2. Transform it into LLVM IR using the llvm class hierarchy 3. Link this module to a set of support
2017 Aug 06
2
Compile issues with LLVM ORC JIT
...hine&getTargetMachine(){return*TM;}ModuleHandleaddModule(std::unique_ptr<Module>M){// Build our symbol resolver:// Lambda 1: Look back into the JIT itself to find symbols that are part of// the same "logical dylib".// Lambda 2: Search for external symbols in the host process.autoResolver=createLambdaResolver([&](conststd::string &Name){if(autoSym=CompileLayer.findSymbol(Name,false))returnSym;returnJITSymbol(nullptr);},[](conststd::string &Name){if(autoSymAddr=RTDyldMemoryManager::getSymbolAddressInProcess(Name))returnJITSymbol(SymAddr,JITSymbolFlags::Exported);return...