]> granicus.if.org Git - clang/commitdiff
CG support for inline asm constraints with symbolic names. Fixes PR3345
authorAnders Carlsson <andersca@mac.com>
Sun, 18 Jan 2009 02:06:20 +0000 (02:06 +0000)
committerAnders Carlsson <andersca@mac.com>
Sun, 18 Jan 2009 02:06:20 +0000 (02:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62444 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGStmt.cpp

index 04fc26dd89557c61da464fc9b9b6c9d47a39b067..cd5626db5c746425b15256a8721bf0c03a65907f 100644 (file)
@@ -837,7 +837,10 @@ static std::string ConvertAsmString(const AsmStmt& S, bool &Failed)
 }
 
 static std::string SimplifyConstraint(const char* Constraint,
-                                      TargetInfo &Target) {
+                                      TargetInfo &Target,
+                                      const std::string *OutputNamesBegin = 0,
+                                      const std::string *OutputNamesEnd = 0)
+{
   std::string Result;
   
   while (*Constraint) {
@@ -853,6 +856,17 @@ static std::string SimplifyConstraint(const char* Constraint,
     case 'g':
       Result += "imr";
       break;
+    case '[': {
+      assert(OutputNamesBegin && OutputNamesEnd &&
+             "Must pass output names to constraints with a symbolic name");
+      unsigned Index;
+      bool result = Target.resolveSymbolicName(Constraint, 
+                                               OutputNamesBegin,
+                                               OutputNamesEnd, Index);
+      assert(result && "Could not resolve symbolic name");
+      Result += llvm::utostr(Index);
+      break;
+    }
     }
     
     Constraint++;
@@ -986,7 +1000,9 @@ void CodeGenFunction::EmitAsmStmt(const AsmStmt &S) {
       Constraints += ',';
     
     // Simplify the input constraint.
-    InputConstraint = SimplifyConstraint(InputConstraint.c_str(), Target);
+    InputConstraint = SimplifyConstraint(InputConstraint.c_str(), Target,
+                                         S.begin_output_names(),
+                                         S.end_output_names());
 
     llvm::Value *Arg = EmitAsmInput(S, Info, InputExpr, Constraints);