Change SectionKind to be a property that is true of a *section*, it
[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     
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     bool isDirective() const { return IsDirective; }
49     
50     static MCSection *Create(const StringRef &Name, bool IsDirective, 
51                              SectionKind K, MCContext &Ctx);
52     
53     const std::string &getName() const { return Name; }
54     SectionKind getKind() const { return Kind; }
55   };
56
57   
58   typedef MCSection MCSectionELF;
59   
60 } // end namespace llvm
61
62 #endif