Don't repeat names and clang-format this file.
[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 MCExpr;
24 class raw_ostream;
25
26 /// Instances of this class represent a uniqued identifier for a section in the
27 /// current translation unit.  The MCContext class uniques and creates these.
28 class MCSection {
29 public:
30   enum SectionVariant { SV_COFF = 0, SV_ELF, SV_MachO };
31
32 private:
33   MCSection(const MCSection &) = delete;
34   void operator=(const MCSection &) = delete;
35
36 protected:
37   MCSection(SectionVariant V, SectionKind K) : Variant(V), Kind(K) {}
38   SectionVariant Variant;
39   SectionKind Kind;
40
41 public:
42   virtual ~MCSection();
43
44   SectionKind getKind() const { return Kind; }
45
46   SectionVariant getVariant() const { return Variant; }
47
48   virtual void PrintSwitchToSection(const MCAsmInfo &MAI, raw_ostream &OS,
49                                     const MCExpr *Subsection) const = 0;
50
51   /// Return true if a .align directive should use "optimized nops" to fill
52   /// instead of 0s.
53   virtual bool UseCodeAlign() const = 0;
54
55   /// Check whether this section is "virtual", that is has no actual object
56   /// file contents.
57   virtual bool isVirtualSection() const = 0;
58 };
59
60 } // end namespace llvm
61
62 #endif