LLVM 20.0.0git
MCSection.cpp
Go to the documentation of this file.
1//===- lib/MC/MCSection.cpp - Machine Code Section Representation ---------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "llvm/MC/MCSection.h"
11#include "llvm/Config/llvm-config.h"
12#include "llvm/MC/MCContext.h"
13#include "llvm/MC/MCFragment.h"
14#include "llvm/MC/MCSymbol.h"
18#include <utility>
19
20using namespace llvm;
21
23 bool IsVirtual, MCSymbol *Begin)
24 : Begin(Begin), BundleGroupBeforeFirstInst(false), HasInstructions(false),
25 HasLayout(false), IsRegistered(false), IsText(IsText),
26 IsVirtual(IsVirtual), Name(Name), Variant(V) {
27 DummyFragment.setParent(this);
28 // The initial subsection number is 0. Create a fragment list.
29 CurFragList = &Subsections.emplace_back(0u, FragList{}).second;
30}
31
33 if (!End)
34 End = Ctx.createTempSymbol("sec_end");
35 return End;
36}
37
38bool MCSection::hasEnded() const { return End && End->isInSection(); }
39
41 for (auto &[_, Chain] : Subsections) {
42 for (MCFragment *X = Chain.Head, *Y; X; X = Y) {
43 Y = X->Next;
44 X->destroy();
45 }
46 }
47}
48
50 if (NewState == NotBundleLocked) {
51 if (BundleLockNestingDepth == 0) {
52 report_fatal_error("Mismatched bundle_lock/unlock directives");
53 }
54 if (--BundleLockNestingDepth == 0) {
55 BundleLockState = NotBundleLocked;
56 }
57 return;
58 }
59
60 // If any of the directives is an align_to_end directive, the whole nested
61 // group is align_to_end. So don't downgrade from align_to_end to just locked.
62 if (BundleLockState != BundleLockedAlignToEnd) {
63 BundleLockState = NewState;
64 }
65 ++BundleLockNestingDepth;
66}
67
68StringRef MCSection::getVirtualSectionKind() const { return "virtual"; }
69
70#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
72 raw_ostream &OS = errs();
73
74 OS << "<MCSection Name:" << getName();
75 OS << " Fragments:[\n ";
76 bool First = true;
77 for (auto &F : *this) {
78 if (First)
79 First = false;
80 else
81 OS << ",\n ";
82 F.dump();
83 }
84 OS << "]>";
85}
86#endif
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
Definition: Compiler.h:622
std::string Name
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
#define _
#define F(x, y, z)
Definition: MD5.cpp:55
static GCMetadataPrinterRegistry::Add< OcamlGCMetadataPrinter > Y("ocaml", "ocaml 3.10-compatible collector")
raw_pwrite_stream & OS
This file defines the SmallVector class.
Context object for machine code objects.
Definition: MCContext.h:83
MCSymbol * createTempSymbol()
Create a temporary symbol with a unique name.
Definition: MCContext.cpp:345
void setParent(MCSection *Value)
Definition: MCFragment.h:100
virtual StringRef getVirtualSectionKind() const
Definition: MCSection.cpp:68
void dump() const
Definition: MCSection.cpp:71
MCSymbol * getEndSymbol(MCContext &Ctx)
Definition: MCSection.cpp:32
void setBundleLockState(BundleLockStateType NewState)
Definition: MCSection.cpp:49
StringRef getName() const
Definition: MCSection.h:130
bool hasEnded() const
Definition: MCSection.cpp:38
BundleLockStateType
Express the state of bundle locked groups while emitting code.
Definition: MCSection.h:54
@ BundleLockedAlignToEnd
Definition: MCSection.h:57
MCSection(SectionVariant V, StringRef Name, bool IsText, bool IsVirtual, MCSymbol *Begin)
Definition: MCSection.cpp:22
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition: MCSymbol.h:41
bool isInSection() const
isInSection - Check if this symbol is defined in some section (i.e., it is defined but not absolute).
Definition: MCSymbol.h:254
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:51
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
Definition: Error.cpp:167
raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.