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

/external/llvm/include/llvm/MC/
H A DSubtargetFeature.h87 /// SubtargetFeatures - Manages the enabling and disabling of subtarget
96 class SubtargetFeatures { class in namespace:llvm
99 explicit SubtargetFeatures(StringRef Initial = "");
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DSubtargetFeature.h63 /// SubtargetFeatures - Manages the enabling and disabling of subtarget
74 class SubtargetFeatures { class in namespace:llvm
77 explicit SubtargetFeatures(const StringRef Initial = "");
/external/llvm/lib/MC/
H A DSubtargetFeature.cpp65 void SubtargetFeatures::AddFeature(StringRef String, bool Enable) {
118 // SubtargetFeatures Implementation
121 SubtargetFeatures::SubtargetFeatures(StringRef Initial) { function in class:SubtargetFeatures
127 std::string SubtargetFeatures::getString() const {
166 SubtargetFeatures::ToggleFeature(FeatureBitset &Bits, StringRef Feature,
191 void SubtargetFeatures::ApplyFeatureFlag(FeatureBitset &Bits, StringRef Feature,
224 SubtargetFeatures::getFeatureBits(StringRef CPU,
279 void SubtargetFeatures::print(raw_ostream &OS) const {
288 LLVM_DUMP_METHOD void SubtargetFeatures
[all...]
/external/swiftshader/third_party/LLVM/lib/MC/
H A DSubtargetFeature.cpp112 void SubtargetFeatures::AddFeature(const StringRef String,
176 // SubtargetFeatures Implementation
179 SubtargetFeatures::SubtargetFeatures(const StringRef Initial) { function in class:SubtargetFeatures
185 std::string SubtargetFeatures::getString() const {
230 SubtargetFeatures::ToggleFeature(uint64_t Bits, const StringRef Feature,
261 uint64_t SubtargetFeatures::getFeatureBits(const StringRef CPU,
342 void *SubtargetFeatures::getItinerary(const StringRef CPU,
367 void SubtargetFeatures::print(raw_ostream &OS) const {
375 void SubtargetFeatures
[all...]
/external/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp718 std::map<Record *, SubtargetFeatureInfo, LessRecordByID> SubtargetFeatures; member in class:__anon13858::AsmMatcherInfo
768 const auto &I = SubtargetFeatures.find(Def);
769 return I == SubtargetFeatures.end() ? nullptr : &I->second;
1450 SubtargetFeatures.insert(std::make_pair(
1451 Pred, SubtargetFeatureInfo(Pred, SubtargetFeatures.size())));
1452 DEBUG(SubtargetFeatures.find(Pred)->second.dump());
1453 assert(SubtargetFeatures.size() <= 64 && "Too many subtarget features!");
2397 uint64_t MaxIndex = Info.SubtargetFeatures.size();
2411 for (const auto &SF : Info.SubtargetFeatures) {
2442 if (!Info.SubtargetFeatures
[all...]
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DAsmMatcherEmitter.cpp576 std::map<Record*, SubtargetFeatureInfo*> SubtargetFeatures; member in class:__anon20407::AsmMatcherInfo
626 SubtargetFeatures.find(Def);
627 return I == SubtargetFeatures.end() ? 0 : I->second;
1156 unsigned FeatureNo = SubtargetFeatures.size();
1157 SubtargetFeatures[Pred] = new SubtargetFeatureInfo(Pred, FeatureNo);
1812 it = Info.SubtargetFeatures.begin(),
1813 ie = Info.SubtargetFeatures.end(); it != ie; ++it) {
1832 it = Info.SubtargetFeatures.begin(),
1833 ie = Info.SubtargetFeatures.end(); it != ie; ++it) {

Completed in 303 milliseconds