32238586fd66d85ae632271068ff6507e524852c
[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
20 // FIXME: HORRIBLE HACK: major layering violation to get an enum.
21 #include "llvm/Target/TargetLoweringObjectFile.h"
22
23 namespace llvm {
24   class MCContext;
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     MCSection(const MCSection&);      // DO NOT IMPLEMENT
32     void operator=(const MCSection&); // DO NOT IMPLEMENT
33   protected:
34     MCSection(const StringRef &Name, MCContext &Ctx);
35   public:
36     virtual ~MCSection();
37
38     static MCSection *Create(const StringRef &Name, MCContext &Ctx);
39     
40     const std::string &getName() const { return Name; }
41   };
42
43   /// MCSectionWithKind - This is used by targets that use the SectionKind enum
44   /// to classify their sections.
45   class MCSectionWithKind : public MCSection {
46     SectionKind Kind;
47     MCSectionWithKind(const StringRef &Name, SectionKind K, MCContext &Ctx) 
48       : MCSection(Name, Ctx), Kind(K) {}
49   public:
50     
51     static MCSectionWithKind *Create(const StringRef &Name, SectionKind K,
52                                      MCContext &Ctx);
53
54     SectionKind getKind() const { return Kind; }
55   };
56   
57   
58   
59 } // end namespace llvm
60
61 #endif