Make SectionKind::get() private.
[oota-llvm.git] / lib / Target / XCore / XCoreTargetObjectFile.cpp
index 964ec82d576ed26c2fb02df06131daa3b3cbd2af..644b0249ce7a3f8d80ef1af6f5dd0d15704b6cc9 100644 (file)
@@ -8,25 +8,32 @@
 //===----------------------------------------------------------------------===//
 
 #include "XCoreTargetObjectFile.h"
+#include "XCoreSubtarget.h"
+#include "llvm/Target/TargetMachine.h"
 using namespace llvm;
 
 
-XCoreTargetObjectFile::XCoreTargetObjectFile(bool isXS1A) {
-  TextSection = getOrCreateSection("\t.text", true, SectionKind::Text);
-  DataSection = getOrCreateSection("\t.dp.data", false, SectionKind::DataRel);
-  BSSSection_ = getOrCreateSection("\t.dp.bss", false, SectionKind::BSS);
+void XCoreTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM){
+  TargetLoweringObjectFileELF::Initialize(Ctx, TM);
+
+  TextSection = getOrCreateSection("\t.text", true, 
+                                   SectionKind::getText());
+  DataSection = getOrCreateSection("\t.dp.data", false, 
+                                   SectionKind::getDataRel());
+  BSSSection = getOrCreateSection("\t.dp.bss", false, 
+                                  SectionKind::getBSS());
   
   // TLS globals are lowered in the backend to arrays indexed by the current
   // thread id. After lowering they require no special handling by the linker
   // and can be placed in the standard data / bss sections.
   TLSDataSection = DataSection;
-  TLSBSSSection = BSSSection_;
+  TLSBSSSection = BSSSection;
   
-  if (isXS1A)
+  if (TM.getSubtarget<XCoreSubtarget>().isXS1A())
     // FIXME: Why is this writable ("datarel")???
     ReadOnlySection = getOrCreateSection("\t.dp.rodata", false,
-                                         SectionKind::DataRel);
+                                        SectionKind::getDataRel());
   else
     ReadOnlySection = getOrCreateSection("\t.cp.rodata", false,
-                                         SectionKind::ReadOnly);
+                                       SectionKind::getReadOnly());
 }