1 //===- lib/MC/MCSectionCOFF.cpp - COFF Code Section Representation --------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 #include "llvm/MC/MCSectionCOFF.h"
11 #include "llvm/MC/MCAsmInfo.h"
12 #include "llvm/MC/MCContext.h"
13 #include "llvm/MC/MCSymbol.h"
14 #include "llvm/Support/raw_ostream.h"
17 MCSectionCOFF::~MCSectionCOFF() {} // anchor.
19 // ShouldOmitSectionDirective - Decides whether a '.section' directive
20 // should be printed before the section name
21 bool MCSectionCOFF::ShouldOmitSectionDirective(StringRef Name,
22 const MCAsmInfo &MAI) const {
26 // FIXME: Does .section .bss/.data/.text work everywhere??
27 if (Name == ".text" || Name == ".data" || Name == ".bss")
33 void MCSectionCOFF::setSelection(int Selection) const {
34 assert(Selection != 0 && "invalid COMDAT selection type");
35 this->Selection = Selection;
36 Characteristics |= COFF::IMAGE_SCN_LNK_COMDAT;
39 void MCSectionCOFF::PrintSwitchToSection(const MCAsmInfo &MAI,
41 const MCExpr *Subsection) const {
43 // standard sections don't require the '.section'
44 if (ShouldOmitSectionDirective(SectionName, MAI)) {
45 OS << '\t' << getSectionName() << '\n';
49 OS << "\t.section\t" << getSectionName() << ",\"";
50 if (getCharacteristics() & COFF::IMAGE_SCN_CNT_INITIALIZED_DATA)
52 if (getCharacteristics() & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA)
54 if (getCharacteristics() & COFF::IMAGE_SCN_MEM_EXECUTE)
56 if (getCharacteristics() & COFF::IMAGE_SCN_MEM_WRITE)
58 else if (getCharacteristics() & COFF::IMAGE_SCN_MEM_READ)
62 if (getCharacteristics() & COFF::IMAGE_SCN_LNK_REMOVE)
64 if (getCharacteristics() & COFF::IMAGE_SCN_MEM_SHARED)
68 if (getCharacteristics() & COFF::IMAGE_SCN_LNK_COMDAT) {
71 case COFF::IMAGE_COMDAT_SELECT_NODUPLICATES:
74 case COFF::IMAGE_COMDAT_SELECT_ANY:
77 case COFF::IMAGE_COMDAT_SELECT_SAME_SIZE:
80 case COFF::IMAGE_COMDAT_SELECT_EXACT_MATCH:
81 OS << "same_contents,";
83 case COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE:
86 case COFF::IMAGE_COMDAT_SELECT_LARGEST:
89 case COFF::IMAGE_COMDAT_SELECT_NEWEST:
93 assert (0 && "unsupported COFF selection type");
102 bool MCSectionCOFF::UseCodeAlign() const {
103 return getKind().isText();
106 bool MCSectionCOFF::isVirtualSection() const {
107 return getCharacteristics() & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA;