Fix build without asserts.
[oota-llvm.git] / lib / MC / MCSection.cpp
1 //===- lib/MC/MCSection.cpp - Machine Code Section Representation ---------===//
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 #include "llvm/MC/MCSection.h"
11 #include "llvm/MC/MCAssembler.h"
12 #include "llvm/MC/MCAsmInfo.h"
13 #include "llvm/MC/MCContext.h"
14 #include "llvm/MC/MCSymbol.h"
15 #include "llvm/Support/raw_ostream.h"
16 using namespace llvm;
17
18 //===----------------------------------------------------------------------===//
19 // MCSection
20 //===----------------------------------------------------------------------===//
21
22 MCSection::MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin)
23     : Begin(Begin), HasInstructions(false), Variant(V), Kind(K) {}
24
25 MCSymbol *MCSection::getEndSymbol(MCContext &Ctx) {
26   if (!End)
27     End = Ctx.createTempSymbol("sec_end", true);
28   return End;
29 }
30
31 bool MCSection::hasEnded() const { return End && End->isInSection(); }
32
33 MCSection::~MCSection() {
34 }
35
36 void MCSection::setBundleLockState(BundleLockStateType NewState) {
37   if (NewState == NotBundleLocked) {
38     if (BundleLockNestingDepth == 0) {
39       report_fatal_error("Mismatched bundle_lock/unlock directives");
40     }
41     if (--BundleLockNestingDepth == 0) {
42       BundleLockState = NotBundleLocked;
43     }
44     return;
45   }
46
47   // If any of the directives is an align_to_end directive, the whole nested
48   // group is align_to_end. So don't downgrade from align_to_end to just locked.
49   if (BundleLockState != BundleLockedAlignToEnd) {
50     BundleLockState = NewState;
51   }
52   ++BundleLockNestingDepth;
53 }
54
55 MCSection::iterator
56 MCSection::getSubsectionInsertionPoint(unsigned Subsection) {
57   if (Subsection == 0 && SubsectionFragmentMap.empty())
58     return end();
59
60   SmallVectorImpl<std::pair<unsigned, MCFragment *>>::iterator MI =
61       std::lower_bound(SubsectionFragmentMap.begin(),
62                        SubsectionFragmentMap.end(),
63                        std::make_pair(Subsection, (MCFragment *)nullptr));
64   bool ExactMatch = false;
65   if (MI != SubsectionFragmentMap.end()) {
66     ExactMatch = MI->first == Subsection;
67     if (ExactMatch)
68       ++MI;
69   }
70   iterator IP;
71   if (MI == SubsectionFragmentMap.end())
72     IP = end();
73   else
74     IP = MI->second;
75   if (!ExactMatch && Subsection != 0) {
76     // The GNU as documentation claims that subsections have an alignment of 4,
77     // although this appears not to be the case.
78     MCFragment *F = new MCDataFragment();
79     SubsectionFragmentMap.insert(MI, std::make_pair(Subsection, F));
80     getFragmentList().insert(IP, F);
81     F->setParent(this);
82   }
83
84   return IP;
85 }
86
87 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
88 void MCSection::dump() {
89   raw_ostream &OS = llvm::errs();
90
91   OS << "<MCSection";
92   OS << " Fragments:[\n      ";
93   for (auto it = begin(), ie = end(); it != ie; ++it) {
94     if (it != begin())
95       OS << ",\n      ";
96     it->dump();
97   }
98   OS << "]>";
99 }
100 #endif
101
102 MCSection::iterator MCSection::begin() { return Fragments.begin(); }
103
104 MCSection::iterator MCSection::end() { return Fragments.end(); }
105
106 MCSection::reverse_iterator MCSection::rbegin() { return Fragments.rbegin(); }
107
108 MCSection::reverse_iterator MCSection::rend() { return Fragments.rend(); }