//===- AsmWriterInst.h - Classes encapsulating a printable inst -*- 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 // //===----------------------------------------------------------------------===// // // These classes implement a parser for assembly strings. The parser splits // the string into operands, which can be literal strings (the constant bits of // the string), actual operands (i.e., operands from the MachineInstr), and // dynamically-generated text, specified by raw C++ code. // //===----------------------------------------------------------------------===// #ifndef LLVM_UTILS_TABLEGEN_COMMON_ASMWRITERINST_H #define LLVM_UTILS_TABLEGEN_COMMON_ASMWRITERINST_H #include <string> #include <vector> namespace llvm { class CodeGenInstruction; struct AsmWriterOperand { … }; class AsmWriterInst { … }; } // namespace llvm #endif // LLVM_UTILS_TABLEGEN_COMMON_ASMWRITERINST_H