summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtyom Skrobov <Artyom.Skrobov@arm.com>2014-01-25 16:56:18 +0000
committerArtyom Skrobov <Artyom.Skrobov@arm.com>2014-01-25 16:56:18 +0000
commit85ae0340ba492ee87f8ef2822f2740065a08903d (patch)
tree6f14ec95d23e2865768ed24cbd8ef51532e273fe
parentc0c6ed683aab59ba17cc0db097d7beafb414db96 (diff)
downloadllvm-85ae0340ba492ee87f8ef2822f2740065a08903d.tar.gz
llvm-85ae0340ba492ee87f8ef2822f2740065a08903d.tar.bz2
llvm-85ae0340ba492ee87f8ef2822f2740065a08903d.tar.xz
Reverting r199886 (Prevent repetitive warnings for unrecognized processors and features)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200083 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/MC/SubtargetFeature.h6
-rw-r--r--lib/MC/MCSubtargetInfo.cpp11
-rw-r--r--lib/MC/SubtargetFeature.cpp54
-rw-r--r--test/MC/ARM/unrecognized.ll15
4 files changed, 27 insertions, 59 deletions
diff --git a/include/llvm/MC/SubtargetFeature.h b/include/llvm/MC/SubtargetFeature.h
index ad7fec53ac..d0735ccd9f 100644
--- a/include/llvm/MC/SubtargetFeature.h
+++ b/include/llvm/MC/SubtargetFeature.h
@@ -101,12 +101,6 @@ public:
/// Adds the default features for the specified target triple.
void getDefaultSubtargetFeatures(const Triple& Triple);
-
- /// Find KV in array using binary search.
- /// T should be either SubtargetFeatureKV or SubtargetInfoKV
- template<typename T>
- static const T *Find(StringRef Key, const T *Array, size_t Length,
- const char* KeyType);
};
} // End namespace llvm
diff --git a/lib/MC/MCSubtargetInfo.cpp b/lib/MC/MCSubtargetInfo.cpp
index ead7aa96d1..8d8e2900b6 100644
--- a/lib/MC/MCSubtargetInfo.cpp
+++ b/lib/MC/MCSubtargetInfo.cpp
@@ -96,11 +96,14 @@ MCSubtargetInfo::getSchedModelForCPU(StringRef CPU) const {
#endif
// Find entry
- const SubtargetInfoKV *Found = SubtargetFeatures::Find(CPU, ProcSchedModels,
- NumProcs, "processor");
- if (!Found)
+ const SubtargetInfoKV *Found =
+ std::lower_bound(ProcSchedModels, ProcSchedModels+NumProcs, CPU);
+ if (Found == ProcSchedModels+NumProcs || StringRef(Found->Key) != CPU) {
+ errs() << "'" << CPU
+ << "' is not a recognized processor for this target"
+ << " (ignoring processor)\n";
return &MCSchedModel::DefaultSchedModel;
-
+ }
assert(Found->Value && "Missing processor SchedModel value");
return (const MCSchedModel *)Found->Value;
}
diff --git a/lib/MC/SubtargetFeature.cpp b/lib/MC/SubtargetFeature.cpp
index c9d34703fc..2fb91f2125 100644
--- a/lib/MC/SubtargetFeature.cpp
+++ b/lib/MC/SubtargetFeature.cpp
@@ -11,11 +11,9 @@
//
//===----------------------------------------------------------------------===//
-#include "llvm/ADT/SmallSet.h"
#include "llvm/MC/SubtargetFeature.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/Format.h"
-#include "llvm/Support/SourceMgr.h"
#include "llvm/Support/raw_ostream.h"
#include <algorithm>
#include <cassert>
@@ -120,42 +118,19 @@ void SubtargetFeatures::AddFeature(const StringRef String,
}
}
-// This needs to be shared between the instantiations of Find<>
-typedef std::pair<std::string,std::string> KeyWithType;
-static SmallSet<KeyWithType,10> reportedAsUnrecognized;
-
/// Find KV in array using binary search.
-template<typename T>
-const T *SubtargetFeatures::Find(StringRef Key, const T *Array, size_t Length,
- const char* KeyType) {
+static const SubtargetFeatureKV *Find(StringRef S, const SubtargetFeatureKV *A,
+ size_t L) {
// Determine the end of the array
- const T *Hi = Array + Length;
+ const SubtargetFeatureKV *Hi = A + L;
// Binary search the array
- const T *F = std::lower_bound(Array, Hi, Key);
+ const SubtargetFeatureKV *F = std::lower_bound(A, Hi, S);
// If not found then return NULL
- if (F == Hi || StringRef(F->Key) != Key) {
- // If not yet reported, report now
- KeyWithType current(KeyType, Key);
- if(!reportedAsUnrecognized.count(current)) {
- SmallString<1024> storage;
- StringRef message = ("'" + Key +
- "' is not a recognized " + KeyType +
- " for this target (ignoring " + KeyType +
- ")").toStringRef(storage);
- SMDiagnostic(StringRef(), SourceMgr::DK_Warning, message)
- .print(0, errs());
- reportedAsUnrecognized.insert(current);
- }
- return NULL;
- }
+ if (F == Hi || StringRef(F->Key) != S) return NULL;
// Return the found array item
return F;
}
-// Instantiate with <SubtargetInfoKV> for use in MCSubtargetInfo
-template const SubtargetInfoKV *SubtargetFeatures::Find<SubtargetInfoKV>
- (StringRef Key, const SubtargetInfoKV *Array, size_t Length, const char* KeyType);
-
/// getLongestEntryLength - Return the length of the longest entry in the table.
///
static size_t getLongestEntryLength(const SubtargetFeatureKV *Table,
@@ -253,7 +228,7 @@ SubtargetFeatures::ToggleFeature(uint64_t Bits, const StringRef Feature,
size_t FeatureTableSize) {
// Find feature in table.
const SubtargetFeatureKV *FeatureEntry =
- Find(StripFlag(Feature), FeatureTable, FeatureTableSize, "feature");
+ Find(StripFlag(Feature), FeatureTable, FeatureTableSize);
// If there is a match
if (FeatureEntry) {
if ((Bits & FeatureEntry->Value) == FeatureEntry->Value) {
@@ -267,6 +242,10 @@ SubtargetFeatures::ToggleFeature(uint64_t Bits, const StringRef Feature,
// For each feature that this implies, set it.
SetImpliedBits(Bits, FeatureEntry, FeatureTable, FeatureTableSize);
}
+ } else {
+ errs() << "'" << Feature
+ << "' is not a recognized feature for this target"
+ << " (ignoring feature)\n";
}
return Bits;
@@ -301,8 +280,7 @@ uint64_t SubtargetFeatures::getFeatureBits(const StringRef CPU,
// Find CPU entry if CPU name is specified.
if (!CPU.empty()) {
- const SubtargetFeatureKV *CPUEntry = Find(CPU, CPUTable, CPUTableSize,
- "processor");
+ const SubtargetFeatureKV *CPUEntry = Find(CPU, CPUTable, CPUTableSize);
// If there is a match
if (CPUEntry) {
// Set base feature bits
@@ -314,6 +292,10 @@ uint64_t SubtargetFeatures::getFeatureBits(const StringRef CPU,
if (CPUEntry->Value & FE.Value)
SetImpliedBits(Bits, &FE, FeatureTable, FeatureTableSize);
}
+ } else {
+ errs() << "'" << CPU
+ << "' is not a recognized processor for this target"
+ << " (ignoring processor)\n";
}
}
@@ -327,7 +309,7 @@ uint64_t SubtargetFeatures::getFeatureBits(const StringRef CPU,
// Find feature in table.
const SubtargetFeatureKV *FeatureEntry =
- Find(StripFlag(Feature), FeatureTable, FeatureTableSize, "feature");
+ Find(StripFlag(Feature), FeatureTable, FeatureTableSize);
// If there is a match
if (FeatureEntry) {
// Enable/disable feature in bits
@@ -342,6 +324,10 @@ uint64_t SubtargetFeatures::getFeatureBits(const StringRef CPU,
// For each feature that implies this, clear it.
ClearImpliedBits(Bits, FeatureEntry, FeatureTable, FeatureTableSize);
}
+ } else {
+ errs() << "'" << Feature
+ << "' is not a recognized feature for this target"
+ << " (ignoring feature)\n";
}
}
diff --git a/test/MC/ARM/unrecognized.ll b/test/MC/ARM/unrecognized.ll
deleted file mode 100644
index 88fb96d1bf..0000000000
--- a/test/MC/ARM/unrecognized.ll
+++ /dev/null
@@ -1,15 +0,0 @@
-; RUN: llc -mcpu=invalid -o /dev/null %s 2>&1 | FileCheck %s --check-prefix=CPU
-; CPU: 'invalid' is not a recognized processor for this target (ignoring processor)
-; CPU-NOT: 'invalid' is not a recognized processor for this target (ignoring processor)
-
-; RUN: llc -mattr=+foo,+bar -o /dev/null %s 2>&1 | FileCheck %s --check-prefix=FEATURE
-; FEATURE: 'foo' is not a recognized feature for this target (ignoring feature)
-; FEATURE-NEXT: 'bar' is not a recognized feature for this target (ignoring feature)
-; FEATURE-NOT: 'foo' is not a recognized feature for this target (ignoring feature)
-; FEATURE-NOT: 'bar' is not a recognized feature for this target (ignoring feature)
-
-define void @foo() {
-entry:
- ret void
-}
-