aboutsummaryrefslogtreecommitdiff
path: root/lib/Basic/Targets.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-12-19 04:15:38 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-12-19 04:15:38 +0000
commit97f52ac45369f6925b548404e61d511034c874ec (patch)
tree1b7ac4e44deb2bbc1d01351952bed977b19ac683 /lib/Basic/Targets.cpp
parentb93292ab7f2b3d43a9e0ad6421f572d1f5a323b4 (diff)
ARM: Use front-end specific target features "soft-float" and "soft-float-abi" to communicate FP mode to target; __SOFTFP__ is set correctly now.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@91755 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/Targets.cpp')
-rw-r--r--lib/Basic/Targets.cpp40
1 files changed, 36 insertions, 4 deletions
diff --git a/lib/Basic/Targets.cpp b/lib/Basic/Targets.cpp
index 7cc9f73b6c..66d1814bdb 100644
--- a/lib/Basic/Targets.cpp
+++ b/lib/Basic/Targets.cpp
@@ -1187,7 +1187,11 @@ class ARMTargetInfo : public TargetInfo {
static const char * const GCCRegNames[];
std::string ABI, CPU;
- bool IsThumb;
+ unsigned IsThumb : 1;
+
+ // Initialized via features.
+ unsigned SoftFloat : 1;
+ unsigned SoftFloatABI : 1;
public:
ARMTargetInfo(const std::string &TripleStr)
@@ -1240,6 +1244,36 @@ public:
return true;
}
+
+ virtual bool setFeatureEnabled(llvm::StringMap<bool> &Features,
+ const std::string &Name,
+ bool Enabled) const {
+ if (Name != "soft-float" && Name != "soft-float-abi")
+ return false;
+
+ Features[Name] = Enabled;
+ return true;
+ }
+
+ virtual void HandleTargetFeatures(std::vector<std::string> &Features) {
+ SoftFloat = SoftFloatABI = false;
+ for (unsigned i = 0, e = Features.size(); i != e; ++i) {
+ if (Features[i] == "+soft-float")
+ SoftFloat = true;
+ else if (Features[i] == "+soft-float-abi")
+ SoftFloatABI = true;
+ }
+
+ // Remove front-end specific options which the backend handles differently.
+ std::vector<std::string>::iterator it;
+ it = std::find(Features.begin(), Features.end(), "+soft-float");
+ if (it != Features.end())
+ Features.erase(it);
+ it = std::find(Features.begin(), Features.end(), "+soft-float-abi");
+ if (it != Features.end())
+ Features.erase(it);
+ }
+
static const char *getCPUDefineSuffix(llvm::StringRef Name) {
return llvm::StringSwitch<const char*>(Name)
.Cases("arm8", "arm810", "4")
@@ -1294,9 +1328,7 @@ public:
if (ABI == "aapcs" || ABI == "aapcs-linux")
Define(Defs, "__ARM_EABI__");
- // FIXME: This isn't correct, this should be set based on the various float
- // options.
- if (CPUArch[0] <= '5')
+ if (SoftFloat)
Define(Defs, "__SOFTFP__");
if (CPU == "xscale")