2010-05-07 17:17:41 +00:00
|
|
|
//===- lib/MC/MCSectionCOFF.cpp - COFF Code Section Representation --------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/MC/MCSectionCOFF.h"
|
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
|
|
|
#include "llvm/MC/MCContext.h"
|
|
|
|
#include "llvm/MC/MCSymbol.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
MCSectionCOFF::~MCSectionCOFF() {} // anchor.
|
|
|
|
|
|
|
|
// 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 01:18:37 +00:00
|
|
|
if (COMDATSymbol)
|
|
|
|
return false;
|
2012-05-11 01:41:30 +00:00
|
|
|
|
2010-05-07 17:17:41 +00:00
|
|
|
// FIXME: Does .section .bss/.data/.text work everywhere??
|
|
|
|
if (Name == ".text" || Name == ".data" || Name == ".bss")
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-06-06 19:26:12 +00:00
|
|
|
void MCSectionCOFF::setSelection(int Selection) const {
|
2013-07-06 12:13:10 +00:00
|
|
|
assert(Selection != 0 && "invalid COMDAT selection type");
|
|
|
|
this->Selection = Selection;
|
|
|
|
Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT;
|
|
|
|
}
|
|
|
|
|
2010-05-07 17:17:41 +00:00
|
|
|
void MCSectionCOFF::PrintSwitchToSection(const MCAsmInfo &MAI,
|
2013-04-17 21:18:16 +00:00
|
|
|
raw_ostream &OS,
|
|
|
|
const MCExpr *Subsection) const {
|
2012-05-11 01:41:30 +00:00
|
|
|
|
2010-05-09 05:49:00 +00:00
|
|
|
// standard sections don't require the '.section'
|
2010-05-07 17:17:41 +00:00
|
|
|
if (ShouldOmitSectionDirective(SectionName, MAI)) {
|
|
|
|
OS << '\t' << getSectionName() << '\n';
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-10-18 02:14:40 +00:00
|
|
|
OS << "\t.section\t" << getSectionName() << ",\"";
|
2015-02-07 08:26:40 +00:00
|
|
|
if (getCharacteristics() & COFF::IMAGE_SCN_CNT_INITIALIZED_DATA)
|
|
|
|
OS << 'd';
|
|
|
|
if (getCharacteristics() & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA)
|
|
|
|
OS << 'b';
|
2014-09-20 20:40:50 +00:00
|
|
|
if (getCharacteristics() & COFF::IMAGE_SCN_MEM_EXECUTE)
|
2010-05-07 17:17:41 +00:00
|
|
|
OS << 'x';
|
2014-09-20 20:40:50 +00:00
|
|
|
if (getCharacteristics() & COFF::IMAGE_SCN_MEM_WRITE)
|
2010-05-07 17:17:41 +00:00
|
|
|
OS << 'w';
|
2014-09-20 20:40:50 +00:00
|
|
|
else if (getCharacteristics() & COFF::IMAGE_SCN_MEM_READ)
|
2010-05-07 17:17:41 +00:00
|
|
|
OS << 'r';
|
2014-09-20 20:40:50 +00:00
|
|
|
else
|
|
|
|
OS << 'y';
|
|
|
|
if (getCharacteristics() & COFF::IMAGE_SCN_LNK_REMOVE)
|
|
|
|
OS << 'n';
|
|
|
|
if (getCharacteristics() & COFF::IMAGE_SCN_MEM_SHARED)
|
|
|
|
OS << 's';
|
2013-11-27 01:18:37 +00:00
|
|
|
OS << '"';
|
2012-05-11 01:41:30 +00:00
|
|
|
|
2010-07-01 20:07:24 +00:00
|
|
|
if (getCharacteristics() & COFF::IMAGE_SCN_LNK_COMDAT) {
|
2013-11-27 01:18:37 +00:00
|
|
|
OS << ",";
|
2010-05-12 04:26:09 +00:00
|
|
|
switch (Selection) {
|
2010-07-01 20:07:24 +00:00
|
|
|
case COFF::IMAGE_COMDAT_SELECT_NODUPLICATES:
|
2013-11-27 01:18:37 +00:00
|
|
|
OS << "one_only,";
|
2010-05-12 04:26:09 +00:00
|
|
|
break;
|
2010-07-01 20:07:24 +00:00
|
|
|
case COFF::IMAGE_COMDAT_SELECT_ANY:
|
2013-11-27 01:18:37 +00:00
|
|
|
OS << "discard,";
|
2010-05-12 04:26:09 +00:00
|
|
|
break;
|
2010-07-01 20:07:24 +00:00
|
|
|
case COFF::IMAGE_COMDAT_SELECT_SAME_SIZE:
|
2013-11-27 01:18:37 +00:00
|
|
|
OS << "same_size,";
|
2010-05-12 04:26:09 +00:00
|
|
|
break;
|
2010-07-01 20:07:24 +00:00
|
|
|
case COFF::IMAGE_COMDAT_SELECT_EXACT_MATCH:
|
2013-11-27 01:18:37 +00:00
|
|
|
OS << "same_contents,";
|
2010-05-12 04:26:09 +00:00
|
|
|
break;
|
2013-07-06 12:13:10 +00:00
|
|
|
case COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE:
|
2014-06-06 19:26:12 +00:00
|
|
|
OS << "associative,";
|
2013-07-06 12:13:10 +00:00
|
|
|
break;
|
2010-07-01 20:07:24 +00:00
|
|
|
case COFF::IMAGE_COMDAT_SELECT_LARGEST:
|
2013-11-27 01:18:37 +00:00
|
|
|
OS << "largest,";
|
2013-07-06 12:13:10 +00:00
|
|
|
break;
|
|
|
|
case COFF::IMAGE_COMDAT_SELECT_NEWEST:
|
2013-11-27 01:18:37 +00:00
|
|
|
OS << "newest,";
|
2013-07-06 12:13:10 +00:00
|
|
|
break;
|
2010-05-12 07:36:03 +00:00
|
|
|
default:
|
|
|
|
assert (0 && "unsupported COFF selection type");
|
|
|
|
break;
|
2010-05-12 04:26:09 +00:00
|
|
|
}
|
2013-11-27 01:18:37 +00:00
|
|
|
assert(COMDATSymbol);
|
2015-06-09 00:31:39 +00:00
|
|
|
COMDATSymbol->print(OS, &MAI);
|
2010-05-12 04:26:09 +00:00
|
|
|
}
|
2013-11-27 01:18:37 +00:00
|
|
|
OS << '\n';
|
2010-05-07 17:17:41 +00:00
|
|
|
}
|
2010-10-04 17:32:41 +00:00
|
|
|
|
|
|
|
bool MCSectionCOFF::UseCodeAlign() const {
|
|
|
|
return getKind().isText();
|
|
|
|
}
|
2010-11-17 20:03:54 +00:00
|
|
|
|
|
|
|
bool MCSectionCOFF::isVirtualSection() const {
|
|
|
|
return getCharacteristics() & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA;
|
|
|
|
}
|