|
11 | 11 | #if LLVM_VERSION_GE(16, 0)
|
12 | 12 | #include "llvm/Support/ModRef.h"
|
13 | 13 | #endif
|
| 14 | +#include "llvm/ExecutionEngine/Orc/LLJIT.h" |
| 15 | +#include "llvm/ExecutionEngine/Orc/ThreadSafeModule.h" |
14 | 16 | #include "llvm/Object/Archive.h"
|
15 | 17 | #include "llvm/Object/COFFImportFile.h"
|
16 | 18 | #include "llvm/Object/ObjectFile.h"
|
|
33 | 35 | using namespace llvm;
|
34 | 36 | using namespace llvm::sys;
|
35 | 37 | using namespace llvm::object;
|
| 38 | +using namespace llvm::orc; |
36 | 39 |
|
37 | 40 | // LLVMAtomicOrdering is already an enum - don't create another
|
38 | 41 | // one.
|
@@ -1996,3 +1999,88 @@ extern "C" int32_t LLVMRustGetElementTypeArgIndex(LLVMValueRef CallSite) {
|
1996 | 1999 | extern "C" bool LLVMRustIsBitcode(char *ptr, size_t len) {
|
1997 | 2000 | return identify_magic(StringRef(ptr, len)) == file_magic::bitcode;
|
1998 | 2001 | }
|
| 2002 | + |
| 2003 | +extern "C" LLJIT *LLVMRustCreateLLJIT() { |
| 2004 | + Expected<std::unique_ptr<LLJIT>> J = LLJITBuilder().create(); |
| 2005 | + if (!J) |
| 2006 | + report_fatal_error(toString(J.takeError()).c_str()); |
| 2007 | + |
| 2008 | + return J->release(); |
| 2009 | +} |
| 2010 | + |
| 2011 | +extern "C" void LLVMRustLLJITLoadDynamicLibrary(LLJIT *J, |
| 2012 | + const char *FileName) { |
| 2013 | + auto Generator = DynamicLibrarySearchGenerator::Load( |
| 2014 | + FileName, J->getDataLayout().getGlobalPrefix()); |
| 2015 | + if (!Generator) |
| 2016 | + report_fatal_error(toString(Generator.takeError()).c_str()); |
| 2017 | + |
| 2018 | + J->getMainJITDylib().addGenerator(std::move(*Generator)); |
| 2019 | +} |
| 2020 | + |
| 2021 | +extern "C" void LLVMRustLLJITAddIRModule(LLJIT *J, LLVMModuleRef ModuleRef) { |
| 2022 | + auto M = std::unique_ptr<Module>(unwrap(ModuleRef)); |
| 2023 | + auto C = std::make_unique<LLVMContext>(); |
| 2024 | + ThreadSafeModule TSM = ThreadSafeModule(std::move(M), std::move(C)); |
| 2025 | + auto Error = J->addIRModule(std::move(TSM)); |
| 2026 | + if (Error) { |
| 2027 | + std::string errorString; |
| 2028 | + llvm::raw_string_ostream stream(errorString); |
| 2029 | + stream << Error; |
| 2030 | + report_fatal_error(errorString.c_str()); |
| 2031 | + } |
| 2032 | +} |
| 2033 | + |
| 2034 | +extern "C" uint64_t LLVMRustLLJITLookup(LLJIT *J, const char *Name) { |
| 2035 | + auto Addr = J->lookup(Name); |
| 2036 | + if (!Addr) |
| 2037 | + report_fatal_error(toString(Addr.takeError()).c_str()); |
| 2038 | + |
| 2039 | + return Addr->getValue(); |
| 2040 | +} |
| 2041 | + |
| 2042 | +extern "C" void LLVMRustSetLinkageForAllFunctions(LLVMModuleRef M) { |
| 2043 | + auto Module = unwrap(M); |
| 2044 | + for (auto F = Module->getFunctionList().begin(); |
| 2045 | + F != Module->getFunctionList().end(); F++) { |
| 2046 | + (*F).setLinkage(GlobalValue::LinkageTypes::LinkOnceODRLinkage); |
| 2047 | + } |
| 2048 | +} |
| 2049 | + |
| 2050 | +extern "C" void LLVMRustAddGlobalCtor(LLVMContextRef C, LLVMModuleRef M, |
| 2051 | + LLVMValueRef Fn) { |
| 2052 | + auto AddrSpace = unwrap(M)->getDataLayout().getProgramAddressSpace(); |
| 2053 | + auto CtorFnPtrTy = |
| 2054 | + PointerType::get(unwrap<FunctionType>(LLVMTypeOf(Fn)), AddrSpace); |
| 2055 | + |
| 2056 | + auto VoidPtrTy = PointerType::get(Type::getVoidTy(*unwrap(C)), AddrSpace); |
| 2057 | + |
| 2058 | + auto CtorTy = |
| 2059 | + StructType::get(Type::getInt32Ty(*unwrap(C)), CtorFnPtrTy, VoidPtrTy); |
| 2060 | + |
| 2061 | + auto Ctor = ConstantStruct::get( |
| 2062 | + CtorTy, { |
| 2063 | + ConstantInt::get(Type::getInt32Ty(*unwrap(C)), 65535), |
| 2064 | + ConstantExpr::getBitCast(unwrap<Constant>(Fn), CtorFnPtrTy), |
| 2065 | + ConstantPointerNull::get(VoidPtrTy), |
| 2066 | + }); |
| 2067 | + |
| 2068 | + auto CtorsTy = ArrayType::get(CtorTy, 1); |
| 2069 | + auto Ctors = ConstantArray::get(CtorsTy, {Ctor}); |
| 2070 | + |
| 2071 | + auto GlobalCtors = unwrap(M)->getOrInsertGlobal("llvm.global_ctors", CtorsTy); |
| 2072 | + unwrap(M) |
| 2073 | + ->getGlobalVariable("llvm.global_ctors") |
| 2074 | + ->setLinkage(GlobalValue::LinkageTypes::AppendingLinkage); |
| 2075 | + unwrap(M)->getGlobalVariable("llvm.global_ctors")->setInitializer(Ctors); |
| 2076 | +} |
| 2077 | + |
| 2078 | +extern "C" void LLVMRustRunCtors(LLJIT *J) { |
| 2079 | + auto Error = J->initialize(J->getMainJITDylib()); |
| 2080 | + if (Error) { |
| 2081 | + std::string errorString; |
| 2082 | + raw_string_ostream stream(errorString); |
| 2083 | + stream << Error; |
| 2084 | + report_fatal_error(errorString.c_str()); |
| 2085 | + } |
| 2086 | +} |
0 commit comments