Sean Fertile | f09d54e | 2019-07-09 19:21:01 +0000 | [diff] [blame] | 1 | //===- lib/MC/MCSectionXCOFF.cpp - XCOFF Code Section Representation ------===// |
| 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 | |
| 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" |
| 13 | |
| 14 | using namespace llvm; |
| 15 | |
| 16 | MCSectionXCOFF::~MCSectionXCOFF() = default; |
| 17 | |
Xiangling Liao | 3b808fb | 2019-09-26 19:38:32 +0000 | [diff] [blame] | 18 | |
Sean Fertile | f09d54e | 2019-07-09 19:21:01 +0000 | [diff] [blame] | 19 | void MCSectionXCOFF::PrintSwitchToSection(const MCAsmInfo &MAI, const Triple &T, |
| 20 | raw_ostream &OS, |
| 21 | const MCExpr *Subsection) const { |
| 22 | if (getKind().isText()) { |
Sean Fertile | 942537d | 2019-07-22 19:15:29 +0000 | [diff] [blame] | 23 | if (getMappingClass() != XCOFF::XMC_PR) |
Xiangling Liao | 3b808fb | 2019-09-26 19:38:32 +0000 | [diff] [blame] | 24 | report_fatal_error("Unhandled storage-mapping class for .text csect"); |
Sean Fertile | 942537d | 2019-07-22 19:15:29 +0000 | [diff] [blame] | 25 | |
Jason Liu | 0dc0572 | 2019-11-08 09:26:28 -0500 | [diff] [blame] | 26 | OS << "\t.csect " << QualName->getName() << '\n'; |
Sean Fertile | f09d54e | 2019-07-09 19:21:01 +0000 | [diff] [blame] | 27 | return; |
| 28 | } |
| 29 | |
diggerlin | 3dfa975 | 2019-11-15 11:30:19 -0500 | [diff] [blame^] | 30 | if (getKind().isReadOnly()) { |
| 31 | if (getMappingClass() != XCOFF::XMC_RO) |
| 32 | report_fatal_error("Unhandled storage-mapping class for .rodata csect."); |
| 33 | OS << "\t.csect " << QualName->getName() << '\n'; |
| 34 | return; |
| 35 | } |
| 36 | |
Xing Xue | ef039a3 | 2019-08-25 15:17:25 +0000 | [diff] [blame] | 37 | if (getKind().isData()) { |
Xiangling Liao | 3b808fb | 2019-09-26 19:38:32 +0000 | [diff] [blame] | 38 | switch (getMappingClass()) { |
| 39 | case XCOFF::XMC_RW: |
| 40 | case XCOFF::XMC_DS: |
Jason Liu | 0dc0572 | 2019-11-08 09:26:28 -0500 | [diff] [blame] | 41 | OS << "\t.csect " << QualName->getName() << '\n'; |
Xiangling Liao | 3b808fb | 2019-09-26 19:38:32 +0000 | [diff] [blame] | 42 | break; |
| 43 | case XCOFF::XMC_TC0: |
| 44 | OS << "\t.toc\n"; |
| 45 | break; |
| 46 | default: |
| 47 | report_fatal_error( |
| 48 | "Unhandled storage-mapping class for .data csect."); |
| 49 | } |
Xing Xue | ef039a3 | 2019-08-25 15:17:25 +0000 | [diff] [blame] | 50 | return; |
| 51 | } |
| 52 | |
David Tenty | 8558aac | 2019-08-08 15:40:35 +0000 | [diff] [blame] | 53 | if (getKind().isBSSLocal() || getKind().isCommon()) { |
David Tenty | 9bf01e5 | 2019-08-13 17:04:51 +0000 | [diff] [blame] | 54 | assert((getMappingClass() == XCOFF::XMC_RW || |
| 55 | getMappingClass() == XCOFF::XMC_BS) && |
| 56 | "Generated a storage-mapping class for a common/bss csect we don't " |
| 57 | "understand how to switch to."); |
| 58 | assert(getCSectType() == XCOFF::XTY_CM && |
| 59 | "wrong csect type for .bss csect"); |
Sean Fertile | 942537d | 2019-07-22 19:15:29 +0000 | [diff] [blame] | 60 | // Don't have to print a directive for switching to section for commons. |
| 61 | // '.comm' and '.lcomm' directives for the variable will create the needed |
| 62 | // csect. |
| 63 | return; |
| 64 | } |
| 65 | |
Sean Fertile | f09d54e | 2019-07-09 19:21:01 +0000 | [diff] [blame] | 66 | report_fatal_error("Printing for this SectionKind is unimplemented."); |
| 67 | } |
| 68 | |
| 69 | bool MCSectionXCOFF::UseCodeAlign() const { return getKind().isText(); } |
| 70 | |
Sean Fertile | 942537d | 2019-07-22 19:15:29 +0000 | [diff] [blame] | 71 | bool MCSectionXCOFF::isVirtualSection() const { return XCOFF::XTY_CM == Type; } |