7d5128a2d208fd7541987bed23062b97d32e0090
[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 "llvm/ADT/StringRef.h"
18 #include "llvm/MC/SectionKind.h"
19 #include "llvm/Support/Compiler.h"
20
21 namespace llvm {
22 class MCAsmInfo;
23 class MCContext;
24 class MCExpr;
25 class MCSymbol;
26 class raw_ostream;
27
28 /// Instances of this class represent a uniqued identifier for a section in the
29 /// current translation unit.  The MCContext class uniques and creates these.
30 class MCSection {
31 public:
32   enum SectionVariant { SV_COFF = 0, SV_ELF, SV_MachO };
33
34 private:
35   MCSection(const MCSection &) = delete;
36   void operator=(const MCSection &) = delete;
37
38   MCSymbol *Begin;
39   MCSymbol *End;
40   /// The alignment requirement of this section.
41   unsigned Alignment;
42   /// The section index in the assemblers section list.
43   unsigned Ordinal;
44
45 protected:
46   MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin)
47       : Begin(Begin), End(nullptr), Alignment(1), Ordinal(~UINT32_C(0)),
48         Variant(V), Kind(K) {}
49   SectionVariant Variant;
50   SectionKind Kind;
51
52 public:
53   virtual ~MCSection();
54
55   SectionKind getKind() const { return Kind; }
56
57   SectionVariant getVariant() const { return Variant; }
58
59   MCSymbol *getBeginSymbol() { return Begin; }
60   const MCSymbol *getBeginSymbol() const {
61     return const_cast<MCSection *>(this)->getBeginSymbol();
62   }
63   void setBeginSymbol(MCSymbol *Sym) {
64     assert(!Begin);
65     Begin = Sym;
66   }
67   MCSymbol *getEndSymbol(MCContext &Ctx);
68   bool hasEnded() const;
69
70   unsigned getAlignment() const { return Alignment; }
71   void setAlignment(unsigned Value) { Alignment = Value; }
72
73   unsigned getOrdinal() const { return Ordinal; }
74   void setOrdinal(unsigned Value) { Ordinal = Value; }
75
76   virtual void PrintSwitchToSection(const MCAsmInfo &MAI, raw_ostream &OS,
77                                     const MCExpr *Subsection) const = 0;
78
79   /// Return true if a .align directive should use "optimized nops" to fill
80   /// instead of 0s.
81   virtual bool UseCodeAlign() const = 0;
82
83   /// Check whether this section is "virtual", that is has no actual object
84   /// file contents.
85   virtual bool isVirtualSection() const = 0;
86 };
87
88 } // end namespace llvm
89
90 #endif