add a 6-bit encoding type for strings.
authorChris Lattner <sabre@nondot.org>
Sat, 5 May 2007 01:15:42 +0000 (01:15 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 5 May 2007 01:15:42 +0000 (01:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36770 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Bitcode/BitCodes.h
include/llvm/Bitcode/BitstreamReader.h
include/llvm/Bitcode/BitstreamWriter.h

index 2cf8b7b72347a2c4a858cee470711200bb892fbc..1d3087c5a0c9a95f3bc0ed261ea501741afb0a44 100644 (file)
@@ -85,15 +85,15 @@ class BitCodeAbbrevOp {
   unsigned Enc   : 3;     // The encoding to use.
 public:
   enum Encoding {
-    Fixed = 1,  // A fixed with field, Val specifies number of bits.
+    Fixed = 1,  // A fixed width field, Val specifies number of bits.
     VBR   = 2,  // A VBR field where Val specifies the width of each chunk.
-    Array = 3   // A sequence of fields, next field species elt encoding.
+    Array = 3,  // A sequence of fields, next field species elt encoding.
+    Char6 = 4   // A 6-bit fixed field which maps to [a-zA-Z0-9._].
   };
     
   BitCodeAbbrevOp(uint64_t V) :  Val(V), IsLiteral(true) {}
   BitCodeAbbrevOp(Encoding E, uint64_t Data = 0)
     : Val(Data), IsLiteral(false), Enc(E) {}
-
   
   bool isLiteral() const { return IsLiteral; }
   bool isEncoding() const { return !IsLiteral; }
@@ -116,9 +116,38 @@ public:
     case VBR:
       return true;
     case Array:
+    case Char6:
       return false;
     }
   }
+  
+  /// isChar6 - Return true if this character is legal in the Char6 encoding.
+  static bool isChar6(char C) {
+    if (C >= 'a' && C <= 'z') return true;
+    if (C >= 'A' && C <= 'Z') return true;
+    if (C >= '0' && C <= '9') return true;
+    if (C == '.' || C == '_') return true;
+    return false;
+  }
+  static unsigned EncodeChar6(char C) {
+    if (C >= 'a' && C <= 'z') return C-'a';
+    if (C >= 'A' && C <= 'Z') return C-'A'+26;
+    if (C >= '0' && C <= '9') return C-'0'+26+26;
+    if (C == '.') return 62;
+    if (C == '_') return 63;
+    assert(0 && "Not a value Char6 character!");
+  }
+  
+  static char DecodeChar6(unsigned V) {
+    assert((V & ~63) == 0 && "Not a Char6 encoded character!");
+    if (V < 26) return V+'a';
+    if (V < 26+26) return V-26+'A';
+    if (V < 26+26+10) return V-26-26+'0';
+    if (V == 62) return '.';
+    if (V == 63) return '_';
+    assert(0 && "Not a value Char6 character!");
+  }
+  
 };
 
 /// BitCodeAbbrev - This class represents an abbreviation record.  An
index c15c0864e66039c42254a0e301bdd8259c9150cf..351bf335b3fd46ba6d6255a11c083433c7d7e7cb 100644 (file)
@@ -332,6 +332,9 @@ private:
       case BitCodeAbbrevOp::VBR:
         Vals.push_back(ReadVBR64(Op.getEncodingData()));
         break;
+      case BitCodeAbbrevOp::Char6:
+        Vals.push_back(BitCodeAbbrevOp::DecodeChar6(Read(6)));
+        break;
       }
     }
   }
index 198a82e287ec313d37095fe0a455006fa0947ce7..d80cad42498666132a71867a2619c0e1311691c8 100644 (file)
@@ -260,6 +260,9 @@ private:
     case BitCodeAbbrevOp::VBR:
       EmitVBR(V, Op.getEncodingData());
       break;
+    case BitCodeAbbrevOp::Char6:
+      Emit(BitCodeAbbrevOp::EncodeChar6((char)V), 6);
+      break;
     }        
   }
 public: