Cleanup: Get rid of a bunch of unnecessary invocations of internString()
in CGDebugInfo.cpp: MDString::get() copies its arguments. llvm-svn: 247445
This commit is contained in:
@@ -345,13 +345,6 @@ void CGDebugInfo::CreateCompileUnit() {
|
||||
}
|
||||
}
|
||||
|
||||
// Save filename string.
|
||||
StringRef Filename = internString(MainFileName);
|
||||
|
||||
// Save split dwarf file string.
|
||||
std::string SplitDwarfFile = CGM.getCodeGenOpts().SplitDwarfFile;
|
||||
StringRef SplitDwarfFilename = internString(SplitDwarfFile);
|
||||
|
||||
llvm::dwarf::SourceLanguage LangTag;
|
||||
const LangOptions &LO = CGM.getLangOpts();
|
||||
if (LO.CPlusPlus) {
|
||||
@@ -377,13 +370,13 @@ void CGDebugInfo::CreateCompileUnit() {
|
||||
// Create new compile unit.
|
||||
// FIXME - Eliminate TheCU.
|
||||
TheCU = DBuilder.createCompileUnit(
|
||||
LangTag, Filename, getCurrentDirname(), Producer, LO.Optimize,
|
||||
CGM.getCodeGenOpts().DwarfDebugFlags, RuntimeVers, SplitDwarfFilename,
|
||||
LangTag, MainFileName, getCurrentDirname(), Producer, LO.Optimize,
|
||||
CGM.getCodeGenOpts().DwarfDebugFlags, RuntimeVers,
|
||||
CGM.getCodeGenOpts().SplitDwarfFile,
|
||||
DebugKind <= CodeGenOptions::DebugLineTablesOnly
|
||||
? llvm::DIBuilder::LineTablesOnly
|
||||
: llvm::DIBuilder::FullDebug,
|
||||
0 /* DWOid */,
|
||||
DebugKind != CodeGenOptions::LocTrackingOnly);
|
||||
0 /* DWOid */, DebugKind != CodeGenOptions::LocTrackingOnly);
|
||||
}
|
||||
|
||||
llvm::DIType *CGDebugInfo::CreateType(const BuiltinType *BT) {
|
||||
@@ -775,9 +768,9 @@ llvm::DIType *CGDebugInfo::CreateType(const TemplateSpecializationType *Ty,
|
||||
Ty->getTemplateName().getAsTemplateDecl())->getTemplatedDecl();
|
||||
|
||||
SourceLocation Loc = AliasDecl->getLocation();
|
||||
return DBuilder.createTypedef(
|
||||
Src, internString(OS.str()), getOrCreateFile(Loc), getLineNumber(Loc),
|
||||
getDeclContextDescriptor(AliasDecl));
|
||||
return DBuilder.createTypedef(Src, OS.str(), getOrCreateFile(Loc),
|
||||
getLineNumber(Loc),
|
||||
getDeclContextDescriptor(AliasDecl));
|
||||
}
|
||||
|
||||
llvm::DIType *CGDebugInfo::CreateType(const TypedefType *Ty,
|
||||
@@ -1688,13 +1681,13 @@ CGDebugInfo::getOrCreateModuleRef(ExternalASTSource::ASTSourceDescriptor Mod) {
|
||||
}
|
||||
}
|
||||
llvm::DIBuilder DIB(CGM.getModule());
|
||||
auto *CU = DIB.createCompileUnit(
|
||||
TheCU->getSourceLanguage(), internString(Mod.ModuleName),
|
||||
internString(Mod.Path), TheCU->getProducer(), true, StringRef(), 0,
|
||||
internString(Mod.ASTFile), llvm::DIBuilder::FullDebug, Mod.Signature);
|
||||
llvm::DIModule *M = DIB.createModule(
|
||||
CU, Mod.ModuleName, ConfigMacros, internString(Mod.Path),
|
||||
internString(CGM.getHeaderSearchOpts().Sysroot));
|
||||
auto *CU = DIB.createCompileUnit(TheCU->getSourceLanguage(), Mod.ModuleName,
|
||||
Mod.Path, TheCU->getProducer(), true,
|
||||
StringRef(), 0, Mod.ASTFile,
|
||||
llvm::DIBuilder::FullDebug, Mod.Signature);
|
||||
llvm::DIModule *M =
|
||||
DIB.createModule(CU, Mod.ModuleName, ConfigMacros, Mod.Path,
|
||||
CGM.getHeaderSearchOpts().Sysroot);
|
||||
DIB.finalize();
|
||||
ModRef.reset(M);
|
||||
return M;
|
||||
|
||||
Reference in New Issue
Block a user