Searched defs:SubtargetFeatures (Results 1 - 3 of 3) sorted by relevance

/external/llvm/include/llvm/MC/
H A DSubtargetFeature.h81 /// SubtargetFeatures - Manages the enabling and disabling of subtarget
90 class SubtargetFeatures { class in namespace:llvm
93 explicit SubtargetFeatures(StringRef Initial = "");
/external/llvm/lib/MC/
H A DSubtargetFeature.cpp64 void SubtargetFeatures::AddFeature(StringRef String, bool Enable) {
117 // SubtargetFeatures Implementation
120 SubtargetFeatures::SubtargetFeatures(StringRef Initial) { function in class:SubtargetFeatures
126 std::string SubtargetFeatures::getString() const {
166 SubtargetFeatures::ToggleFeature(FeatureBitset Bits, StringRef Feature,
198 SubtargetFeatures::ApplyFeatureFlag(FeatureBitset Bits, StringRef Feature,
233 SubtargetFeatures::getFeatureBits(StringRef CPU,
292 void SubtargetFeatures::print(raw_ostream &OS) const {
301 void SubtargetFeatures
[all...]
/external/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp664 std::map<Record *, SubtargetFeatureInfo, LessRecordByID> SubtargetFeatures; member in class:__anon12835::AsmMatcherInfo
714 const auto &I = SubtargetFeatures.find(Def);
715 return I == SubtargetFeatures.end() ? nullptr : &I->second;
1365 SubtargetFeatures.insert(std::make_pair(
1366 Pred, SubtargetFeatureInfo(Pred, SubtargetFeatures.size())));
1367 DEBUG(SubtargetFeatures.find(Pred)->second.dump());
1368 assert(SubtargetFeatures.size() <= 64 && "Too many subtarget features!");
2229 uint64_t MaxIndex = Info.SubtargetFeatures.size();
2243 for (const auto &SF : Info.SubtargetFeatures) {
2277 if (!Info.SubtargetFeatures
[all...]

Completed in 204 milliseconds