Add a new version of Module::getFunction that takes a const char* instead
of a std::string. This avoids copying the string to the heap in common cases. Patch by Pratik Solanki! llvm-svn: 52834
This commit is contained in:
@@ -201,6 +201,11 @@ Function *Module::getFunction(const std::string &Name) const {
|
||||
return dyn_cast_or_null<Function>(SymTab.lookup(Name));
|
||||
}
|
||||
|
||||
Function *Module::getFunction(const char *Name) const {
|
||||
const ValueSymbolTable &SymTab = getValueSymbolTable();
|
||||
return dyn_cast_or_null<Function>(SymTab.lookup(Name, Name+strlen(Name)));
|
||||
}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// Methods for easy access to the global variables in the module.
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user