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   public:
24     void Initialize(MCContext &Ctx, const TargetMachine &TM);
25 
26     virtual const MCSection *
27     getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind,
28                              Mangler *Mang, const TargetMachine &TM) const;
29 
30     virtual const MCSection *SelectSectionForGlobal(const GlobalValue *GV,
31                                                     SectionKind Kind,
32                                                     Mangler *Mang,
33                                                     TargetMachine &TM) const;
34 
35     virtual const MCSection *getSectionForConstant(SectionKind Kind) const;
36   };
37 } // end namespace llvm
38 
39 #endif
40