2019-07-10 03:21:01 +08: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;
|
|
|
|
|
2019-09-27 03:38:32 +08:00
|
|
|
|
2019-07-10 03:21:01 +08:00
|
|
|
void MCSectionXCOFF::PrintSwitchToSection(const MCAsmInfo &MAI, const Triple &T,
|
|
|
|
raw_ostream &OS,
|
|
|
|
const MCExpr *Subsection) const {
|
|
|
|
if (getKind().isText()) {
|
2019-07-23 03:15:29 +08:00
|
|
|
if (getMappingClass() != XCOFF::XMC_PR)
|
2019-09-27 03:38:32 +08:00
|
|
|
report_fatal_error("Unhandled storage-mapping class for .text csect");
|
2019-07-23 03:15:29 +08:00
|
|
|
|
[XCOFF][AIX] Differentiate usage of label symbol and csect symbol
Summary:
We are using symbols to represent label and csect interchangeably before, and that could be a problem.
There are cases we would need to add storage mapping class to the symbol if that symbol is actually the name of a csect, but it's hard for us to figure out whether that symbol is a label or csect.
This patch intend to do the following:
1. Construct a QualName (A name include the storage mapping class)
MCSymbolXCOFF for every MCSectionXCOFF.
2. Keep a pointer to that QualName inside of MCSectionXCOFF.
3. Use that QualName whenever we need a symbol refers to that
MCSectionXCOFF.
4. Adapt the snowball effect from the above changes in
XCOFFObjectWriter.cpp.
Reviewers: xingxue, DiggerLin, sfertile, daltenty, hubert.reinterpretcast
Reviewed By: DiggerLin, daltenty
Subscribers: wuzish, nemanjai, mgorny, hiraditya, kbarton, jsji, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D69633
2019-11-08 22:26:28 +08:00
|
|
|
OS << "\t.csect " << QualName->getName() << '\n';
|
2019-07-10 03:21:01 +08: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 23:17:25 +08:00
|
|
|
if (getKind().isData()) {
|
2019-09-27 03:38:32 +08:00
|
|
|
switch (getMappingClass()) {
|
|
|
|
case XCOFF::XMC_RW:
|
|
|
|
case XCOFF::XMC_DS:
|
[XCOFF][AIX] Differentiate usage of label symbol and csect symbol
Summary:
We are using symbols to represent label and csect interchangeably before, and that could be a problem.
There are cases we would need to add storage mapping class to the symbol if that symbol is actually the name of a csect, but it's hard for us to figure out whether that symbol is a label or csect.
This patch intend to do the following:
1. Construct a QualName (A name include the storage mapping class)
MCSymbolXCOFF for every MCSectionXCOFF.
2. Keep a pointer to that QualName inside of MCSectionXCOFF.
3. Use that QualName whenever we need a symbol refers to that
MCSectionXCOFF.
4. Adapt the snowball effect from the above changes in
XCOFFObjectWriter.cpp.
Reviewers: xingxue, DiggerLin, sfertile, daltenty, hubert.reinterpretcast
Reviewed By: DiggerLin, daltenty
Subscribers: wuzish, nemanjai, mgorny, hiraditya, kbarton, jsji, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D69633
2019-11-08 22:26:28 +08:00
|
|
|
OS << "\t.csect " << QualName->getName() << '\n';
|
2019-09-27 03:38:32 +08:00
|
|
|
break;
|
|
|
|
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 23:17:25 +08: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 23:40:35 +08:00
|
|
|
if (getKind().isBSSLocal() || getKind().isCommon()) {
|
2019-08-14 01:04:51 +08: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-23 03:15:29 +08: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-10 03:21:01 +08:00
|
|
|
report_fatal_error("Printing for this SectionKind is unimplemented.");
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MCSectionXCOFF::UseCodeAlign() const { return getKind().isText(); }
|
|
|
|
|
2019-07-23 03:15:29 +08:00
|
|
|
bool MCSectionXCOFF::isVirtualSection() const { return XCOFF::XTY_CM == Type; }
|