Missed a \n in previous commit.
[oota-llvm.git] / lib / MC / MCSectionELF.cpp
1 //===- lib/MC/MCSectionELF.cpp - ELF Code Section Representation ----------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #include "llvm/MC/MCSectionELF.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"
15 using namespace llvm;
16
17 MCSectionELF *MCSectionELF::
18 Create(StringRef Section, unsigned Type, unsigned Flags,
19        SectionKind K, bool isExplicit, MCContext &Ctx) {
20   return new (Ctx) MCSectionELF(Section, Type, Flags, K, isExplicit);
21 }
22
23 // ShouldOmitSectionDirective - Decides whether a '.section' directive
24 // should be printed before the section name
25 bool MCSectionELF::ShouldOmitSectionDirective(StringRef Name,
26                                               const MCAsmInfo &MAI) const {
27   
28   // FIXME: Does .section .bss/.data/.text work everywhere??
29   if (Name == ".text" || Name == ".data" ||
30       (Name == ".bss" && !MAI.usesELFSectionDirectiveForBSS()))
31     return true;
32
33   return false;
34 }
35
36 // ShouldPrintSectionType - Only prints the section type if supported
37 bool MCSectionELF::ShouldPrintSectionType(unsigned Ty) const {
38   if (IsExplicit && !(Ty == SHT_NOBITS || Ty == SHT_PROGBITS))
39     return false;
40
41   return true;
42 }
43
44 void MCSectionELF::PrintSwitchToSection(const MCAsmInfo &MAI,
45                                         raw_ostream &OS) const {
46    
47   if (ShouldOmitSectionDirective(SectionName, MAI)) {
48     OS << '\t' << getSectionName() << '\n';
49     return;
50   }
51
52   OS << "\t.section\t" << getSectionName();
53   
54   // Handle the weird solaris syntax if desired.
55   if (MAI.usesSunStyleELFSectionSwitchSyntax() && 
56       !(Flags & MCSectionELF::SHF_MERGE)) {
57     if (Flags & MCSectionELF::SHF_ALLOC)
58       OS << ",#alloc";
59     if (Flags & MCSectionELF::SHF_EXECINSTR)
60       OS << ",#execinstr";
61     if (Flags & MCSectionELF::SHF_WRITE)
62       OS << ",#write";
63     if (Flags & MCSectionELF::SHF_TLS)
64       OS << ",#tls";
65   } else {
66     OS << ",\"";
67     if (Flags & MCSectionELF::SHF_ALLOC)
68       OS << 'a';
69     if (Flags & MCSectionELF::SHF_EXECINSTR)
70       OS << 'x';
71     if (Flags & MCSectionELF::SHF_WRITE)
72       OS << 'w';
73     if (Flags & MCSectionELF::SHF_MERGE)
74       OS << 'M';
75     if (Flags & MCSectionELF::SHF_STRINGS)
76       OS << 'S';
77     if (Flags & MCSectionELF::SHF_TLS)
78       OS << 'T';
79     
80     // If there are target-specific flags, print them.
81     if (Flags & ~MCSectionELF::TARGET_INDEP_SHF)
82       PrintTargetSpecificSectionFlags(MAI, OS);
83     
84     OS << '"';
85
86     if (ShouldPrintSectionType(Type)) {
87       OS << ',';
88    
89       // If comment string is '@', e.g. as on ARM - use '%' instead
90       if (MAI.getCommentString()[0] == '@')
91         OS << '%';
92       else
93         OS << '@';
94     
95       if (Type == MCSectionELF::SHT_INIT_ARRAY)
96         OS << "init_array";
97       else if (Type == MCSectionELF::SHT_FINI_ARRAY)
98         OS << "fini_array";
99       else if (Type == MCSectionELF::SHT_PREINIT_ARRAY)
100         OS << "preinit_array";
101       else if (Type == MCSectionELF::SHT_NOBITS)
102         OS << "nobits";
103       else if (Type == MCSectionELF::SHT_PROGBITS)
104         OS << "progbits";
105     
106       if (getKind().isMergeable1ByteCString()) {
107         OS << ",1";
108       } else if (getKind().isMergeable2ByteCString()) {
109         OS << ",2";
110       } else if (getKind().isMergeable4ByteCString() || 
111                  getKind().isMergeableConst4()) {
112         OS << ",4";
113       } else if (getKind().isMergeableConst8()) {
114         OS << ",8";
115       } else if (getKind().isMergeableConst16()) {
116         OS << ",16";
117       }
118     }
119   }
120   
121   OS << '\n';
122 }
123
124 // HasCommonSymbols - True if this section holds common symbols, this is
125 // indicated on the ELF object file by a symbol with SHN_COMMON section 
126 // header index.
127 bool MCSectionELF::HasCommonSymbols() const {
128   
129   if (StringRef(SectionName).startswith(".gnu.linkonce."))
130     return true;
131
132   return false;
133 }
134
135