mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 16:21:41 +00:00
Reapply section moving, make sure string section is output last.
llvm-svn: 168736
This commit is contained in:
parent
d202bb769c
commit
84cc17f03e
@ -903,11 +903,60 @@ void DwarfDebug::endModule() {
|
|||||||
// Emit initial sections.
|
// Emit initial sections.
|
||||||
emitSectionLabels();
|
emitSectionLabels();
|
||||||
|
|
||||||
// Emit all the DIEs into a debug info section
|
if (!useDwarfFission()) {
|
||||||
emitDebugInfo();
|
// Emit all the DIEs into a debug info section.
|
||||||
|
emitDebugInfo();
|
||||||
|
|
||||||
// Corresponding abbreviations into a abbrev section.
|
// Corresponding abbreviations into a abbrev section.
|
||||||
emitAbbreviations();
|
emitAbbreviations();
|
||||||
|
|
||||||
|
// Emit info into a debug loc section.
|
||||||
|
emitDebugLoc();
|
||||||
|
|
||||||
|
// Emit info into a debug aranges section.
|
||||||
|
emitDebugARanges();
|
||||||
|
|
||||||
|
// Emit info into a debug ranges section.
|
||||||
|
emitDebugRanges();
|
||||||
|
|
||||||
|
// Emit info into a debug macinfo section.
|
||||||
|
emitDebugMacInfo();
|
||||||
|
|
||||||
|
// Emit inline info.
|
||||||
|
// TODO: When we don't need the option anymore we
|
||||||
|
// can remove all of the code that this section
|
||||||
|
// depends upon.
|
||||||
|
if (useDarwinGDBCompat())
|
||||||
|
emitDebugInlineInfo();
|
||||||
|
} else {
|
||||||
|
// TODO: Fill this in for Fission sections and separate
|
||||||
|
// out information into new sections.
|
||||||
|
|
||||||
|
// Emit all the DIEs into a debug info section.
|
||||||
|
emitDebugInfo();
|
||||||
|
|
||||||
|
// Corresponding abbreviations into a abbrev section.
|
||||||
|
emitAbbreviations();
|
||||||
|
|
||||||
|
// Emit info into a debug loc section.
|
||||||
|
emitDebugLoc();
|
||||||
|
|
||||||
|
// Emit info into a debug aranges section.
|
||||||
|
emitDebugARanges();
|
||||||
|
|
||||||
|
// Emit info into a debug ranges section.
|
||||||
|
emitDebugRanges();
|
||||||
|
|
||||||
|
// Emit info into a debug macinfo section.
|
||||||
|
emitDebugMacInfo();
|
||||||
|
|
||||||
|
// Emit inline info.
|
||||||
|
// TODO: When we don't need the option anymore we
|
||||||
|
// can remove all of the code that this section
|
||||||
|
// depends upon.
|
||||||
|
if (useDarwinGDBCompat())
|
||||||
|
emitDebugInlineInfo();
|
||||||
|
}
|
||||||
|
|
||||||
// Emit info into the dwarf accelerator table sections.
|
// Emit info into the dwarf accelerator table sections.
|
||||||
if (useDwarfAccelTables()) {
|
if (useDwarfAccelTables()) {
|
||||||
@ -923,26 +972,7 @@ void DwarfDebug::endModule() {
|
|||||||
if (useDarwinGDBCompat())
|
if (useDarwinGDBCompat())
|
||||||
emitDebugPubTypes();
|
emitDebugPubTypes();
|
||||||
|
|
||||||
// Emit info into a debug loc section.
|
// Finally emit string information into a string table.
|
||||||
emitDebugLoc();
|
|
||||||
|
|
||||||
// Emit info into a debug aranges section.
|
|
||||||
emitDebugARanges();
|
|
||||||
|
|
||||||
// Emit info into a debug ranges section.
|
|
||||||
emitDebugRanges();
|
|
||||||
|
|
||||||
// Emit info into a debug macinfo section.
|
|
||||||
emitDebugMacInfo();
|
|
||||||
|
|
||||||
// Emit inline info.
|
|
||||||
// TODO: When we don't need the option anymore we
|
|
||||||
// can remove all of the code that this section
|
|
||||||
// depends upon.
|
|
||||||
if (useDarwinGDBCompat())
|
|
||||||
emitDebugInlineInfo();
|
|
||||||
|
|
||||||
// Emit info into a debug str section.
|
|
||||||
emitDebugStr();
|
emitDebugStr();
|
||||||
|
|
||||||
// clean up.
|
// clean up.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user