All MCSections are now required to have a SectionKind.
[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, SectionKind K, MCContext &Ctx);
35     SectionKind Kind;
36   public:
37     virtual ~MCSection();
38
39     static MCSection *Create(const StringRef &Name, SectionKind K,
40                              MCContext &Ctx);
41     
42     const std::string &getName() const { return Name; }
43     SectionKind getKind() const { return Kind; }
44   };
45
46   
47   typedef MCSection MCSectionELF;
48   
49 } // end namespace llvm
50
51 #endif