2019-07-09 21:21:01 +02:00
|
|
|
//===- lib/MC/MCSectionXCOFF.cpp - XCOFF Code Section Representation ------===//
|
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/MC/MCSectionXCOFF.h"
|
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
|
|
|
#include "llvm/MC/MCExpr.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
MCSectionXCOFF::~MCSectionXCOFF() = default;
|
|
|
|
|
|
|
|
void MCSectionXCOFF::PrintSwitchToSection(const MCAsmInfo &MAI, const Triple &T,
|
|
|
|
raw_ostream &OS,
|
|
|
|
const MCExpr *Subsection) const {
|
|
|
|
if (getKind().isText()) {
|
2019-07-22 21:15:29 +02:00
|
|
|
if (getMappingClass() != XCOFF::XMC_PR)
|
|
|
|
llvm_unreachable("Unsupported storage-mapping class for .text csect");
|
|
|
|
|
2019-07-09 21:21:01 +02:00
|
|
|
OS << "\t.csect " << getSectionName() << "["
|
|
|
|
<< "PR"
|
|
|
|
<< "]" << '\n';
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
Enable assembly output of local commons for AIX
Summary:
This patch enable assembly output of local commons for AIX using .lcomm
directives. Adds a EmitXCOFFLocalCommonSymbol to MCStreamer so we can emit the
AIX version of .lcomm assembly directives which include a csect name. Handle the
case of BSS locals in PPCAIXAsmPrinter by using EmitXCOFFLocalCommonSymbol. Adds
a test for generating .lcomm on AIX Targets.
Reviewers: cebowleratibm, hubert.reinterpretcast, Xiangling_L, jasonliu, sfertile
Reviewed By: sfertile
Subscribers: wuzish, nemanjai, hiraditya, kbarton, MaskRay, jsji, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D64825
llvm-svn: 368306
2019-08-08 17:40:35 +02:00
|
|
|
if (getKind().isBSSLocal() || getKind().isCommon()) {
|
2019-08-13 19:04:51 +02:00
|
|
|
assert((getMappingClass() == XCOFF::XMC_RW ||
|
|
|
|
getMappingClass() == XCOFF::XMC_BS) &&
|
|
|
|
"Generated a storage-mapping class for a common/bss csect we don't "
|
|
|
|
"understand how to switch to.");
|
|
|
|
assert(getCSectType() == XCOFF::XTY_CM &&
|
|
|
|
"wrong csect type for .bss csect");
|
2019-07-22 21:15:29 +02:00
|
|
|
// Don't have to print a directive for switching to section for commons.
|
|
|
|
// '.comm' and '.lcomm' directives for the variable will create the needed
|
|
|
|
// csect.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-07-09 21:21:01 +02:00
|
|
|
report_fatal_error("Printing for this SectionKind is unimplemented.");
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MCSectionXCOFF::UseCodeAlign() const { return getKind().isText(); }
|
|
|
|
|
2019-07-22 21:15:29 +02:00
|
|
|
bool MCSectionXCOFF::isVirtualSection() const { return XCOFF::XTY_CM == Type; }
|