Use AsmPrinter's Mangler to remove leading '1' from linkage names.
authorDevang Patel <dpatel@apple.com>
Mon, 13 Jul 2009 21:48:26 +0000 (21:48 +0000)
committerDevang Patel <dpatel@apple.com>
Mon, 13 Jul 2009 21:48:26 +0000 (21:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75515 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/AsmPrinter.h
lib/CodeGen/AsmPrinter/DwarfDebug.cpp

index 0129711346cfebf79b09c9c5b20f8ce7891fd396..4e7ea1373a9675fc02be1bb05ce407375f20f0a1 100644 (file)
@@ -242,7 +242,7 @@ namespace llvm {
     /// special global used by LLVM.  If so, emit it and return true, otherwise
     /// do nothing and return false.
     bool EmitSpecialLLVMGlobal(const GlobalVariable *GV);
-    
+
   public:
     //===------------------------------------------------------------------===//
     /// LEB 128 number encoding.
@@ -333,6 +333,10 @@ namespace llvm {
     /// debug tables.
     void printDeclare(const MachineInstr *MI) const;
 
+    /// getMangler - Return Mangler used by the AsmPrinter. This is used by
+    /// DWARF debug info generator.
+    Mangler *getMangler() { return Mang; }
+
     /// postInstructionAction - Handling printing of items after the
     /// instruction iteself has been printed (e.g. comments)
     void postInstructionAction(const MachineInstr &MI) const {
index 32f567318cb26ea9aecead02a7bc627149fcf46b..9b7d2d097a4ba40edd2c52720c07c13a4e9d4293 100644 (file)
@@ -15,6 +15,7 @@
 #include "llvm/Module.h"
 #include "llvm/CodeGen/MachineModuleInfo.h"
 #include "llvm/Support/Timer.h"
+#include "llvm/Support/Mangler.h"
 #include "llvm/System/Path.h"
 #include "llvm/Target/TargetAsmInfo.h"
 #include "llvm/Target/TargetRegisterInfo.h"
@@ -785,9 +786,11 @@ DIE *DwarfDebug::CreateGlobalVariableDIE(CompileUnit *DW_Unit,
   AddString(GVDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name);
   std::string LinkageName;
   GV.getLinkageName(LinkageName);
-  if (!LinkageName.empty())
+  if (!LinkageName.empty()) {
+    Mangler *Mg = Asm->getMangler();
     AddString(GVDie, dwarf::DW_AT_MIPS_linkage_name, dwarf::DW_FORM_string,
-              LinkageName);
+              Mg ? Mg->makeNameProper(LinkageName) : LinkageName);
+  }
   AddType(DW_Unit, GVDie, GV.getType());
   if (!GV.isLocalToUnit())
     AddUInt(GVDie, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1);
@@ -856,9 +859,11 @@ DIE *DwarfDebug::CreateSubprogramDIE(CompileUnit *DW_Unit,
   std::string LinkageName;
   SP.getLinkageName(LinkageName);
 
-  if (!LinkageName.empty())
+  if (!LinkageName.empty()) {
+    Mangler *Mg = Asm->getMangler();
     AddString(SPDie, dwarf::DW_AT_MIPS_linkage_name, dwarf::DW_FORM_string,
-              LinkageName);
+              Mg ? Mg->makeNameProper(LinkageName) : LinkageName);
+  }
 
   AddSourceLine(SPDie, &SP);