Summary: * ARM is omitted from this patch because this check appears to expose bugs in this target. * Mips is omitted from this patch because this check either detects bugs or deliberate emission of instructions that don't satisfy their predicates. One deliberate use is the SYNC instruction where the version with an operand is correctly defined as requiring MIPS32 while the version without an operand is defined as an alias of 'SYNC 0' and requires MIPS2. * X86 is omitted from this patch because it doesn't use the tablegen-erated MCCodeEmitter infrastructure. Patches for ARM and Mips will follow. Depends on D25617 Reviewers: tstellarAMD, jmolloy Subscribers: wdng, jmolloy, aemerson, rengolin, arsenm, jyknight, nemanjai, nhaehnle, tstellarAMD, llvm-commits Differential Revision: https://reviews.llvm.org/D25618 llvm-svn: 287439
71 lines
2.5 KiB
C++
71 lines
2.5 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>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
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 subtarget feature flag definitions.
|
|
static void emitSubtargetFeatureFlagEnumeration(
|
|
std::map<Record *, SubtargetFeatureInfo, LessRecordByID>
|
|
&SubtargetFeatures,
|
|
raw_ostream &OS);
|
|
|
|
static void emitNameTable(std::map<Record *, SubtargetFeatureInfo,
|
|
LessRecordByID> &SubtargetFeatures,
|
|
raw_ostream &OS);
|
|
|
|
/// 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 FuncName The name of the function to emit.
|
|
/// \param SubtargetFeatures A map of TableGen records to the
|
|
/// SubtargetFeatureInfo equivalent.
|
|
static void emitComputeAvailableFeatures(
|
|
StringRef TargetName, StringRef ClassName, StringRef FuncName,
|
|
std::map<Record *, SubtargetFeatureInfo, LessRecordByID>
|
|
&SubtargetFeatures,
|
|
raw_ostream &OS);
|
|
};
|
|
} // end namespace llvm
|
|
|
|
#endif // LLVM_UTIL_TABLEGEN_SUBTARGETFEATUREINFO_H
|