Implement Function::getIntrinsicID without it needing to call Value::getName,
authorChris Lattner <sabre@nondot.org>
Thu, 15 Feb 2007 19:17:16 +0000 (19:17 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 15 Feb 2007 19:17:16 +0000 (19:17 +0000)
which allocates a string.  This speeds up instcombine on 447.dealII by 5%.

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

lib/VMCore/Function.cpp
utils/TableGen/IntrinsicEmitter.cpp

index fcbf73f9cf36a839ec712090ac648ef6fe2b357b..8aa0caa8549bdbb59d2f153f14273e6eedc43110 100644 (file)
@@ -160,12 +160,15 @@ void Function::dropAllReferences() {
 /// llvm/Intrinsics.h.
 ///
 unsigned Function::getIntrinsicID() const {
-  const std::string& Name = this->getName();
-  if (Name.size() < 5 || Name[4] != '.' || Name[0] != 'l' || Name[1] != 'l'
+  const ValueName *ValName = this->getValueName();
+  unsigned Len = ValName->getKeyLength();
+  const char *Name = ValName->getKeyData();
+  
+  if (Len < 5 || Name[4] != '.' || Name[0] != 'l' || Name[1] != 'l'
       || Name[2] != 'v' || Name[3] != 'm')
     return 0;  // All intrinsics start with 'llvm.'
 
-  assert(Name.size() != 5 && "'llvm.' is an invalid intrinsic name!");
+  assert(Len != 5 && "'llvm.' is an invalid intrinsic name!");
 
 #define GET_FUNCTION_RECOGNIZER
 #include "llvm/Intrinsics.gen"
index faa750daee220c6c5eba140d63393615ce47322d..c44ae5e4caa733f9add95ebd3eef2f6b62f858f6 100644 (file)
@@ -81,17 +81,19 @@ EmitFnNameRecognizer(const std::vector<CodeGenIntrinsic> &Ints,
   OS << "// Function name -> enum value recognizer code.\n";
   OS << "#ifdef GET_FUNCTION_RECOGNIZER\n";
   OS << "  switch (Name[5]) {\n";
-  OS << "  default: break;\n";
+  OS << "  default:\n";
   // Emit the intrinsics in sorted order.
   char LastChar = 0;
   for (std::map<std::string, std::string>::iterator I = IntMapping.begin(),
        E = IntMapping.end(); I != E; ++I) {
     if (I->first[5] != LastChar) {
       LastChar = I->first[5];
+      OS << "    break;\n";
       OS << "  case '" << LastChar << "':\n";
     }
     
-    OS << "    if (Name == \"" << I->first << "\") return Intrinsic::"
+    OS << "    if (Len == " << I->first.size()
+       << " && !strcmp(Name, \"" << I->first << "\")) return Intrinsic::"
        << I->second << ";\n";
   }
   OS << "  }\n";