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;
|
|
|
|
|
2020-05-11 20:43:07 +02:00
|
|
|
void MCSectionXCOFF::printCsectDirective(raw_ostream &OS) const {
|
2020-05-22 14:20:35 +02:00
|
|
|
OS << "\t.csect " << QualName->getName() << "," << Log2_32(getAlignment())
|
2020-05-11 20:43:07 +02:00
|
|
|
<< '\n';
|
|
|
|
}
|
2019-09-26 21:38:32 +02:00
|
|
|
|
2019-07-09 21:21:01 +02:00
|
|
|
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)
|
2019-09-26 21:38:32 +02:00
|
|
|
report_fatal_error("Unhandled storage-mapping class for .text csect");
|
2019-07-22 21:15:29 +02:00
|
|
|
|
2020-05-11 20:43:07 +02:00
|
|
|
printCsectDirective(OS);
|
2019-07-09 21:21:01 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-15 17:30:19 +01:00
|
|
|
if (getKind().isReadOnly()) {
|
|
|
|
if (getMappingClass() != XCOFF::XMC_RO)
|
|
|
|
report_fatal_error("Unhandled storage-mapping class for .rodata csect.");
|
2020-05-11 20:43:07 +02:00
|
|
|
printCsectDirective(OS);
|
2019-11-15 17:30:19 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
[PowerPC][AIX] Adds support for writing the .data section in assembly files
Summary:
Adds support for generating the .data section in assembly files for global variables with a non-zero initialization. The support for writing the .data section in XCOFF object files will be added in a follow-on patch. Any relocations are not included in this patch.
Reviewers: hubert.reinterpretcast, sfertile, jasonliu, daltenty, Xiangling_L
Reviewed by: hubert.reinterpretcast
Subscribers: nemanjai, hiraditya, kbarton, MaskRay, jsji, wuzish, shchenz, DiggerLin, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D66154
llvm-svn: 369869
2019-08-25 17:17:25 +02:00
|
|
|
if (getKind().isData()) {
|
2019-09-26 21:38:32 +02:00
|
|
|
switch (getMappingClass()) {
|
|
|
|
case XCOFF::XMC_RW:
|
|
|
|
case XCOFF::XMC_DS:
|
2020-05-11 20:43:07 +02:00
|
|
|
printCsectDirective(OS);
|
2019-09-26 21:38:32 +02:00
|
|
|
break;
|
[AIX] Emit TOC entries for ASM printing
Summary:
Emit the correct .toc psuedo op when we change to the TOC and emit
TC entries. Make sure TOC psuedos get the right symbols via overriding
getMCSymbolForTOCPseudoMO on AIX. Add a test for TOC assembly writing
and update tests to include TOC entries.
Also make sure external globals have a csect set and handle external function descriptor (originally authored by Jason Liu) so we can emit TOC entries for them.
Reviewers: DiggerLin, sfertile, Xiangling_L, jasonliu, hubert.reinterpretcast
Reviewed By: jasonliu
Subscribers: arphaman, wuzish, nemanjai, hiraditya, kbarton, jsji, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D70461
2019-11-27 23:17:02 +01:00
|
|
|
case XCOFF::XMC_TC:
|
|
|
|
break;
|
2019-09-26 21:38:32 +02:00
|
|
|
case XCOFF::XMC_TC0:
|
|
|
|
OS << "\t.toc\n";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
report_fatal_error(
|
|
|
|
"Unhandled storage-mapping class for .data csect.");
|
|
|
|
}
|
[PowerPC][AIX] Adds support for writing the .data section in assembly files
Summary:
Adds support for generating the .data section in assembly files for global variables with a non-zero initialization. The support for writing the .data section in XCOFF object files will be added in a follow-on patch. Any relocations are not included in this patch.
Reviewers: hubert.reinterpretcast, sfertile, jasonliu, daltenty, Xiangling_L
Reviewed by: hubert.reinterpretcast
Subscribers: nemanjai, hiraditya, kbarton, MaskRay, jsji, wuzish, shchenz, DiggerLin, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D66154
llvm-svn: 369869
2019-08-25 17:17:25 +02:00
|
|
|
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; }
|