forked from OSchip/llvm-project
58 lines
2.0 KiB
C++
58 lines
2.0 KiB
C++
//===- SubtargetFeatureInfo.h - Helpers for subtarget features ------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_UTIL_TABLEGEN_SUBTARGETFEATUREINFO_H
|
|
#define LLVM_UTIL_TABLEGEN_SUBTARGETFEATUREINFO_H
|
|
|
|
#include "llvm/TableGen/Error.h"
|
|
#include "llvm/TableGen/Record.h"
|
|
|
|
#include <map>
|
|
|
|
namespace llvm {
|
|
class Record;
|
|
class RecordKeeper;
|
|
|
|
/// Helper class for storing information on a subtarget feature which
|
|
/// participates in instruction matching.
|
|
struct SubtargetFeatureInfo {
|
|
/// \brief The predicate record for this feature.
|
|
Record *TheDef;
|
|
|
|
/// \brief An unique index assigned to represent this feature.
|
|
uint64_t Index;
|
|
|
|
SubtargetFeatureInfo(Record *D, uint64_t Idx) : TheDef(D), Index(Idx) {}
|
|
|
|
/// \brief The name of the enumerated constant identifying this feature.
|
|
std::string getEnumName() const { return "Feature_" + TheDef->getName(); }
|
|
|
|
void dump() const;
|
|
static std::vector<std::pair<Record *, SubtargetFeatureInfo>>
|
|
getAll(const RecordKeeper &Records);
|
|
|
|
/// Emit the function to compute the list of available features given a
|
|
/// subtarget.
|
|
///
|
|
/// \param TargetName The name of the target as used in class prefixes (e.g.
|
|
/// <TargetName>Subtarget)
|
|
/// \param ClassName The name of the class (without the <Target> prefix)
|
|
/// that will contain the generated functions.
|
|
/// \param SubtargetFeatures A map of TableGen records to the
|
|
/// SubtargetFeatureInfo equivalent.
|
|
static void emitComputeAvailableFeatures(
|
|
StringRef TargetName, StringRef ClassName,
|
|
std::map<Record *, SubtargetFeatureInfo, LessRecordByID>
|
|
&SubtargetFeatures,
|
|
raw_ostream &OS);
|
|
};
|
|
} // end namespace llvm
|
|
|
|
#endif // LLVM_UTIL_TABLEGEN_SUBTARGETFEATUREINFO_H
|