LLVM 19.0.0git
MCSectionXCOFF.h
Go to the documentation of this file.
1//===- MCSectionXCOFF.h - XCOFF Machine Code Sections -----------*- C++ -*-===//
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// This file declares the MCSectionXCOFF class.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_MC_MCSECTIONXCOFF_H
14#define LLVM_MC_MCSECTIONXCOFF_H
15
17#include "llvm/MC/MCSection.h"
19
20namespace llvm {
21
22// This class represents an XCOFF `Control Section`, more commonly referred to
23// as a csect. A csect represents the smallest possible unit of data/code which
24// will be relocated as a single block. A csect can either be:
25// 1) Initialized: The Type will be XTY_SD, and the symbols inside the csect
26// will have a label definition representing their offset within the csect.
27// 2) Uninitialized: The Type will be XTY_CM, it will contain a single symbol,
28// and may not contain label definitions.
29// 3) An external reference providing a symbol table entry for a symbol
30// contained in another XCOFF object file. External reference csects are not
31// implemented yet.
32class MCSectionXCOFF final : public MCSection {
33 friend class MCContext;
34
35 std::optional<XCOFF::CsectProperties> CsectProp;
36 MCSymbolXCOFF *const QualName;
37 StringRef SymbolTableName;
38 std::optional<XCOFF::DwarfSectionSubtypeFlags> DwarfSubtypeFlags;
39 bool MultiSymbolsAllowed;
40 static constexpr unsigned DefaultAlignVal = 4;
41 static constexpr unsigned DefaultTextAlignVal = 32;
42
45 MCSymbol *Begin, StringRef SymbolTableName,
46 bool MultiSymbolsAllowed)
47 : MCSection(SV_XCOFF, Name, K, Begin),
48 CsectProp(XCOFF::CsectProperties(SMC, ST)), QualName(QualName),
49 SymbolTableName(SymbolTableName), DwarfSubtypeFlags(std::nullopt),
50 MultiSymbolsAllowed(MultiSymbolsAllowed) {
51 assert(
52 (ST == XCOFF::XTY_SD || ST == XCOFF::XTY_CM || ST == XCOFF::XTY_ER) &&
53 "Invalid or unhandled type for csect.");
54 assert(QualName != nullptr && "QualName is needed.");
55 if (SMC == XCOFF::XMC_UL)
56 assert((ST == XCOFF::XTY_CM || ST == XCOFF::XTY_ER) &&
57 "Invalid csect type for storage mapping class XCOFF::XMC_UL");
58
59 QualName->setRepresentedCsect(this);
61 if (ST != XCOFF::XTY_ER) {
62 // For a csect for program code, set the alignment to 32 bytes by default.
63 // For other csects, set the alignment to 4 bytes by default.
64 if (SMC == XCOFF::XMC_PR)
65 setAlignment(Align(DefaultTextAlignVal));
66 else
67 setAlignment(Align(DefaultAlignVal));
68 }
69 }
70
71 MCSectionXCOFF(StringRef Name, SectionKind K, MCSymbolXCOFF *QualName,
72 XCOFF::DwarfSectionSubtypeFlags DwarfSubtypeFlags,
73 MCSymbol *Begin, StringRef SymbolTableName,
74 bool MultiSymbolsAllowed)
75 : MCSection(SV_XCOFF, Name, K, Begin), QualName(QualName),
76 SymbolTableName(SymbolTableName), DwarfSubtypeFlags(DwarfSubtypeFlags),
77 MultiSymbolsAllowed(MultiSymbolsAllowed) {
78 assert(QualName != nullptr && "QualName is needed.");
79
80 // FIXME: use a more meaningful name for non csect sections.
81 QualName->setRepresentedCsect(this);
82
83 // Use default text alignment as the alignment for DWARF sections.
84 setAlignment(Align(DefaultTextAlignVal));
85 }
86
87 void printCsectDirective(raw_ostream &OS) const;
88
89public:
91
92 static bool classof(const MCSection *S) {
93 return S->getVariant() == SV_XCOFF;
94 }
95
97 assert(isCsect() && "Only csect section has mapping class property!");
98 return CsectProp->MappingClass;
99 }
101 return QualName->getStorageClass();
102 }
104 return QualName->getVisibilityType();
105 }
107 assert(isCsect() && "Only csect section has symbol type property!");
108 return CsectProp->Type;
109 }
110 MCSymbolXCOFF *getQualNameSymbol() const { return QualName; }
111
112 void printSwitchToSection(const MCAsmInfo &MAI, const Triple &T,
114 const MCExpr *Subsection) const override;
115 bool useCodeAlign() const override;
116 bool isVirtualSection() const override;
117 StringRef getSymbolTableName() const { return SymbolTableName; }
118 void setSymbolTableName(StringRef STN) { SymbolTableName = STN; }
119 bool isMultiSymbolsAllowed() const { return MultiSymbolsAllowed; }
120 bool isCsect() const { return CsectProp.has_value(); }
121 bool isDwarfSect() const { return DwarfSubtypeFlags.has_value(); }
122 std::optional<XCOFF::DwarfSectionSubtypeFlags> getDwarfSubtypeFlags() const {
123 return DwarfSubtypeFlags;
124 }
125 std::optional<XCOFF::CsectProperties> getCsectProp() const {
126 return CsectProp;
127 }
128};
129
130} // end namespace llvm
131
132#endif
uint64_t Align
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
raw_pwrite_stream & OS
This class is intended to be used as a base class for asm properties and features specific to the tar...
Definition: MCAsmInfo.h:56
Context object for machine code objects.
Definition: MCContext.h:81
Base class for the full range of assembler expressions which are needed for parsing.
Definition: MCExpr.h:35
std::optional< XCOFF::CsectProperties > getCsectProp() const
bool isMultiSymbolsAllowed() const
bool isVirtualSection() const override
Check whether this section is "virtual", that is has no actual object file contents.
StringRef getSymbolTableName() const
XCOFF::VisibilityType getVisibilityType() const
std::optional< XCOFF::DwarfSectionSubtypeFlags > getDwarfSubtypeFlags() const
void printSwitchToSection(const MCAsmInfo &MAI, const Triple &T, raw_ostream &OS, const MCExpr *Subsection) const override
void setSymbolTableName(StringRef STN)
XCOFF::StorageClass getStorageClass() const
XCOFF::StorageMappingClass getMappingClass() const
MCSymbolXCOFF * getQualNameSymbol() const
static bool classof(const MCSection *S)
bool useCodeAlign() const override
Return true if a .align directive should use "optimized nops" to fill instead of 0s.
bool isDwarfSect() const
XCOFF::SymbolType getCSectType() const
Instances of this class represent a uniqued identifier for a section in the current translation unit.
Definition: MCSection.h:39
void setAlignment(Align Value)
Definition: MCSection.h:141
SectionVariant getVariant() const
Definition: MCSection.h:127
StringRef Name
Definition: MCSection.h:113
void setRepresentedCsect(MCSectionXCOFF *C)
void setStorageClass(XCOFF::StorageClass SC)
Definition: MCSymbolXCOFF.h:41
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition: MCSymbol.h:40
SectionKind - This is a simple POD value that classifies the properties of a section.
Definition: SectionKind.h:22
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
DwarfSectionSubtypeFlags
Values for defining the section subtype of sections of type STYP_DWARF as they would appear in the (s...
Definition: XCOFF.h:154
VisibilityType
Values for visibility as they would appear when encoded in the high 4 bits of the 16-bit unsigned n_t...
Definition: XCOFF.h:251
StorageClass
Definition: XCOFF.h:170
@ C_HIDEXT
Definition: XCOFF.h:206
StorageMappingClass
Storage Mapping Class definitions.
Definition: XCOFF.h:103
@ XMC_UL
Uninitialized thread-local variable.
Definition: XCOFF.h:127
@ XMC_PR
Program Code.
Definition: XCOFF.h:105
@ XTY_CM
Common csect definition. For uninitialized storage.
Definition: XCOFF.h:245
@ XTY_SD
Csect definition for initialized storage.
Definition: XCOFF.h:242
@ XTY_ER
External reference.
Definition: XCOFF.h:241
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
Implement std::hash so that hash_code can be used in STL containers.
Definition: BitVector.h:858