4e5969ab3e55c1f49e2918b113c53a81ca03a9a0
[oota-llvm.git] / include / llvm / MC / MCSection.h
1 //===- MCSection.h - Machine Code Sections ----------------------*- 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 // This file declares the MCSection class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_MC_MCSECTION_H
15 #define LLVM_MC_MCSECTION_H
16
17 #include <string>
18 #include "llvm/ADT/StringRef.h"
19 #include "llvm/MC/SectionKind.h"
20
21 namespace llvm {
22   class MCContext;
23   class TargetAsmInfo;
24   class raw_ostream;
25   
26   /// MCSection - Instances of this class represent a uniqued identifier for a
27   /// section in the current translation unit.  The MCContext class uniques and
28   /// creates these.
29   class MCSection {
30     std::string Name;
31     
32     /// IsDirective - This is true if the section name is a directive, not
33     /// something that should be printed with ".section".
34     ///
35     /// FIXME: This is a hack.  Switch to a semantic view of the section instead
36     /// of a syntactic one.
37     bool IsDirective;
38     
39     MCSection(const MCSection&);      // DO NOT IMPLEMENT
40     void operator=(const MCSection&); // DO NOT IMPLEMENT
41   protected:
42     MCSection(const StringRef &Name, bool IsDirective, SectionKind K,
43               MCContext &Ctx);
44     SectionKind Kind;
45   public:
46     virtual ~MCSection();
47
48     const std::string &getName() const { return Name; }
49     bool isDirective() const { return IsDirective; }
50     
51     SectionKind getKind() const { return Kind; }
52     
53     virtual void PrintSwitchToSection(const TargetAsmInfo &TAI,
54                                       raw_ostream &OS) const = 0;
55   };
56
57   
58   class MCSectionELF : public MCSection {
59     MCSectionELF(const StringRef &Name, bool IsDirective, SectionKind K,
60                  MCContext &Ctx) : MCSection(Name, IsDirective, K, Ctx) {}
61   public:
62     
63     static MCSectionELF *Create(const StringRef &Name, bool IsDirective, 
64                                 SectionKind K, MCContext &Ctx);
65
66     virtual void PrintSwitchToSection(const TargetAsmInfo &TAI,
67                                       raw_ostream &OS) const;
68   };
69
70   class MCSectionMachO : public MCSection {
71     MCSectionMachO(const StringRef &Name, bool IsDirective, SectionKind K,
72                    MCContext &Ctx) : MCSection(Name, IsDirective, K, Ctx) {}
73   public:
74     
75     static MCSectionMachO *Create(const StringRef &Name, bool IsDirective, 
76                                   SectionKind K, MCContext &Ctx);
77
78     virtual void PrintSwitchToSection(const TargetAsmInfo &TAI,
79                                       raw_ostream &OS) const;
80   };
81   
82   class MCSectionCOFF : public MCSection {
83     MCSectionCOFF(const StringRef &Name, bool IsDirective, SectionKind K,
84                   MCContext &Ctx) : MCSection(Name, IsDirective, K, Ctx) {}
85   public:
86     
87     static MCSectionCOFF *Create(const StringRef &Name, bool IsDirective, 
88                                    SectionKind K, MCContext &Ctx);
89     
90     virtual void PrintSwitchToSection(const TargetAsmInfo &TAI,
91                                       raw_ostream &OS) const;
92   };
93   
94 } // end namespace llvm
95
96 #endif