1 //===- SubtargetFeature.cpp - CPU characteristics Implementation ----------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the SubtargetFeature interface.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/MC/SubtargetFeature.h"
15 #include "llvm/Support/Debug.h"
16 #include "llvm/Support/Format.h"
17 #include "llvm/Support/raw_ostream.h"
24 //===----------------------------------------------------------------------===//
25 // Static Helper Functions
26 //===----------------------------------------------------------------------===//
28 /// hasFlag - Determine if a feature has a flag; '+' or '-'
30 static inline bool hasFlag(const StringRef Feature) {
31 assert(!Feature.empty() && "Empty string");
32 // Get first character
34 // Check if first character is '+' or '-' flag
35 return Ch == '+' || Ch =='-';
38 /// StripFlag - Return string stripped of flag.
40 static inline std::string StripFlag(const StringRef Feature) {
41 return hasFlag(Feature) ? Feature.substr(1) : Feature;
44 /// isEnabled - Return true if enable flag; '+'.
46 static inline bool isEnabled(const StringRef Feature) {
47 assert(!Feature.empty() && "Empty string");
48 // Get first character
50 // Check if first character is '+' for enabled
54 /// PrependFlag - Return a string with a prepended flag; '+' or '-'.
56 static inline std::string PrependFlag(const StringRef Feature,
58 assert(!Feature.empty() && "Empty string");
61 std::string Prefix = IsEnabled ? "+" : "-";
66 /// Split - Splits a string of comma separated items in to a vector of strings.
68 static void Split(std::vector<std::string> &V, const StringRef S) {
72 // Start at beginning of string.
75 // Find the next comma
76 size_t Comma = S.find(',', Pos);
77 // If no comma found then the rest of the string is used
78 if (Comma == std::string::npos) {
79 // Add string to vector
80 V.push_back(S.substr(Pos));
83 // Otherwise add substring to vector
84 V.push_back(S.substr(Pos, Comma - Pos));
85 // Advance to next item
90 /// Join a vector of strings to a string with a comma separating each element.
92 static std::string Join(const std::vector<std::string> &V) {
93 // Start with empty string.
95 // If the vector is not empty
97 // Start with the first feature
99 // For each successive feature
100 for (size_t i = 1; i < V.size(); i++) {
107 // Return the features string
112 void SubtargetFeatures::AddFeature(const StringRef String,
114 // Don't add empty features
115 if (!String.empty()) {
116 // Convert to lowercase, prepend flag and add to vector
117 Features.push_back(PrependFlag(String.lower(), IsEnabled));
121 /// Find KV in array using binary search.
122 static const SubtargetFeatureKV *Find(StringRef S, const SubtargetFeatureKV *A,
124 // Determine the end of the array
125 const SubtargetFeatureKV *Hi = A + L;
126 // Binary search the array
127 const SubtargetFeatureKV *F = std::lower_bound(A, Hi, S);
128 // If not found then return NULL
129 if (F == Hi || StringRef(F->Key) != S) return NULL;
130 // Return the found array item
134 /// getLongestEntryLength - Return the length of the longest entry in the table.
136 static size_t getLongestEntryLength(const SubtargetFeatureKV *Table,
139 for (size_t i = 0; i < Size; i++)
140 MaxLen = std::max(MaxLen, std::strlen(Table[i].Key));
144 /// Display help for feature choices.
146 static void Help(const SubtargetFeatureKV *CPUTable, size_t CPUTableSize,
147 const SubtargetFeatureKV *FeatTable, size_t FeatTableSize) {
148 // Determine the length of the longest CPU and Feature entries.
149 unsigned MaxCPULen = getLongestEntryLength(CPUTable, CPUTableSize);
150 unsigned MaxFeatLen = getLongestEntryLength(FeatTable, FeatTableSize);
152 // Print the CPU table.
153 errs() << "Available CPUs for this target:\n\n";
154 for (size_t i = 0; i != CPUTableSize; i++)
155 errs() << format(" %-*s - %s.\n",
156 MaxCPULen, CPUTable[i].Key, CPUTable[i].Desc);
159 // Print the Feature table.
160 errs() << "Available features for this target:\n\n";
161 for (size_t i = 0; i != FeatTableSize; i++)
162 errs() << format(" %-*s - %s.\n",
163 MaxFeatLen, FeatTable[i].Key, FeatTable[i].Desc);
166 errs() << "Use +feature to enable a feature, or -feature to disable it.\n"
167 "For example, llc -mcpu=mycpu -mattr=+feature1,-feature2\n";
171 //===----------------------------------------------------------------------===//
172 // SubtargetFeatures Implementation
173 //===----------------------------------------------------------------------===//
175 SubtargetFeatures::SubtargetFeatures(const StringRef Initial) {
176 // Break up string into separate features
177 Split(Features, Initial);
181 std::string SubtargetFeatures::getString() const {
182 return Join(Features);
185 /// SetImpliedBits - For each feature that is (transitively) implied by this
189 void SetImpliedBits(uint64_t &Bits, const SubtargetFeatureKV *FeatureEntry,
190 const SubtargetFeatureKV *FeatureTable,
191 size_t FeatureTableSize) {
192 for (size_t i = 0; i < FeatureTableSize; ++i) {
193 const SubtargetFeatureKV &FE = FeatureTable[i];
195 if (FeatureEntry->Value == FE.Value) continue;
197 if (FeatureEntry->Implies & FE.Value) {
199 SetImpliedBits(Bits, &FE, FeatureTable, FeatureTableSize);
204 /// ClearImpliedBits - For each feature that (transitively) implies this
205 /// feature, clear it.
208 void ClearImpliedBits(uint64_t &Bits, const SubtargetFeatureKV *FeatureEntry,
209 const SubtargetFeatureKV *FeatureTable,
210 size_t FeatureTableSize) {
211 for (size_t i = 0; i < FeatureTableSize; ++i) {
212 const SubtargetFeatureKV &FE = FeatureTable[i];
214 if (FeatureEntry->Value == FE.Value) continue;
216 if (FE.Implies & FeatureEntry->Value) {
218 ClearImpliedBits(Bits, &FE, FeatureTable, FeatureTableSize);
223 /// ToggleFeature - Toggle a feature and returns the newly updated feature
226 SubtargetFeatures::ToggleFeature(uint64_t Bits, const StringRef Feature,
227 const SubtargetFeatureKV *FeatureTable,
228 size_t FeatureTableSize) {
229 // Find feature in table.
230 const SubtargetFeatureKV *FeatureEntry =
231 Find(StripFlag(Feature), FeatureTable, FeatureTableSize);
232 // If there is a match
234 if ((Bits & FeatureEntry->Value) == FeatureEntry->Value) {
235 Bits &= ~FeatureEntry->Value;
237 // For each feature that implies this, clear it.
238 ClearImpliedBits(Bits, FeatureEntry, FeatureTable, FeatureTableSize);
240 Bits |= FeatureEntry->Value;
242 // For each feature that this implies, set it.
243 SetImpliedBits(Bits, FeatureEntry, FeatureTable, FeatureTableSize);
246 errs() << "'" << Feature
247 << "' is not a recognized feature for this target"
248 << " (ignoring feature)\n";
255 /// getFeatureBits - Get feature bits a CPU.
257 uint64_t SubtargetFeatures::getFeatureBits(const StringRef CPU,
258 const SubtargetFeatureKV *CPUTable,
260 const SubtargetFeatureKV *FeatureTable,
261 size_t FeatureTableSize) {
262 if (!FeatureTableSize || !CPUTableSize)
266 for (size_t i = 1; i < CPUTableSize; i++) {
267 assert(strcmp(CPUTable[i - 1].Key, CPUTable[i].Key) < 0 &&
268 "CPU table is not sorted");
270 for (size_t i = 1; i < FeatureTableSize; i++) {
271 assert(strcmp(FeatureTable[i - 1].Key, FeatureTable[i].Key) < 0 &&
272 "CPU features table is not sorted");
275 uint64_t Bits = 0; // Resulting bits
277 // Check if help is needed
279 Help(CPUTable, CPUTableSize, FeatureTable, FeatureTableSize);
281 // Find CPU entry if CPU name is specified.
283 const SubtargetFeatureKV *CPUEntry = Find(CPU, CPUTable, CPUTableSize);
284 // If there is a match
286 // Set base feature bits
287 Bits = CPUEntry->Value;
289 // Set the feature implied by this CPU feature, if any.
290 for (size_t i = 0; i < FeatureTableSize; ++i) {
291 const SubtargetFeatureKV &FE = FeatureTable[i];
292 if (CPUEntry->Value & FE.Value)
293 SetImpliedBits(Bits, &FE, FeatureTable, FeatureTableSize);
297 << "' is not a recognized processor for this target"
298 << " (ignoring processor)\n";
302 // Iterate through each feature
303 for (size_t i = 0, E = Features.size(); i < E; i++) {
304 const StringRef Feature = Features[i];
307 if (Feature == "+help")
308 Help(CPUTable, CPUTableSize, FeatureTable, FeatureTableSize);
310 // Find feature in table.
311 const SubtargetFeatureKV *FeatureEntry =
312 Find(StripFlag(Feature), FeatureTable, FeatureTableSize);
313 // If there is a match
315 // Enable/disable feature in bits
316 if (isEnabled(Feature)) {
317 Bits |= FeatureEntry->Value;
319 // For each feature that this implies, set it.
320 SetImpliedBits(Bits, FeatureEntry, FeatureTable, FeatureTableSize);
322 Bits &= ~FeatureEntry->Value;
324 // For each feature that implies this, clear it.
325 ClearImpliedBits(Bits, FeatureEntry, FeatureTable, FeatureTableSize);
328 errs() << "'" << Feature
329 << "' is not a recognized feature for this target"
330 << " (ignoring feature)\n";
337 /// print - Print feature string.
339 void SubtargetFeatures::print(raw_ostream &OS) const {
340 for (size_t i = 0, e = Features.size(); i != e; ++i)
341 OS << Features[i] << " ";
345 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
346 /// dump - Dump feature info.
348 void SubtargetFeatures::dump() const {
353 /// Adds the default features for the specified target triple.
355 /// FIXME: This is an inelegant way of specifying the features of a
356 /// subtarget. It would be better if we could encode this information
357 /// into the IR. See <rdar://5972456>.
359 void SubtargetFeatures::getDefaultSubtargetFeatures(const Triple& Triple) {
360 if (Triple.getVendor() == Triple::Apple) {
361 if (Triple.getArch() == Triple::ppc) {
363 AddFeature("altivec");
364 } else if (Triple.getArch() == Triple::ppc64) {
367 AddFeature("altivec");