1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Reverting r237234, "Use std::bitset for SubtargetFeatures"

The buildbots are still not satisfied.
MIPS and ARM are failing (even though at least MIPS was expected to pass).

llvm-svn: 237245
This commit is contained in:
Michael Kuperstein 2015-05-13 10:28:46 +00:00
parent d49821a633
commit 5efc4deda0
37 changed files with 1021 additions and 1068 deletions

View File

@ -144,9 +144,8 @@ public:
const uint16_t *ImplicitUses; // Registers implicitly read by this instr const uint16_t *ImplicitUses; // Registers implicitly read by this instr
const uint16_t *ImplicitDefs; // Registers implicitly defined by this instr const uint16_t *ImplicitDefs; // Registers implicitly defined by this instr
const MCOperandInfo *OpInfo; // 'NumOperands' entries about operands const MCOperandInfo *OpInfo; // 'NumOperands' entries about operands
FeatureBitset uint64_t
DeprecatedFeatureMask; // Feature bits that this is deprecated on, if any DeprecatedFeatureMask; // Feature bits that this is deprecated on, if any
// A complex method to determine is a certain is deprecated or not, and return // A complex method to determine is a certain is deprecated or not, and return
// the reason for deprecation. // the reason for deprecation.
bool (*ComplexDeprecationInfo)(MCInst &, MCSubtargetInfo &, std::string &); bool (*ComplexDeprecationInfo)(MCInst &, MCSubtargetInfo &, std::string &);
@ -169,7 +168,7 @@ public:
std::string &Info) const { std::string &Info) const {
if (ComplexDeprecationInfo) if (ComplexDeprecationInfo)
return ComplexDeprecationInfo(MI, STI, Info); return ComplexDeprecationInfo(MI, STI, Info);
if ((STI.getFeatureBits() & DeprecatedFeatureMask).any()) { if ((DeprecatedFeatureMask & STI.getFeatureBits()) != 0) {
// FIXME: it would be nice to include the subtarget feature here. // FIXME: it would be nice to include the subtarget feature here.
Info = "deprecated"; Info = "deprecated";
return true; return true;

View File

@ -42,7 +42,7 @@ class MCSubtargetInfo {
const InstrStage *Stages; // Instruction itinerary stages const InstrStage *Stages; // Instruction itinerary stages
const unsigned *OperandCycles; // Itinerary operand cycles const unsigned *OperandCycles; // Itinerary operand cycles
const unsigned *ForwardingPaths; // Forwarding paths const unsigned *ForwardingPaths; // Forwarding paths
FeatureBitset FeatureBits; // Feature bits for current CPU + FS uint64_t FeatureBits; // Feature bits for current CPU + FS
public: public:
void InitMCSubtargetInfo(StringRef TT, StringRef CPU, StringRef FS, void InitMCSubtargetInfo(StringRef TT, StringRef CPU, StringRef FS,
@ -67,13 +67,13 @@ public:
/// getFeatureBits - Return the feature bits. /// getFeatureBits - Return the feature bits.
/// ///
const FeatureBitset& getFeatureBits() const { uint64_t getFeatureBits() const {
return FeatureBits; return FeatureBits;
} }
/// setFeatureBits - Set the feature bits. /// setFeatureBits - Set the feature bits.
/// ///
void setFeatureBits(FeatureBitset& FeatureBits_) { FeatureBits = FeatureBits_; } void setFeatureBits(uint64_t FeatureBits_) { FeatureBits = FeatureBits_; }
/// InitMCProcessorInfo - Set or change the CPU (optionally supplemented with /// InitMCProcessorInfo - Set or change the CPU (optionally supplemented with
/// feature string). Recompute feature bits and scheduling model. /// feature string). Recompute feature bits and scheduling model.
@ -84,15 +84,11 @@ public:
/// ToggleFeature - Toggle a feature and returns the re-computed feature /// ToggleFeature - Toggle a feature and returns the re-computed feature
/// bits. This version does not change the implied bits. /// bits. This version does not change the implied bits.
FeatureBitset ToggleFeature(uint64_t FB); uint64_t ToggleFeature(uint64_t FB);
/// ToggleFeature - Toggle a feature and returns the re-computed feature /// ToggleFeature - Toggle a feature and returns the re-computed feature
/// bits. This version does not change the implied bits. /// bits. This version will also change all implied bits.
FeatureBitset ToggleFeature(const FeatureBitset& FB); uint64_t ToggleFeature(StringRef FS);
/// ToggleFeature - Toggle a set of features and returns the re-computed
/// feature bits. This version will also change all implied bits.
FeatureBitset ToggleFeature(StringRef FS);
/// getSchedModelForCPU - Get the machine model of a CPU. /// getSchedModelForCPU - Get the machine model of a CPU.
/// ///

View File

@ -21,29 +21,11 @@
#include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/Triple.h" #include "llvm/ADT/Triple.h"
#include "llvm/Support/DataTypes.h" #include "llvm/Support/DataTypes.h"
#include <bitset>
namespace llvm { namespace llvm {
class raw_ostream; class raw_ostream;
class StringRef; class StringRef;
// A container class for subtarget features.
// This is convenient because std::bitset does not have a constructor
// with an initializer list of set bits.
const unsigned MAX_SUBTARGET_FEATURES = 64;
class FeatureBitset : public std::bitset<MAX_SUBTARGET_FEATURES> {
public:
// Cannot inherit constructors because it's not supported by VC++..
FeatureBitset() : bitset() {}
FeatureBitset(const bitset<MAX_SUBTARGET_FEATURES>& B) : bitset(B) {}
FeatureBitset(std::initializer_list<unsigned> Init) : bitset() {
for (auto I = Init.begin() , E = Init.end(); I != E; ++I)
set(*I);
}
};
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
/// ///
/// SubtargetFeatureKV - Used to provide key value pairs for feature and /// SubtargetFeatureKV - Used to provide key value pairs for feature and
@ -52,8 +34,8 @@ public:
struct SubtargetFeatureKV { struct SubtargetFeatureKV {
const char *Key; // K-V key string const char *Key; // K-V key string
const char *Desc; // Help descriptor const char *Desc; // Help descriptor
FeatureBitset Value; // K-V integer value uint64_t Value; // K-V integer value
FeatureBitset Implies; // K-V bit mask uint64_t Implies; // K-V bit mask
// Compare routine for std::lower_bound // Compare routine for std::lower_bound
bool operator<(StringRef S) const { bool operator<(StringRef S) const {
@ -100,11 +82,11 @@ public:
/// ToggleFeature - Toggle a feature and returns the newly updated feature /// ToggleFeature - Toggle a feature and returns the newly updated feature
/// bits. /// bits.
FeatureBitset ToggleFeature(FeatureBitset Bits, StringRef String, uint64_t ToggleFeature(uint64_t Bits, StringRef String,
ArrayRef<SubtargetFeatureKV> FeatureTable); ArrayRef<SubtargetFeatureKV> FeatureTable);
/// Get feature bits of a CPU. /// Get feature bits of a CPU.
FeatureBitset getFeatureBits(StringRef CPU, uint64_t getFeatureBits(StringRef CPU,
ArrayRef<SubtargetFeatureKV> CPUTable, ArrayRef<SubtargetFeatureKV> CPUTable,
ArrayRef<SubtargetFeatureKV> FeatureTable); ArrayRef<SubtargetFeatureKV> FeatureTable);

View File

@ -63,19 +63,14 @@ MCSubtargetInfo::InitMCSubtargetInfo(StringRef TT, StringRef C, StringRef FS,
/// ToggleFeature - Toggle a feature and returns the re-computed feature /// ToggleFeature - Toggle a feature and returns the re-computed feature
/// bits. This version does not change the implied bits. /// bits. This version does not change the implied bits.
FeatureBitset MCSubtargetInfo::ToggleFeature(uint64_t FB) { uint64_t MCSubtargetInfo::ToggleFeature(uint64_t FB) {
FeatureBits.flip(FB);
return FeatureBits;
}
FeatureBitset MCSubtargetInfo::ToggleFeature(const FeatureBitset &FB) {
FeatureBits ^= FB; FeatureBits ^= FB;
return FeatureBits; return FeatureBits;
} }
/// ToggleFeature - Toggle a feature and returns the re-computed feature /// ToggleFeature - Toggle a feature and returns the re-computed feature
/// bits. This version will also change all implied bits. /// bits. This version will also change all implied bits.
FeatureBitset MCSubtargetInfo::ToggleFeature(StringRef FS) { uint64_t MCSubtargetInfo::ToggleFeature(StringRef FS) {
SubtargetFeatures Features; SubtargetFeatures Features;
FeatureBits = Features.ToggleFeature(FeatureBits, FS, ProcFeatures); FeatureBits = Features.ToggleFeature(FeatureBits, FS, ProcFeatures);
return FeatureBits; return FeatureBits;

View File

@ -151,12 +151,12 @@ std::string SubtargetFeatures::getString() const {
/// feature, set it. /// feature, set it.
/// ///
static static
void SetImpliedBits(FeatureBitset &Bits, const SubtargetFeatureKV *FeatureEntry, void SetImpliedBits(uint64_t &Bits, const SubtargetFeatureKV *FeatureEntry,
ArrayRef<SubtargetFeatureKV> FeatureTable) { ArrayRef<SubtargetFeatureKV> FeatureTable) {
for (auto &FE : FeatureTable) { for (auto &FE : FeatureTable) {
if (FeatureEntry->Value == FE.Value) continue; if (FeatureEntry->Value == FE.Value) continue;
if ((FeatureEntry->Implies & FE.Value).any()) { if (FeatureEntry->Implies & FE.Value) {
Bits |= FE.Value; Bits |= FE.Value;
SetImpliedBits(Bits, &FE, FeatureTable); SetImpliedBits(Bits, &FE, FeatureTable);
} }
@ -167,13 +167,12 @@ void SetImpliedBits(FeatureBitset &Bits, const SubtargetFeatureKV *FeatureEntry,
/// feature, clear it. /// feature, clear it.
/// ///
static static
void ClearImpliedBits(FeatureBitset &Bits, void ClearImpliedBits(uint64_t &Bits, const SubtargetFeatureKV *FeatureEntry,
const SubtargetFeatureKV *FeatureEntry,
ArrayRef<SubtargetFeatureKV> FeatureTable) { ArrayRef<SubtargetFeatureKV> FeatureTable) {
for (auto &FE : FeatureTable) { for (auto &FE : FeatureTable) {
if (FeatureEntry->Value == FE.Value) continue; if (FeatureEntry->Value == FE.Value) continue;
if ((FE.Implies & FeatureEntry->Value).any()) { if (FE.Implies & FeatureEntry->Value) {
Bits &= ~FE.Value; Bits &= ~FE.Value;
ClearImpliedBits(Bits, &FE, FeatureTable); ClearImpliedBits(Bits, &FE, FeatureTable);
} }
@ -182,8 +181,8 @@ void ClearImpliedBits(FeatureBitset &Bits,
/// ToggleFeature - Toggle a feature and returns the newly updated feature /// ToggleFeature - Toggle a feature and returns the newly updated feature
/// bits. /// bits.
FeatureBitset uint64_t
SubtargetFeatures::ToggleFeature(FeatureBitset Bits, StringRef Feature, SubtargetFeatures::ToggleFeature(uint64_t Bits, StringRef Feature,
ArrayRef<SubtargetFeatureKV> FeatureTable) { ArrayRef<SubtargetFeatureKV> FeatureTable) {
// Find feature in table. // Find feature in table.
@ -193,6 +192,7 @@ SubtargetFeatures::ToggleFeature(FeatureBitset Bits, StringRef Feature,
if (FeatureEntry) { if (FeatureEntry) {
if ((Bits & FeatureEntry->Value) == FeatureEntry->Value) { if ((Bits & FeatureEntry->Value) == FeatureEntry->Value) {
Bits &= ~FeatureEntry->Value; Bits &= ~FeatureEntry->Value;
// For each feature that implies this, clear it. // For each feature that implies this, clear it.
ClearImpliedBits(Bits, FeatureEntry, FeatureTable); ClearImpliedBits(Bits, FeatureEntry, FeatureTable);
} else { } else {
@ -213,13 +213,13 @@ SubtargetFeatures::ToggleFeature(FeatureBitset Bits, StringRef Feature,
/// getFeatureBits - Get feature bits a CPU. /// getFeatureBits - Get feature bits a CPU.
/// ///
FeatureBitset uint64_t
SubtargetFeatures::getFeatureBits(StringRef CPU, SubtargetFeatures::getFeatureBits(StringRef CPU,
ArrayRef<SubtargetFeatureKV> CPUTable, ArrayRef<SubtargetFeatureKV> CPUTable,
ArrayRef<SubtargetFeatureKV> FeatureTable) { ArrayRef<SubtargetFeatureKV> FeatureTable) {
if (CPUTable.empty() || FeatureTable.empty()) if (CPUTable.empty() || FeatureTable.empty())
return FeatureBitset(); return 0;
#ifndef NDEBUG #ifndef NDEBUG
for (size_t i = 1, e = CPUTable.size(); i != e; ++i) { for (size_t i = 1, e = CPUTable.size(); i != e; ++i) {
@ -231,8 +231,7 @@ SubtargetFeatures::getFeatureBits(StringRef CPU,
"CPU features table is not sorted"); "CPU features table is not sorted");
} }
#endif #endif
// Resulting bits uint64_t Bits = 0; // Resulting bits
FeatureBitset Bits;
// Check if help is needed // Check if help is needed
if (CPU == "help") if (CPU == "help")
@ -249,7 +248,7 @@ SubtargetFeatures::getFeatureBits(StringRef CPU,
// Set the feature implied by this CPU feature, if any. // Set the feature implied by this CPU feature, if any.
for (auto &FE : FeatureTable) { for (auto &FE : FeatureTable) {
if ((CPUEntry->Value & FE.Value).any()) if (CPUEntry->Value & FE.Value)
SetImpliedBits(Bits, &FE, FeatureTable); SetImpliedBits(Bits, &FE, FeatureTable);
} }
} else { } else {

File diff suppressed because it is too large Load Diff

View File

@ -22,7 +22,6 @@
#include "MCTargetDesc/AArch64MCTargetDesc.h" // For AArch64::X0 and friends. #include "MCTargetDesc/AArch64MCTargetDesc.h" // For AArch64::X0 and friends.
#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/StringSwitch.h" #include "llvm/ADT/StringSwitch.h"
#include "llvm/MC/SubtargetFeature.h"
#include "llvm/Support/ErrorHandling.h" #include "llvm/Support/ErrorHandling.h"
namespace llvm { namespace llvm {
@ -281,19 +280,15 @@ struct AArch64NamedImmMapper {
struct Mapping { struct Mapping {
const char *Name; const char *Name;
uint32_t Value; uint32_t Value;
FeatureBitset AvailableForFeatures; uint64_t AvailableForFeatures;
// empty AvailableForFeatures means "always-on" // empty AvailableForFeatures means "always-on"
bool isNameEqual(std::string Other, bool isNameEqual(std::string Other, uint64_t FeatureBits=~0ULL) const {
const FeatureBitset& FeatureBits) const { if (AvailableForFeatures && !(AvailableForFeatures & FeatureBits))
if (AvailableForFeatures.any() &&
(AvailableForFeatures & FeatureBits).none())
return false; return false;
return Name == Other; return Name == Other;
} }
bool isValueEqual(uint32_t Other, bool isValueEqual(uint32_t Other, uint64_t FeatureBits=~0ULL) const {
const FeatureBitset& FeatureBits) const { if (AvailableForFeatures && !(AvailableForFeatures & FeatureBits))
if (AvailableForFeatures.any() &&
(AvailableForFeatures & FeatureBits).none())
return false; return false;
return Value == Other; return Value == Other;
} }
@ -303,10 +298,8 @@ struct AArch64NamedImmMapper {
AArch64NamedImmMapper(const Mapping (&Mappings)[N], uint32_t TooBigImm) AArch64NamedImmMapper(const Mapping (&Mappings)[N], uint32_t TooBigImm)
: Mappings(&Mappings[0]), NumMappings(N), TooBigImm(TooBigImm) {} : Mappings(&Mappings[0]), NumMappings(N), TooBigImm(TooBigImm) {}
StringRef toString(uint32_t Value, const FeatureBitset& FeatureBits, StringRef toString(uint32_t Value, uint64_t FeatureBits, bool &Valid) const;
bool &Valid) const; uint32_t fromString(StringRef Name, uint64_t FeatureBits, bool &Valid) const;
uint32_t fromString(StringRef Name, const FeatureBitset& FeatureBits,
bool &Valid) const;
/// Many of the instructions allow an alternative assembly form consisting of /// Many of the instructions allow an alternative assembly form consisting of
/// a simple immediate. Currently the only valid forms are ranges [0, N) where /// a simple immediate. Currently the only valid forms are ranges [0, N) where
@ -1199,9 +1192,8 @@ namespace AArch64SysReg {
size_t NumInstMappings; size_t NumInstMappings;
SysRegMapper() { } SysRegMapper() { }
uint32_t fromString(StringRef Name, const FeatureBitset& FeatureBits, uint32_t fromString(StringRef Name, uint64_t FeatureBits, bool &Valid) const;
bool &Valid) const; std::string toString(uint32_t Bits, uint64_t FeatureBits) const;
std::string toString(uint32_t Bits, const FeatureBitset& FeatureBits) const;
}; };
struct MSRMapper : SysRegMapper { struct MSRMapper : SysRegMapper {

View File

@ -419,7 +419,7 @@ bool ARMAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
} }
static bool isThumb(const MCSubtargetInfo& STI) { static bool isThumb(const MCSubtargetInfo& STI) {
return STI.getFeatureBits()[ARM::ModeThumb]; return (STI.getFeatureBits() & ARM::ModeThumb) != 0;
} }
void ARMAsmPrinter::emitInlineAsmEnd(const MCSubtargetInfo &StartInfo, void ARMAsmPrinter::emitInlineAsmEnd(const MCSubtargetInfo &StartInfo,

View File

@ -4539,7 +4539,7 @@ breakPartialRegDependency(MachineBasicBlock::iterator MI,
} }
bool ARMBaseInstrInfo::hasNOP() const { bool ARMBaseInstrInfo::hasNOP() const {
return Subtarget.getFeatureBits()[ARM::HasV6KOps]; return (Subtarget.getFeatureBits() & ARM::HasV6KOps) != 0;
} }
bool ARMBaseInstrInfo::isSwiftFastImmShift(const MachineInstr *MI) const { bool ARMBaseInstrInfo::isSwiftFastImmShift(const MachineInstr *MI) const {

View File

@ -265,8 +265,8 @@ void ARMSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) {
} }
// NEON f32 ops are non-IEEE 754 compliant. Darwin is ok with it by default. // NEON f32 ops are non-IEEE 754 compliant. Darwin is ok with it by default.
const FeatureBitset &Bits = getFeatureBits(); uint64_t Bits = getFeatureBits();
if ((Bits[ARM::ProcA5] || Bits[ARM::ProcA8]) && // Where this matters if ((Bits & ARM::ProcA5 || Bits & ARM::ProcA8) && // Where this matters
(Options.UnsafeFPMath || isTargetDarwin())) (Options.UnsafeFPMath || isTargetDarwin()))
UseNEONForSinglePrecisionFP = true; UseNEONForSinglePrecisionFP = true;
} }

View File

@ -243,40 +243,40 @@ class ARMAsmParser : public MCTargetAsmParser {
bool isThumb() const { bool isThumb() const {
// FIXME: Can tablegen auto-generate this? // FIXME: Can tablegen auto-generate this?
return STI.getFeatureBits()[ARM::ModeThumb]; return (STI.getFeatureBits() & ARM::ModeThumb) != 0;
} }
bool isThumbOne() const { bool isThumbOne() const {
return isThumb() && !STI.getFeatureBits()[ARM::FeatureThumb2]; return isThumb() && (STI.getFeatureBits() & ARM::FeatureThumb2) == 0;
} }
bool isThumbTwo() const { bool isThumbTwo() const {
return isThumb() && STI.getFeatureBits()[ARM::FeatureThumb2]; return isThumb() && (STI.getFeatureBits() & ARM::FeatureThumb2);
} }
bool hasThumb() const { bool hasThumb() const {
return STI.getFeatureBits()[ARM::HasV4TOps]; return STI.getFeatureBits() & ARM::HasV4TOps;
} }
bool hasV6Ops() const { bool hasV6Ops() const {
return STI.getFeatureBits()[ARM::HasV6Ops]; return STI.getFeatureBits() & ARM::HasV6Ops;
} }
bool hasV6MOps() const { bool hasV6MOps() const {
return STI.getFeatureBits()[ARM::HasV6MOps]; return STI.getFeatureBits() & ARM::HasV6MOps;
} }
bool hasV7Ops() const { bool hasV7Ops() const {
return STI.getFeatureBits()[ARM::HasV7Ops]; return STI.getFeatureBits() & ARM::HasV7Ops;
} }
bool hasV8Ops() const { bool hasV8Ops() const {
return STI.getFeatureBits()[ARM::HasV8Ops]; return STI.getFeatureBits() & ARM::HasV8Ops;
} }
bool hasARM() const { bool hasARM() const {
return !STI.getFeatureBits()[ARM::FeatureNoARM]; return !(STI.getFeatureBits() & ARM::FeatureNoARM);
} }
bool hasThumb2DSP() const { bool hasThumb2DSP() const {
return STI.getFeatureBits()[ARM::FeatureDSPThumb2]; return STI.getFeatureBits() & ARM::FeatureDSPThumb2;
} }
bool hasD16() const { bool hasD16() const {
return STI.getFeatureBits()[ARM::FeatureD16]; return STI.getFeatureBits() & ARM::FeatureD16;
} }
bool hasV8_1aOps() const { bool hasV8_1aOps() const {
return STI.getFeatureBits()[ARM::HasV8_1aOps]; return STI.getFeatureBits() & ARM::HasV8_1aOps;
} }
void SwitchMode() { void SwitchMode() {
@ -284,7 +284,7 @@ class ARMAsmParser : public MCTargetAsmParser {
setAvailableFeatures(FB); setAvailableFeatures(FB);
} }
bool isMClass() const { bool isMClass() const {
return STI.getFeatureBits()[ARM::FeatureMClass]; return STI.getFeatureBits() & ARM::FeatureMClass;
} }
/// @name Auto-generated Match Functions /// @name Auto-generated Match Functions
@ -9187,53 +9187,52 @@ bool ARMAsmParser::parseDirectiveCPU(SMLoc L) {
// tools/clang/lib/Driver/Tools.cpp // tools/clang/lib/Driver/Tools.cpp
static const struct { static const struct {
const unsigned ID; const unsigned ID;
const FeatureBitset Enabled; const uint64_t Enabled;
const FeatureBitset Disabled; const uint64_t Disabled;
} FPUs[] = { } FPUs[] = {
{/* ID */ ARM::FK_VFP, {/* ID */ ARM::FK_VFP,
/* Enabled */ {ARM::FeatureVFP2}, /* Enabled */ ARM::FeatureVFP2,
/* Disabled */ {ARM::FeatureNEON}}, /* Disabled */ ARM::FeatureNEON},
{/* ID */ ARM::FK_VFPV2, {/* ID */ ARM::FK_VFPV2,
/* Enabled */ {ARM::FeatureVFP2}, /* Enabled */ ARM::FeatureVFP2,
/* Disabled */ {ARM::FeatureNEON}}, /* Disabled */ ARM::FeatureNEON},
{/* ID */ ARM::FK_VFPV3, {/* ID */ ARM::FK_VFPV3,
/* Enabled */ {ARM::FeatureVFP2, ARM::FeatureVFP3}, /* Enabled */ ARM::FeatureVFP2 | ARM::FeatureVFP3,
/* Disabled */ {ARM::FeatureNEON, ARM::FeatureD16}}, /* Disabled */ ARM::FeatureNEON | ARM::FeatureD16},
{/* ID */ ARM::FK_VFPV3_D16, {/* ID */ ARM::FK_VFPV3_D16,
/* Enabled */ {ARM::FeatureVFP2, ARM::FeatureVFP3, ARM::FeatureD16}, /* Enable */ ARM::FeatureVFP2 | ARM::FeatureVFP3 | ARM::FeatureD16,
/* Disabled */ {ARM::FeatureNEON}}, /* Disabled */ ARM::FeatureNEON},
{/* ID */ ARM::FK_VFPV4, {/* ID */ ARM::FK_VFPV4,
/* Enabled */ {ARM::FeatureVFP2, ARM::FeatureVFP3, ARM::FeatureVFP4}, /* Enabled */ ARM::FeatureVFP2 | ARM::FeatureVFP3 | ARM::FeatureVFP4,
/* Disabled */ {ARM::FeatureNEON, ARM::FeatureD16}}, /* Disabled */ ARM::FeatureNEON | ARM::FeatureD16},
{/* ID */ ARM::FK_VFPV4_D16, {/* ID */ ARM::FK_VFPV4_D16,
/* Enabled */ {ARM::FeatureVFP2, ARM::FeatureVFP3, ARM::FeatureVFP4, /* Enabled */ ARM::FeatureVFP2 | ARM::FeatureVFP3 | ARM::FeatureVFP4 |
ARM::FeatureD16}, ARM::FeatureD16,
/* Disabled */ {ARM::FeatureNEON}}, /* Disabled */ ARM::FeatureNEON},
{/* ID */ ARM::FK_FPV5_D16, {/* ID */ ARM::FK_FPV5_D16,
/* Enabled */ {ARM::FeatureVFP2, ARM::FeatureVFP3, ARM::FeatureVFP4, /* Enabled */ ARM::FeatureVFP2 | ARM::FeatureVFP3 | ARM::FeatureVFP4 |
ARM::FeatureFPARMv8, ARM::FeatureD16}, ARM::FeatureFPARMv8 | ARM::FeatureD16,
/* Disabled */ {ARM::FeatureNEON, ARM::FeatureCrypto}}, /* Disabled */ ARM::FeatureNEON | ARM::FeatureCrypto},
{/* ID */ ARM::FK_FP_ARMV8, {/* ID */ ARM::FK_FP_ARMV8,
/* Enabled */ {ARM::FeatureVFP2, ARM::FeatureVFP3, ARM::FeatureVFP4, /* Enabled */ ARM::FeatureVFP2 | ARM::FeatureVFP3 | ARM::FeatureVFP4 |
ARM::FeatureFPARMv8}, ARM::FeatureFPARMv8,
/* Disabled */ {ARM::FeatureNEON, ARM::FeatureCrypto, ARM::FeatureD16}}, /* Disabled */ ARM::FeatureNEON | ARM::FeatureCrypto | ARM::FeatureD16},
{/* ID */ ARM::FK_NEON, {/* ID */ ARM::FK_NEON,
/* Enabled */ {ARM::FeatureVFP2, ARM::FeatureVFP3, ARM::FeatureNEON}, /* Enabled */ ARM::FeatureVFP2 | ARM::FeatureVFP3 | ARM::FeatureNEON,
/* Disabled */ {ARM::FeatureD16}}, /* Disabled */ ARM::FeatureD16},
{/* ID */ ARM::FK_NEON_VFPV4, {/* ID */ ARM::FK_NEON_VFPV4,
/* Enabled */ {ARM::FeatureVFP2, ARM::FeatureVFP3, ARM::FeatureVFP4, /* Enabled */ ARM::FeatureVFP2 | ARM::FeatureVFP3 | ARM::FeatureVFP4 |
ARM::FeatureNEON}, ARM::FeatureNEON,
/* Disabled */ {ARM::FeatureD16}}, /* Disabled */ ARM::FeatureD16},
{/* ID */ ARM::FK_NEON_FP_ARMV8, {/* ID */ ARM::FK_NEON_FP_ARMV8,
/* Enabled */ {ARM::FeatureVFP2, ARM::FeatureVFP3, ARM::FeatureVFP4, /* Enabled */ ARM::FeatureVFP2 | ARM::FeatureVFP3 | ARM::FeatureVFP4 |
ARM::FeatureFPARMv8, ARM::FeatureNEON}, ARM::FeatureFPARMv8 | ARM::FeatureNEON,
/* Disabled */ {ARM::FeatureCrypto, ARM::FeatureD16}}, /* Disabled */ ARM::FeatureCrypto | ARM::FeatureD16},
{/* ID */ ARM::FK_CRYPTO_NEON_FP_ARMV8, {/* ID */ ARM::FK_CRYPTO_NEON_FP_ARMV8,
/* Enabled */ {ARM::FeatureVFP2, ARM::FeatureVFP3, ARM::FeatureVFP4, /* Enabled */ ARM::FeatureVFP2 | ARM::FeatureVFP3 | ARM::FeatureVFP4 |
ARM::FeatureFPARMv8, ARM::FeatureNEON, ARM::FeatureFPARMv8 | ARM::FeatureNEON | ARM::FeatureCrypto,
ARM::FeatureCrypto}, /* Disabled */ ARM::FeatureD16},
/* Disabled */ {ARM::FeatureD16}}, {ARM::FK_SOFTVFP, 0, 0},
{ARM::FK_SOFTVFP, {}, {}},
}; };
/// parseDirectiveFPU /// parseDirectiveFPU
@ -9255,8 +9254,8 @@ bool ARMAsmParser::parseDirectiveFPU(SMLoc L) {
// Need to toggle features that should be on but are off and that // Need to toggle features that should be on but are off and that
// should off but are on. // should off but are on.
FeatureBitset Toggle = (Entry.Enabled & ~STI.getFeatureBits()) | uint64_t Toggle = (Entry.Enabled & ~STI.getFeatureBits()) |
(Entry.Disabled & STI.getFeatureBits()); (Entry.Disabled & STI.getFeatureBits());
setAvailableFeatures(ComputeAvailableFeatures(STI.ToggleFeature(Toggle))); setAvailableFeatures(ComputeAvailableFeatures(STI.ToggleFeature(Toggle)));
break; break;
} }
@ -9985,30 +9984,30 @@ extern "C" void LLVMInitializeARMAsmParser() {
static const struct { static const struct {
const char *Name; const char *Name;
const unsigned ArchCheck; const unsigned ArchCheck;
const FeatureBitset Features; const uint64_t Features;
} Extensions[] = { } Extensions[] = {
{ "crc", Feature_HasV8, {ARM::FeatureCRC} }, { "crc", Feature_HasV8, ARM::FeatureCRC },
{ "crypto", Feature_HasV8, { "crypto", Feature_HasV8,
{ARM::FeatureCrypto, ARM::FeatureNEON, ARM::FeatureFPARMv8} }, ARM::FeatureCrypto | ARM::FeatureNEON | ARM::FeatureFPARMv8 },
{ "fp", Feature_HasV8, {ARM::FeatureFPARMv8} }, { "fp", Feature_HasV8, ARM::FeatureFPARMv8 },
{ "idiv", Feature_HasV7 | Feature_IsNotMClass, { "idiv", Feature_HasV7 | Feature_IsNotMClass,
{ARM::FeatureHWDiv, ARM::FeatureHWDivARM} }, ARM::FeatureHWDiv | ARM::FeatureHWDivARM },
// FIXME: iWMMXT not supported // FIXME: iWMMXT not supported
{ "iwmmxt", Feature_None, {} }, { "iwmmxt", Feature_None, 0 },
// FIXME: iWMMXT2 not supported // FIXME: iWMMXT2 not supported
{ "iwmmxt2", Feature_None, {} }, { "iwmmxt2", Feature_None, 0 },
// FIXME: Maverick not supported // FIXME: Maverick not supported
{ "maverick", Feature_None, {} }, { "maverick", Feature_None, 0 },
{ "mp", Feature_HasV7 | Feature_IsNotMClass, {ARM::FeatureMP} }, { "mp", Feature_HasV7 | Feature_IsNotMClass, ARM::FeatureMP },
// FIXME: ARMv6-m OS Extensions feature not checked // FIXME: ARMv6-m OS Extensions feature not checked
{ "os", Feature_None, {} }, { "os", Feature_None, 0 },
// FIXME: Also available in ARMv6-K // FIXME: Also available in ARMv6-K
{ "sec", Feature_HasV7, {ARM::FeatureTrustZone} }, { "sec", Feature_HasV7, ARM::FeatureTrustZone },
{ "simd", Feature_HasV8, {ARM::FeatureNEON, ARM::FeatureFPARMv8} }, { "simd", Feature_HasV8, ARM::FeatureNEON | ARM::FeatureFPARMv8 },
// FIXME: Only available in A-class, isel not predicated // FIXME: Only available in A-class, isel not predicated
{ "virt", Feature_HasV7, {ARM::FeatureVirtualization} }, { "virt", Feature_HasV7, ARM::FeatureVirtualization },
// FIXME: xscale not supported // FIXME: xscale not supported
{ "xscale", Feature_None, {} }, { "xscale", Feature_None, 0 },
}; };
/// parseDirectiveArchExtension /// parseDirectiveArchExtension
@ -10036,7 +10035,7 @@ bool ARMAsmParser::parseDirectiveArchExtension(SMLoc L) {
if (Extension.Name != Name) if (Extension.Name != Name)
continue; continue;
if (Extension.Features.none()) if (!Extension.Features)
report_fatal_error("unsupported architectural extension: " + Name); report_fatal_error("unsupported architectural extension: " + Name);
if ((getAvailableFeatures() & Extension.ArchCheck) != Extension.ArchCheck) { if ((getAvailableFeatures() & Extension.ArchCheck) != Extension.ArchCheck) {
@ -10045,10 +10044,9 @@ bool ARMAsmParser::parseDirectiveArchExtension(SMLoc L) {
return false; return false;
} }
FeatureBitset ToggleFeatures = EnableFeature uint64_t ToggleFeatures = EnableFeature
? (~STI.getFeatureBits() & Extension.Features) ? (~STI.getFeatureBits() & Extension.Features)
: ( STI.getFeatureBits() & Extension.Features); : ( STI.getFeatureBits() & Extension.Features);
uint64_t Features = uint64_t Features =
ComputeAvailableFeatures(STI.ToggleFeature(ToggleFeatures)); ComputeAvailableFeatures(STI.ToggleFeature(ToggleFeatures));
setAvailableFeatures(Features); setAvailableFeatures(Features);

View File

@ -435,7 +435,7 @@ DecodeStatus ARMDisassembler::getInstruction(MCInst &MI, uint64_t &Size,
raw_ostream &CS) const { raw_ostream &CS) const {
CommentStream = &CS; CommentStream = &CS;
assert(!STI.getFeatureBits()[ARM::ModeThumb] && assert(!(STI.getFeatureBits() & ARM::ModeThumb) &&
"Asked to disassemble an ARM instruction but Subtarget is in Thumb " "Asked to disassemble an ARM instruction but Subtarget is in Thumb "
"mode!"); "mode!");
@ -700,7 +700,7 @@ DecodeStatus ThumbDisassembler::getInstruction(MCInst &MI, uint64_t &Size,
raw_ostream &CS) const { raw_ostream &CS) const {
CommentStream = &CS; CommentStream = &CS;
assert(STI.getFeatureBits()[ARM::ModeThumb] && assert((STI.getFeatureBits() & ARM::ModeThumb) &&
"Asked to disassemble in Thumb mode but Subtarget is in ARM mode!"); "Asked to disassemble in Thumb mode but Subtarget is in ARM mode!");
// We want to read exactly 2 bytes of data. // We want to read exactly 2 bytes of data.
@ -1026,10 +1026,9 @@ static const uint16_t DPRDecoderTable[] = {
static DecodeStatus DecodeDPRRegisterClass(MCInst &Inst, unsigned RegNo, static DecodeStatus DecodeDPRRegisterClass(MCInst &Inst, unsigned RegNo,
uint64_t Address, const void *Decoder) { uint64_t Address, const void *Decoder) {
const FeatureBitset &featureBits = uint64_t featureBits = ((const MCDisassembler*)Decoder)->getSubtargetInfo()
((const MCDisassembler*)Decoder)->getSubtargetInfo().getFeatureBits(); .getFeatureBits();
bool hasD16 = featureBits & ARM::FeatureD16;
bool hasD16 = featureBits[ARM::FeatureD16];
if (RegNo > 31 || (hasD16 && RegNo > 15)) if (RegNo > 31 || (hasD16 && RegNo > 15))
return MCDisassembler::Fail; return MCDisassembler::Fail;
@ -1374,9 +1373,9 @@ static DecodeStatus DecodeCopMemInstruction(MCInst &Inst, unsigned Insn,
break; break;
} }
const FeatureBitset &featureBits = uint64_t featureBits = ((const MCDisassembler*)Decoder)->getSubtargetInfo()
((const MCDisassembler*)Decoder)->getSubtargetInfo().getFeatureBits(); .getFeatureBits();
if (featureBits[ARM::HasV8Ops] && (coproc != 14)) if ((featureBits & ARM::HasV8Ops) && (coproc != 14))
return MCDisassembler::Fail; return MCDisassembler::Fail;
Inst.addOperand(MCOperand::CreateImm(coproc)); Inst.addOperand(MCOperand::CreateImm(coproc));
@ -2152,10 +2151,9 @@ static DecodeStatus DecodeSETPANInstruction(MCInst &Inst, unsigned Insn,
unsigned Imm = fieldFromInstruction(Insn, 9, 1); unsigned Imm = fieldFromInstruction(Insn, 9, 1);
const MCDisassembler *Dis = static_cast<const MCDisassembler*>(Decoder); const MCDisassembler *Dis = static_cast<const MCDisassembler*>(Decoder);
const FeatureBitset &FeatureBits = Dis->getSubtargetInfo().getFeatureBits(); uint64_t FeatureBits = Dis->getSubtargetInfo().getFeatureBits();
if ((FeatureBits & ARM::HasV8_1aOps) == 0 ||
if (!FeatureBits[ARM::HasV8_1aOps] || (FeatureBits & ARM::HasV8Ops) == 0 )
!FeatureBits[ARM::HasV8Ops])
return MCDisassembler::Fail; return MCDisassembler::Fail;
// Decoder can be called from DecodeTST, which does not check the full // Decoder can be called from DecodeTST, which does not check the full
@ -3321,11 +3319,10 @@ static DecodeStatus DecodeT2LoadShift(MCInst &Inst, unsigned Insn,
unsigned Rt = fieldFromInstruction(Insn, 12, 4); unsigned Rt = fieldFromInstruction(Insn, 12, 4);
unsigned Rn = fieldFromInstruction(Insn, 16, 4); unsigned Rn = fieldFromInstruction(Insn, 16, 4);
const FeatureBitset &featureBits = uint64_t featureBits = ((const MCDisassembler*)Decoder)->getSubtargetInfo()
((const MCDisassembler*)Decoder)->getSubtargetInfo().getFeatureBits(); .getFeatureBits();
bool hasMP = featureBits & ARM::FeatureMP;
bool hasMP = featureBits[ARM::FeatureMP]; bool hasV7Ops = featureBits & ARM::HasV7Ops;
bool hasV7Ops = featureBits[ARM::HasV7Ops];
if (Rn == 15) { if (Rn == 15) {
switch (Inst.getOpcode()) { switch (Inst.getOpcode()) {
@ -3408,11 +3405,10 @@ static DecodeStatus DecodeT2LoadImm8(MCInst &Inst, unsigned Insn,
imm |= (Rn << 9); imm |= (Rn << 9);
unsigned add = fieldFromInstruction(Insn, 9, 1); unsigned add = fieldFromInstruction(Insn, 9, 1);
const FeatureBitset &featureBits = uint64_t featureBits = ((const MCDisassembler*)Decoder)->getSubtargetInfo()
((const MCDisassembler*)Decoder)->getSubtargetInfo().getFeatureBits(); .getFeatureBits();
bool hasMP = featureBits & ARM::FeatureMP;
bool hasMP = featureBits[ARM::FeatureMP]; bool hasV7Ops = featureBits & ARM::HasV7Ops;
bool hasV7Ops = featureBits[ARM::HasV7Ops];
if (Rn == 15) { if (Rn == 15) {
switch (Inst.getOpcode()) { switch (Inst.getOpcode()) {
@ -3489,11 +3485,10 @@ static DecodeStatus DecodeT2LoadImm12(MCInst &Inst, unsigned Insn,
unsigned imm = fieldFromInstruction(Insn, 0, 12); unsigned imm = fieldFromInstruction(Insn, 0, 12);
imm |= (Rn << 13); imm |= (Rn << 13);
const FeatureBitset &featureBits = uint64_t featureBits = ((const MCDisassembler*)Decoder)->getSubtargetInfo()
((const MCDisassembler*)Decoder)->getSubtargetInfo().getFeatureBits(); .getFeatureBits();
bool hasMP = (featureBits & ARM::FeatureMP);
bool hasMP = featureBits[ARM::FeatureMP]; bool hasV7Ops = (featureBits & ARM::HasV7Ops);
bool hasV7Ops = featureBits[ARM::HasV7Ops];
if (Rn == 15) { if (Rn == 15) {
switch (Inst.getOpcode()) { switch (Inst.getOpcode()) {
@ -3607,10 +3602,9 @@ static DecodeStatus DecodeT2LoadLabel(MCInst &Inst, unsigned Insn,
unsigned U = fieldFromInstruction(Insn, 23, 1); unsigned U = fieldFromInstruction(Insn, 23, 1);
int imm = fieldFromInstruction(Insn, 0, 12); int imm = fieldFromInstruction(Insn, 0, 12);
const FeatureBitset &featureBits = uint64_t featureBits = ((const MCDisassembler*)Decoder)->getSubtargetInfo()
((const MCDisassembler*)Decoder)->getSubtargetInfo().getFeatureBits(); .getFeatureBits();
bool hasV7Ops = (featureBits & ARM::HasV7Ops);
bool hasV7Ops = featureBits[ARM::HasV7Ops];
if (Rt == 15) { if (Rt == 15) {
switch (Inst.getOpcode()) { switch (Inst.getOpcode()) {
@ -3931,10 +3925,9 @@ static DecodeStatus DecodeCoprocessor(MCInst &Inst, unsigned Val,
if (Val == 0xA || Val == 0xB) if (Val == 0xA || Val == 0xB)
return MCDisassembler::Fail; return MCDisassembler::Fail;
const FeatureBitset &featureBits = uint64_t featureBits = ((const MCDisassembler*)Decoder)->getSubtargetInfo()
((const MCDisassembler*)Decoder)->getSubtargetInfo().getFeatureBits(); .getFeatureBits();
if ((featureBits & ARM::HasV8Ops) && !(Val == 14 || Val == 15))
if (featureBits[ARM::HasV8Ops] && !(Val == 14 || Val == 15))
return MCDisassembler::Fail; return MCDisassembler::Fail;
Inst.addOperand(MCOperand::CreateImm(Val)); Inst.addOperand(MCOperand::CreateImm(Val));
@ -4084,10 +4077,9 @@ static DecodeStatus DecodeInstSyncBarrierOption(MCInst &Inst, unsigned Val,
static DecodeStatus DecodeMSRMask(MCInst &Inst, unsigned Val, static DecodeStatus DecodeMSRMask(MCInst &Inst, unsigned Val,
uint64_t Address, const void *Decoder) { uint64_t Address, const void *Decoder) {
DecodeStatus S = MCDisassembler::Success; DecodeStatus S = MCDisassembler::Success;
const FeatureBitset &FeatureBits = uint64_t FeatureBits = ((const MCDisassembler*)Decoder)->getSubtargetInfo()
((const MCDisassembler*)Decoder)->getSubtargetInfo().getFeatureBits(); .getFeatureBits();
if (FeatureBits & ARM::FeatureMClass) {
if (FeatureBits[ARM::FeatureMClass]) {
unsigned ValLow = Val & 0xff; unsigned ValLow = Val & 0xff;
// Validate the SYSm value first. // Validate the SYSm value first.
@ -4107,7 +4099,7 @@ static DecodeStatus DecodeMSRMask(MCInst &Inst, unsigned Val,
case 17: // basepri case 17: // basepri
case 18: // basepri_max case 18: // basepri_max
case 19: // faultmask case 19: // faultmask
if (!(FeatureBits[ARM::HasV7Ops])) if (!(FeatureBits & ARM::HasV7Ops))
// Values basepri, basepri_max and faultmask are only valid for v7m. // Values basepri, basepri_max and faultmask are only valid for v7m.
return MCDisassembler::Fail; return MCDisassembler::Fail;
break; break;
@ -4117,7 +4109,7 @@ static DecodeStatus DecodeMSRMask(MCInst &Inst, unsigned Val,
if (Inst.getOpcode() == ARM::t2MSR_M) { if (Inst.getOpcode() == ARM::t2MSR_M) {
unsigned Mask = fieldFromInstruction(Val, 10, 2); unsigned Mask = fieldFromInstruction(Val, 10, 2);
if (!(FeatureBits[ARM::HasV7Ops])) { if (!(FeatureBits & ARM::HasV7Ops)) {
// The ARMv6-M MSR bits {11-10} can be only 0b10, other values are // The ARMv6-M MSR bits {11-10} can be only 0b10, other values are
// unpredictable. // unpredictable.
if (Mask != 2) if (Mask != 2)
@ -4131,7 +4123,7 @@ static DecodeStatus DecodeMSRMask(MCInst &Inst, unsigned Val,
// indicates the move for the GE{3:0} bits, the mask{0} bit can be set // indicates the move for the GE{3:0} bits, the mask{0} bit can be set
// only if the processor includes the DSP extension. // only if the processor includes the DSP extension.
if (Mask == 0 || (Mask != 2 && ValLow > 3) || if (Mask == 0 || (Mask != 2 && ValLow > 3) ||
(!(FeatureBits[ARM::FeatureDSPThumb2]) && (Mask & 1))) (!(FeatureBits & ARM::FeatureDSPThumb2) && (Mask & 1)))
S = MCDisassembler::SoftFail; S = MCDisassembler::SoftFail;
} }
} }

View File

@ -93,7 +93,7 @@ void ARMInstPrinter::printInst(const MCInst *MI, raw_ostream &O,
O << "\tsev"; O << "\tsev";
break; break;
case 5: case 5:
if (STI.getFeatureBits()[ARM::HasV8Ops]) { if ((STI.getFeatureBits() & ARM::HasV8Ops)) {
O << "\tsevl"; O << "\tsevl";
break; break;
} // Fallthrough for non-v8 } // Fallthrough for non-v8
@ -302,7 +302,7 @@ void ARMInstPrinter::printInst(const MCInst *MI, raw_ostream &O,
case ARM::t2SUBS_PC_LR: { case ARM::t2SUBS_PC_LR: {
if (MI->getNumOperands() == 3 && MI->getOperand(0).isImm() && if (MI->getNumOperands() == 3 && MI->getOperand(0).isImm() &&
MI->getOperand(0).getImm() == 0 && MI->getOperand(0).getImm() == 0 &&
STI.getFeatureBits()[ARM::FeatureVirtualization]) { (STI.getFeatureBits() & ARM::FeatureVirtualization)) {
O << "\teret"; O << "\teret";
printPredicateOperand(MI, 1, STI, O); printPredicateOperand(MI, 1, STI, O);
printAnnotation(O, Annot); printAnnotation(O, Annot);
@ -695,7 +695,7 @@ void ARMInstPrinter::printMemBOption(const MCInst *MI, unsigned OpNum,
const MCSubtargetInfo &STI, const MCSubtargetInfo &STI,
raw_ostream &O) { raw_ostream &O) {
unsigned val = MI->getOperand(OpNum).getImm(); unsigned val = MI->getOperand(OpNum).getImm();
O << ARM_MB::MemBOptToString(val, STI.getFeatureBits()[ARM::HasV8Ops]); O << ARM_MB::MemBOptToString(val, (STI.getFeatureBits() & ARM::HasV8Ops));
} }
void ARMInstPrinter::printInstSyncBOption(const MCInst *MI, unsigned OpNum, void ARMInstPrinter::printInstSyncBOption(const MCInst *MI, unsigned OpNum,
@ -795,14 +795,14 @@ void ARMInstPrinter::printMSRMaskOperand(const MCInst *MI, unsigned OpNum,
const MCOperand &Op = MI->getOperand(OpNum); const MCOperand &Op = MI->getOperand(OpNum);
unsigned SpecRegRBit = Op.getImm() >> 4; unsigned SpecRegRBit = Op.getImm() >> 4;
unsigned Mask = Op.getImm() & 0xf; unsigned Mask = Op.getImm() & 0xf;
const FeatureBitset &FeatureBits = STI.getFeatureBits(); uint64_t FeatureBits = STI.getFeatureBits();
if (FeatureBits[ARM::FeatureMClass]) { if (FeatureBits & ARM::FeatureMClass) {
unsigned SYSm = Op.getImm(); unsigned SYSm = Op.getImm();
unsigned Opcode = MI->getOpcode(); unsigned Opcode = MI->getOpcode();
// For writes, handle extended mask bits if the DSP extension is present. // For writes, handle extended mask bits if the DSP extension is present.
if (Opcode == ARM::t2MSR_M && FeatureBits[ARM::FeatureDSPThumb2]) { if (Opcode == ARM::t2MSR_M && (FeatureBits & ARM::FeatureDSPThumb2)) {
switch (SYSm) { switch (SYSm) {
case 0x400: case 0x400:
O << "apsr_g"; O << "apsr_g";
@ -834,7 +834,7 @@ void ARMInstPrinter::printMSRMaskOperand(const MCInst *MI, unsigned OpNum,
// Handle the basic 8-bit mask. // Handle the basic 8-bit mask.
SYSm &= 0xff; SYSm &= 0xff;
if (Opcode == ARM::t2MSR_M && FeatureBits [ARM::HasV7Ops]) { if (Opcode == ARM::t2MSR_M && (FeatureBits & ARM::HasV7Ops)) {
// ARMv7-M deprecates using MSR APSR without a _<bits> qualifier as an // ARMv7-M deprecates using MSR APSR without a _<bits> qualifier as an
// alias for MSR APSR_nzcvq. // alias for MSR APSR_nzcvq.
switch (SYSm) { switch (SYSm) {

View File

@ -154,7 +154,7 @@ void ARMAsmBackend::handleAssemblerFlag(MCAssemblerFlag Flag) {
} // end anonymous namespace } // end anonymous namespace
unsigned ARMAsmBackend::getRelaxedOpcode(unsigned Op) const { unsigned ARMAsmBackend::getRelaxedOpcode(unsigned Op) const {
bool HasThumb2 = STI->getFeatureBits()[ARM::FeatureThumb2]; bool HasThumb2 = STI->getFeatureBits() & ARM::FeatureThumb2;
switch (Op) { switch (Op) {
default: default:

View File

@ -33,7 +33,7 @@ public:
return ARM::NumTargetFixupKinds; return ARM::NumTargetFixupKinds;
} }
bool hasNOP() const { return STI->getFeatureBits()[ARM::HasV6T2Ops]; } bool hasNOP() const { return (STI->getFeatureBits() & ARM::HasV6T2Ops) != 0; }
const MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const override; const MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const override;

View File

@ -51,10 +51,10 @@ public:
~ARMMCCodeEmitter() override {} ~ARMMCCodeEmitter() override {}
bool isThumb(const MCSubtargetInfo &STI) const { bool isThumb(const MCSubtargetInfo &STI) const {
return STI.getFeatureBits()[ARM::ModeThumb]; return (STI.getFeatureBits() & ARM::ModeThumb) != 0;
} }
bool isThumb2(const MCSubtargetInfo &STI) const { bool isThumb2(const MCSubtargetInfo &STI) const {
return isThumb(STI) && STI.getFeatureBits()[ARM::FeatureThumb2]; return isThumb(STI) && (STI.getFeatureBits() & ARM::FeatureThumb2) != 0;
} }
bool isTargetMachO(const MCSubtargetInfo &STI) const { bool isTargetMachO(const MCSubtargetInfo &STI) const {
Triple TT(STI.getTargetTriple()); Triple TT(STI.getTargetTriple());

View File

@ -33,7 +33,7 @@ using namespace llvm;
static bool getMCRDeprecationInfo(MCInst &MI, MCSubtargetInfo &STI, static bool getMCRDeprecationInfo(MCInst &MI, MCSubtargetInfo &STI,
std::string &Info) { std::string &Info) {
if (STI.getFeatureBits()[llvm::ARM::HasV7Ops] && if (STI.getFeatureBits() & llvm::ARM::HasV7Ops &&
(MI.getOperand(0).isImm() && MI.getOperand(0).getImm() == 15) && (MI.getOperand(0).isImm() && MI.getOperand(0).getImm() == 15) &&
(MI.getOperand(1).isImm() && MI.getOperand(1).getImm() == 0) && (MI.getOperand(1).isImm() && MI.getOperand(1).getImm() == 0) &&
// Checks for the deprecated CP15ISB encoding: // Checks for the deprecated CP15ISB encoding:
@ -65,7 +65,7 @@ static bool getMCRDeprecationInfo(MCInst &MI, MCSubtargetInfo &STI,
static bool getITDeprecationInfo(MCInst &MI, MCSubtargetInfo &STI, static bool getITDeprecationInfo(MCInst &MI, MCSubtargetInfo &STI,
std::string &Info) { std::string &Info) {
if (STI.getFeatureBits()[llvm::ARM::HasV8Ops] && MI.getOperand(1).isImm() && if (STI.getFeatureBits() & llvm::ARM::HasV8Ops && MI.getOperand(1).isImm() &&
MI.getOperand(1).getImm() != 8) { MI.getOperand(1).getImm() != 8) {
Info = "applying IT instruction to more than one subsequent instruction is " Info = "applying IT instruction to more than one subsequent instruction is "
"deprecated"; "deprecated";
@ -77,7 +77,7 @@ static bool getITDeprecationInfo(MCInst &MI, MCSubtargetInfo &STI,
static bool getARMStoreDeprecationInfo(MCInst &MI, MCSubtargetInfo &STI, static bool getARMStoreDeprecationInfo(MCInst &MI, MCSubtargetInfo &STI,
std::string &Info) { std::string &Info) {
assert(!STI.getFeatureBits()[llvm::ARM::ModeThumb] && assert((~STI.getFeatureBits() & llvm::ARM::ModeThumb) &&
"cannot predicate thumb instructions"); "cannot predicate thumb instructions");
assert(MI.getNumOperands() >= 4 && "expected >= 4 arguments"); assert(MI.getNumOperands() >= 4 && "expected >= 4 arguments");
@ -94,7 +94,7 @@ static bool getARMStoreDeprecationInfo(MCInst &MI, MCSubtargetInfo &STI,
static bool getARMLoadDeprecationInfo(MCInst &MI, MCSubtargetInfo &STI, static bool getARMLoadDeprecationInfo(MCInst &MI, MCSubtargetInfo &STI,
std::string &Info) { std::string &Info) {
assert(!STI.getFeatureBits()[llvm::ARM::ModeThumb] && assert((~STI.getFeatureBits() & llvm::ARM::ModeThumb) &&
"cannot predicate thumb instructions"); "cannot predicate thumb instructions");
assert(MI.getNumOperands() >= 4 && "expected >= 4 arguments"); assert(MI.getNumOperands() >= 4 && "expected >= 4 arguments");

View File

@ -78,7 +78,15 @@ public:
// The full table can be found in MipsGenSubtargetInfo.inc (MipsFeatureKV[]). // The full table can be found in MipsGenSubtargetInfo.inc (MipsFeatureKV[]).
// The reason we need this mask is explained in the selectArch function. // The reason we need this mask is explained in the selectArch function.
// FIXME: Ideally we would like TableGen to generate this information. // FIXME: Ideally we would like TableGen to generate this information.
static const FeatureBitset AllArchRelatedMask; static const uint64_t AllArchRelatedMask =
Mips::FeatureMips1 | Mips::FeatureMips2 | Mips::FeatureMips3 |
Mips::FeatureMips3_32 | Mips::FeatureMips3_32r2 | Mips::FeatureMips4 |
Mips::FeatureMips4_32 | Mips::FeatureMips4_32r2 | Mips::FeatureMips5 |
Mips::FeatureMips5_32r2 | Mips::FeatureMips32 | Mips::FeatureMips32r2 |
Mips::FeatureMips32r3 | Mips::FeatureMips32r5 | Mips::FeatureMips32r6 |
Mips::FeatureMips64 | Mips::FeatureMips64r2 | Mips::FeatureMips64r3 |
Mips::FeatureMips64r5 | Mips::FeatureMips64r6 | Mips::FeatureCnMips |
Mips::FeatureFP64Bit | Mips::FeatureGP64Bit | Mips::FeatureNaN2008;
private: private:
unsigned ATReg; unsigned ATReg;
@ -88,17 +96,6 @@ private:
}; };
} }
const FeatureBitset MipsAssemblerOptions::AllArchRelatedMask = {
Mips::FeatureMips1, Mips::FeatureMips2, Mips::FeatureMips3,
Mips::FeatureMips3_32, Mips::FeatureMips3_32r2, Mips::FeatureMips4,
Mips::FeatureMips4_32, Mips::FeatureMips4_32r2, Mips::FeatureMips5,
Mips::FeatureMips5_32r2, Mips::FeatureMips32, Mips::FeatureMips32r2,
Mips::FeatureMips32r3, Mips::FeatureMips32r5, Mips::FeatureMips32r6,
Mips::FeatureMips64, Mips::FeatureMips64r2, Mips::FeatureMips64r3,
Mips::FeatureMips64r5, Mips::FeatureMips64r6, Mips::FeatureCnMips,
Mips::FeatureFP64Bit, Mips::FeatureGP64Bit, Mips::FeatureNaN2008
};
namespace { namespace {
class MipsAsmParser : public MCTargetAsmParser { class MipsAsmParser : public MCTargetAsmParser {
MipsTargetStreamer &getTargetStreamer() { MipsTargetStreamer &getTargetStreamer() {
@ -312,7 +309,7 @@ class MipsAsmParser : public MCTargetAsmParser {
// FeatureMipsGP64 | FeatureMips1) // FeatureMipsGP64 | FeatureMips1)
// Clearing Mips3 is equivalent to clear (FeatureMips3 | FeatureMips4). // Clearing Mips3 is equivalent to clear (FeatureMips3 | FeatureMips4).
void selectArch(StringRef ArchFeature) { void selectArch(StringRef ArchFeature) {
FeatureBitset FeatureBits = STI.getFeatureBits(); uint64_t FeatureBits = STI.getFeatureBits();
FeatureBits &= ~MipsAssemblerOptions::AllArchRelatedMask; FeatureBits &= ~MipsAssemblerOptions::AllArchRelatedMask;
STI.setFeatureBits(FeatureBits); STI.setFeatureBits(FeatureBits);
setAvailableFeatures( setAvailableFeatures(
@ -321,7 +318,7 @@ class MipsAsmParser : public MCTargetAsmParser {
} }
void setFeatureBits(uint64_t Feature, StringRef FeatureString) { void setFeatureBits(uint64_t Feature, StringRef FeatureString) {
if (!(STI.getFeatureBits()[Feature])) { if (!(STI.getFeatureBits() & Feature)) {
setAvailableFeatures( setAvailableFeatures(
ComputeAvailableFeatures(STI.ToggleFeature(FeatureString))); ComputeAvailableFeatures(STI.ToggleFeature(FeatureString)));
} }
@ -329,7 +326,7 @@ class MipsAsmParser : public MCTargetAsmParser {
} }
void clearFeatureBits(uint64_t Feature, StringRef FeatureString) { void clearFeatureBits(uint64_t Feature, StringRef FeatureString) {
if (STI.getFeatureBits()[Feature]) { if (STI.getFeatureBits() & Feature) {
setAvailableFeatures( setAvailableFeatures(
ComputeAvailableFeatures(STI.ToggleFeature(FeatureString))); ComputeAvailableFeatures(STI.ToggleFeature(FeatureString)));
} }
@ -376,70 +373,69 @@ public:
/// True if all of $fcc0 - $fcc7 exist for the current ISA. /// True if all of $fcc0 - $fcc7 exist for the current ISA.
bool hasEightFccRegisters() const { return hasMips4() || hasMips32(); } bool hasEightFccRegisters() const { return hasMips4() || hasMips32(); }
bool isGP64bit() const { return STI.getFeatureBits()[Mips::FeatureGP64Bit]; } bool isGP64bit() const { return STI.getFeatureBits() & Mips::FeatureGP64Bit; }
bool isFP64bit() const { return STI.getFeatureBits()[Mips::FeatureFP64Bit]; } bool isFP64bit() const { return STI.getFeatureBits() & Mips::FeatureFP64Bit; }
const MipsABIInfo &getABI() const { return ABI; } const MipsABIInfo &getABI() const { return ABI; }
bool isABI_N32() const { return ABI.IsN32(); } bool isABI_N32() const { return ABI.IsN32(); }
bool isABI_N64() const { return ABI.IsN64(); } bool isABI_N64() const { return ABI.IsN64(); }
bool isABI_O32() const { return ABI.IsO32(); } bool isABI_O32() const { return ABI.IsO32(); }
bool isABI_FPXX() const { return STI.getFeatureBits()[Mips::FeatureFPXX]; } bool isABI_FPXX() const { return STI.getFeatureBits() & Mips::FeatureFPXX; }
bool useOddSPReg() const { bool useOddSPReg() const {
return !(STI.getFeatureBits()[Mips::FeatureNoOddSPReg]); return !(STI.getFeatureBits() & Mips::FeatureNoOddSPReg);
} }
bool inMicroMipsMode() const { bool inMicroMipsMode() const {
return STI.getFeatureBits()[Mips::FeatureMicroMips]; return STI.getFeatureBits() & Mips::FeatureMicroMips;
} }
bool hasMips1() const { return STI.getFeatureBits()[Mips::FeatureMips1]; } bool hasMips1() const { return STI.getFeatureBits() & Mips::FeatureMips1; }
bool hasMips2() const { return STI.getFeatureBits()[Mips::FeatureMips2]; } bool hasMips2() const { return STI.getFeatureBits() & Mips::FeatureMips2; }
bool hasMips3() const { return STI.getFeatureBits()[Mips::FeatureMips3]; } bool hasMips3() const { return STI.getFeatureBits() & Mips::FeatureMips3; }
bool hasMips4() const { return STI.getFeatureBits()[Mips::FeatureMips4]; } bool hasMips4() const { return STI.getFeatureBits() & Mips::FeatureMips4; }
bool hasMips5() const { return STI.getFeatureBits()[Mips::FeatureMips5]; } bool hasMips5() const { return STI.getFeatureBits() & Mips::FeatureMips5; }
bool hasMips32() const { bool hasMips32() const {
return STI.getFeatureBits()[Mips::FeatureMips32]; return (STI.getFeatureBits() & Mips::FeatureMips32);
} }
bool hasMips64() const { bool hasMips64() const {
return STI.getFeatureBits()[Mips::FeatureMips64]; return (STI.getFeatureBits() & Mips::FeatureMips64);
} }
bool hasMips32r2() const { bool hasMips32r2() const {
return STI.getFeatureBits()[Mips::FeatureMips32r2]; return (STI.getFeatureBits() & Mips::FeatureMips32r2);
} }
bool hasMips64r2() const { bool hasMips64r2() const {
return STI.getFeatureBits()[Mips::FeatureMips64r2]; return (STI.getFeatureBits() & Mips::FeatureMips64r2);
} }
bool hasMips32r3() const { bool hasMips32r3() const {
return (STI.getFeatureBits()[Mips::FeatureMips32r3]); return (STI.getFeatureBits() & Mips::FeatureMips32r3);
} }
bool hasMips64r3() const { bool hasMips64r3() const {
return (STI.getFeatureBits()[Mips::FeatureMips64r3]); return (STI.getFeatureBits() & Mips::FeatureMips64r3);
} }
bool hasMips32r5() const { bool hasMips32r5() const {
return (STI.getFeatureBits()[Mips::FeatureMips32r5]); return (STI.getFeatureBits() & Mips::FeatureMips32r5);
} }
bool hasMips64r5() const { bool hasMips64r5() const {
return (STI.getFeatureBits()[Mips::FeatureMips64r5]); return (STI.getFeatureBits() & Mips::FeatureMips64r5);
} }
bool hasMips32r6() const { bool hasMips32r6() const {
return STI.getFeatureBits()[Mips::FeatureMips32r6]; return (STI.getFeatureBits() & Mips::FeatureMips32r6);
} }
bool hasMips64r6() const { bool hasMips64r6() const {
return STI.getFeatureBits()[Mips::FeatureMips64r6]; return (STI.getFeatureBits() & Mips::FeatureMips64r6);
} }
bool hasDSP() const { return STI.getFeatureBits()[Mips::FeatureDSP]; }
bool hasDSPR2() const { return STI.getFeatureBits()[Mips::FeatureDSPR2]; }
bool hasMSA() const { return STI.getFeatureBits()[Mips::FeatureMSA]; }
bool hasCnMips() const { bool hasCnMips() const {
return (STI.getFeatureBits()[Mips::FeatureCnMips]); return (STI.getFeatureBits() & Mips::FeatureCnMips);
} }
bool hasDSP() const { return (STI.getFeatureBits() & Mips::FeatureDSP); }
bool hasDSPR2() const { return (STI.getFeatureBits() & Mips::FeatureDSPR2); }
bool hasMSA() const { return (STI.getFeatureBits() & Mips::FeatureMSA); }
bool inMips16Mode() const { bool inMips16Mode() const {
return STI.getFeatureBits()[Mips::FeatureMips16]; return STI.getFeatureBits() & Mips::FeatureMips16;
} }
bool useSoftFloat() const { bool useSoftFloat() const {
return STI.getFeatureBits()[Mips::FeatureSoftFloat]; return (STI.getFeatureBits() & Mips::FeatureSoftFloat);
} }
/// Warn if RegIndex is the same as the current AT. /// Warn if RegIndex is the same as the current AT.

View File

@ -36,16 +36,16 @@ class MipsDisassembler : public MCDisassembler {
public: public:
MipsDisassembler(const MCSubtargetInfo &STI, MCContext &Ctx, bool IsBigEndian) MipsDisassembler(const MCSubtargetInfo &STI, MCContext &Ctx, bool IsBigEndian)
: MCDisassembler(STI, Ctx), : MCDisassembler(STI, Ctx),
IsMicroMips(STI.getFeatureBits()[Mips::FeatureMicroMips]), IsMicroMips(STI.getFeatureBits() & Mips::FeatureMicroMips),
IsBigEndian(IsBigEndian) {} IsBigEndian(IsBigEndian) {}
bool hasMips3() const { return STI.getFeatureBits()[Mips::FeatureMips3]; } bool hasMips3() const { return STI.getFeatureBits() & Mips::FeatureMips3; }
bool hasMips32() const { return STI.getFeatureBits()[Mips::FeatureMips32]; } bool hasMips32() const { return STI.getFeatureBits() & Mips::FeatureMips32; }
bool hasMips32r6() const { bool hasMips32r6() const {
return STI.getFeatureBits()[Mips::FeatureMips32r6]; return STI.getFeatureBits() & Mips::FeatureMips32r6;
} }
bool isGP64() const { return STI.getFeatureBits()[Mips::FeatureGP64Bit]; } bool isGP64() const { return STI.getFeatureBits() & Mips::FeatureGP64Bit; }
bool hasCOP3() const { bool hasCOP3() const {
// Only present in MIPS-I and MIPS-II // Only present in MIPS-I and MIPS-II

View File

@ -112,11 +112,11 @@ static void LowerDextDins(MCInst& InstIn) {
} }
bool MipsMCCodeEmitter::isMicroMips(const MCSubtargetInfo &STI) const { bool MipsMCCodeEmitter::isMicroMips(const MCSubtargetInfo &STI) const {
return STI.getFeatureBits()[Mips::FeatureMicroMips]; return STI.getFeatureBits() & Mips::FeatureMicroMips;
} }
bool MipsMCCodeEmitter::isMips32r6(const MCSubtargetInfo &STI) const { bool MipsMCCodeEmitter::isMips32r6(const MCSubtargetInfo &STI) const {
return STI.getFeatureBits()[Mips::FeatureMips32r6]; return STI.getFeatureBits() & Mips::FeatureMips32r6;
} }
void MipsMCCodeEmitter::EmitByte(unsigned char C, raw_ostream &OS) const { void MipsMCCodeEmitter::EmitByte(unsigned char C, raw_ostream &OS) const {

View File

@ -386,7 +386,7 @@ MipsTargetELFStreamer::MipsTargetELFStreamer(MCStreamer &S,
MCAssembler &MCA = getStreamer().getAssembler(); MCAssembler &MCA = getStreamer().getAssembler();
Pic = MCA.getContext().getObjectFileInfo()->getRelocM() == Reloc::PIC_; Pic = MCA.getContext().getObjectFileInfo()->getRelocM() == Reloc::PIC_;
const FeatureBitset &Features = STI.getFeatureBits(); uint64_t Features = STI.getFeatureBits();
// Set the header flags that we can in the constructor. // Set the header flags that we can in the constructor.
// FIXME: This is a fairly terrible hack. We set the rest // FIXME: This is a fairly terrible hack. We set the rest
@ -402,35 +402,35 @@ MipsTargetELFStreamer::MipsTargetELFStreamer(MCStreamer &S,
unsigned EFlags = MCA.getELFHeaderEFlags(); unsigned EFlags = MCA.getELFHeaderEFlags();
// Architecture // Architecture
if (Features[Mips::FeatureMips64r6]) if (Features & Mips::FeatureMips64r6)
EFlags |= ELF::EF_MIPS_ARCH_64R6; EFlags |= ELF::EF_MIPS_ARCH_64R6;
else if (Features[Mips::FeatureMips64r2] || else if (Features & Mips::FeatureMips64r2 ||
Features[Mips::FeatureMips64r3] || Features & Mips::FeatureMips64r3 ||
Features[Mips::FeatureMips64r5]) Features & Mips::FeatureMips64r5)
EFlags |= ELF::EF_MIPS_ARCH_64R2; EFlags |= ELF::EF_MIPS_ARCH_64R2;
else if (Features[Mips::FeatureMips64]) else if (Features & Mips::FeatureMips64)
EFlags |= ELF::EF_MIPS_ARCH_64; EFlags |= ELF::EF_MIPS_ARCH_64;
else if (Features[Mips::FeatureMips5]) else if (Features & Mips::FeatureMips5)
EFlags |= ELF::EF_MIPS_ARCH_5; EFlags |= ELF::EF_MIPS_ARCH_5;
else if (Features[Mips::FeatureMips4]) else if (Features & Mips::FeatureMips4)
EFlags |= ELF::EF_MIPS_ARCH_4; EFlags |= ELF::EF_MIPS_ARCH_4;
else if (Features[Mips::FeatureMips3]) else if (Features & Mips::FeatureMips3)
EFlags |= ELF::EF_MIPS_ARCH_3; EFlags |= ELF::EF_MIPS_ARCH_3;
else if (Features[Mips::FeatureMips32r6]) else if (Features & Mips::FeatureMips32r6)
EFlags |= ELF::EF_MIPS_ARCH_32R6; EFlags |= ELF::EF_MIPS_ARCH_32R6;
else if (Features[Mips::FeatureMips32r2] || else if (Features & Mips::FeatureMips32r2 ||
Features[Mips::FeatureMips32r3] || Features & Mips::FeatureMips32r3 ||
Features[Mips::FeatureMips32r5]) Features & Mips::FeatureMips32r5)
EFlags |= ELF::EF_MIPS_ARCH_32R2; EFlags |= ELF::EF_MIPS_ARCH_32R2;
else if (Features[Mips::FeatureMips32]) else if (Features & Mips::FeatureMips32)
EFlags |= ELF::EF_MIPS_ARCH_32; EFlags |= ELF::EF_MIPS_ARCH_32;
else if (Features[Mips::FeatureMips2]) else if (Features & Mips::FeatureMips2)
EFlags |= ELF::EF_MIPS_ARCH_2; EFlags |= ELF::EF_MIPS_ARCH_2;
else else
EFlags |= ELF::EF_MIPS_ARCH_1; EFlags |= ELF::EF_MIPS_ARCH_1;
// Other options. // Other options.
if (Features[Mips::FeatureNaN2008]) if (Features & Mips::FeatureNaN2008)
EFlags |= ELF::EF_MIPS_NAN2008; EFlags |= ELF::EF_MIPS_NAN2008;
// -mabicalls and -mplt are not implemented but we should act as if they were // -mabicalls and -mplt are not implemented but we should act as if they were
@ -470,7 +470,7 @@ void MipsTargetELFStreamer::finish() {
DataSectionData.setAlignment(std::max(16u, DataSectionData.getAlignment())); DataSectionData.setAlignment(std::max(16u, DataSectionData.getAlignment()));
BSSSectionData.setAlignment(std::max(16u, BSSSectionData.getAlignment())); BSSSectionData.setAlignment(std::max(16u, BSSSectionData.getAlignment()));
const FeatureBitset &Features = STI.getFeatureBits(); uint64_t Features = STI.getFeatureBits();
// Update e_header flags. See the FIXME and comment above in // Update e_header flags. See the FIXME and comment above in
// the constructor for a full rundown on this. // the constructor for a full rundown on this.
@ -483,10 +483,10 @@ void MipsTargetELFStreamer::finish() {
else if (getABI().IsN32()) else if (getABI().IsN32())
EFlags |= ELF::EF_MIPS_ABI2; EFlags |= ELF::EF_MIPS_ABI2;
if (Features[Mips::FeatureGP64Bit]) { if (Features & Mips::FeatureGP64Bit) {
if (getABI().IsO32()) if (getABI().IsO32())
EFlags |= ELF::EF_MIPS_32BITMODE; /* Compatibility Mode */ EFlags |= ELF::EF_MIPS_32BITMODE; /* Compatibility Mode */
} else if (Features[Mips::FeatureMips64r2] || Features[Mips::FeatureMips64]) } else if (Features & Mips::FeatureMips64r2 || Features & Mips::FeatureMips64)
EFlags |= ELF::EF_MIPS_32BITMODE; EFlags |= ELF::EF_MIPS_32BITMODE;
// If we've set the cpic eflag and we're n64, go ahead and set the pic // If we've set the cpic eflag and we're n64, go ahead and set the pic

View File

@ -1680,7 +1680,7 @@ bool PPCAsmParser::ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
// where th can be omitted when it is 0. dcbtst is the same. We take the // where th can be omitted when it is 0. dcbtst is the same. We take the
// server form to be the default, so swap the operands if we're parsing for // server form to be the default, so swap the operands if we're parsing for
// an embedded core (they'll be swapped again upon printing). // an embedded core (they'll be swapped again upon printing).
if (STI.getFeatureBits()[PPC::FeatureBookE] && if ((STI.getFeatureBits() & PPC::FeatureBookE) != 0 &&
Operands.size() == 4 && Operands.size() == 4 &&
(Name == "dcbt" || Name == "dcbtst")) { (Name == "dcbt" || Name == "dcbtst")) {
std::swap(Operands[1], Operands[3]); std::swap(Operands[1], Operands[3]);

View File

@ -387,7 +387,7 @@ DecodeStatus PPCDisassembler::getInstruction(MCInst &MI, uint64_t &Size,
uint32_t Inst = uint32_t Inst =
(Bytes[0] << 24) | (Bytes[1] << 16) | (Bytes[2] << 8) | (Bytes[3] << 0); (Bytes[0] << 24) | (Bytes[1] << 16) | (Bytes[2] << 8) | (Bytes[3] << 0);
if (STI.getFeatureBits()[PPC::FeatureQPX]) { if ((STI.getFeatureBits() & PPC::FeatureQPX) != 0) {
DecodeStatus result = DecodeStatus result =
decodeInstruction(DecoderTableQPX32, MI, Inst, Address, this, STI); decodeInstruction(DecoderTableQPX32, MI, Inst, Address, this, STI);
if (result != MCDisassembler::Fail) if (result != MCDisassembler::Fail)

View File

@ -119,7 +119,7 @@ void PPCInstPrinter::printInst(const MCInst *MI, raw_ostream &O,
O << "t"; O << "t";
O << " "; O << " ";
bool IsBookE = STI.getFeatureBits()[PPC::FeatureBookE]; bool IsBookE = (STI.getFeatureBits() & PPC::FeatureBookE) != 0;
if (IsBookE && TH != 0 && TH != 16) if (IsBookE && TH != 0 && TH != 16)
O << (unsigned int) TH << ", "; O << (unsigned int) TH << ", ";

View File

@ -321,7 +321,7 @@ public:
: MCTargetAsmParser(), STI(STI), MII(MII), Parser(_Parser), : MCTargetAsmParser(), STI(STI), MII(MII), Parser(_Parser),
ForcedEncodingSize(0){ ForcedEncodingSize(0){
if (STI.getFeatureBits().none()) { if (!STI.getFeatureBits()) {
// Set default features. // Set default features.
STI.ToggleFeature("SOUTHERN_ISLANDS"); STI.ToggleFeature("SOUTHERN_ISLANDS");
} }

View File

@ -99,7 +99,7 @@ void R600MCCodeEmitter::EncodeInstruction(const MCInst &MI, raw_ostream &OS,
} else if (IS_VTX(Desc)) { } else if (IS_VTX(Desc)) {
uint64_t InstWord01 = getBinaryCodeForInstr(MI, Fixups, STI); uint64_t InstWord01 = getBinaryCodeForInstr(MI, Fixups, STI);
uint32_t InstWord2 = MI.getOperand(2).getImm(); // Offset uint32_t InstWord2 = MI.getOperand(2).getImm(); // Offset
if (!(STI.getFeatureBits()[AMDGPU::FeatureCaymanISA])) { if (!(STI.getFeatureBits() & AMDGPU::FeatureCaymanISA)) {
InstWord2 |= 1 << 19; // Mega-Fetch bit InstWord2 |= 1 << 19; // Mega-Fetch bit
} }
@ -132,7 +132,7 @@ void R600MCCodeEmitter::EncodeInstruction(const MCInst &MI, raw_ostream &OS,
Emit((uint32_t) 0, OS); Emit((uint32_t) 0, OS);
} else { } else {
uint64_t Inst = getBinaryCodeForInstr(MI, Fixups, STI); uint64_t Inst = getBinaryCodeForInstr(MI, Fixups, STI);
if ((STI.getFeatureBits()[AMDGPU::FeatureR600ALUInst]) && if ((STI.getFeatureBits() & AMDGPU::FeatureR600ALUInst) &&
((Desc.TSFlags & R600_InstFlag::OP1) || ((Desc.TSFlags & R600_InstFlag::OP1) ||
Desc.TSFlags & R600_InstFlag::OP2)) { Desc.TSFlags & R600_InstFlag::OP2)) {
uint64_t ISAOpCode = Inst & (0x3FFULL << 39); uint64_t ISAOpCode = Inst & (0x3FFULL << 39);

View File

@ -35,7 +35,7 @@ namespace Sparc {
#include "SparcGenAsmWriter.inc" #include "SparcGenAsmWriter.inc"
bool SparcInstPrinter::isV9(const MCSubtargetInfo &STI) const { bool SparcInstPrinter::isV9(const MCSubtargetInfo &STI) const {
return (STI.getFeatureBits()[Sparc::FeatureV9]) != 0; return (STI.getFeatureBits() & Sparc::FeatureV9) != 0;
} }
void SparcInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const void SparcInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const

View File

@ -261,13 +261,13 @@ protected:
MCContext &Ctx, int64_t *Residue); MCContext &Ctx, int64_t *Residue);
bool is64BitMode() const { bool is64BitMode() const {
return STI.getFeatureBits()[X86::Mode64Bit]; return (STI.getFeatureBits() & X86::Mode64Bit) != 0;
} }
bool is32BitMode() const { bool is32BitMode() const {
return STI.getFeatureBits()[X86::Mode32Bit]; return (STI.getFeatureBits() & X86::Mode32Bit) != 0;
} }
bool is16BitMode() const { bool is16BitMode() const {
return STI.getFeatureBits()[X86::Mode16Bit]; return (STI.getFeatureBits() & X86::Mode16Bit) != 0;
} }
unsigned getPointerWidth() { unsigned getPointerWidth() {
@ -1072,9 +1072,9 @@ CreateX86AsmInstrumentation(const MCTargetOptions &MCOptions,
const bool hasCompilerRTSupport = T.isOSLinux(); const bool hasCompilerRTSupport = T.isOSLinux();
if (ClAsanInstrumentAssembly && hasCompilerRTSupport && if (ClAsanInstrumentAssembly && hasCompilerRTSupport &&
MCOptions.SanitizeAddress) { MCOptions.SanitizeAddress) {
if (STI.getFeatureBits()[X86::Mode32Bit] != 0) if ((STI.getFeatureBits() & X86::Mode32Bit) != 0)
return new X86AddressSanitizer32(STI); return new X86AddressSanitizer32(STI);
if (STI.getFeatureBits()[X86::Mode64Bit] != 0) if ((STI.getFeatureBits() & X86::Mode64Bit) != 0)
return new X86AddressSanitizer64(STI); return new X86AddressSanitizer64(STI);
} }
return new X86AsmInstrumentation(STI); return new X86AsmInstrumentation(STI);

View File

@ -729,24 +729,23 @@ private:
bool is64BitMode() const { bool is64BitMode() const {
// FIXME: Can tablegen auto-generate this? // FIXME: Can tablegen auto-generate this?
return STI.getFeatureBits()[X86::Mode64Bit]; return (STI.getFeatureBits() & X86::Mode64Bit) != 0;
} }
bool is32BitMode() const { bool is32BitMode() const {
// FIXME: Can tablegen auto-generate this? // FIXME: Can tablegen auto-generate this?
return STI.getFeatureBits()[X86::Mode32Bit]; return (STI.getFeatureBits() & X86::Mode32Bit) != 0;
} }
bool is16BitMode() const { bool is16BitMode() const {
// FIXME: Can tablegen auto-generate this? // FIXME: Can tablegen auto-generate this?
return STI.getFeatureBits()[X86::Mode16Bit]; return (STI.getFeatureBits() & X86::Mode16Bit) != 0;
} }
void SwitchMode(unsigned mode) { void SwitchMode(uint64_t mode) {
FeatureBitset AllModes({X86::Mode64Bit, X86::Mode32Bit, X86::Mode16Bit}); uint64_t oldMode = STI.getFeatureBits() &
FeatureBitset OldMode = STI.getFeatureBits() & AllModes; (X86::Mode64Bit | X86::Mode32Bit | X86::Mode16Bit);
unsigned FB = ComputeAvailableFeatures( unsigned FB = ComputeAvailableFeatures(STI.ToggleFeature(oldMode | mode));
STI.ToggleFeature(OldMode.flip(mode)));
setAvailableFeatures(FB); setAvailableFeatures(FB);
assert(mode == (STI.getFeatureBits() &
assert(FeatureBitset({mode}) == (STI.getFeatureBits() & AllModes)); (X86::Mode64Bit | X86::Mode32Bit | X86::Mode16Bit)));
} }
unsigned getPointerWidth() { unsigned getPointerWidth() {
@ -1697,7 +1696,7 @@ std::unique_ptr<X86Operand> X86AsmParser::ParseIntelOperand() {
} }
// rounding mode token // rounding mode token
if (STI.getFeatureBits()[X86::FeatureAVX512] && if (STI.getFeatureBits() & X86::FeatureAVX512 &&
getLexer().is(AsmToken::LCurly)) getLexer().is(AsmToken::LCurly))
return ParseRoundingModeOp(Start, End); return ParseRoundingModeOp(Start, End);
@ -1755,7 +1754,7 @@ std::unique_ptr<X86Operand> X86AsmParser::ParseATTOperand() {
} }
case AsmToken::LCurly:{ case AsmToken::LCurly:{
SMLoc Start = Parser.getTok().getLoc(), End; SMLoc Start = Parser.getTok().getLoc(), End;
if (STI.getFeatureBits()[X86::FeatureAVX512]) if (STI.getFeatureBits() & X86::FeatureAVX512)
return ParseRoundingModeOp(Start, End); return ParseRoundingModeOp(Start, End);
return ErrorOperand(Start, "unknown token in expression"); return ErrorOperand(Start, "unknown token in expression");
} }
@ -1765,7 +1764,7 @@ std::unique_ptr<X86Operand> X86AsmParser::ParseATTOperand() {
bool X86AsmParser::HandleAVX512Operand(OperandVector &Operands, bool X86AsmParser::HandleAVX512Operand(OperandVector &Operands,
const MCParsedAsmOperand &Op) { const MCParsedAsmOperand &Op) {
MCAsmParser &Parser = getParser(); MCAsmParser &Parser = getParser();
if(STI.getFeatureBits()[X86::FeatureAVX512]) { if(STI.getFeatureBits() & X86::FeatureAVX512) {
if (getLexer().is(AsmToken::LCurly)) { if (getLexer().is(AsmToken::LCurly)) {
// Eat "{" and mark the current place. // Eat "{" and mark the current place.
const SMLoc consumedToken = consumeToken(); const SMLoc consumedToken = consumeToken();

View File

@ -80,19 +80,20 @@ X86GenericDisassembler::X86GenericDisassembler(
MCContext &Ctx, MCContext &Ctx,
std::unique_ptr<const MCInstrInfo> MII) std::unique_ptr<const MCInstrInfo> MII)
: MCDisassembler(STI, Ctx), MII(std::move(MII)) { : MCDisassembler(STI, Ctx), MII(std::move(MII)) {
const FeatureBitset &FB = STI.getFeatureBits(); switch (STI.getFeatureBits() &
if (FB[X86::Mode16Bit]) { (X86::Mode16Bit | X86::Mode32Bit | X86::Mode64Bit)) {
case X86::Mode16Bit:
fMode = MODE_16BIT; fMode = MODE_16BIT;
return; break;
} else if (FB[X86::Mode32Bit]) { case X86::Mode32Bit:
fMode = MODE_32BIT; fMode = MODE_32BIT;
return; break;
} else if (FB[X86::Mode64Bit]) { case X86::Mode64Bit:
fMode = MODE_64BIT; fMode = MODE_64BIT;
return; break;
default:
llvm_unreachable("Invalid CPU mode");
} }
llvm_unreachable("Invalid CPU mode");
} }
struct Region { struct Region {

View File

@ -57,7 +57,7 @@ void X86ATTInstPrinter::printInst(const MCInst *MI, raw_ostream &OS,
// InstrInfo.td as soon as Requires clause is supported properly // InstrInfo.td as soon as Requires clause is supported properly
// for InstAlias. // for InstAlias.
if (MI->getOpcode() == X86::CALLpcrel32 && if (MI->getOpcode() == X86::CALLpcrel32 &&
(STI.getFeatureBits()[X86::Mode64Bit])) { (STI.getFeatureBits() & X86::Mode64Bit) != 0) {
OS << "\tcallq\t"; OS << "\tcallq\t";
printPCRelImm(MI, 0, OS); printPCRelImm(MI, 0, OS);
} }

View File

@ -42,15 +42,15 @@ public:
~X86MCCodeEmitter() override {} ~X86MCCodeEmitter() override {}
bool is64BitMode(const MCSubtargetInfo &STI) const { bool is64BitMode(const MCSubtargetInfo &STI) const {
return STI.getFeatureBits()[X86::Mode64Bit]; return (STI.getFeatureBits() & X86::Mode64Bit) != 0;
} }
bool is32BitMode(const MCSubtargetInfo &STI) const { bool is32BitMode(const MCSubtargetInfo &STI) const {
return STI.getFeatureBits()[X86::Mode32Bit]; return (STI.getFeatureBits() & X86::Mode32Bit) != 0;
} }
bool is16BitMode(const MCSubtargetInfo &STI) const { bool is16BitMode(const MCSubtargetInfo &STI) const {
return STI.getFeatureBits()[X86::Mode16Bit]; return (STI.getFeatureBits() & X86::Mode16Bit) != 0;
} }
/// Is16BitMemOperand - Return true if the specified instruction has /// Is16BitMemOperand - Return true if the specified instruction has

View File

@ -28,4 +28,4 @@ def foo : Instruction {
let Predicates = [Pred1, Pred2]; let Predicates = [Pred1, Pred2];
} }
// CHECK: return (Bits[arch::AssemblerCondition2]); // CHECK: return ((Bits & arch::AssemblerCondition2));

View File

@ -2248,7 +2248,7 @@ static void emitComputeAvailableFeatures(AsmMatcherInfo &Info,
Info.AsmParser->getValueAsString("AsmParserClassName"); Info.AsmParser->getValueAsString("AsmParserClassName");
OS << "uint64_t " << Info.Target.getName() << ClassName << "::\n" OS << "uint64_t " << Info.Target.getName() << ClassName << "::\n"
<< "ComputeAvailableFeatures(const FeatureBitset& FB) const {\n"; << "ComputeAvailableFeatures(uint64_t FB) const {\n";
OS << " uint64_t Features = 0;\n"; OS << " uint64_t Features = 0;\n";
for (const auto &SF : Info.SubtargetFeatures) { for (const auto &SF : Info.SubtargetFeatures) {
const SubtargetFeatureInfo &SFI = SF.second; const SubtargetFeatureInfo &SFI = SF.second;
@ -2270,10 +2270,12 @@ static void emitComputeAvailableFeatures(AsmMatcherInfo &Info,
Cond = Cond.substr(1); Cond = Cond.substr(1);
} }
OS << "("; OS << "((FB & " << Info.Target.getName() << "::" << Cond << ")";
if (Neg) if (Neg)
OS << "!"; OS << " == 0";
OS << "FB[" << Info.Target.getName() << "::" << Cond << "])"; else
OS << " != 0";
OS << ")";
if (Comma.second.empty()) if (Comma.second.empty())
break; break;
@ -2643,7 +2645,7 @@ void AsmMatcherEmitter::run(raw_ostream &OS) {
OS << "#undef GET_ASSEMBLER_HEADER\n"; OS << "#undef GET_ASSEMBLER_HEADER\n";
OS << " // This should be included into the middle of the declaration of\n"; OS << " // This should be included into the middle of the declaration of\n";
OS << " // your subclasses implementation of MCTargetAsmParser.\n"; OS << " // your subclasses implementation of MCTargetAsmParser.\n";
OS << " uint64_t ComputeAvailableFeatures(const FeatureBitset& FB) const;\n"; OS << " uint64_t ComputeAvailableFeatures(uint64_t FeatureBits) const;\n";
OS << " void convertToMCInst(unsigned Kind, MCInst &Inst, " OS << " void convertToMCInst(unsigned Kind, MCInst &Inst, "
<< "unsigned Opcode,\n" << "unsigned Opcode,\n"
<< " const OperandVector " << " const OperandVector "

View File

@ -848,7 +848,7 @@ emitPredicateFunction(formatted_raw_ostream &OS, PredicateSet &Predicates,
// The predicate function is just a big switch statement based on the // The predicate function is just a big switch statement based on the
// input predicate index. // input predicate index.
OS.indent(Indentation) << "static bool checkDecoderPredicate(unsigned Idx, " OS.indent(Indentation) << "static bool checkDecoderPredicate(unsigned Idx, "
<< "const FeatureBitset& Bits) {\n"; << "uint64_t Bits) {\n";
Indentation += 2; Indentation += 2;
if (!Predicates.empty()) { if (!Predicates.empty()) {
OS.indent(Indentation) << "switch (Idx) {\n"; OS.indent(Indentation) << "switch (Idx) {\n";
@ -1102,10 +1102,10 @@ unsigned FilterChooser::getDecoderIndex(DecoderSet &Decoders,
static void emitSinglePredicateMatch(raw_ostream &o, StringRef str, static void emitSinglePredicateMatch(raw_ostream &o, StringRef str,
const std::string &PredicateNamespace) { const std::string &PredicateNamespace) {
if (str[0] == '!') if (str[0] == '!')
o << "!Bits[" << PredicateNamespace << "::" o << "!(Bits & " << PredicateNamespace << "::"
<< str.slice(1,str.size()) << "]"; << str.slice(1,str.size()) << ")";
else else
o << "Bits[" << PredicateNamespace << "::" << str << "]"; o << "(Bits & " << PredicateNamespace << "::" << str << ")";
} }
bool FilterChooser::emitPredicateMatch(raw_ostream &o, unsigned &Indentation, bool FilterChooser::emitPredicateMatch(raw_ostream &o, unsigned &Indentation,
@ -2012,7 +2012,7 @@ static void emitDecodeInstruction(formatted_raw_ostream &OS) {
<< " InsnType insn, uint64_t Address,\n" << " InsnType insn, uint64_t Address,\n"
<< " const void *DisAsm,\n" << " const void *DisAsm,\n"
<< " const MCSubtargetInfo &STI) {\n" << " const MCSubtargetInfo &STI) {\n"
<< " const FeatureBitset& Bits = STI.getFeatureBits();\n" << " uint64_t Bits = STI.getFeatureBits();\n"
<< "\n" << "\n"
<< " const uint8_t *Ptr = DecodeTable;\n" << " const uint8_t *Ptr = DecodeTable;\n"
<< " uint32_t CurFieldValue = 0;\n" << " uint32_t CurFieldValue = 0;\n"

View File

@ -549,15 +549,15 @@ void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
CodeGenTarget &Target = CDP.getTargetInfo(); CodeGenTarget &Target = CDP.getTargetInfo();
if (Inst.HasComplexDeprecationPredicate) if (Inst.HasComplexDeprecationPredicate)
// Emit a function pointer to the complex predicate method. // Emit a function pointer to the complex predicate method.
OS << ", { } " OS << ",0"
<< ",&get" << Inst.DeprecatedReason << "DeprecationInfo"; << ",&get" << Inst.DeprecatedReason << "DeprecationInfo";
else if (!Inst.DeprecatedReason.empty()) else if (!Inst.DeprecatedReason.empty())
// Emit the Subtarget feature. // Emit the Subtarget feature.
OS << ", { " << Target.getInstNamespace() << "::" << Inst.DeprecatedReason OS << "," << Target.getInstNamespace() << "::" << Inst.DeprecatedReason
<< "} ,nullptr"; << ",nullptr";
else else
// Instruction isn't deprecated. // Instruction isn't deprecated.
OS << ", { } ,nullptr"; OS << ",0,nullptr";
OS << " }, // Inst #" << Num << " = " << Inst.TheDef->getName() << "\n"; OS << " }, // Inst #" << Num << " = " << Inst.TheDef->getName() << "\n";
} }

View File

@ -16,7 +16,6 @@
#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/StringExtras.h" #include "llvm/ADT/StringExtras.h"
#include "llvm/MC/MCInstrItineraries.h" #include "llvm/MC/MCInstrItineraries.h"
#include "llvm/MC/SubtargetFeature.h"
#include "llvm/Support/Debug.h" #include "llvm/Support/Debug.h"
#include "llvm/Support/Format.h" #include "llvm/Support/Format.h"
#include "llvm/TableGen/Error.h" #include "llvm/TableGen/Error.h"
@ -63,7 +62,7 @@ class SubtargetEmitter {
CodeGenSchedModels &SchedModels; CodeGenSchedModels &SchedModels;
std::string Target; std::string Target;
void Enumeration(raw_ostream &OS, const char *ClassName); void Enumeration(raw_ostream &OS, const char *ClassName, bool isBits);
unsigned FeatureKeyValues(raw_ostream &OS); unsigned FeatureKeyValues(raw_ostream &OS);
unsigned CPUKeyValues(raw_ostream &OS); unsigned CPUKeyValues(raw_ostream &OS);
void FormItineraryStageString(const std::string &Names, void FormItineraryStageString(const std::string &Names,
@ -113,7 +112,8 @@ public:
// Enumeration - Emit the specified class as an enumeration. // Enumeration - Emit the specified class as an enumeration.
// //
void SubtargetEmitter::Enumeration(raw_ostream &OS, void SubtargetEmitter::Enumeration(raw_ostream &OS,
const char *ClassName) { const char *ClassName,
bool isBits) {
// Get all records of class and sort // Get all records of class and sort
std::vector<Record*> DefList = Records.getAllDerivedDefinitions(ClassName); std::vector<Record*> DefList = Records.getAllDerivedDefinitions(ClassName);
std::sort(DefList.begin(), DefList.end(), LessRecord()); std::sort(DefList.begin(), DefList.end(), LessRecord());
@ -121,8 +121,8 @@ void SubtargetEmitter::Enumeration(raw_ostream &OS,
unsigned N = DefList.size(); unsigned N = DefList.size();
if (N == 0) if (N == 0)
return; return;
if (N > MAX_SUBTARGET_FEATURES) if (N > 64)
PrintFatalError("Too many subtarget features! Bump MAX_SUBTARGET_FEATURES."); PrintFatalError("Too many (> 64) subtarget features!");
OS << "namespace " << Target << " {\n"; OS << "namespace " << Target << " {\n";
@ -135,14 +135,21 @@ void SubtargetEmitter::Enumeration(raw_ostream &OS,
Record *Def = DefList[i]; Record *Def = DefList[i];
// Get and emit name // Get and emit name
OS << " " << Def->getName() << " = " << i; OS << " " << Def->getName();
// If bit flags then emit expression (1 << i)
if (isBits) OS << " = " << " 1ULL << " << i;
// Depending on 'if more in the list' emit comma
if (++i < N) OS << ","; if (++i < N) OS << ",";
OS << "\n"; OS << "\n";
} }
// Close enumeration and namespace // Close enumeration
OS << "};\n}\n"; OS << "};\n";
OS << "}\n";
} }
// //
@ -176,24 +183,22 @@ unsigned SubtargetEmitter::FeatureKeyValues(raw_ostream &OS) {
if (CommandLineName.empty()) continue; if (CommandLineName.empty()) continue;
// Emit as { "feature", "description", { featureEnum }, { i1 , i2 , ... , in } } // Emit as { "feature", "description", featureEnum, i1 | i2 | ... | in }
OS << " { " OS << " { "
<< "\"" << CommandLineName << "\", " << "\"" << CommandLineName << "\", "
<< "\"" << Desc << "\", " << "\"" << Desc << "\", "
<< "{ " << Target << "::" << Name << " }, "; << Target << "::" << Name << ", ";
const std::vector<Record*> &ImpliesList = const std::vector<Record*> &ImpliesList =
Feature->getValueAsListOfDefs("Implies"); Feature->getValueAsListOfDefs("Implies");
if (ImpliesList.empty()) { if (ImpliesList.empty()) {
OS << "{ }"; OS << "0ULL";
} else { } else {
OS << "{ ";
for (unsigned j = 0, M = ImpliesList.size(); j < M;) { for (unsigned j = 0, M = ImpliesList.size(); j < M;) {
OS << Target << "::" << ImpliesList[j]->getName(); OS << Target << "::" << ImpliesList[j]->getName();
if (++j < M) OS << ", "; if (++j < M) OS << " | ";
} }
OS << " }";
} }
OS << " }"; OS << " }";
@ -235,24 +240,22 @@ unsigned SubtargetEmitter::CPUKeyValues(raw_ostream &OS) {
const std::vector<Record*> &FeatureList = const std::vector<Record*> &FeatureList =
Processor->getValueAsListOfDefs("Features"); Processor->getValueAsListOfDefs("Features");
// Emit as { "cpu", "description", { f1 , f2 , ... fn } }, // Emit as { "cpu", "description", f1 | f2 | ... fn },
OS << " { " OS << " { "
<< "\"" << Name << "\", " << "\"" << Name << "\", "
<< "\"Select the " << Name << " processor\", "; << "\"Select the " << Name << " processor\", ";
if (FeatureList.empty()) { if (FeatureList.empty()) {
OS << "{ }"; OS << "0ULL";
} else { } else {
OS << "{ ";
for (unsigned j = 0, M = FeatureList.size(); j < M;) { for (unsigned j = 0, M = FeatureList.size(); j < M;) {
OS << Target << "::" << FeatureList[j]->getName(); OS << Target << "::" << FeatureList[j]->getName();
if (++j < M) OS << ", "; if (++j < M) OS << " | ";
} }
OS << " }";
} }
// The { } is for the "implies" section of this data structure. // The "0" is for the "implies" section of this data structure.
OS << ", { } }"; OS << ", 0ULL }";
// Depending on 'if more in the list' emit comma // Depending on 'if more in the list' emit comma
if (++i < N) OS << ","; if (++i < N) OS << ",";
@ -1380,7 +1383,7 @@ void SubtargetEmitter::ParseFeaturesFunction(raw_ostream &OS,
} }
OS << " InitMCProcessorInfo(CPU, FS);\n" OS << " InitMCProcessorInfo(CPU, FS);\n"
<< " const FeatureBitset& Bits = getFeatureBits();\n"; << " uint64_t Bits = getFeatureBits();\n";
for (unsigned i = 0; i < Features.size(); i++) { for (unsigned i = 0; i < Features.size(); i++) {
// Next record // Next record
@ -1390,12 +1393,12 @@ void SubtargetEmitter::ParseFeaturesFunction(raw_ostream &OS,
const std::string &Attribute = R->getValueAsString("Attribute"); const std::string &Attribute = R->getValueAsString("Attribute");
if (Value=="true" || Value=="false") if (Value=="true" || Value=="false")
OS << " if (Bits[" << Target << "::" OS << " if ((Bits & " << Target << "::"
<< Instance << "]) " << Instance << ") != 0) "
<< Attribute << " = " << Value << ";\n"; << Attribute << " = " << Value << ";\n";
else else
OS << " if (Bits[" << Target << "::" OS << " if ((Bits & " << Target << "::"
<< Instance << "] && " << Instance << ") != 0 && "
<< Attribute << " < " << Value << ") " << Attribute << " < " << Value << ") "
<< Attribute << " = " << Value << ";\n"; << Attribute << " = " << Value << ";\n";
} }
@ -1413,7 +1416,7 @@ void SubtargetEmitter::run(raw_ostream &OS) {
OS << "#undef GET_SUBTARGETINFO_ENUM\n"; OS << "#undef GET_SUBTARGETINFO_ENUM\n";
OS << "namespace llvm {\n"; OS << "namespace llvm {\n";
Enumeration(OS, "SubtargetFeature"); Enumeration(OS, "SubtargetFeature", true);
OS << "} // End llvm namespace \n"; OS << "} // End llvm namespace \n";
OS << "#endif // GET_SUBTARGETINFO_ENUM\n\n"; OS << "#endif // GET_SUBTARGETINFO_ENUM\n\n";