Start attempting to generate code for C++ ctors.

llvm-svn: 69168
This commit is contained in:
Anders Carlsson
2009-04-15 15:55:24 +00:00
parent 635168aa33
commit f747524819
3 changed files with 65 additions and 5 deletions

View File

@@ -156,7 +156,14 @@ const char *CodeGenModule::getMangledName(const NamedDecl *ND) {
}
Name += '\0';
return MangledNames.GetOrCreateValue(Name.begin(), Name.end()).getKeyData();
return UniqueMangledName(Name.begin(), Name.end());
}
const char *CodeGenModule::UniqueMangledName(const char *NameStart,
const char *NameEnd) {
assert(*(NameEnd - 1) == '\0' && "Mangled name must be null terminated!");
return MangledNames.GetOrCreateValue(NameStart, NameEnd).getKeyData();
}
/// AddGlobalCtor - Add a function to the list that will be called before
@@ -1344,11 +1351,15 @@ void CodeGenModule::EmitTopLevelDecl(Decl *D) {
EmitGlobal(cast<ValueDecl>(D));
break;
// C++ Decls
case Decl::Namespace:
EmitNamespace(cast<NamespaceDecl>(D));
break;
// Objective-C Decls
case Decl::CXXConstructor:
EmitCXXConstructors(cast<CXXConstructorDecl>(D));
break;
// Objective-C Decls
// Forward declarations, no (immediate) code generation.
case Decl::ObjCClass: