Make output match actual condition tested. Thanks, Duncan.
[oota-llvm.git] / lib / VMCore / InlineAsm.cpp
index e9a81e4ed88adddd0c84ca6539980e482ea5742b..ca4ecad058c058ffea5fb897230cb5801800040c 100644 (file)
 
 #include "llvm/InlineAsm.h"
 #include "llvm/DerivedTypes.h"
+#include <algorithm>
 #include <cctype>
 using namespace llvm;
 
+// Implement the first virtual method in this class in this file so the
+// InlineAsm vtable is emitted here.
+InlineAsm::~InlineAsm() {
+}
+
+
 // NOTE: when memoizing the function type, we have to be careful to handle the
 // case when the type gets refined.
 
@@ -38,50 +45,122 @@ const FunctionType *InlineAsm::getFunctionType() const {
   return cast<FunctionType>(getType()->getElementType());
 }
 
-std::vector<std::pair<InlineAsm::ConstraintPrefix, std::string> >
-InlineAsm::ParseConstraints(const std::string &Constraints) {
-  std::vector<std::pair<InlineAsm::ConstraintPrefix, std::string> > Result;
+/// Parse - Analyze the specified string (e.g. "==&{eax}") and fill in the
+/// fields in this structure.  If the constraint string is not understood,
+/// return true, otherwise return false.
+bool InlineAsm::ConstraintInfo::Parse(const std::string &Str,
+                     std::vector<InlineAsm::ConstraintInfo> &ConstraintsSoFar) {
+  std::string::const_iterator I = Str.begin(), E = Str.end();
   
-  // Scan the constraints string.
-  for (std::string::const_iterator I = Constraints.begin(), 
-       E = Constraints.end(); I != E; ) {
-    if (*I == ',') { Result.clear(); break; } // Empty constraint like ",,"
-    
-    // Parse the prefix.
-    ConstraintPrefix ConstraintType = isInput;
+  // Initialize
+  Type = isInput;
+  isEarlyClobber = false;
+  hasMatchingInput = false;
+  isCommutative = false;
+  isIndirect = false;
+  
+  // Parse prefixes.
+  if (*I == '~') {
+    Type = isClobber;
+    ++I;
+  } else if (*I == '=') {
+    ++I;
+    Type = isOutput;
+  }
+  
+  if (*I == '*') {
+    isIndirect = true;
+    ++I;
+  }
+  
+  if (I == E) return true;  // Just a prefix, like "==" or "~".
+  
+  // Parse the modifiers.
+  bool DoneWithModifiers = false;
+  while (!DoneWithModifiers) {
+    switch (*I) {
+    default:
+      DoneWithModifiers = true;
+      break;
+    case '&':     // Early clobber.
+      if (Type != isOutput ||      // Cannot early clobber anything but output.
+          isEarlyClobber)          // Reject &&&&&&
+        return true;
+      isEarlyClobber = true;
+      break;
+    case '%':     // Commutative.
+      if (Type == isClobber ||     // Cannot commute clobbers.
+          isCommutative)           // Reject %%%%%
+        return true;
+      isCommutative = true;
+      break;
+    case '#':     // Comment.
+    case '*':     // Register preferencing.
+      return true;     // Not supported.
+    }
     
-    if (*I == '~') {
-      ConstraintType = isClobber;
+    if (!DoneWithModifiers) {
       ++I;
-    } else if (*I == '=') {
-      ++I;
-      if (I != E && *I == '=') {
-        ConstraintType = isIndirectOutput;
-        ++I;
-      } else {
-        ConstraintType = isOutput;
-      }
+      if (I == E) return true;   // Just prefixes and modifiers!
     }
-    
-    if (I == E) { Result.clear(); break; }  // Just a prefix, like "==" or "~".
-    
-    std::string::const_iterator IdStart = I;
+  }
+  
+  // Parse the various constraints.
+  while (I != E) {
+    if (*I == '{') {   // Physical register reference.
+      // Find the end of the register name.
+      std::string::const_iterator ConstraintEnd = std::find(I+1, E, '}');
+      if (ConstraintEnd == E) return true;  // "{foo"
+      Codes.push_back(std::string(I, ConstraintEnd+1));
+      I = ConstraintEnd+1;
+    } else if (isdigit(*I)) {     // Matching Constraint
+      // Maximal munch numbers.
+      std::string::const_iterator NumStart = I;
+      while (I != E && isdigit(*I))
+        ++I;
+      Codes.push_back(std::string(NumStart, I));
+      unsigned N = atoi(Codes.back().c_str());
+      // Check that this is a valid matching constraint!
+      if (N >= ConstraintsSoFar.size() || ConstraintsSoFar[N].Type != isOutput||
+          Type != isInput)
+        return true;  // Invalid constraint number.
       
-    // Parse the id.  We accept [a-zA-Z0-9] currently.
-    while (I != E && isalnum(*I)) ++I;
-    
-    if (IdStart == I) {                    // Requires more than just a prefix
-      Result.clear();
+      // Note that operand #n has a matching input.
+      ConstraintsSoFar[N].hasMatchingInput = true;
+    } else {
+      // Single letter constraint.
+      Codes.push_back(std::string(I, I+1));
+      ++I;
+    }
+  }
+
+  return false;
+}
+
+std::vector<InlineAsm::ConstraintInfo>
+InlineAsm::ParseConstraints(const std::string &Constraints) {
+  std::vector<ConstraintInfo> Result;
+  
+  // Scan the constraints string.
+  for (std::string::const_iterator I = Constraints.begin(), 
+       E = Constraints.end(); I != E; ) {
+    ConstraintInfo Info;
+
+    // Find the end of this constraint.
+    std::string::const_iterator ConstraintEnd = std::find(I, E, ',');
+
+    if (ConstraintEnd == I ||  // Empty constraint like ",,"
+        Info.Parse(std::string(I, ConstraintEnd), Result)) {
+      Result.clear();          // Erroneous constraint?
       break;
     }
+
+    Result.push_back(Info);
     
-    // Remember this constraint.
-    Result.push_back(std::make_pair(ConstraintType, std::string(IdStart, I)));
-    
-    // If we reached the end of the ID, we must have the end of the string or a
-    // comma, which we skip now.
+    // ConstraintEnd may be either the next comma or the end of the string.  In
+    // the former case, we skip the comma.
+    I = ConstraintEnd;
     if (I != E) {
-      if (*I != ',') { Result.clear(); break; }
       ++I;
       if (I == E) { Result.clear(); break; }    // don't allow "xyz,"
     }
@@ -96,8 +175,7 @@ InlineAsm::ParseConstraints(const std::string &Constraints) {
 bool InlineAsm::Verify(const FunctionType *Ty, const std::string &ConstStr) {
   if (Ty->isVarArg()) return false;
   
-  std::vector<std::pair<ConstraintPrefix, std::string> >
-  Constraints = ParseConstraints(ConstStr);
+  std::vector<ConstraintInfo> Constraints = ParseConstraints(ConstStr);
   
   // Error parsing constraints.
   if (Constraints.empty() && !ConstStr.empty()) return false;
@@ -105,17 +183,19 @@ bool InlineAsm::Verify(const FunctionType *Ty, const std::string &ConstStr) {
   unsigned NumOutputs = 0, NumInputs = 0, NumClobbers = 0;
   
   for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
-    switch (Constraints[i].first) {
-    case isOutput:
-      if (NumInputs || NumClobbers) return false;  // outputs come first.
-      ++NumOutputs;
-      break;
-    case isInput:
-    case isIndirectOutput:
+    switch (Constraints[i].Type) {
+    case InlineAsm::isOutput:
+      if (!Constraints[i].isIndirect) {
+        if (NumInputs || NumClobbers) return false;  // outputs come first.
+        ++NumOutputs;
+        break;
+      }
+      // FALLTHROUGH for Indirect Outputs.
+    case InlineAsm::isInput:
       if (NumClobbers) return false;               // inputs before clobbers.
       ++NumInputs;
       break;
-    case isClobber:
+    case InlineAsm::isClobber:
       ++NumClobbers;
       break;
     }
@@ -129,3 +209,5 @@ bool InlineAsm::Verify(const FunctionType *Ty, const std::string &ConstStr) {
   if (Ty->getNumParams() != NumInputs) return false;
   return true;
 }
+
+DEFINING_FILE_FOR(InlineAsm)