1 //===-- XCoreTargetObjectFile.h - XCore Object Info -------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #ifndef LLVM_TARGET_XCORE_TARGETOBJECTFILE_H 11 #define LLVM_TARGET_XCORE_TARGETOBJECTFILE_H 12 13 #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h" 14 15 namespace llvm { 16 17 static const unsigned CodeModelLargeSize = 256; 18 19 class XCoreTargetObjectFile : public TargetLoweringObjectFileELF { 20 const MCSection *BSSSectionLarge; 21 const MCSection *DataSectionLarge; 22 const MCSection *ReadOnlySectionLarge; 23 const MCSection *DataRelROSectionLarge; 24 public: 25 void Initialize(MCContext &Ctx, const TargetMachine &TM); 26 27 const MCSection *getExplicitSectionGlobal(const GlobalValue *GV, 28 SectionKind Kind, Mangler &Mang, 29 const TargetMachine &TM) const 30 LLVM_OVERRIDE; 31 32 const MCSection *SelectSectionForGlobal(const GlobalValue *GV, 33 SectionKind Kind, Mangler &Mang, 34 const TargetMachine &TM) const 35 LLVM_OVERRIDE; 36 37 const MCSection *getSectionForConstant(SectionKind Kind) const 38 LLVM_OVERRIDE; 39 }; 40 } // end namespace llvm 41 42 #endif 43