1 //===- lib/MC/MCSectionXCOFF.cpp - XCOFF Code Section Representation ------===//
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
7 //===----------------------------------------------------------------------===//
9 #include "llvm/MC/MCSectionXCOFF.h"
10 #include "llvm/MC/MCAsmInfo.h"
11 #include "llvm/MC/MCExpr.h"
12 #include "llvm/Support/raw_ostream.h"
16 MCSectionXCOFF::~MCSectionXCOFF() = default;
18 void MCSectionXCOFF::PrintSwitchToSection(const MCAsmInfo
&MAI
, const Triple
&T
,
20 const MCExpr
*Subsection
) const {
21 if (getKind().isText()) {
22 if (getMappingClass() != XCOFF::XMC_PR
)
23 llvm_unreachable("Unsupported storage-mapping class for .text csect");
25 OS
<< "\t.csect " << getSectionName() << "["
31 if (getKind().isCommon()) {
32 if (getMappingClass() != XCOFF::XMC_RW
)
33 llvm_unreachable("Unsupported storage-mapping class for common csect");
34 if (getCSectType() != XCOFF::XTY_CM
)
35 llvm_unreachable("wrong csect type for common csect");
36 // Don't have to print a directive for switching to section for commons.
37 // '.comm' and '.lcomm' directives for the variable will create the needed
42 report_fatal_error("Printing for this SectionKind is unimplemented.");
45 bool MCSectionXCOFF::UseCodeAlign() const { return getKind().isText(); }
47 bool MCSectionXCOFF::isVirtualSection() const { return XCOFF::XTY_CM
== Type
; }