brintos

brintos / llvm-project-archived public Read only

0
0
Text · 17.7 KiB · 2255633 Raw
460 lines · cpp
1//===- ExecutionEngine.cpp - MLIR Execution engine and utils --------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8//9// This file implements the execution engine for MLIR modules based on LLVM Orc10// JIT engine.11//12//===----------------------------------------------------------------------===//13#include "mlir/ExecutionEngine/ExecutionEngine.h"14#include "mlir/Dialect/LLVMIR/LLVMDialect.h"15#include "mlir/IR/BuiltinOps.h"16#include "mlir/Support/FileUtilities.h"17#include "mlir/Target/LLVMIR/Export.h"18 19#include "llvm/ExecutionEngine/JITEventListener.h"20#include "llvm/ExecutionEngine/ObjectCache.h"21#include "llvm/ExecutionEngine/Orc/CompileUtils.h"22#include "llvm/ExecutionEngine/Orc/ExecutionUtils.h"23#include "llvm/ExecutionEngine/Orc/IRCompileLayer.h"24#include "llvm/ExecutionEngine/Orc/IRTransformLayer.h"25#include "llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h"26#include "llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h"27#include "llvm/IR/IRBuilder.h"28#include "llvm/MC/TargetRegistry.h"29#include "llvm/Support/Debug.h"30#include "llvm/Support/Error.h"31#include "llvm/Support/ToolOutputFile.h"32#include "llvm/TargetParser/Host.h"33#include "llvm/TargetParser/SubtargetFeature.h"34 35#define DEBUG_TYPE "execution-engine"36 37using namespace mlir;38using llvm::dbgs;39using llvm::Error;40using llvm::errs;41using llvm::Expected;42using llvm::LLVMContext;43using llvm::MemoryBuffer;44using llvm::MemoryBufferRef;45using llvm::Module;46using llvm::SectionMemoryManager;47using llvm::StringError;48using llvm::Triple;49using llvm::orc::DynamicLibrarySearchGenerator;50using llvm::orc::ExecutionSession;51using llvm::orc::IRCompileLayer;52using llvm::orc::JITTargetMachineBuilder;53using llvm::orc::MangleAndInterner;54using llvm::orc::RTDyldObjectLinkingLayer;55using llvm::orc::SymbolMap;56using llvm::orc::ThreadSafeModule;57using llvm::orc::TMOwningSimpleCompiler;58 59/// Wrap a string into an llvm::StringError.60static Error makeStringError(const Twine &message) {61  return llvm::make_error<StringError>(message.str(),62                                       llvm::inconvertibleErrorCode());63}64 65void SimpleObjectCache::notifyObjectCompiled(const Module *m,66                                             MemoryBufferRef objBuffer) {67  cachedObjects[m->getModuleIdentifier()] = MemoryBuffer::getMemBufferCopy(68      objBuffer.getBuffer(), objBuffer.getBufferIdentifier());69}70 71std::unique_ptr<MemoryBuffer> SimpleObjectCache::getObject(const Module *m) {72  auto i = cachedObjects.find(m->getModuleIdentifier());73  if (i == cachedObjects.end()) {74    LLVM_DEBUG(dbgs() << "No object for " << m->getModuleIdentifier()75                      << " in cache. Compiling.\n");76    return nullptr;77  }78  LLVM_DEBUG(dbgs() << "Object for " << m->getModuleIdentifier()79                    << " loaded from cache.\n");80  return MemoryBuffer::getMemBuffer(i->second->getMemBufferRef());81}82 83void SimpleObjectCache::dumpToObjectFile(StringRef outputFilename) {84  // Set up the output file.85  std::string errorMessage;86  auto file = openOutputFile(outputFilename, &errorMessage);87  if (!file) {88    llvm::errs() << errorMessage << "\n";89    return;90  }91 92  // Dump the object generated for a single module to the output file.93  assert(cachedObjects.size() == 1 && "Expected only one object entry.");94  auto &cachedObject = cachedObjects.begin()->second;95  file->os() << cachedObject->getBuffer();96  file->keep();97}98 99bool SimpleObjectCache::isEmpty() { return cachedObjects.empty(); }100 101void ExecutionEngine::dumpToObjectFile(StringRef filename) {102  if (cache == nullptr) {103    llvm::errs() << "cannot dump ExecutionEngine object code to file: "104                    "object cache is disabled\n";105    return;106  }107  // Compilation is lazy and it doesn't populate object cache unless requested.108  // In case object dump is requested before cache is populated, we need to109  // force compilation manually.110  if (cache->isEmpty()) {111    for (std::string &functionName : functionNames) {112      auto result = lookupPacked(functionName);113      if (!result) {114        llvm::errs() << "Could not compile " << functionName << ":\n  "115                     << result.takeError() << "\n";116        return;117      }118    }119  }120  cache->dumpToObjectFile(filename);121}122 123void ExecutionEngine::registerSymbols(124    llvm::function_ref<SymbolMap(MangleAndInterner)> symbolMap) {125  auto &mainJitDylib = jit->getMainJITDylib();126  cantFail(mainJitDylib.define(127      absoluteSymbols(symbolMap(llvm::orc::MangleAndInterner(128          mainJitDylib.getExecutionSession(), jit->getDataLayout())))));129}130 131void ExecutionEngine::setupTargetTripleAndDataLayout(Module *llvmModule,132                                                     llvm::TargetMachine *tm) {133  llvmModule->setDataLayout(tm->createDataLayout());134  llvmModule->setTargetTriple(tm->getTargetTriple());135}136 137static std::string makePackedFunctionName(StringRef name) {138  return "_mlir_" + name.str();139}140 141// For each function in the LLVM module, define an interface function that wraps142// all the arguments of the original function and all its results into an i8**143// pointer to provide a unified invocation interface.144static void packFunctionArguments(Module *module) {145  auto &ctx = module->getContext();146  llvm::IRBuilder<> builder(ctx);147  DenseSet<llvm::Function *> interfaceFunctions;148  for (auto &func : module->getFunctionList()) {149    if (func.isDeclaration()) {150      continue;151    }152    if (interfaceFunctions.count(&func)) {153      continue;154    }155 156    // Given a function `foo(<...>)`, define the interface function157    // `mlir_foo(i8**)`.158    auto *newType =159        llvm::FunctionType::get(builder.getVoidTy(), builder.getPtrTy(),160                                /*isVarArg=*/false);161    auto newName = makePackedFunctionName(func.getName());162    auto funcCst = module->getOrInsertFunction(newName, newType);163    llvm::Function *interfaceFunc = cast<llvm::Function>(funcCst.getCallee());164    interfaceFunctions.insert(interfaceFunc);165 166    // Extract the arguments from the type-erased argument list and cast them to167    // the proper types.168    auto *bb = llvm::BasicBlock::Create(ctx);169    bb->insertInto(interfaceFunc);170    builder.SetInsertPoint(bb);171    llvm::Value *argList = interfaceFunc->arg_begin();172    SmallVector<llvm::Value *, 8> args;173    args.reserve(llvm::size(func.args()));174    for (auto [index, arg] : llvm::enumerate(func.args())) {175      llvm::Value *argIndex = llvm::Constant::getIntegerValue(176          builder.getInt64Ty(), APInt(64, index));177      llvm::Value *argPtrPtr =178          builder.CreateGEP(builder.getPtrTy(), argList, argIndex);179      llvm::Value *argPtr = builder.CreateLoad(builder.getPtrTy(), argPtrPtr);180      llvm::Type *argTy = arg.getType();181      llvm::Value *load = builder.CreateLoad(argTy, argPtr);182      args.push_back(load);183    }184 185    // Call the implementation function with the extracted arguments.186    llvm::Value *result = builder.CreateCall(&func, args);187 188    // Assuming the result is one value, potentially of type `void`.189    if (!result->getType()->isVoidTy()) {190      llvm::Value *retIndex = llvm::Constant::getIntegerValue(191          builder.getInt64Ty(), APInt(64, llvm::size(func.args())));192      llvm::Value *retPtrPtr =193          builder.CreateGEP(builder.getPtrTy(), argList, retIndex);194      llvm::Value *retPtr = builder.CreateLoad(builder.getPtrTy(), retPtrPtr);195      builder.CreateStore(result, retPtr);196    }197 198    // The interface function returns void.199    builder.CreateRetVoid();200  }201}202 203ExecutionEngine::ExecutionEngine(bool enableObjectDump,204                                 bool enableGDBNotificationListener,205                                 bool enablePerfNotificationListener)206    : cache(enableObjectDump ? new SimpleObjectCache() : nullptr),207      functionNames(),208      gdbListener(enableGDBNotificationListener209                      ? llvm::JITEventListener::createGDBRegistrationListener()210                      : nullptr),211      perfListener(nullptr) {212  if (enablePerfNotificationListener) {213    if (auto *listener = llvm::JITEventListener::createPerfJITEventListener())214      perfListener = listener;215    else if (auto *listener =216                 llvm::JITEventListener::createIntelJITEventListener())217      perfListener = listener;218  }219}220 221ExecutionEngine::~ExecutionEngine() {222  // Execute the global destructors from the module being processed.223  // TODO: Allow JIT deinitialize for AArch64. Currently there's a bug causing a224  // crash for AArch64 see related issue #71963.225  if (jit && !jit->getTargetTriple().isAArch64())226    llvm::consumeError(jit->deinitialize(jit->getMainJITDylib()));227  // Run all dynamic library destroy callbacks to prepare for the shutdown.228  for (LibraryDestroyFn destroy : destroyFns)229    destroy();230}231 232Expected<std::unique_ptr<ExecutionEngine>>233ExecutionEngine::create(Operation *m, const ExecutionEngineOptions &options,234                        std::unique_ptr<llvm::TargetMachine> tm) {235  auto engine = std::make_unique<ExecutionEngine>(236      options.enableObjectDump, options.enableGDBNotificationListener,237      options.enablePerfNotificationListener);238 239  // Remember all entry-points if object dumping is enabled.240  if (options.enableObjectDump) {241    for (auto funcOp : m->getRegion(0).getOps<LLVM::LLVMFuncOp>()) {242      if (funcOp.getBlocks().empty())243        continue;244      StringRef funcName = funcOp.getSymName();245      engine->functionNames.push_back(funcName.str());246    }247  }248 249  std::unique_ptr<llvm::LLVMContext> ctx(new llvm::LLVMContext);250  auto llvmModule = options.llvmModuleBuilder251                        ? options.llvmModuleBuilder(m, *ctx)252                        : translateModuleToLLVMIR(m, *ctx);253  if (!llvmModule)254    return makeStringError("could not convert to LLVM IR");255 256  // If no valid TargetMachine was passed, create a default TM ignoring any257  // input arguments from the user.258  if (!tm) {259    auto tmBuilderOrError = llvm::orc::JITTargetMachineBuilder::detectHost();260    if (!tmBuilderOrError)261      return tmBuilderOrError.takeError();262 263    auto tmOrError = tmBuilderOrError->createTargetMachine();264    if (!tmOrError)265      return tmOrError.takeError();266    tm = std::move(tmOrError.get());267  }268 269  // TODO: Currently, the LLVM module created above has no triple associated270  // with it. Instead, the triple is extracted from the TargetMachine, which is271  // either based on the host defaults or command line arguments when specified272  // (set-up by callers of this method). It could also be passed to the273  // translation or dialect conversion instead of this.274  setupTargetTripleAndDataLayout(llvmModule.get(), tm.get());275  packFunctionArguments(llvmModule.get());276 277  auto dataLayout = llvmModule->getDataLayout();278 279  // Use absolute library path so that gdb can find the symbol table.280  SmallVector<SmallString<256>, 4> sharedLibPaths;281  transform(282      options.sharedLibPaths, std::back_inserter(sharedLibPaths),283      [](StringRef libPath) {284        SmallString<256> absPath(libPath.begin(), libPath.end());285        cantFail(llvm::errorCodeToError(llvm::sys::fs::make_absolute(absPath)));286        return absPath;287      });288 289  // If shared library implements custom execution layer library init and290  // destroy functions, we'll use them to register the library. Otherwise, load291  // the library as JITDyLib below.292  llvm::StringMap<void *> exportSymbols;293  SmallVector<LibraryDestroyFn> destroyFns;294  SmallVector<StringRef> jitDyLibPaths;295 296  for (auto &libPath : sharedLibPaths) {297    auto lib = llvm::sys::DynamicLibrary::getPermanentLibrary(298        libPath.str().str().c_str());299    void *initSym = lib.getAddressOfSymbol(kLibraryInitFnName);300    void *destroySim = lib.getAddressOfSymbol(kLibraryDestroyFnName);301 302    // Library does not provide call backs, rely on symbol visiblity.303    if (!initSym || !destroySim) {304      jitDyLibPaths.push_back(libPath);305      continue;306    }307 308    auto initFn = reinterpret_cast<LibraryInitFn>(initSym);309    initFn(exportSymbols);310 311    auto destroyFn = reinterpret_cast<LibraryDestroyFn>(destroySim);312    destroyFns.push_back(destroyFn);313  }314  engine->destroyFns = std::move(destroyFns);315 316  // Callback to create the object layer with symbol resolution to current317  // process and dynamically linked libraries.318  auto objectLinkingLayerCreator = [&](ExecutionSession &session) {319    auto objectLayer = std::make_unique<RTDyldObjectLinkingLayer>(320        session, [sectionMemoryMapper =321                      options.sectionMemoryMapper](const MemoryBuffer &) {322          return std::make_unique<SectionMemoryManager>(sectionMemoryMapper);323        });324 325    // Register JIT event listeners if they are enabled.326    if (engine->gdbListener)327      objectLayer->registerJITEventListener(*engine->gdbListener);328    if (engine->perfListener)329      objectLayer->registerJITEventListener(*engine->perfListener);330 331    // COFF format binaries (Windows) need special handling to deal with332    // exported symbol visibility.333    // cf llvm/lib/ExecutionEngine/Orc/LLJIT.cpp LLJIT::createObjectLinkingLayer334    const llvm::Triple &targetTriple = llvmModule->getTargetTriple();335    if (targetTriple.isOSBinFormatCOFF()) {336      objectLayer->setOverrideObjectFlagsWithResponsibilityFlags(true);337      objectLayer->setAutoClaimResponsibilityForObjectSymbols(true);338    }339 340    // Resolve symbols from shared libraries.341    for (auto &libPath : jitDyLibPaths) {342      auto mb = llvm::MemoryBuffer::getFile(libPath);343      if (!mb) {344        errs() << "Failed to create MemoryBuffer for: " << libPath345               << "\nError: " << mb.getError().message() << "\n";346        continue;347      }348      auto &jd = session.createBareJITDylib(std::string(libPath));349      auto loaded = DynamicLibrarySearchGenerator::Load(350          libPath.str().c_str(), dataLayout.getGlobalPrefix());351      if (!loaded) {352        errs() << "Could not load " << libPath << ":\n  " << loaded.takeError()353               << "\n";354        continue;355      }356      jd.addGenerator(std::move(*loaded));357      cantFail(objectLayer->add(jd, std::move(mb.get())));358    }359 360    return objectLayer;361  };362 363  // Callback to inspect the cache and recompile on demand. This follows Lang's364  // LLJITWithObjectCache example.365  auto compileFunctionCreator = [&](JITTargetMachineBuilder jtmb)366      -> Expected<std::unique_ptr<IRCompileLayer::IRCompiler>> {367    if (options.jitCodeGenOptLevel)368      jtmb.setCodeGenOptLevel(*options.jitCodeGenOptLevel);369    return std::make_unique<TMOwningSimpleCompiler>(std::move(tm),370                                                    engine->cache.get());371  };372 373  // Create the LLJIT by calling the LLJITBuilder with 2 callbacks.374  auto jit =375      cantFail(llvm::orc::LLJITBuilder()376                   .setCompileFunctionCreator(compileFunctionCreator)377                   .setObjectLinkingLayerCreator(objectLinkingLayerCreator)378                   .setDataLayout(dataLayout)379                   .create());380 381  // Add a ThreadSafemodule to the engine and return.382  ThreadSafeModule tsm(std::move(llvmModule), std::move(ctx));383  if (options.transformer)384    cantFail(tsm.withModuleDo(385        [&](llvm::Module &module) { return options.transformer(&module); }));386  cantFail(jit->addIRModule(std::move(tsm)));387  engine->jit = std::move(jit);388 389  // Resolve symbols that are statically linked in the current process.390  llvm::orc::JITDylib &mainJD = engine->jit->getMainJITDylib();391  mainJD.addGenerator(392      cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess(393          dataLayout.getGlobalPrefix())));394 395  // Build a runtime symbol map from the exported symbols and register them.396  auto runtimeSymbolMap = [&](llvm::orc::MangleAndInterner interner) {397    auto symbolMap = llvm::orc::SymbolMap();398    for (auto &exportSymbol : exportSymbols)399      symbolMap[interner(exportSymbol.getKey())] = {400          llvm::orc::ExecutorAddr::fromPtr(exportSymbol.getValue()),401          llvm::JITSymbolFlags::Exported};402    return symbolMap;403  };404  engine->registerSymbols(runtimeSymbolMap);405  return std::move(engine);406}407 408Expected<void (*)(void **)>409ExecutionEngine::lookupPacked(StringRef name) const {410  auto result = lookup(makePackedFunctionName(name));411  if (!result)412    return result.takeError();413  return reinterpret_cast<void (*)(void **)>(result.get());414}415 416Expected<void *> ExecutionEngine::lookup(StringRef name) const {417  auto expectedSymbol = jit->lookup(name);418 419  // JIT lookup may return an Error referring to strings stored internally by420  // the JIT. If the Error outlives the ExecutionEngine, it would want have a421  // dangling reference, which is currently caught by an assertion inside JIT422  // thanks to hand-rolled reference counting. Rewrap the error message into a423  // string before returning. Alternatively, ORC JIT should consider copying424  // the string into the error message.425  if (!expectedSymbol) {426    std::string errorMessage;427    llvm::raw_string_ostream os(errorMessage);428    llvm::handleAllErrors(expectedSymbol.takeError(),429                          [&os](llvm::ErrorInfoBase &ei) { ei.log(os); });430    return makeStringError(errorMessage);431  }432 433  if (void *fptr = expectedSymbol->toPtr<void *>())434    return fptr;435  return makeStringError("looked up function is null");436}437 438Error ExecutionEngine::invokePacked(StringRef name,439                                    MutableArrayRef<void *> args) {440  initialize();441  auto expectedFPtr = lookupPacked(name);442  if (!expectedFPtr)443    return expectedFPtr.takeError();444  auto fptr = *expectedFPtr;445 446  (*fptr)(args.data());447 448  return Error::success();449}450 451void ExecutionEngine::initialize() {452  if (isInitialized)453    return;454  // TODO: Allow JIT initialize for AArch64. Currently there's a bug causing a455  // crash for AArch64 see related issue #71963.456  if (!jit->getTargetTriple().isAArch64())457    cantFail(jit->initialize(jit->getMainJITDylib()));458  isInitialized = true;459}460