blob: 0fd89dcbe5fa7b268ff6cfe6248fa2bf457e4ebd [file] [log] [blame]
Chris Lattner6c203912009-08-10 18:15:01 +00001//===- lib/MC/MCSectionMachO.cpp - MachO Code Section Representation ------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Chris Lattner6c203912009-08-10 18:15:01 +00006//
7//===----------------------------------------------------------------------===//
8
9#include "llvm/MC/MCSectionMachO.h"
10#include "llvm/MC/MCContext.h"
11#include "llvm/Support/raw_ostream.h"
Nick Lewycky0de20af2010-12-19 20:43:38 +000012#include <cctype>
Chris Lattner6c203912009-08-10 18:15:01 +000013using namespace llvm;
14
15/// SectionTypeDescriptors - These are strings that describe the various section
16/// types. This *must* be kept in order with and stay synchronized with the
17/// section type list.
Benjamin Kramera846e0b2017-01-30 18:46:26 +000018static constexpr struct {
19 StringLiteral AssemblerName, EnumName;
Benjamin Kramera9df9412017-01-30 19:05:09 +000020} SectionTypeDescriptors[MachO::LAST_KNOWN_SECTION_TYPE + 1] = {
21 {StringLiteral("regular"), StringLiteral("S_REGULAR")}, // 0x00
22 {StringLiteral(""), StringLiteral("S_ZEROFILL")}, // 0x01
23 {StringLiteral("cstring_literals"),
24 StringLiteral("S_CSTRING_LITERALS")}, // 0x02
25 {StringLiteral("4byte_literals"),
26 StringLiteral("S_4BYTE_LITERALS")}, // 0x03
27 {StringLiteral("8byte_literals"),
28 StringLiteral("S_8BYTE_LITERALS")}, // 0x04
29 {StringLiteral("literal_pointers"),
30 StringLiteral("S_LITERAL_POINTERS")}, // 0x05
31 {StringLiteral("non_lazy_symbol_pointers"),
32 StringLiteral("S_NON_LAZY_SYMBOL_POINTERS")}, // 0x06
33 {StringLiteral("lazy_symbol_pointers"),
34 StringLiteral("S_LAZY_SYMBOL_POINTERS")}, // 0x07
35 {StringLiteral("symbol_stubs"), StringLiteral("S_SYMBOL_STUBS")}, // 0x08
36 {StringLiteral("mod_init_funcs"),
37 StringLiteral("S_MOD_INIT_FUNC_POINTERS")}, // 0x09
38 {StringLiteral("mod_term_funcs"),
39 StringLiteral("S_MOD_TERM_FUNC_POINTERS")}, // 0x0A
40 {StringLiteral("coalesced"), StringLiteral("S_COALESCED")}, // 0x0B
41 {StringLiteral("") /*FIXME??*/, StringLiteral("S_GB_ZEROFILL")}, // 0x0C
42 {StringLiteral("interposing"), StringLiteral("S_INTERPOSING")}, // 0x0D
43 {StringLiteral("16byte_literals"),
44 StringLiteral("S_16BYTE_LITERALS")}, // 0x0E
45 {StringLiteral("") /*FIXME??*/, StringLiteral("S_DTRACE_DOF")}, // 0x0F
46 {StringLiteral("") /*FIXME??*/,
47 StringLiteral("S_LAZY_DYLIB_SYMBOL_POINTERS")}, // 0x10
48 {StringLiteral("thread_local_regular"),
49 StringLiteral("S_THREAD_LOCAL_REGULAR")}, // 0x11
50 {StringLiteral("thread_local_zerofill"),
51 StringLiteral("S_THREAD_LOCAL_ZEROFILL")}, // 0x12
52 {StringLiteral("thread_local_variables"),
53 StringLiteral("S_THREAD_LOCAL_VARIABLES")}, // 0x13
54 {StringLiteral("thread_local_variable_pointers"),
55 StringLiteral("S_THREAD_LOCAL_VARIABLE_POINTERS")}, // 0x14
56 {StringLiteral("thread_local_init_function_pointers"),
57 StringLiteral("S_THREAD_LOCAL_INIT_FUNCTION_POINTERS")}, // 0x15
Chris Lattner6c203912009-08-10 18:15:01 +000058};
59
Chris Lattner6c203912009-08-10 18:15:01 +000060/// SectionAttrDescriptors - This is an array of descriptors for section
61/// attributes. Unlike the SectionTypeDescriptors, this is not directly indexed
David Majnemere500ec12014-03-10 00:55:07 +000062/// by attribute, instead it is searched.
Benjamin Kramera846e0b2017-01-30 18:46:26 +000063static constexpr struct {
Chris Lattner6c203912009-08-10 18:15:01 +000064 unsigned AttrFlag;
Benjamin Kramera846e0b2017-01-30 18:46:26 +000065 StringLiteral AssemblerName, EnumName;
Chris Lattner6c203912009-08-10 18:15:01 +000066} SectionAttrDescriptors[] = {
67#define ENTRY(ASMNAME, ENUM) \
Benjamin Kramera9df9412017-01-30 19:05:09 +000068 { MachO::ENUM, StringLiteral(ASMNAME), StringLiteral(#ENUM) },
Chris Lattner6c203912009-08-10 18:15:01 +000069ENTRY("pure_instructions", S_ATTR_PURE_INSTRUCTIONS)
70ENTRY("no_toc", S_ATTR_NO_TOC)
71ENTRY("strip_static_syms", S_ATTR_STRIP_STATIC_SYMS)
72ENTRY("no_dead_strip", S_ATTR_NO_DEAD_STRIP)
73ENTRY("live_support", S_ATTR_LIVE_SUPPORT)
74ENTRY("self_modifying_code", S_ATTR_SELF_MODIFYING_CODE)
75ENTRY("debug", S_ATTR_DEBUG)
Benjamin Kramera846e0b2017-01-30 18:46:26 +000076ENTRY("" /*FIXME*/, S_ATTR_SOME_INSTRUCTIONS)
77ENTRY("" /*FIXME*/, S_ATTR_EXT_RELOC)
78ENTRY("" /*FIXME*/, S_ATTR_LOC_RELOC)
Chris Lattner6c203912009-08-10 18:15:01 +000079#undef ENTRY
Benjamin Kramera9df9412017-01-30 19:05:09 +000080 { 0, StringLiteral("none"), StringLiteral("") }, // used if section has no attributes but has a stub size
Chris Lattner6c203912009-08-10 18:15:01 +000081};
82
Chris Lattner5418dd52010-04-08 21:26:26 +000083MCSectionMachO::MCSectionMachO(StringRef Segment, StringRef Section,
Rafael Espindola6b9998b2015-03-10 22:00:25 +000084 unsigned TAA, unsigned reserved2, SectionKind K,
85 MCSymbol *Begin)
Rafael Espindola8ca44f02015-04-04 18:02:01 +000086 : MCSection(SV_MachO, K, Begin), TypeAndAttributes(TAA),
Rafael Espindola6b9998b2015-03-10 22:00:25 +000087 Reserved2(reserved2) {
Chris Lattner5418dd52010-04-08 21:26:26 +000088 assert(Segment.size() <= 16 && Section.size() <= 16 &&
89 "Segment or section string too long");
90 for (unsigned i = 0; i != 16; ++i) {
91 if (i < Segment.size())
92 SegmentName[i] = Segment[i];
93 else
94 SegmentName[i] = 0;
Jim Grosbach90600d32010-10-21 22:04:05 +000095
Chris Lattner5418dd52010-04-08 21:26:26 +000096 if (i < Section.size())
97 SectionName[i] = Section[i];
98 else
99 SectionName[i] = 0;
Jim Grosbach90600d32010-10-21 22:04:05 +0000100 }
Chris Lattner6c203912009-08-10 18:15:01 +0000101}
102
Rafael Espindolae0eba3c2017-01-30 15:38:43 +0000103void MCSectionMachO::PrintSwitchToSection(const MCAsmInfo &MAI, const Triple &T,
Peter Collingbourne2f495b92013-04-17 21:18:16 +0000104 raw_ostream &OS,
105 const MCExpr *Subsection) const {
Chris Lattner6c203912009-08-10 18:15:01 +0000106 OS << "\t.section\t" << getSegmentName() << ',' << getSectionName();
Jim Grosbach90600d32010-10-21 22:04:05 +0000107
Chris Lattner6c203912009-08-10 18:15:01 +0000108 // Get the section type and attributes.
109 unsigned TAA = getTypeAndAttributes();
110 if (TAA == 0) {
111 OS << '\n';
112 return;
113 }
114
David Majnemercd481d32014-03-07 18:49:54 +0000115 MachO::SectionType SectionType = getType();
David Majnemer7b583052014-03-07 07:36:05 +0000116 assert(SectionType <= MachO::LAST_KNOWN_SECTION_TYPE &&
Chris Lattner6c203912009-08-10 18:15:01 +0000117 "Invalid SectionType specified!");
118
Mehdi Aminia28bb092016-10-05 01:02:34 +0000119 if (!SectionTypeDescriptors[SectionType].AssemblerName.empty()) {
Stuart Hastingsb4863a42011-02-21 17:27:17 +0000120 OS << ',';
Chris Lattner6c203912009-08-10 18:15:01 +0000121 OS << SectionTypeDescriptors[SectionType].AssemblerName;
Stuart Hastingsd7927e02011-02-21 21:07:07 +0000122 } else {
Stuart Hastingsb4863a42011-02-21 17:27:17 +0000123 // If we have no name for the attribute, stop here.
Stuart Hastingsd7927e02011-02-21 21:07:07 +0000124 OS << '\n';
Stuart Hastingsb4863a42011-02-21 17:27:17 +0000125 return;
Stuart Hastingsd7927e02011-02-21 21:07:07 +0000126 }
Jim Grosbach90600d32010-10-21 22:04:05 +0000127
Chris Lattner6c203912009-08-10 18:15:01 +0000128 // If we don't have any attributes, we're done.
David Majnemer7b583052014-03-07 07:36:05 +0000129 unsigned SectionAttrs = TAA & MachO::SECTION_ATTRIBUTES;
Chris Lattner6c203912009-08-10 18:15:01 +0000130 if (SectionAttrs == 0) {
131 // If we have a S_SYMBOL_STUBS size specified, print it along with 'none' as
132 // the attribute specifier.
133 if (Reserved2 != 0)
134 OS << ",none," << Reserved2;
135 OS << '\n';
136 return;
137 }
138
139 // Check each attribute to see if we have it.
140 char Separator = ',';
Stuart Hastingsb4863a42011-02-21 17:27:17 +0000141 for (unsigned i = 0;
142 SectionAttrs != 0 && SectionAttrDescriptors[i].AttrFlag;
143 ++i) {
Chris Lattner6c203912009-08-10 18:15:01 +0000144 // Check to see if we have this attribute.
145 if ((SectionAttrDescriptors[i].AttrFlag & SectionAttrs) == 0)
146 continue;
Jim Grosbach90600d32010-10-21 22:04:05 +0000147
Chris Lattner6c203912009-08-10 18:15:01 +0000148 // Yep, clear it and print it.
149 SectionAttrs &= ~SectionAttrDescriptors[i].AttrFlag;
Jim Grosbach90600d32010-10-21 22:04:05 +0000150
Chris Lattner6c203912009-08-10 18:15:01 +0000151 OS << Separator;
Mehdi Aminia28bb092016-10-05 01:02:34 +0000152 if (!SectionAttrDescriptors[i].AssemblerName.empty())
Chris Lattner6c203912009-08-10 18:15:01 +0000153 OS << SectionAttrDescriptors[i].AssemblerName;
154 else
155 OS << "<<" << SectionAttrDescriptors[i].EnumName << ">>";
156 Separator = '+';
157 }
Jim Grosbach90600d32010-10-21 22:04:05 +0000158
Chris Lattner6c203912009-08-10 18:15:01 +0000159 assert(SectionAttrs == 0 && "Unknown section attributes!");
Jim Grosbach90600d32010-10-21 22:04:05 +0000160
Chris Lattner6c203912009-08-10 18:15:01 +0000161 // If we have a S_SYMBOL_STUBS size specified, print it.
162 if (Reserved2 != 0)
163 OS << ',' << Reserved2;
164 OS << '\n';
165}
166
Jan Wen Voung87f77b52010-10-04 17:32:41 +0000167bool MCSectionMachO::UseCodeAlign() const {
David Majnemer7b583052014-03-07 07:36:05 +0000168 return hasAttribute(MachO::S_ATTR_PURE_INSTRUCTIONS);
Jan Wen Voung87f77b52010-10-04 17:32:41 +0000169}
170
Rafael Espindola7a2cd8b2010-11-17 20:03:54 +0000171bool MCSectionMachO::isVirtualSection() const {
David Majnemer7b583052014-03-07 07:36:05 +0000172 return (getType() == MachO::S_ZEROFILL ||
173 getType() == MachO::S_GB_ZEROFILL ||
174 getType() == MachO::S_THREAD_LOCAL_ZEROFILL);
Rafael Espindola7a2cd8b2010-11-17 20:03:54 +0000175}
176
Chris Lattner6c203912009-08-10 18:15:01 +0000177/// ParseSectionSpecifier - Parse the section specifier indicated by "Spec".
178/// This is a string that can appear after a .section directive in a mach-o
179/// flavored .s file. If successful, this fills in the specified Out
180/// parameters and returns an empty string. When an invalid section
181/// specifier is present, this returns a string indicating the problem.
182std::string MCSectionMachO::ParseSectionSpecifier(StringRef Spec, // In.
183 StringRef &Segment, // Out.
184 StringRef &Section, // Out.
185 unsigned &TAA, // Out.
Stuart Hastings12d53122011-03-19 02:42:31 +0000186 bool &TAAParsed, // Out.
Chris Lattner6c203912009-08-10 18:15:01 +0000187 unsigned &StubSize) { // Out.
Stuart Hastings12d53122011-03-19 02:42:31 +0000188 TAAParsed = false;
Jim Grosbach90600d32010-10-21 22:04:05 +0000189
David Majnemere500ec12014-03-10 00:55:07 +0000190 SmallVector<StringRef, 5> SplitSpec;
Chandler Carruthe4405e92015-09-10 06:12:31 +0000191 Spec.split(SplitSpec, ',');
David Majnemere500ec12014-03-10 00:55:07 +0000192 // Remove leading and trailing whitespace.
193 auto GetEmptyOrTrim = [&SplitSpec](size_t Idx) -> StringRef {
194 return SplitSpec.size() > Idx ? SplitSpec[Idx].trim() : StringRef();
195 };
196 Segment = GetEmptyOrTrim(0);
197 Section = GetEmptyOrTrim(1);
198 StringRef SectionType = GetEmptyOrTrim(2);
199 StringRef Attrs = GetEmptyOrTrim(3);
200 StringRef StubSizeStr = GetEmptyOrTrim(4);
Chris Lattner6c203912009-08-10 18:15:01 +0000201
202 // Verify that the segment is present and not too long.
203 if (Segment.empty() || Segment.size() > 16)
204 return "mach-o section specifier requires a segment whose length is "
205 "between 1 and 16 characters";
Jim Grosbach90600d32010-10-21 22:04:05 +0000206
Chris Lattner6c203912009-08-10 18:15:01 +0000207 // Verify that the section is present and not too long.
David Majnemere500ec12014-03-10 00:55:07 +0000208 if (Section.empty())
209 return "mach-o section specifier requires a segment and section "
210 "separated by a comma";
211
212 if (Section.size() > 16)
Chris Lattner6c203912009-08-10 18:15:01 +0000213 return "mach-o section specifier requires a section whose length is "
214 "between 1 and 16 characters";
215
216 // If there is no comma after the section, we're done.
Stuart Hastings12d53122011-03-19 02:42:31 +0000217 TAA = 0;
Chris Lattner6c203912009-08-10 18:15:01 +0000218 StubSize = 0;
David Majnemere500ec12014-03-10 00:55:07 +0000219 if (SectionType.empty())
Chris Lattner6c203912009-08-10 18:15:01 +0000220 return "";
Jim Grosbach90600d32010-10-21 22:04:05 +0000221
Chris Lattner6c203912009-08-10 18:15:01 +0000222 // Figure out which section type it is.
David Majnemere500ec12014-03-10 00:55:07 +0000223 auto TypeDescriptor = std::find_if(
224 std::begin(SectionTypeDescriptors), std::end(SectionTypeDescriptors),
David Majnemer596587f2014-03-10 01:04:18 +0000225 [&](decltype(*SectionTypeDescriptors) &Descriptor) {
Mehdi Aminia28bb092016-10-05 01:02:34 +0000226 return SectionType == Descriptor.AssemblerName;
David Majnemere500ec12014-03-10 00:55:07 +0000227 });
Jim Grosbach90600d32010-10-21 22:04:05 +0000228
Chris Lattner6c203912009-08-10 18:15:01 +0000229 // If we didn't find the section type, reject it.
David Majnemere500ec12014-03-10 00:55:07 +0000230 if (TypeDescriptor == std::end(SectionTypeDescriptors))
Chris Lattner6c203912009-08-10 18:15:01 +0000231 return "mach-o section specifier uses an unknown section type";
Jim Grosbach90600d32010-10-21 22:04:05 +0000232
Chris Lattner6c203912009-08-10 18:15:01 +0000233 // Remember the TypeID.
David Majnemere500ec12014-03-10 00:55:07 +0000234 TAA = TypeDescriptor - std::begin(SectionTypeDescriptors);
Stuart Hastings12d53122011-03-19 02:42:31 +0000235 TAAParsed = true;
Chris Lattner6c203912009-08-10 18:15:01 +0000236
237 // If we have no comma after the section type, there are no attributes.
David Majnemere500ec12014-03-10 00:55:07 +0000238 if (Attrs.empty()) {
Chris Lattner6c203912009-08-10 18:15:01 +0000239 // S_SYMBOL_STUBS always require a symbol stub size specifier.
David Majnemer7b583052014-03-07 07:36:05 +0000240 if (TAA == MachO::S_SYMBOL_STUBS)
Chris Lattner6c203912009-08-10 18:15:01 +0000241 return "mach-o section specifier of type 'symbol_stubs' requires a size "
242 "specifier";
243 return "";
244 }
245
Chris Lattner6c203912009-08-10 18:15:01 +0000246 // The attribute list is a '+' separated list of attributes.
David Majnemere500ec12014-03-10 00:55:07 +0000247 SmallVector<StringRef, 1> SectionAttrs;
Chandler Carruthe4405e92015-09-10 06:12:31 +0000248 Attrs.split(SectionAttrs, '+', /*MaxSplit=*/-1, /*KeepEmpty=*/false);
Jim Grosbach90600d32010-10-21 22:04:05 +0000249
David Majnemere500ec12014-03-10 00:55:07 +0000250 for (StringRef &SectionAttr : SectionAttrs) {
251 auto AttrDescriptorI = std::find_if(
252 std::begin(SectionAttrDescriptors), std::end(SectionAttrDescriptors),
David Majnemer596587f2014-03-10 01:04:18 +0000253 [&](decltype(*SectionAttrDescriptors) &Descriptor) {
Mehdi Aminia28bb092016-10-05 01:02:34 +0000254 return SectionAttr.trim() == Descriptor.AssemblerName;
David Majnemere500ec12014-03-10 00:55:07 +0000255 });
256 if (AttrDescriptorI == std::end(SectionAttrDescriptors))
257 return "mach-o section specifier has invalid attribute";
Chris Lattner6c203912009-08-10 18:15:01 +0000258
David Majnemere500ec12014-03-10 00:55:07 +0000259 TAA |= AttrDescriptorI->AttrFlag;
260 }
Chris Lattner6c203912009-08-10 18:15:01 +0000261
262 // Okay, we've parsed the section attributes, see if we have a stub size spec.
David Majnemere500ec12014-03-10 00:55:07 +0000263 if (StubSizeStr.empty()) {
Chris Lattner6c203912009-08-10 18:15:01 +0000264 // S_SYMBOL_STUBS always require a symbol stub size specifier.
David Majnemer7b583052014-03-07 07:36:05 +0000265 if (TAA == MachO::S_SYMBOL_STUBS)
Chris Lattner6c203912009-08-10 18:15:01 +0000266 return "mach-o section specifier of type 'symbol_stubs' requires a size "
267 "specifier";
268 return "";
269 }
270
271 // If we have a stub size spec, we must have a sectiontype of S_SYMBOL_STUBS.
David Majnemer7b583052014-03-07 07:36:05 +0000272 if ((TAA & MachO::SECTION_TYPE) != MachO::S_SYMBOL_STUBS)
Chris Lattner6c203912009-08-10 18:15:01 +0000273 return "mach-o section specifier cannot have a stub size specified because "
274 "it does not have type 'symbol_stubs'";
Jim Grosbach90600d32010-10-21 22:04:05 +0000275
Chris Lattnera15f0042009-09-20 06:58:54 +0000276 // Convert the stub size from a string to an integer.
277 if (StubSizeStr.getAsInteger(0, StubSize))
Chris Lattner6c203912009-08-10 18:15:01 +0000278 return "mach-o section specifier has a malformed stub size";
Jim Grosbach90600d32010-10-21 22:04:05 +0000279
Chris Lattner6c203912009-08-10 18:15:01 +0000280 return "";
281}