]> granicus.if.org Git - clang/commitdiff
Add TargetInfo::getABI(), and base ARM APCS vs AAPCS choice on that.
authorDaniel Dunbar <daniel@zuster.org>
Mon, 14 Sep 2009 00:35:03 +0000 (00:35 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Mon, 14 Sep 2009 00:35:03 +0000 (00:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@81735 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/TargetInfo.h
lib/Basic/Targets.cpp
lib/CodeGen/TargetABIInfo.cpp
test/CodeGen/arm-apcs-arguments.c

index ee742aafe3750b3ce4df64c0873b25cc1d96bd54..64692ba37ae14b470c6ed504af71b1609f65954e 100644 (file)
@@ -352,6 +352,11 @@ public:
                                   llvm::StringMap<bool> &Features) const {
   }
 
+  /// getABI - Get the ABI in use.
+  virtual const char *getABI() const {
+    return "";
+  }
+
   /// setABI - Use the specific ABI.
   ///
   /// \return - False on error (invalid ABI name).
index c9a3deab289944e5cfeb6a6536b21cf464f03ddc..eed9e2cc192e5001a74c86bd3350048829aba930 100644 (file)
@@ -991,8 +991,13 @@ class ARMTargetInfo : public TargetInfo {
     Armv7a,
     XScale
   } ArmArch;
+
+  std::string ABI;
+
 public:
-  ARMTargetInfo(const std::string& triple) : TargetInfo(triple) {
+  ARMTargetInfo(const std::string& triple)
+    : TargetInfo(triple), ABI("aapcs-linux")
+  {
     // FIXME: Are the defaults correct for ARM?
     DescriptionString = ("e-p:32:32:32-i1:8:32-i8:8:32-i16:16:32-i32:32:32-"
                          "i64:32:32-f32:32:32-f64:32:32-"
@@ -1016,7 +1021,10 @@ public:
       ArmArch = Armv6;
     }
   }
+  virtual const char *getABI() const { return ABI.c_str(); }
   virtual bool setABI(const std::string &Name) {
+    ABI = Name;
+
     // The defaults (above) are for AAPCS, check if we need to change them.
     //
     // FIXME: We need support for -meabi... we could just mangle it into the
index 892994af107678693aa8f4b689bf848a844aed24..6d95adad86a9c4af0917a4c796ad56d5401c9b5a 100644 (file)
@@ -1682,11 +1682,8 @@ const ABIInfo &CodeGenTypes::getABIInfo() const {
 
   case llvm::Triple::arm:
   case llvm::Triple::thumb:
-    // FIXME: We should get this from the target, we also need a -target-abi
-    // because the user should have some control over this.
-    //
     // FIXME: We want to know the float calling convention as well.
-    if (Triple.getOS() == llvm::Triple::Darwin)
+    if (strcmp(getContext().Target.getABI(), "apcs-gnu") == 0)
       return *(TheABIInfo = new ARMABIInfo(ARMABIInfo::APCS));
 
     return *(TheABIInfo = new ARMABIInfo(ARMABIInfo::AAPCS));
index d427dd144a24ab4ef321a5486fb3858f376bb34f..db985d7a202208ec33d692757ba8b37d81780e08 100644 (file)
@@ -1,5 +1,5 @@
 // RUX: iphone-llvm-gcc -arch armv7 -flto -S -o - %s | FileCheck %s
-// RUN: clang-cc -triple armv7-apple-darwin9 -emit-llvm -w -o - %s | FileCheck %s
+// RUN: clang-cc -triple armv7-apple-darwin9 -target-abi=apcs-gnu -emit-llvm -w -o - %s | FileCheck %s
 
 // CHECK: define arm_apcscc signext i8 @f0()
 char f0(void) {