//===- SubtargetFeatureInfo.h - Helpers for subtarget features --*- 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 // //===----------------------------------------------------------------------===// #ifndef LLVM_UTIL_TABLEGEN_COMMON_SUBTARGETFEATUREINFO_H #define LLVM_UTIL_TABLEGEN_COMMON_SUBTARGETFEATUREINFO_H #include "llvm/ADT/StringRef.h" #include "llvm/TableGen/Record.h" #include <map> #include <string> #include <utility> #include <vector> namespace llvm { struct SubtargetFeatureInfo; SubtargetFeatureInfoMap; /// Helper class for storing information on a subtarget feature which /// participates in instruction matching. struct SubtargetFeatureInfo { … }; } // end namespace llvm #endif // LLVM_UTIL_TABLEGEN_COMMON_SUBTARGETFEATUREINFO_H