76e0b1b4af5950169cf37f3b010960d566f3ba06
[oota-llvm.git] / lib / Target / ELFTargetAsmInfo.cpp
1 //===-- ELFTargetAsmInfo.cpp - ELF asm properties ---------------*- C++ -*-===//
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 // This file defines target asm properties related what form asm statements
11 // should take in general on ELF-based targets
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/Constants.h"
16 #include "llvm/DerivedTypes.h"
17 #include "llvm/Function.h"
18 #include "llvm/GlobalVariable.h"
19 #include "llvm/ADT/StringExtras.h"
20 #include "llvm/CodeGen/MachineConstantPool.h"
21 #include "llvm/Target/ELFTargetAsmInfo.h"
22 #include "llvm/Target/TargetMachine.h"
23 #include "llvm/Target/TargetData.h"
24
25 using namespace llvm;
26
27 ELFTargetAsmInfo::ELFTargetAsmInfo(const TargetMachine &TM)
28   : TargetAsmInfo(TM) {
29
30   BSSSection_  = getUnnamedSection("\t.bss",
31                                    SectionFlags::Writeable | SectionFlags::BSS);
32   ReadOnlySection = getNamedSection("\t.rodata", SectionFlags::None);
33   TLSDataSection = getNamedSection("\t.tdata",
34                                    SectionFlags::Writeable | SectionFlags::TLS);
35   TLSBSSSection = getNamedSection("\t.tbss",
36                 SectionFlags::Writeable | SectionFlags::TLS | SectionFlags::BSS);
37
38 }
39
40 const Section*
41 ELFTargetAsmInfo::SelectSectionForGlobal(const GlobalValue *GV) const {
42   SectionKind::Kind Kind = SectionKindForGlobal(GV);
43
44   if (const Function *F = dyn_cast<Function>(GV)) {
45     switch (F->getLinkage()) {
46      default: assert(0 && "Unknown linkage type!");
47      case Function::InternalLinkage:
48      case Function::DLLExportLinkage:
49      case Function::ExternalLinkage:
50       return TextSection;
51      case Function::WeakLinkage:
52      case Function::LinkOnceLinkage:
53       std::string Name = UniqueSectionForGlobal(GV, Kind);
54       unsigned Flags = SectionFlagsForGlobal(GV, Name.c_str());
55       return getNamedSection(Name.c_str(), Flags);
56     }
57   } else if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV)) {
58     if (GVar->mayBeOverridden()) {
59       std::string Name = UniqueSectionForGlobal(GVar, Kind);
60       unsigned Flags = SectionFlagsForGlobal(GVar, Name.c_str());
61       return getNamedSection(Name.c_str(), Flags);
62     } else {
63       switch (Kind) {
64        case SectionKind::Data:
65        case SectionKind::SmallData:
66         return DataSection;
67        case SectionKind::BSS:
68        case SectionKind::SmallBSS:
69         // ELF targets usually have BSS sections
70         return getBSSSection_();
71        case SectionKind::ROData:
72        case SectionKind::SmallROData:
73         return getReadOnlySection();
74        case SectionKind::RODataMergeStr:
75         return MergeableStringSection(GVar);
76        case SectionKind::RODataMergeConst:
77         return MergeableConstSection(GVar);
78        case SectionKind::ThreadData:
79         // ELF targets usually support TLS stuff
80         return TLSDataSection;
81        case SectionKind::ThreadBSS:
82         return TLSBSSSection;
83        default:
84         assert(0 && "Unsuported section kind for global");
85       }
86     }
87   } else
88     assert(0 && "Unsupported global");
89
90   return NULL;
91 }
92
93 const Section*
94 ELFTargetAsmInfo::SelectSectionForMachineConst(const Type *Ty) const {
95   // FIXME: Support data.rel stuff someday
96   return MergeableConstSection(Ty);
97 }
98
99 const Section*
100 ELFTargetAsmInfo::MergeableConstSection(const GlobalVariable *GV) const {
101   Constant *C = GV->getInitializer();
102   return MergeableConstSection(C->getType());
103 }
104
105 inline const Section*
106 ELFTargetAsmInfo::MergeableConstSection(const Type *Ty) const {
107   const TargetData *TD = TM.getTargetData();
108
109   // FIXME: string here is temporary, until stuff will fully land in.
110   // We cannot use {Four,Eight,Sixteen}ByteConstantSection here, since it's
111   // currently directly used by asmprinter.
112   unsigned Size = TD->getABITypeSize(Ty);
113   if (Size == 4 || Size == 8 || Size == 16) {
114     std::string Name =  ".rodata.cst" + utostr(Size);
115
116     return getNamedSection(Name.c_str(),
117                            SectionFlags::setEntitySize(SectionFlags::Mergeable,
118                                                        Size));
119   }
120
121   return getReadOnlySection();
122 }
123
124 const Section*
125 ELFTargetAsmInfo::MergeableStringSection(const GlobalVariable *GV) const {
126   const TargetData *TD = TM.getTargetData();
127   Constant *C = cast<GlobalVariable>(GV)->getInitializer();
128   const ConstantArray *CVA = cast<ConstantArray>(C);
129   const Type *Ty = CVA->getType()->getElementType();
130
131   unsigned Size = TD->getABITypeSize(Ty);
132   if (Size <= 16) {
133     assert(getCStringSection() && "Should have string section prefix");
134
135     // We also need alignment here
136     unsigned Align = TD->getPrefTypeAlignment(Ty);
137     if (Align < Size)
138       Align = Size;
139
140     std::string Name = getCStringSection() + utostr(Size) + '.' + utostr(Align);
141     unsigned Flags = SectionFlags::setEntitySize(SectionFlags::Mergeable |
142                                                  SectionFlags::Strings,
143                                                  Size);
144     return getNamedSection(Name.c_str(), Flags);
145   }
146
147   return getReadOnlySection();
148 }
149
150 std::string ELFTargetAsmInfo::printSectionFlags(unsigned flags) const {
151   std::string Flags = ",\"";
152
153   if (!(flags & SectionFlags::Debug))
154     Flags += 'a';
155   if (flags & SectionFlags::Code)
156     Flags += 'x';
157   if (flags & SectionFlags::Writeable)
158     Flags += 'w';
159   if (flags & SectionFlags::Mergeable)
160     Flags += 'M';
161   if (flags & SectionFlags::Strings)
162     Flags += 'S';
163   if (flags & SectionFlags::TLS)
164     Flags += 'T';
165   if (flags & SectionFlags::Small)
166     Flags += 's';
167
168   Flags += "\",";
169
170   // If comment string is '@', e.g. as on ARM - use '%' instead
171   if (strcmp(CommentString, "@") == 0)
172     Flags += '%';
173   else
174     Flags += '@';
175
176   // FIXME: There can be exceptions here
177   if (flags & SectionFlags::BSS)
178     Flags += "nobits";
179   else
180     Flags += "progbits";
181
182   if (unsigned entitySize = SectionFlags::getEntitySize(flags))
183     Flags += "," + utostr(entitySize);
184
185   return Flags;
186 }
187