//===- llvm/CodeGen/MachineModuleInfoImpls.h --------------------*- 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 defines object-file format specific implementations of // MachineModuleInfoImpl. // //===----------------------------------------------------------------------===// #ifndef LLVM_CODEGEN_MACHINEMODULEINFOIMPLS_H #define LLVM_CODEGEN_MACHINEMODULEINFOIMPLS_H #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/SetVector.h" #include "llvm/CodeGen/MachineModuleInfo.h" #include <cassert> namespace llvm { class MCSymbol; /// MachineModuleInfoMachO - This is a MachineModuleInfoImpl implementation /// for MachO targets. class MachineModuleInfoMachO : public MachineModuleInfoImpl { … }; /// MachineModuleInfoELF - This is a MachineModuleInfoImpl implementation /// for ELF targets. class MachineModuleInfoELF : public MachineModuleInfoImpl { … }; /// MachineModuleInfoCOFF - This is a MachineModuleInfoImpl implementation /// for COFF targets. class MachineModuleInfoCOFF : public MachineModuleInfoImpl { … }; /// MachineModuleInfoWasm - This is a MachineModuleInfoImpl implementation /// for Wasm targets. class MachineModuleInfoWasm : public MachineModuleInfoImpl { … }; } // end namespace llvm #endif // LLVM_CODEGEN_MACHINEMODULEINFOIMPLS_H