New feature: add support for target intrinsics being defined in the
[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::PrivateLinkage:
48      case Function::InternalLinkage:
49      case Function::DLLExportLinkage:
50      case Function::ExternalLinkage:
51       return TextSection;
52      case Function::WeakLinkage:
53      case Function::LinkOnceLinkage:
54       std::string Name = UniqueSectionForGlobal(GV, Kind);
55       unsigned Flags = SectionFlagsForGlobal(GV, Name.c_str());
56       return getNamedSection(Name.c_str(), Flags);
57     }
58   } else if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV)) {
59     if (GVar->mayBeOverridden()) {
60       std::string Name = UniqueSectionForGlobal(GVar, Kind);
61       unsigned Flags = SectionFlagsForGlobal(GVar, Name.c_str());
62       return getNamedSection(Name.c_str(), Flags);
63     } else {
64       switch (Kind) {
65        case SectionKind::Data:
66        case SectionKind::SmallData:
67         return DataSection;
68        case SectionKind::BSS:
69        case SectionKind::SmallBSS:
70         // ELF targets usually have BSS sections
71         return getBSSSection_();
72        case SectionKind::ROData:
73        case SectionKind::SmallROData:
74         return getReadOnlySection();
75        case SectionKind::RODataMergeStr:
76         return MergeableStringSection(GVar);
77        case SectionKind::RODataMergeConst:
78         return MergeableConstSection(GVar);
79        case SectionKind::ThreadData:
80         // ELF targets usually support TLS stuff
81         return TLSDataSection;
82        case SectionKind::ThreadBSS:
83         return TLSBSSSection;
84        default:
85         assert(0 && "Unsuported section kind for global");
86       }
87     }
88   } else
89     assert(0 && "Unsupported global");
90
91   return NULL;
92 }
93
94 const Section*
95 ELFTargetAsmInfo::SelectSectionForMachineConst(const Type *Ty) const {
96   // FIXME: Support data.rel stuff someday
97   return MergeableConstSection(Ty);
98 }
99
100 const Section*
101 ELFTargetAsmInfo::MergeableConstSection(const GlobalVariable *GV) const {
102   Constant *C = GV->getInitializer();
103   return MergeableConstSection(C->getType());
104 }
105
106 inline const Section*
107 ELFTargetAsmInfo::MergeableConstSection(const Type *Ty) const {
108   const TargetData *TD = TM.getTargetData();
109
110   // FIXME: string here is temporary, until stuff will fully land in.
111   // We cannot use {Four,Eight,Sixteen}ByteConstantSection here, since it's
112   // currently directly used by asmprinter.
113   unsigned Size = TD->getTypePaddedSize(Ty);
114   if (Size == 4 || Size == 8 || Size == 16) {
115     std::string Name =  ".rodata.cst" + utostr(Size);
116
117     return getNamedSection(Name.c_str(),
118                            SectionFlags::setEntitySize(SectionFlags::Mergeable,
119                                                        Size));
120   }
121
122   return getReadOnlySection();
123 }
124
125 const Section*
126 ELFTargetAsmInfo::MergeableStringSection(const GlobalVariable *GV) const {
127   const TargetData *TD = TM.getTargetData();
128   Constant *C = cast<GlobalVariable>(GV)->getInitializer();
129   const Type *Ty = cast<ArrayType>(C->getType())->getElementType();
130
131   unsigned Size = TD->getTypePaddedSize(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 }