LLVM 24.0.0git
MCAsmInfoXCOFF.cpp
Go to the documentation of this file.
1//===- MC/MCAsmInfoXCOFF.cpp - XCOFF asm properties ------------ *- 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
11#include "llvm/MC/MCAsmInfo.h"
14#include "llvm/Support/Format.h"
16
17using namespace llvm;
18
19namespace llvm {
21}
22
25 IsAIX = true;
26 IsLittleEndian = false;
27
29 SupportsQuotedNames = false;
31 HasLEB128Directives = false;
32 ZeroDirective = "\t.space\t";
33 AsciiDirective = nullptr; // not supported
34 AscizDirective = nullptr; // not supported
36
37 // Use .vbyte for data definition to avoid directives that apply an implicit
38 // alignment.
39 Data16bitsDirective = "\t.vbyte\t2, ";
40 Data32bitsDirective = "\t.vbyte\t4, ";
41
46
48}
49
51 return static_cast<const MCSectionXCOFF &>(Sec).getKind().isText();
52}
53
55
56void MCSectionXCOFF::printCsectDirective(raw_ostream &OS) const {
57 OS << "\t.csect " << QualName->getName() << "," << Log2(getAlign()) << '\n';
58}
59
61 const Triple &T,
62 raw_ostream &OS) const {
63 auto &Sec = static_cast<const MCSectionXCOFF &>(Section);
64 if (Sec.getKind().isText()) {
65 if (Sec.getMappingClass() != XCOFF::XMC_PR)
66 report_fatal_error("Unhandled storage-mapping class for .text csect");
67
68 Sec.printCsectDirective(OS);
69 return;
70 }
71
72 if (Sec.getKind().isReadOnly()) {
73 if (Sec.getMappingClass() != XCOFF::XMC_RO &&
74 Sec.getMappingClass() != XCOFF::XMC_TD)
75 report_fatal_error("Unhandled storage-mapping class for .rodata csect.");
76 Sec.printCsectDirective(OS);
77 return;
78 }
79
80 if (Sec.getKind().isReadOnlyWithRel()) {
81 if (Sec.getMappingClass() != XCOFF::XMC_RW &&
82 Sec.getMappingClass() != XCOFF::XMC_RO &&
83 Sec.getMappingClass() != XCOFF::XMC_TD)
85 "Unexepected storage-mapping class for ReadOnlyWithRel kind");
86 Sec.printCsectDirective(OS);
87 return;
88 }
89
90 // Initialized TLS data.
91 if (Sec.getKind().isThreadData()) {
92 // We only expect XMC_TL here for initialized TLS data.
93 if (Sec.getMappingClass() != XCOFF::XMC_TL)
94 report_fatal_error("Unhandled storage-mapping class for .tdata csect.");
95 Sec.printCsectDirective(OS);
96 return;
97 }
98
99 if (Sec.getKind().isData()) {
100 switch (Sec.getMappingClass()) {
101 case XCOFF::XMC_RW:
102 case XCOFF::XMC_DS:
103 case XCOFF::XMC_TD:
104 Sec.printCsectDirective(OS);
105 break;
106 case XCOFF::XMC_TC:
107 case XCOFF::XMC_TE:
108 break;
109 case XCOFF::XMC_TC0:
110 OS << "\t.toc\n";
111 break;
112 default:
113 report_fatal_error("Unhandled storage-mapping class for .data csect.");
114 }
115 return;
116 }
117
118 if (Sec.isCsect() && Sec.getMappingClass() == XCOFF::XMC_TD) {
119 // Common csect type (uninitialized storage) does not have to print
120 // csect directive for section switching unless it is local.
121 if (Sec.getKind().isCommon() && !Sec.getKind().isBSSLocal())
122 return;
123
124 assert(Sec.getKind().isBSS() && "Unexpected section kind for toc-data");
125 Sec.printCsectDirective(OS);
126 return;
127 }
128 // Common csect type (uninitialized storage) does not have to print csect
129 // directive for section switching.
130 if (Sec.isCsect() && Sec.getCSectType() == XCOFF::XTY_CM) {
131 assert((Sec.getMappingClass() == XCOFF::XMC_RW ||
132 Sec.getMappingClass() == XCOFF::XMC_BS ||
133 Sec.getMappingClass() == XCOFF::XMC_UL) &&
134 "Generated a storage-mapping class for a common/bss/tbss csect we "
135 "don't "
136 "understand how to switch to.");
137 // Common symbols and local zero-initialized symbols for TLS and Non-TLS are
138 // eligible for .bss/.tbss csect, getKind().isThreadBSS() is used to
139 // cover TLS common and zero-initialized local symbols since linkage type
140 // (in the GlobalVariable) is not accessible in this class.
141 assert((Sec.getKind().isBSSLocal() || Sec.getKind().isCommon() ||
142 Sec.getKind().isThreadBSS()) &&
143 "wrong symbol type for .bss/.tbss csect");
144 // Don't have to print a directive for switching to section for commons
145 // and zero-initialized TLS data. The '.comm' and '.lcomm' directives of the
146 // variable will create the needed csect.
147 return;
148 }
149
150 // Zero-initialized TLS data with weak or external linkage are not eligible to
151 // be put into common csect.
152 if (Sec.getKind().isThreadBSS()) {
153 Sec.printCsectDirective(OS);
154 return;
155 }
156
157 // XCOFF debug sections.
158 if (Sec.getKind().isMetadata() && Sec.isDwarfSect()) {
159 OS << "\n\t.dwsect " << format("0x%" PRIx32, *Sec.getDwarfSubtypeFlags())
160 << '\n';
161 OS << Sec.getName() << ':' << '\n';
162 return;
163 }
164
165 report_fatal_error("Printing for this SectionKind is unimplemented.");
166}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static LVOptions Options
Definition LVOptions.cpp:25
#define T
This file contains some functions that are useful when dealing with strings.
MCAsmInfoXCOFF(const MCTargetOptions &Options)
void printSwitchToSection(const MCSection &, uint32_t, const Triple &, raw_ostream &) const final
bool useCodeAlign(const MCSection &Sec) const final
StringRef InternalSymbolPrefix
For internal use by compiler and assembler, not meant to be visible externally.
Definition MCAsmInfo.h:159
const char * Data16bitsDirective
Definition MCAsmInfo.h:243
const char * AsciiDirective
This directive allows emission of an ascii string with the standard C escape characters embedded into...
Definition MCAsmInfo.h:226
ExceptionHandling ExceptionsType
Exception handling format for the target. Defaults to None.
Definition MCAsmInfo.h:357
MCAsmInfo(const MCTargetOptions &Options)
Definition MCAsmInfo.cpp:45
const char * Data32bitsDirective
Definition MCAsmInfo.h:244
LCOMM::LCOMMType LCOMMDirectiveAlignmentType
Describes if the .lcomm directive for the target supports an alignment argument and how it is interpr...
Definition MCAsmInfo.h:293
bool HasDotTypeDotSizeDirective
True if the target has .type and .size directives, this is true for most ELF targets.
Definition MCAsmInfo.h:304
bool ParseInlineAsmUsingAsmParser
Use AsmParser to parse inlineAsm when UseIntegratedAssembler is not set.
Definition MCAsmInfo.h:416
bool COMMDirectiveAlignmentIsInBytes
True is .comm's and .lcomms optional alignment is to be specified in bytes instead of log2(n).
Definition MCAsmInfo.h:289
AsmCharLiteralSyntax CharacterLiteralSyntax
Form used for character literals in the assembly syntax.
Definition MCAsmInfo.h:236
const char * ZeroDirective
This should be set to the directive used to get some number of zero (and non-zero if supported by the...
Definition MCAsmInfo.h:221
bool SupportsQuotedNames
If this is true, symbol names with invalid characters will be printed in quotes.
Definition MCAsmInfo.h:202
const char * AscizDirective
If not null, this allows for special handling of zero terminated strings on this target.
Definition MCAsmInfo.h:231
bool IsLittleEndian
True if target is little endian. Default is true.
Definition MCAsmInfo.h:93
@ ACLS_SingleQuotePrefix
Unknown; character literals not used by LLVM for this target.
Definition MCAsmInfo.h:73
bool HasLEB128Directives
True if the target supports LEB128 directives.
Definition MCAsmInfo.h:210
LLVM_ABI ~MCSectionXCOFF()
Instances of this class represent a uniqued identifier for a section in the current translation unit.
Definition MCSection.h:573
Align getAlign() const
Definition MCSection.h:657
bool isText() const
Definition MCSection.h:644
StringRef getName() const
getName - Get the symbol name.
Definition MCSymbol.h:188
Triple - Helper class for working with autoconf configuration names.
Definition Triple.h:48
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
@ XMC_TE
Symbol mapped at the end of TOC.
Definition XCOFF.h:129
@ XMC_TC0
TOC Anchor for TOC Addressability.
Definition XCOFF.h:119
@ XMC_DS
Descriptor csect.
Definition XCOFF.h:122
@ XMC_RW
Read Write Data.
Definition XCOFF.h:118
@ XMC_TL
Initialized thread-local variable.
Definition XCOFF.h:127
@ XMC_RO
Read Only Constant.
Definition XCOFF.h:107
@ XMC_TD
Scalar data item in the TOC.
Definition XCOFF.h:121
@ XMC_UL
Uninitialized thread-local variable.
Definition XCOFF.h:128
@ XMC_PR
Program Code.
Definition XCOFF.h:106
@ XMC_BS
BSS class (uninitialized static internal)
Definition XCOFF.h:124
@ XMC_TC
General TOC item.
Definition XCOFF.h:120
@ XTY_CM
Common csect definition. For uninitialized storage.
Definition XCOFF.h:246
This is an optimization pass for GlobalISel generic memory operations.
@ AIX
AIX Exception Handling.
Definition CodeGen.h:61
cl::opt< cl::boolOrDefault > UseLEB128Directives("use-leb128-directives", cl::Hidden, cl::desc("Disable the usage of LEB128 directives, and generate .byte instead."), cl::init(cl::boolOrDefault::BOU_UNSET))
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
Definition Error.cpp:163
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.
Definition Format.h:94
unsigned Log2(Align A)
Returns the log2 of the alignment.
Definition Alignment.h:197