@@ -27,7 +27,7 @@ using namespace llvm;
27
27
28
28
// / hasFlag - Determine if a feature has a flag; '+' or '-'
29
29
// /
30
- static inline bool hasFlag (const std::string & Feature) {
30
+ static inline bool hasFlag (const StringRef Feature) {
31
31
assert (!Feature.empty () && " Empty string" );
32
32
// Get first character
33
33
char Ch = Feature[0 ];
@@ -37,13 +37,13 @@ static inline bool hasFlag(const std::string &Feature) {
37
37
38
38
// / StripFlag - Return string stripped of flag.
39
39
// /
40
- static inline std::string StripFlag (const std::string & Feature) {
40
+ static inline std::string StripFlag (const StringRef Feature) {
41
41
return hasFlag (Feature) ? Feature.substr (1 ) : Feature;
42
42
}
43
43
44
44
// / isEnabled - Return true if enable flag; '+'.
45
45
// /
46
- static inline bool isEnabled (const std::string & Feature) {
46
+ static inline bool isEnabled (const StringRef Feature) {
47
47
assert (!Feature.empty () && " Empty string" );
48
48
// Get first character
49
49
char Ch = Feature[0 ];
@@ -53,16 +53,19 @@ static inline bool isEnabled(const std::string &Feature) {
53
53
54
54
// / PrependFlag - Return a string with a prepended flag; '+' or '-'.
55
55
// /
56
- static inline std::string PrependFlag (const std::string & Feature,
57
- bool IsEnabled) {
56
+ static inline StringRef PrependFlag (const StringRef Feature,
57
+ bool IsEnabled) {
58
58
assert (!Feature.empty () && " Empty string" );
59
- if (hasFlag (Feature)) return Feature;
60
- return std::string (IsEnabled ? " +" : " -" ) + Feature;
59
+ if (hasFlag (Feature))
60
+ return Feature;
61
+ std::string Prefix = IsEnabled ? " +" : " -" ;
62
+ Prefix += Feature;
63
+ return StringRef (Prefix);
61
64
}
62
65
63
66
// / Split - Splits a string of comma separated items in to a vector of strings.
64
67
// /
65
- static void Split (std::vector<std::string> &V, const std::string & S) {
68
+ static void Split (std::vector<std::string> &V, const StringRef S) {
66
69
if (S.empty ())
67
70
return ;
68
71
@@ -106,7 +109,7 @@ static std::string Join(const std::vector<std::string> &V) {
106
109
}
107
110
108
111
// / Adding features.
109
- void SubtargetFeatures::AddFeature (const std::string & String,
112
+ void SubtargetFeatures::AddFeature (const StringRef String,
110
113
bool IsEnabled) {
111
114
// Don't add empty features
112
115
if (!String.empty ()) {
@@ -116,10 +119,10 @@ void SubtargetFeatures::AddFeature(const std::string &String,
116
119
}
117
120
118
121
// / Find KV in array using binary search.
119
- template <typename T> const T *Find (const std::string & S, const T *A, size_t L) {
122
+ template <typename T> const T *Find (const StringRef S, const T *A, size_t L) {
120
123
// Make the lower bound element we're looking for
121
124
T KV;
122
- KV.Key = S.c_str ();
125
+ KV.Key = S.data ();
123
126
// Determine the end of the array
124
127
const T *Hi = A + L;
125
128
// Binary search the array
@@ -173,21 +176,15 @@ static void Help(const SubtargetFeatureKV *CPUTable, size_t CPUTableSize,
173
176
// SubtargetFeatures Implementation
174
177
// ===----------------------------------------------------------------------===//
175
178
176
- SubtargetFeatures::SubtargetFeatures (const std::string & Initial) {
179
+ SubtargetFeatures::SubtargetFeatures (const StringRef Initial) {
177
180
// Break up string into separate features
178
181
Split (Features, Initial);
179
182
}
180
183
181
184
182
- std::string SubtargetFeatures::getString () const {
185
+ StringRef SubtargetFeatures::getString () const {
183
186
return Join (Features);
184
187
}
185
- void SubtargetFeatures::setString (const std::string &Initial) {
186
- // Throw out old features
187
- Features.clear ();
188
- // Break up string into separate features
189
- Split (Features, LowercaseString (Initial));
190
- }
191
188
192
189
// / SetImpliedBits - For each feature that is (transitively) implied by this
193
190
// / feature, set it.
@@ -229,7 +226,7 @@ void ClearImpliedBits(uint64_t &Bits, const SubtargetFeatureKV *FeatureEntry,
229
226
230
227
// / getFeatureBits - Get feature bits a CPU.
231
228
// /
232
- uint64_t SubtargetFeatures::getFeatureBits (const std::string & CPU,
229
+ uint64_t SubtargetFeatures::getFeatureBits (const StringRef CPU,
233
230
const SubtargetFeatureKV *CPUTable,
234
231
size_t CPUTableSize,
235
232
const SubtargetFeatureKV *FeatureTable,
@@ -272,7 +269,7 @@ uint64_t SubtargetFeatures::getFeatureBits(const std::string &CPU,
272
269
}
273
270
// Iterate through each feature
274
271
for (size_t i = 0 , E = Features.size (); i < E; i++) {
275
- const std::string & Feature = Features[i];
272
+ const StringRef Feature = Features[i];
276
273
277
274
// Check for help
278
275
if (Feature == " +help" )
@@ -306,7 +303,7 @@ uint64_t SubtargetFeatures::getFeatureBits(const std::string &CPU,
306
303
}
307
304
308
305
// / Get scheduling itinerary of a CPU.
309
- void *SubtargetFeatures::getItinerary (const std::string & CPU,
306
+ void *SubtargetFeatures::getItinerary (const StringRef CPU,
310
307
const SubtargetInfoKV *Table,
311
308
size_t TableSize) {
312
309
assert (Table && " missing table" );
0 commit comments