//===------ Mangling.h -- Name Mangling Utilities for ORC -------*- 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 // //===----------------------------------------------------------------------===// // // Name mangling utilities for ORC. // //===----------------------------------------------------------------------===// #ifndef LLVM_EXECUTIONENGINE_ORC_MANGLING_H #define LLVM_EXECUTIONENGINE_ORC_MANGLING_H #include "llvm/ExecutionEngine/Orc/Core.h" #include "llvm/ExecutionEngine/Orc/ThreadSafeModule.h" #include "llvm/IR/Module.h" #include "llvm/Support/MemoryBuffer.h" namespace llvm { namespace orc { /// Mangles symbol names then uniques them in the context of an /// ExecutionSession. class MangleAndInterner { … }; /// Maps IR global values to their linker symbol names / flags. /// /// This utility can be used when adding new IR globals in the JIT. class IRSymbolMapper { … }; } // End namespace orc } // End namespace llvm #endif // LLVM_EXECUTIONENGINE_ORC_MANGLING_H