//===- DebugImporter.h - LLVM to MLIR Debug conversion -------*- C++ -*----===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file implements the translation between LLVMIR debug information and // the corresponding MLIR representation. // //===----------------------------------------------------------------------===// #ifndef MLIR_LIB_TARGET_LLVMIR_DEBUGIMPORTER_H_ #define MLIR_LIB_TARGET_LLVMIR_DEBUGIMPORTER_H_ #include "mlir/Dialect/LLVMIR/LLVMDialect.h" #include "mlir/IR/BuiltinOps.h" #include "mlir/IR/MLIRContext.h" #include "mlir/Support/CyclicReplacerCache.h" #include "llvm/ADT/MapVector.h" #include "llvm/IR/DebugInfoMetadata.h" namespace mlir { class Operation; namespace LLVM { class LLVMFuncOp; namespace detail { class DebugImporter { … }; } // namespace detail } // namespace LLVM } // namespace mlir #endif // MLIR_LIB_TARGET_LLVMIR_DEBUGIMPORTER_H_