]> granicus.if.org Git - clang/commitdiff
Check that the clobber registers are valid.
authorAnders Carlsson <andersca@mac.com>
Sun, 25 Nov 2007 00:25:21 +0000 (00:25 +0000)
committerAnders Carlsson <andersca@mac.com>
Sun, 25 Nov 2007 00:25:21 +0000 (00:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44311 91177308-0d34-0410-b5e6-96231b3b80d8

Basic/TargetInfo.cpp
Sema/SemaStmt.cpp
include/clang/Basic/DiagnosticKinds.def
include/clang/Basic/TargetInfo.h
test/Sema/asm.c

index 57b01b7530ab767288018224d58c3919516d6e87..3b20d3aa554c572ccd25a69aacf59147b415238b 100644 (file)
@@ -14,8 +14,9 @@
 #include "clang/Basic/TargetInfo.h"
 #include "clang/Basic/Diagnostic.h"
 #include "clang/AST/Builtins.h"
-#include "llvm/ADT/StringMap.h"
 #include "llvm/ADT/APFloat.h"
+#include "llvm/ADT/StringMap.h"
+#include "llvm/ADT/STLExtras.h"
 #include <set>
 using namespace clang;
 
@@ -270,6 +271,46 @@ const char *TargetInfo::getVAListDeclaration() const {
 /// is a valid register name according to GCC. This is used by Sema for
 /// inline asm statements.
 bool TargetInfo::isValidGCCRegisterName(const char *Name) const {
-  // FIXME: Implement this.
+  const char * const *Names;
+  unsigned NumNames;
+  
+  // Get rid of any register prefix.
+  if (Name[0] == '%' || Name[0] == '#')
+    Name++;
+  
+  if (strcmp(Name, "memory") == 0 ||
+      strcmp(Name, "cc") == 0)
+    return true;
+  
+  PrimaryTarget->getGCCRegNames(Names, NumNames);
+  
+  // If we have a number it maps to an entry in the register name array.
+  if (isdigit(Name[0])) {
+    char *End;
+    int n = (int)strtol(Name, &End, 0);
+    if (*End == 0)
+      return n >= 0 && (unsigned)n < NumNames;
+  }
+
+  // Check register names.
+  for (unsigned i = 0; i < NumNames; i++) {
+    if (strcmp(Name, Names[i]) == 0)
+      return true;
+  }
+  
+  // Now check aliases.
+  const TargetInfoImpl::GCCRegAlias *Aliases;
+  unsigned NumAliases;
+  
+  PrimaryTarget->getGCCRegAliases(Aliases, NumAliases);
+  for (unsigned i = 0; i < NumAliases; i++) {
+    for (unsigned j = 0 ; j < llvm::array_lengthof(Aliases[i].Aliases); j++) {
+      if (!Aliases[i].Aliases[j])
+        break;
+      if (strcmp(Aliases[i].Aliases[j], Name) == 0)
+        return true;
+    }
+  }
+  
   return false;
 }
index d99356edc1926f4f1bf09bc48ab1f504526f0ac3..7f5d038e71e7eb4967a52030deeb1a5b675b29e1 100644 (file)
 #include "clang/AST/Expr.h"
 #include "clang/AST/Stmt.h"
 #include "clang/Parse/Scope.h"
+#include "clang/Basic/TargetInfo.h"
 #include "clang/Basic/Diagnostic.h"
 #include "clang/Basic/LangOptions.h"
+#include "llvm/ADT/SmallString.h"
 using namespace clang;
 
 Sema::StmtResult Sema::ActOnExprStmt(ExprTy *expr) {
@@ -691,6 +693,25 @@ Sema::StmtResult Sema::ActOnAsmStmt(SourceLocation AsmLoc,
     }
   }
   
+  // Check that the clobbers are valid.
+  for (unsigned i = 0; i < NumClobbers; i++) {
+    StringLiteral *Literal = cast<StringLiteral>((Expr *)Clobbers[i]);
+    assert(!Literal->isWide() && "Clobber strings should not be wide!");
+    
+    llvm::SmallString<16> Clobber(Literal->getStrData(), 
+                                  Literal->getStrData() + 
+                                  Literal->getByteLength());
+    
+    if (!Context.Target.isValidGCCRegisterName(Clobber.c_str())) {
+      Diag(Literal->getLocStart(),
+           diag::err_unknown_register_name_in_asm,
+           Clobber.c_str());
+      
+      // FIXME: We currently leak memory here.
+      return true;
+    }
+  }
+  
   return new AsmStmt(AsmLoc,
                      IsVolatile,
                      NumOutputs,
index 31fdd27b670fb6c6f006cd9469ebebdaeae702ec..ffdf626993896dad1b0e16a2d9935dce81340120 100644 (file)
@@ -793,7 +793,9 @@ DIAG(err_invalid_lvalue_in_asm_output, ERROR,
     "invalid lvalue in asm output")
 DIAG(err_invalid_type_in_asm_input, ERROR,
     "invalid type '%0' in asm input")
-
+DIAG(err_unknown_register_name_in_asm, ERROR,
+    "unknown register name '%0' in asm")
+    
 // CHECK: printf format string errors
 DIAG(warn_printf_not_string_constant, WARNING,
      "format string is not a string literal (potentially insecure)")
index c4c2631e4c0d9911a698c6270d1fcea0ce251f6e..3a186a28beeb878c0c56701be62eed2f995fbed9 100644 (file)
@@ -278,7 +278,7 @@ public:
   }
   
   virtual void getGCCRegNames(const char * const *&Names, 
-                                   unsigned &NumNames) const = 0;
+                              unsigned &NumNames) const = 0;
 
   struct GCCRegAlias {
     const char * const Aliases[5];
index e01a0f2dc0de103328b52b94d004662c2cf6d99e..360af015ce81b5dc034e8cbbcfacd8bbe2c4dde0 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: clang %s -verify -fsyntax-only
+// RUN: clang %s -arch=i386 -verify -fsyntax-only
 
 void
 f()
@@ -12,3 +12,16 @@ f()
   asm ("foo\n" : "=a" (i + 2)); // expected-error {{invalid lvalue in asm output}}
   
 }
+
+void
+clobbers()
+{
+  asm ("nop" : : : "ax", "#ax", "%ax");
+  asm ("nop" : : : "eax", "rax", "ah", "al");
+  asm ("nop" : : : "0", "%0", "#0");
+  asm ("nop" : : : "foo"); // expected-error {{unknown register name 'foo' in asm}}
+  asm ("nop" : : : "52");
+  asm ("nop" : : : "53"); // expected-error {{unknown register name '53' in asm}}
+  asm ("nop" : : : "-1"); // expected-error {{unknown register name '-1' in asm}}
+  asm ("nop" : : : "+1"); // expected-error {{unknown register name '+1' in asm}}
+}