Add support for a marker byte that indicates that we shouldn't add the user
authorChris Lattner <sabre@nondot.org>
Sat, 24 Sep 2005 08:24:28 +0000 (08:24 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 24 Sep 2005 08:24:28 +0000 (08:24 +0000)
prefix to a symbol name

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23421 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Mangler.cpp

index 0847604b8f866807190dd0be6a89165f11c265e2..2dc0767f9b1a313b306b35f19c6fb3ba41e51156 100644 (file)
@@ -28,16 +28,21 @@ static std::string MangleLetter(unsigned char C) {
 /// makeNameProper - We don't want identifier names non-C-identifier characters
 /// in them, so mangle them as appropriate.
 ///
-std::string Mangler::makeNameProper(const std::string &X) {
+std::string Mangler::makeNameProper(const std::string &X, const char *Prefix) {
   std::string Result;
 
-  // Mangle the first letter specially, don't allow numbers...
-  if ((X[0] < 'a' || X[0] > 'z') && (X[0] < 'A' || X[0] > 'Z') && X[0] != '_')
-    Result += MangleLetter(X[0]);
+  // If X does not start with (char)1, add the prefix.
+  std::string::const_iterator I = X.begin();
+  if (*I != 1)
+    Result = Prefix;
   else
-    Result += X[0];
+    ++I;  // Skip over the marker.
+  
+  // Mangle the first letter specially, don't allow numbers...
+  if (*I >= '0' && *I <= '9')
+    Result += MangleLetter(*I++);
 
-  for (std::string::const_iterator I = X.begin()+1, E = X.end(); I != E; ++I)
+  for (std::string::const_iterator E = X.end(); I != E; ++I)
     if ((*I < 'a' || *I > 'z') && (*I < 'A' || *I > 'Z') &&
         (*I < '0' || *I > '9') && *I != '_')
       Result += MangleLetter(*I);
@@ -75,7 +80,7 @@ std::string Mangler::getValueName(const Value *V) {
     if (gv && isa<Function>(gv) && cast<Function>(gv)->getIntrinsicID()) {
       name = gv->getName(); // Is an intrinsic function
     } else if (gv && !gv->hasInternalLinkage() && !MangledGlobals.count(gv)) {
-      name = Prefix + makeNameProper(gv->getName());
+      name = makeNameProper(gv->getName(), Prefix);
     } else {
       // Non-global, or global with internal linkage / colliding name
       // -> mangle.