|
@@ -15,8 +15,10 @@
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
|
#include "DwarfDebug.h"
|
|
#include "DwarfDebug.h"
|
|
#include "DwarfException.h"
|
|
#include "DwarfException.h"
|
|
-#include "llvm/DebugInfo.h"
|
|
|
|
-#include "llvm/Module.h"
|
|
|
|
|
|
+#include "llvm/ADT/SmallString.h"
|
|
|
|
+#include "llvm/ADT/Statistic.h"
|
|
|
|
+#include "llvm/Analysis/ConstantFolding.h"
|
|
|
|
+#include "llvm/Assembly/Writer.h"
|
|
#include "llvm/CodeGen/GCMetadataPrinter.h"
|
|
#include "llvm/CodeGen/GCMetadataPrinter.h"
|
|
#include "llvm/CodeGen/MachineConstantPool.h"
|
|
#include "llvm/CodeGen/MachineConstantPool.h"
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
|
@@ -24,7 +26,8 @@
|
|
#include "llvm/CodeGen/MachineJumpTableInfo.h"
|
|
#include "llvm/CodeGen/MachineJumpTableInfo.h"
|
|
#include "llvm/CodeGen/MachineLoopInfo.h"
|
|
#include "llvm/CodeGen/MachineLoopInfo.h"
|
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
|
-#include "llvm/Analysis/ConstantFolding.h"
|
|
|
|
|
|
+#include "llvm/DataLayout.h"
|
|
|
|
+#include "llvm/DebugInfo.h"
|
|
#include "llvm/MC/MCAsmInfo.h"
|
|
#include "llvm/MC/MCAsmInfo.h"
|
|
#include "llvm/MC/MCContext.h"
|
|
#include "llvm/MC/MCContext.h"
|
|
#include "llvm/MC/MCExpr.h"
|
|
#include "llvm/MC/MCExpr.h"
|
|
@@ -32,20 +35,17 @@
|
|
#include "llvm/MC/MCSection.h"
|
|
#include "llvm/MC/MCSection.h"
|
|
#include "llvm/MC/MCStreamer.h"
|
|
#include "llvm/MC/MCStreamer.h"
|
|
#include "llvm/MC/MCSymbol.h"
|
|
#include "llvm/MC/MCSymbol.h"
|
|
|
|
+#include "llvm/Module.h"
|
|
|
|
+#include "llvm/Support/ErrorHandling.h"
|
|
|
|
+#include "llvm/Support/Format.h"
|
|
|
|
+#include "llvm/Support/MathExtras.h"
|
|
|
|
+#include "llvm/Support/Timer.h"
|
|
#include "llvm/Target/Mangler.h"
|
|
#include "llvm/Target/Mangler.h"
|
|
-#include "llvm/DataLayout.h"
|
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
|
#include "llvm/Target/TargetLowering.h"
|
|
#include "llvm/Target/TargetLowering.h"
|
|
#include "llvm/Target/TargetLoweringObjectFile.h"
|
|
#include "llvm/Target/TargetLoweringObjectFile.h"
|
|
#include "llvm/Target/TargetOptions.h"
|
|
#include "llvm/Target/TargetOptions.h"
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
|
-#include "llvm/Assembly/Writer.h"
|
|
|
|
-#include "llvm/ADT/SmallString.h"
|
|
|
|
-#include "llvm/ADT/Statistic.h"
|
|
|
|
-#include "llvm/Support/ErrorHandling.h"
|
|
|
|
-#include "llvm/Support/Format.h"
|
|
|
|
-#include "llvm/Support/MathExtras.h"
|
|
|
|
-#include "llvm/Support/Timer.h"
|
|
|
|
using namespace llvm;
|
|
using namespace llvm;
|
|
|
|
|
|
static const char *DWARFGroupName = "DWARF Emission";
|
|
static const char *DWARFGroupName = "DWARF Emission";
|