//===--------------------- CodeEmitter.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 // //===----------------------------------------------------------------------===// /// \file /// /// A utility class used to compute instruction encodings. It buffers encodings /// for later usage. It exposes a simple API to compute and get the encodings as /// StringRef. // //===----------------------------------------------------------------------===// #ifndef LLVM_MCA_CODEEMITTER_H #define LLVM_MCA_CODEEMITTER_H #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/SmallString.h" #include "llvm/ADT/StringRef.h" #include "llvm/MC/MCAsmBackend.h" #include "llvm/MC/MCCodeEmitter.h" #include "llvm/MC/MCInst.h" #include "llvm/MC/MCSubtargetInfo.h" namespace llvm { namespace mca { /// A utility class used to compute instruction encodings for a code region. /// /// It provides a simple API to compute and return instruction encodings as /// strings. Encodings are cached internally for later usage. class CodeEmitter { … }; } // namespace mca } // namespace llvm #endif // LLVM_MCA_CODEEMITTER_H