2010-05-07 19:17:41 +02:00
|
|
|
//===- lib/MC/MCSectionCOFF.cpp - COFF Code Section Representation --------===//
|
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// 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
|
2010-05-07 19:17:41 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/MC/MCSectionCOFF.h"
|
2017-06-07 05:48:56 +02:00
|
|
|
#include "llvm/BinaryFormat/COFF.h"
|
2010-05-07 19:17:41 +02:00
|
|
|
#include "llvm/MC/MCSymbol.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2017-02-10 02:33:54 +01:00
|
|
|
#include <cassert>
|
|
|
|
|
2010-05-07 19:17:41 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
// ShouldOmitSectionDirective - Decides whether a '.section' directive
|
|
|
|
// should be printed before the section name
|
|
|
|
bool MCSectionCOFF::ShouldOmitSectionDirective(StringRef Name,
|
|
|
|
const MCAsmInfo &MAI) const {
|
2013-11-27 02:18:37 +01:00
|
|
|
if (COMDATSymbol)
|
|
|
|
return false;
|
2012-05-11 03:41:30 +02:00
|
|
|
|
2010-05-07 19:17:41 +02:00
|
|
|
// FIXME: Does .section .bss/.data/.text work everywhere??
|
|
|
|
if (Name == ".text" || Name == ".data" || Name == ".bss")
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-06-06 21:26:12 +02:00
|
|
|
void MCSectionCOFF::setSelection(int Selection) const {
|
2013-07-06 14:13:10 +02:00
|
|
|
assert(Selection != 0 && "invalid COMDAT selection type");
|
|
|
|
this->Selection = Selection;
|
|
|
|
Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT;
|
|
|
|
}
|
|
|
|
|
2017-01-30 16:38:43 +01:00
|
|
|
void MCSectionCOFF::PrintSwitchToSection(const MCAsmInfo &MAI, const Triple &T,
|
2013-04-17 23:18:16 +02:00
|
|
|
raw_ostream &OS,
|
|
|
|
const MCExpr *Subsection) const {
|
2010-05-09 07:49:00 +02:00
|
|
|
// standard sections don't require the '.section'
|
2010-05-07 19:17:41 +02:00
|
|
|
if (ShouldOmitSectionDirective(SectionName, MAI)) {
|
|
|
|
OS << '\t' << getSectionName() << '\n';
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-10-18 04:14:40 +02:00
|
|
|
OS << "\t.section\t" << getSectionName() << ",\"";
|
2015-02-07 09:26:40 +01:00
|
|
|
if (getCharacteristics() & COFF::IMAGE_SCN_CNT_INITIALIZED_DATA)
|
|
|
|
OS << 'd';
|
|
|
|
if (getCharacteristics() & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA)
|
|
|
|
OS << 'b';
|
2014-09-20 22:40:50 +02:00
|
|
|
if (getCharacteristics() & COFF::IMAGE_SCN_MEM_EXECUTE)
|
2010-05-07 19:17:41 +02:00
|
|
|
OS << 'x';
|
2014-09-20 22:40:50 +02:00
|
|
|
if (getCharacteristics() & COFF::IMAGE_SCN_MEM_WRITE)
|
2010-05-07 19:17:41 +02:00
|
|
|
OS << 'w';
|
2014-09-20 22:40:50 +02:00
|
|
|
else if (getCharacteristics() & COFF::IMAGE_SCN_MEM_READ)
|
2010-05-07 19:17:41 +02:00
|
|
|
OS << 'r';
|
2014-09-20 22:40:50 +02:00
|
|
|
else
|
|
|
|
OS << 'y';
|
|
|
|
if (getCharacteristics() & COFF::IMAGE_SCN_LNK_REMOVE)
|
|
|
|
OS << 'n';
|
|
|
|
if (getCharacteristics() & COFF::IMAGE_SCN_MEM_SHARED)
|
|
|
|
OS << 's';
|
2016-09-15 00:41:50 +02:00
|
|
|
if ((getCharacteristics() & COFF::IMAGE_SCN_MEM_DISCARDABLE) &&
|
|
|
|
!isImplicitlyDiscardable(SectionName))
|
|
|
|
OS << 'D';
|
2013-11-27 02:18:37 +01:00
|
|
|
OS << '"';
|
2012-05-11 03:41:30 +02:00
|
|
|
|
2010-07-01 22:07:24 +02:00
|
|
|
if (getCharacteristics() & COFF::IMAGE_SCN_LNK_COMDAT) {
|
2018-07-24 00:15:19 +02:00
|
|
|
if (COMDATSymbol)
|
|
|
|
OS << ",";
|
|
|
|
else
|
|
|
|
OS << "\n\t.linkonce\t";
|
2010-05-12 06:26:09 +02:00
|
|
|
switch (Selection) {
|
2010-07-01 22:07:24 +02:00
|
|
|
case COFF::IMAGE_COMDAT_SELECT_NODUPLICATES:
|
2018-07-24 00:15:19 +02:00
|
|
|
OS << "one_only";
|
2010-05-12 06:26:09 +02:00
|
|
|
break;
|
2010-07-01 22:07:24 +02:00
|
|
|
case COFF::IMAGE_COMDAT_SELECT_ANY:
|
2018-07-24 00:15:19 +02:00
|
|
|
OS << "discard";
|
2010-05-12 06:26:09 +02:00
|
|
|
break;
|
2010-07-01 22:07:24 +02:00
|
|
|
case COFF::IMAGE_COMDAT_SELECT_SAME_SIZE:
|
2018-07-24 00:15:19 +02:00
|
|
|
OS << "same_size";
|
2010-05-12 06:26:09 +02:00
|
|
|
break;
|
2010-07-01 22:07:24 +02:00
|
|
|
case COFF::IMAGE_COMDAT_SELECT_EXACT_MATCH:
|
2018-07-24 00:15:19 +02:00
|
|
|
OS << "same_contents";
|
2010-05-12 06:26:09 +02:00
|
|
|
break;
|
2013-07-06 14:13:10 +02:00
|
|
|
case COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE:
|
2018-07-24 00:15:19 +02:00
|
|
|
OS << "associative";
|
2013-07-06 14:13:10 +02:00
|
|
|
break;
|
2010-07-01 22:07:24 +02:00
|
|
|
case COFF::IMAGE_COMDAT_SELECT_LARGEST:
|
2018-07-24 00:15:19 +02:00
|
|
|
OS << "largest";
|
2013-07-06 14:13:10 +02:00
|
|
|
break;
|
|
|
|
case COFF::IMAGE_COMDAT_SELECT_NEWEST:
|
2018-07-24 00:15:19 +02:00
|
|
|
OS << "newest";
|
2013-07-06 14:13:10 +02:00
|
|
|
break;
|
2010-05-12 09:36:03 +02:00
|
|
|
default:
|
2017-02-10 02:33:54 +01:00
|
|
|
assert(false && "unsupported COFF selection type");
|
2010-05-12 09:36:03 +02:00
|
|
|
break;
|
2010-05-12 06:26:09 +02:00
|
|
|
}
|
2018-07-24 00:15:19 +02:00
|
|
|
if (COMDATSymbol) {
|
|
|
|
OS << ",";
|
|
|
|
COMDATSymbol->print(OS, &MAI);
|
|
|
|
}
|
2010-05-12 06:26:09 +02:00
|
|
|
}
|
2013-11-27 02:18:37 +01:00
|
|
|
OS << '\n';
|
2010-05-07 19:17:41 +02:00
|
|
|
}
|
2010-10-04 19:32:41 +02:00
|
|
|
|
|
|
|
bool MCSectionCOFF::UseCodeAlign() const {
|
|
|
|
return getKind().isText();
|
|
|
|
}
|
2010-11-17 21:03:54 +01:00
|
|
|
|
|
|
|
bool MCSectionCOFF::isVirtualSection() const {
|
|
|
|
return getCharacteristics() & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA;
|
|
|
|
}
|