//===- CodeGenInstruction.h - Instruction Class Wrapper ---------*- 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 a wrapper class for the 'Instruction' TableGen class. // //===----------------------------------------------------------------------===// #ifndef LLVM_UTILS_TABLEGEN_COMMON_CODEGENINSTRUCTION_H #define LLVM_UTILS_TABLEGEN_COMMON_CODEGENINSTRUCTION_H #include "llvm/ADT/BitVector.h" #include "llvm/ADT/StringMap.h" #include "llvm/ADT/StringRef.h" #include "llvm/CodeGenTypes/MachineValueType.h" #include "llvm/TableGen/Record.h" #include <cassert> #include <string> #include <utility> #include <vector> namespace llvm { class CodeGenTarget; class CGIOperandList { … }; class CodeGenInstruction { … }; } // namespace llvm #endif // LLVM_UTILS_TABLEGEN_COMMON_CODEGENINSTRUCTION_H