llvm-mc: Support quoted identifiers.
[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     // FIXME: HACK.
36     SectionKind Kind;
37   public:
38     virtual ~MCSection();
39
40     static MCSection *Create(const StringRef &Name, MCContext &Ctx);
41     
42     const std::string &getName() const { return Name; }
43     SectionKind getKind() const { return Kind; }
44   };
45
46   /// MCSectionWithKind - This is used by targets that use the SectionKind enum
47   /// to classify their sections.
48   class MCSectionWithKind : public MCSection {
49     MCSectionWithKind(const StringRef &Name, SectionKind K, MCContext &Ctx) 
50       : MCSection(Name, Ctx) {
51       Kind = K;
52     }
53   public:
54     
55     static MCSectionWithKind *Create(const StringRef &Name, SectionKind K,
56                                      MCContext &Ctx);
57
58   };
59   
60   
61   
62   typedef MCSectionWithKind MCSectionELF;
63   
64 } // end namespace llvm
65
66 #endif