Skip to content

Commit d8e27a5

Browse files
author
Evan Cheng
committed
Switch SubtargetFeatures from std::string to StringRef.
llvm-svn: 134219
1 parent f09b0f1 commit d8e27a5

File tree

2 files changed

+25
-29
lines changed

2 files changed

+25
-29
lines changed

llvm/include/llvm/MC/SubtargetFeature.h

+6-7
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
#ifndef LLVM_MC_SUBTARGETFEATURE_H
1919
#define LLVM_MC_SUBTARGETFEATURE_H
2020

21-
#include <string>
2221
#include <vector>
2322
#include "llvm/ADT/Triple.h"
2423
#include "llvm/Support/DataTypes.h"
2524

2625
namespace llvm {
2726
class raw_ostream;
27+
class StringRef;
2828

2929
//===----------------------------------------------------------------------===//
3030
///
@@ -74,24 +74,23 @@ struct SubtargetInfoKV {
7474
class SubtargetFeatures {
7575
std::vector<std::string> Features; // Subtarget features as a vector
7676
public:
77-
explicit SubtargetFeatures(const std::string &Initial = std::string());
77+
explicit SubtargetFeatures(const StringRef Initial = "");
7878

7979
/// Features string accessors.
80-
std::string getString() const;
81-
void setString(const std::string &Initial);
80+
StringRef getString() const;
8281

8382
/// Adding Features.
84-
void AddFeature(const std::string &String, bool IsEnabled = true);
83+
void AddFeature(const StringRef String, bool IsEnabled = true);
8584

8685
/// Get feature bits of a CPU.
87-
uint64_t getFeatureBits(const std::string &CPU,
86+
uint64_t getFeatureBits(const StringRef CPU,
8887
const SubtargetFeatureKV *CPUTable,
8988
size_t CPUTableSize,
9089
const SubtargetFeatureKV *FeatureTable,
9190
size_t FeatureTableSize);
9291

9392
/// Get scheduling itinerary of a CPU.
94-
void *getItinerary(const std::string &CPU,
93+
void *getItinerary(const StringRef CPU,
9594
const SubtargetInfoKV *Table, size_t TableSize);
9695

9796
/// Print feature string.

llvm/lib/MC/SubtargetFeature.cpp

+19-22
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ using namespace llvm;
2727

2828
/// hasFlag - Determine if a feature has a flag; '+' or '-'
2929
///
30-
static inline bool hasFlag(const std::string &Feature) {
30+
static inline bool hasFlag(const StringRef Feature) {
3131
assert(!Feature.empty() && "Empty string");
3232
// Get first character
3333
char Ch = Feature[0];
@@ -37,13 +37,13 @@ static inline bool hasFlag(const std::string &Feature) {
3737

3838
/// StripFlag - Return string stripped of flag.
3939
///
40-
static inline std::string StripFlag(const std::string &Feature) {
40+
static inline std::string StripFlag(const StringRef Feature) {
4141
return hasFlag(Feature) ? Feature.substr(1) : Feature;
4242
}
4343

4444
/// isEnabled - Return true if enable flag; '+'.
4545
///
46-
static inline bool isEnabled(const std::string &Feature) {
46+
static inline bool isEnabled(const StringRef Feature) {
4747
assert(!Feature.empty() && "Empty string");
4848
// Get first character
4949
char Ch = Feature[0];
@@ -53,16 +53,19 @@ static inline bool isEnabled(const std::string &Feature) {
5353

5454
/// PrependFlag - Return a string with a prepended flag; '+' or '-'.
5555
///
56-
static inline std::string PrependFlag(const std::string &Feature,
57-
bool IsEnabled) {
56+
static inline StringRef PrependFlag(const StringRef Feature,
57+
bool IsEnabled) {
5858
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);
6164
}
6265

6366
/// Split - Splits a string of comma separated items in to a vector of strings.
6467
///
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) {
6669
if (S.empty())
6770
return;
6871

@@ -106,7 +109,7 @@ static std::string Join(const std::vector<std::string> &V) {
106109
}
107110

108111
/// Adding features.
109-
void SubtargetFeatures::AddFeature(const std::string &String,
112+
void SubtargetFeatures::AddFeature(const StringRef String,
110113
bool IsEnabled) {
111114
// Don't add empty features
112115
if (!String.empty()) {
@@ -116,10 +119,10 @@ void SubtargetFeatures::AddFeature(const std::string &String,
116119
}
117120

118121
/// 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) {
120123
// Make the lower bound element we're looking for
121124
T KV;
122-
KV.Key = S.c_str();
125+
KV.Key = S.data();
123126
// Determine the end of the array
124127
const T *Hi = A + L;
125128
// Binary search the array
@@ -173,21 +176,15 @@ static void Help(const SubtargetFeatureKV *CPUTable, size_t CPUTableSize,
173176
// SubtargetFeatures Implementation
174177
//===----------------------------------------------------------------------===//
175178

176-
SubtargetFeatures::SubtargetFeatures(const std::string &Initial) {
179+
SubtargetFeatures::SubtargetFeatures(const StringRef Initial) {
177180
// Break up string into separate features
178181
Split(Features, Initial);
179182
}
180183

181184

182-
std::string SubtargetFeatures::getString() const {
185+
StringRef SubtargetFeatures::getString() const {
183186
return Join(Features);
184187
}
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-
}
191188

192189
/// SetImpliedBits - For each feature that is (transitively) implied by this
193190
/// feature, set it.
@@ -229,7 +226,7 @@ void ClearImpliedBits(uint64_t &Bits, const SubtargetFeatureKV *FeatureEntry,
229226

230227
/// getFeatureBits - Get feature bits a CPU.
231228
///
232-
uint64_t SubtargetFeatures::getFeatureBits(const std::string &CPU,
229+
uint64_t SubtargetFeatures::getFeatureBits(const StringRef CPU,
233230
const SubtargetFeatureKV *CPUTable,
234231
size_t CPUTableSize,
235232
const SubtargetFeatureKV *FeatureTable,
@@ -272,7 +269,7 @@ uint64_t SubtargetFeatures::getFeatureBits(const std::string &CPU,
272269
}
273270
// Iterate through each feature
274271
for (size_t i = 0, E = Features.size(); i < E; i++) {
275-
const std::string &Feature = Features[i];
272+
const StringRef Feature = Features[i];
276273

277274
// Check for help
278275
if (Feature == "+help")
@@ -306,7 +303,7 @@ uint64_t SubtargetFeatures::getFeatureBits(const std::string &CPU,
306303
}
307304

308305
/// Get scheduling itinerary of a CPU.
309-
void *SubtargetFeatures::getItinerary(const std::string &CPU,
306+
void *SubtargetFeatures::getItinerary(const StringRef CPU,
310307
const SubtargetInfoKV *Table,
311308
size_t TableSize) {
312309
assert(Table && "missing table");

0 commit comments

Comments
 (0)