Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 1 | //===- lib/MC/MCSectionMachO.cpp - MachO 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/MCSectionMachO.h" |
| 11 | #include "llvm/MC/MCContext.h" |
| 12 | #include "llvm/Support/raw_ostream.h" |
Nick Lewycky | 476b242 | 2010-12-19 20:43:38 +0000 | [diff] [blame] | 13 | #include <cctype> |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 14 | using namespace llvm; |
| 15 | |
| 16 | /// SectionTypeDescriptors - These are strings that describe the various section |
| 17 | /// types. This *must* be kept in order with and stay synchronized with the |
| 18 | /// section type list. |
Benjamin Kramer | b49b750 | 2017-01-30 18:46:26 +0000 | [diff] [blame] | 19 | static constexpr struct { |
| 20 | StringLiteral AssemblerName, EnumName; |
Benjamin Kramer | 4337d89 | 2017-01-30 19:05:09 +0000 | [diff] [blame] | 21 | } SectionTypeDescriptors[MachO::LAST_KNOWN_SECTION_TYPE + 1] = { |
| 22 | {StringLiteral("regular"), StringLiteral("S_REGULAR")}, // 0x00 |
| 23 | {StringLiteral(""), StringLiteral("S_ZEROFILL")}, // 0x01 |
| 24 | {StringLiteral("cstring_literals"), |
| 25 | StringLiteral("S_CSTRING_LITERALS")}, // 0x02 |
| 26 | {StringLiteral("4byte_literals"), |
| 27 | StringLiteral("S_4BYTE_LITERALS")}, // 0x03 |
| 28 | {StringLiteral("8byte_literals"), |
| 29 | StringLiteral("S_8BYTE_LITERALS")}, // 0x04 |
| 30 | {StringLiteral("literal_pointers"), |
| 31 | StringLiteral("S_LITERAL_POINTERS")}, // 0x05 |
| 32 | {StringLiteral("non_lazy_symbol_pointers"), |
| 33 | StringLiteral("S_NON_LAZY_SYMBOL_POINTERS")}, // 0x06 |
| 34 | {StringLiteral("lazy_symbol_pointers"), |
| 35 | StringLiteral("S_LAZY_SYMBOL_POINTERS")}, // 0x07 |
| 36 | {StringLiteral("symbol_stubs"), StringLiteral("S_SYMBOL_STUBS")}, // 0x08 |
| 37 | {StringLiteral("mod_init_funcs"), |
| 38 | StringLiteral("S_MOD_INIT_FUNC_POINTERS")}, // 0x09 |
| 39 | {StringLiteral("mod_term_funcs"), |
| 40 | StringLiteral("S_MOD_TERM_FUNC_POINTERS")}, // 0x0A |
| 41 | {StringLiteral("coalesced"), StringLiteral("S_COALESCED")}, // 0x0B |
| 42 | {StringLiteral("") /*FIXME??*/, StringLiteral("S_GB_ZEROFILL")}, // 0x0C |
| 43 | {StringLiteral("interposing"), StringLiteral("S_INTERPOSING")}, // 0x0D |
| 44 | {StringLiteral("16byte_literals"), |
| 45 | StringLiteral("S_16BYTE_LITERALS")}, // 0x0E |
| 46 | {StringLiteral("") /*FIXME??*/, StringLiteral("S_DTRACE_DOF")}, // 0x0F |
| 47 | {StringLiteral("") /*FIXME??*/, |
| 48 | StringLiteral("S_LAZY_DYLIB_SYMBOL_POINTERS")}, // 0x10 |
| 49 | {StringLiteral("thread_local_regular"), |
| 50 | StringLiteral("S_THREAD_LOCAL_REGULAR")}, // 0x11 |
| 51 | {StringLiteral("thread_local_zerofill"), |
| 52 | StringLiteral("S_THREAD_LOCAL_ZEROFILL")}, // 0x12 |
| 53 | {StringLiteral("thread_local_variables"), |
| 54 | StringLiteral("S_THREAD_LOCAL_VARIABLES")}, // 0x13 |
| 55 | {StringLiteral("thread_local_variable_pointers"), |
| 56 | StringLiteral("S_THREAD_LOCAL_VARIABLE_POINTERS")}, // 0x14 |
| 57 | {StringLiteral("thread_local_init_function_pointers"), |
| 58 | StringLiteral("S_THREAD_LOCAL_INIT_FUNCTION_POINTERS")}, // 0x15 |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 59 | }; |
| 60 | |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 61 | /// SectionAttrDescriptors - This is an array of descriptors for section |
| 62 | /// attributes. Unlike the SectionTypeDescriptors, this is not directly indexed |
David Majnemer | 5d0bfc8 | 2014-03-10 00:55:07 +0000 | [diff] [blame] | 63 | /// by attribute, instead it is searched. |
Benjamin Kramer | b49b750 | 2017-01-30 18:46:26 +0000 | [diff] [blame] | 64 | static constexpr struct { |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 65 | unsigned AttrFlag; |
Benjamin Kramer | b49b750 | 2017-01-30 18:46:26 +0000 | [diff] [blame] | 66 | StringLiteral AssemblerName, EnumName; |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 67 | } SectionAttrDescriptors[] = { |
| 68 | #define ENTRY(ASMNAME, ENUM) \ |
Benjamin Kramer | 4337d89 | 2017-01-30 19:05:09 +0000 | [diff] [blame] | 69 | { MachO::ENUM, StringLiteral(ASMNAME), StringLiteral(#ENUM) }, |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 70 | ENTRY("pure_instructions", S_ATTR_PURE_INSTRUCTIONS) |
| 71 | ENTRY("no_toc", S_ATTR_NO_TOC) |
| 72 | ENTRY("strip_static_syms", S_ATTR_STRIP_STATIC_SYMS) |
| 73 | ENTRY("no_dead_strip", S_ATTR_NO_DEAD_STRIP) |
| 74 | ENTRY("live_support", S_ATTR_LIVE_SUPPORT) |
| 75 | ENTRY("self_modifying_code", S_ATTR_SELF_MODIFYING_CODE) |
| 76 | ENTRY("debug", S_ATTR_DEBUG) |
Benjamin Kramer | b49b750 | 2017-01-30 18:46:26 +0000 | [diff] [blame] | 77 | ENTRY("" /*FIXME*/, S_ATTR_SOME_INSTRUCTIONS) |
| 78 | ENTRY("" /*FIXME*/, S_ATTR_EXT_RELOC) |
| 79 | ENTRY("" /*FIXME*/, S_ATTR_LOC_RELOC) |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 80 | #undef ENTRY |
Benjamin Kramer | 4337d89 | 2017-01-30 19:05:09 +0000 | [diff] [blame] | 81 | { 0, StringLiteral("none"), StringLiteral("") }, // used if section has no attributes but has a stub size |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 82 | }; |
| 83 | |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 84 | MCSectionMachO::MCSectionMachO(StringRef Segment, StringRef Section, |
Rafael Espindola | f3d745c | 2015-03-10 22:00:25 +0000 | [diff] [blame] | 85 | unsigned TAA, unsigned reserved2, SectionKind K, |
| 86 | MCSymbol *Begin) |
Rafael Espindola | 903f4a2 | 2015-04-04 18:02:01 +0000 | [diff] [blame] | 87 | : MCSection(SV_MachO, K, Begin), TypeAndAttributes(TAA), |
Rafael Espindola | f3d745c | 2015-03-10 22:00:25 +0000 | [diff] [blame] | 88 | Reserved2(reserved2) { |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 89 | assert(Segment.size() <= 16 && Section.size() <= 16 && |
| 90 | "Segment or section string too long"); |
| 91 | for (unsigned i = 0; i != 16; ++i) { |
| 92 | if (i < Segment.size()) |
| 93 | SegmentName[i] = Segment[i]; |
| 94 | else |
| 95 | SegmentName[i] = 0; |
Jim Grosbach | fe40f95 | 2010-10-21 22:04:05 +0000 | [diff] [blame] | 96 | |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 97 | if (i < Section.size()) |
| 98 | SectionName[i] = Section[i]; |
| 99 | else |
| 100 | SectionName[i] = 0; |
Jim Grosbach | fe40f95 | 2010-10-21 22:04:05 +0000 | [diff] [blame] | 101 | } |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 102 | } |
| 103 | |
Rafael Espindola | d5702b7 | 2017-01-30 15:38:43 +0000 | [diff] [blame] | 104 | void MCSectionMachO::PrintSwitchToSection(const MCAsmInfo &MAI, const Triple &T, |
Peter Collingbourne | df39be6 | 2013-04-17 21:18:16 +0000 | [diff] [blame] | 105 | raw_ostream &OS, |
| 106 | const MCExpr *Subsection) const { |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 107 | OS << "\t.section\t" << getSegmentName() << ',' << getSectionName(); |
Jim Grosbach | fe40f95 | 2010-10-21 22:04:05 +0000 | [diff] [blame] | 108 | |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 109 | // Get the section type and attributes. |
| 110 | unsigned TAA = getTypeAndAttributes(); |
| 111 | if (TAA == 0) { |
| 112 | OS << '\n'; |
| 113 | return; |
| 114 | } |
| 115 | |
David Majnemer | f5955c7 | 2014-03-07 18:49:54 +0000 | [diff] [blame] | 116 | MachO::SectionType SectionType = getType(); |
David Majnemer | 508e0c4 | 2014-03-07 07:36:05 +0000 | [diff] [blame] | 117 | assert(SectionType <= MachO::LAST_KNOWN_SECTION_TYPE && |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 118 | "Invalid SectionType specified!"); |
| 119 | |
Mehdi Amini | 3eff5cd | 2016-10-05 01:02:34 +0000 | [diff] [blame] | 120 | if (!SectionTypeDescriptors[SectionType].AssemblerName.empty()) { |
Stuart Hastings | 6ad82d8 | 2011-02-21 17:27:17 +0000 | [diff] [blame] | 121 | OS << ','; |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 122 | OS << SectionTypeDescriptors[SectionType].AssemblerName; |
Stuart Hastings | 37c79c5 | 2011-02-21 21:07:07 +0000 | [diff] [blame] | 123 | } else { |
Stuart Hastings | 6ad82d8 | 2011-02-21 17:27:17 +0000 | [diff] [blame] | 124 | // If we have no name for the attribute, stop here. |
Stuart Hastings | 37c79c5 | 2011-02-21 21:07:07 +0000 | [diff] [blame] | 125 | OS << '\n'; |
Stuart Hastings | 6ad82d8 | 2011-02-21 17:27:17 +0000 | [diff] [blame] | 126 | return; |
Stuart Hastings | 37c79c5 | 2011-02-21 21:07:07 +0000 | [diff] [blame] | 127 | } |
Jim Grosbach | fe40f95 | 2010-10-21 22:04:05 +0000 | [diff] [blame] | 128 | |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 129 | // If we don't have any attributes, we're done. |
David Majnemer | 508e0c4 | 2014-03-07 07:36:05 +0000 | [diff] [blame] | 130 | unsigned SectionAttrs = TAA & MachO::SECTION_ATTRIBUTES; |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 131 | if (SectionAttrs == 0) { |
| 132 | // If we have a S_SYMBOL_STUBS size specified, print it along with 'none' as |
| 133 | // the attribute specifier. |
| 134 | if (Reserved2 != 0) |
| 135 | OS << ",none," << Reserved2; |
| 136 | OS << '\n'; |
| 137 | return; |
| 138 | } |
| 139 | |
| 140 | // Check each attribute to see if we have it. |
| 141 | char Separator = ','; |
Stuart Hastings | 6ad82d8 | 2011-02-21 17:27:17 +0000 | [diff] [blame] | 142 | for (unsigned i = 0; |
| 143 | SectionAttrs != 0 && SectionAttrDescriptors[i].AttrFlag; |
| 144 | ++i) { |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 145 | // Check to see if we have this attribute. |
| 146 | if ((SectionAttrDescriptors[i].AttrFlag & SectionAttrs) == 0) |
| 147 | continue; |
Jim Grosbach | fe40f95 | 2010-10-21 22:04:05 +0000 | [diff] [blame] | 148 | |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 149 | // Yep, clear it and print it. |
| 150 | SectionAttrs &= ~SectionAttrDescriptors[i].AttrFlag; |
Jim Grosbach | fe40f95 | 2010-10-21 22:04:05 +0000 | [diff] [blame] | 151 | |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 152 | OS << Separator; |
Mehdi Amini | 3eff5cd | 2016-10-05 01:02:34 +0000 | [diff] [blame] | 153 | if (!SectionAttrDescriptors[i].AssemblerName.empty()) |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 154 | OS << SectionAttrDescriptors[i].AssemblerName; |
| 155 | else |
| 156 | OS << "<<" << SectionAttrDescriptors[i].EnumName << ">>"; |
| 157 | Separator = '+'; |
| 158 | } |
Jim Grosbach | fe40f95 | 2010-10-21 22:04:05 +0000 | [diff] [blame] | 159 | |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 160 | assert(SectionAttrs == 0 && "Unknown section attributes!"); |
Jim Grosbach | fe40f95 | 2010-10-21 22:04:05 +0000 | [diff] [blame] | 161 | |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 162 | // If we have a S_SYMBOL_STUBS size specified, print it. |
| 163 | if (Reserved2 != 0) |
| 164 | OS << ',' << Reserved2; |
| 165 | OS << '\n'; |
| 166 | } |
| 167 | |
Jan Wen Voung | 083cf15 | 2010-10-04 17:32:41 +0000 | [diff] [blame] | 168 | bool MCSectionMachO::UseCodeAlign() const { |
David Majnemer | 508e0c4 | 2014-03-07 07:36:05 +0000 | [diff] [blame] | 169 | return hasAttribute(MachO::S_ATTR_PURE_INSTRUCTIONS); |
Jan Wen Voung | 083cf15 | 2010-10-04 17:32:41 +0000 | [diff] [blame] | 170 | } |
| 171 | |
Rafael Espindola | f2dc4aa | 2010-11-17 20:03:54 +0000 | [diff] [blame] | 172 | bool MCSectionMachO::isVirtualSection() const { |
David Majnemer | 508e0c4 | 2014-03-07 07:36:05 +0000 | [diff] [blame] | 173 | return (getType() == MachO::S_ZEROFILL || |
| 174 | getType() == MachO::S_GB_ZEROFILL || |
| 175 | getType() == MachO::S_THREAD_LOCAL_ZEROFILL); |
Rafael Espindola | f2dc4aa | 2010-11-17 20:03:54 +0000 | [diff] [blame] | 176 | } |
| 177 | |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 178 | /// ParseSectionSpecifier - Parse the section specifier indicated by "Spec". |
| 179 | /// This is a string that can appear after a .section directive in a mach-o |
| 180 | /// flavored .s file. If successful, this fills in the specified Out |
| 181 | /// parameters and returns an empty string. When an invalid section |
| 182 | /// specifier is present, this returns a string indicating the problem. |
| 183 | std::string MCSectionMachO::ParseSectionSpecifier(StringRef Spec, // In. |
| 184 | StringRef &Segment, // Out. |
| 185 | StringRef &Section, // Out. |
| 186 | unsigned &TAA, // Out. |
Stuart Hastings | 65c8bca | 2011-03-19 02:42:31 +0000 | [diff] [blame] | 187 | bool &TAAParsed, // Out. |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 188 | unsigned &StubSize) { // Out. |
Stuart Hastings | 65c8bca | 2011-03-19 02:42:31 +0000 | [diff] [blame] | 189 | TAAParsed = false; |
Jim Grosbach | fe40f95 | 2010-10-21 22:04:05 +0000 | [diff] [blame] | 190 | |
David Majnemer | 5d0bfc8 | 2014-03-10 00:55:07 +0000 | [diff] [blame] | 191 | SmallVector<StringRef, 5> SplitSpec; |
Chandler Carruth | 6aaf0a6 | 2015-09-10 06:12:31 +0000 | [diff] [blame] | 192 | Spec.split(SplitSpec, ','); |
David Majnemer | 5d0bfc8 | 2014-03-10 00:55:07 +0000 | [diff] [blame] | 193 | // Remove leading and trailing whitespace. |
| 194 | auto GetEmptyOrTrim = [&SplitSpec](size_t Idx) -> StringRef { |
| 195 | return SplitSpec.size() > Idx ? SplitSpec[Idx].trim() : StringRef(); |
| 196 | }; |
| 197 | Segment = GetEmptyOrTrim(0); |
| 198 | Section = GetEmptyOrTrim(1); |
| 199 | StringRef SectionType = GetEmptyOrTrim(2); |
| 200 | StringRef Attrs = GetEmptyOrTrim(3); |
| 201 | StringRef StubSizeStr = GetEmptyOrTrim(4); |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 202 | |
| 203 | // Verify that the segment is present and not too long. |
| 204 | if (Segment.empty() || Segment.size() > 16) |
| 205 | return "mach-o section specifier requires a segment whose length is " |
| 206 | "between 1 and 16 characters"; |
Jim Grosbach | fe40f95 | 2010-10-21 22:04:05 +0000 | [diff] [blame] | 207 | |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 208 | // Verify that the section is present and not too long. |
David Majnemer | 5d0bfc8 | 2014-03-10 00:55:07 +0000 | [diff] [blame] | 209 | if (Section.empty()) |
| 210 | return "mach-o section specifier requires a segment and section " |
| 211 | "separated by a comma"; |
| 212 | |
| 213 | if (Section.size() > 16) |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 214 | return "mach-o section specifier requires a section whose length is " |
| 215 | "between 1 and 16 characters"; |
| 216 | |
| 217 | // If there is no comma after the section, we're done. |
Stuart Hastings | 65c8bca | 2011-03-19 02:42:31 +0000 | [diff] [blame] | 218 | TAA = 0; |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 219 | StubSize = 0; |
David Majnemer | 5d0bfc8 | 2014-03-10 00:55:07 +0000 | [diff] [blame] | 220 | if (SectionType.empty()) |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 221 | return ""; |
Jim Grosbach | fe40f95 | 2010-10-21 22:04:05 +0000 | [diff] [blame] | 222 | |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 223 | // Figure out which section type it is. |
David Majnemer | 5d0bfc8 | 2014-03-10 00:55:07 +0000 | [diff] [blame] | 224 | auto TypeDescriptor = std::find_if( |
| 225 | std::begin(SectionTypeDescriptors), std::end(SectionTypeDescriptors), |
David Majnemer | 4cd770f | 2014-03-10 01:04:18 +0000 | [diff] [blame] | 226 | [&](decltype(*SectionTypeDescriptors) &Descriptor) { |
Mehdi Amini | 3eff5cd | 2016-10-05 01:02:34 +0000 | [diff] [blame] | 227 | return SectionType == Descriptor.AssemblerName; |
David Majnemer | 5d0bfc8 | 2014-03-10 00:55:07 +0000 | [diff] [blame] | 228 | }); |
Jim Grosbach | fe40f95 | 2010-10-21 22:04:05 +0000 | [diff] [blame] | 229 | |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 230 | // If we didn't find the section type, reject it. |
David Majnemer | 5d0bfc8 | 2014-03-10 00:55:07 +0000 | [diff] [blame] | 231 | if (TypeDescriptor == std::end(SectionTypeDescriptors)) |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 232 | return "mach-o section specifier uses an unknown section type"; |
Jim Grosbach | fe40f95 | 2010-10-21 22:04:05 +0000 | [diff] [blame] | 233 | |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 234 | // Remember the TypeID. |
David Majnemer | 5d0bfc8 | 2014-03-10 00:55:07 +0000 | [diff] [blame] | 235 | TAA = TypeDescriptor - std::begin(SectionTypeDescriptors); |
Stuart Hastings | 65c8bca | 2011-03-19 02:42:31 +0000 | [diff] [blame] | 236 | TAAParsed = true; |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 237 | |
| 238 | // If we have no comma after the section type, there are no attributes. |
David Majnemer | 5d0bfc8 | 2014-03-10 00:55:07 +0000 | [diff] [blame] | 239 | if (Attrs.empty()) { |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 240 | // S_SYMBOL_STUBS always require a symbol stub size specifier. |
David Majnemer | 508e0c4 | 2014-03-07 07:36:05 +0000 | [diff] [blame] | 241 | if (TAA == MachO::S_SYMBOL_STUBS) |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 242 | return "mach-o section specifier of type 'symbol_stubs' requires a size " |
| 243 | "specifier"; |
| 244 | return ""; |
| 245 | } |
| 246 | |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 247 | // The attribute list is a '+' separated list of attributes. |
David Majnemer | 5d0bfc8 | 2014-03-10 00:55:07 +0000 | [diff] [blame] | 248 | SmallVector<StringRef, 1> SectionAttrs; |
Chandler Carruth | 6aaf0a6 | 2015-09-10 06:12:31 +0000 | [diff] [blame] | 249 | Attrs.split(SectionAttrs, '+', /*MaxSplit=*/-1, /*KeepEmpty=*/false); |
Jim Grosbach | fe40f95 | 2010-10-21 22:04:05 +0000 | [diff] [blame] | 250 | |
David Majnemer | 5d0bfc8 | 2014-03-10 00:55:07 +0000 | [diff] [blame] | 251 | for (StringRef &SectionAttr : SectionAttrs) { |
| 252 | auto AttrDescriptorI = std::find_if( |
| 253 | std::begin(SectionAttrDescriptors), std::end(SectionAttrDescriptors), |
David Majnemer | 4cd770f | 2014-03-10 01:04:18 +0000 | [diff] [blame] | 254 | [&](decltype(*SectionAttrDescriptors) &Descriptor) { |
Mehdi Amini | 3eff5cd | 2016-10-05 01:02:34 +0000 | [diff] [blame] | 255 | return SectionAttr.trim() == Descriptor.AssemblerName; |
David Majnemer | 5d0bfc8 | 2014-03-10 00:55:07 +0000 | [diff] [blame] | 256 | }); |
| 257 | if (AttrDescriptorI == std::end(SectionAttrDescriptors)) |
| 258 | return "mach-o section specifier has invalid attribute"; |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 259 | |
David Majnemer | 5d0bfc8 | 2014-03-10 00:55:07 +0000 | [diff] [blame] | 260 | TAA |= AttrDescriptorI->AttrFlag; |
| 261 | } |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 262 | |
| 263 | // Okay, we've parsed the section attributes, see if we have a stub size spec. |
David Majnemer | 5d0bfc8 | 2014-03-10 00:55:07 +0000 | [diff] [blame] | 264 | if (StubSizeStr.empty()) { |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 265 | // S_SYMBOL_STUBS always require a symbol stub size specifier. |
David Majnemer | 508e0c4 | 2014-03-07 07:36:05 +0000 | [diff] [blame] | 266 | if (TAA == MachO::S_SYMBOL_STUBS) |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 267 | return "mach-o section specifier of type 'symbol_stubs' requires a size " |
| 268 | "specifier"; |
| 269 | return ""; |
| 270 | } |
| 271 | |
| 272 | // If we have a stub size spec, we must have a sectiontype of S_SYMBOL_STUBS. |
David Majnemer | 508e0c4 | 2014-03-07 07:36:05 +0000 | [diff] [blame] | 273 | if ((TAA & MachO::SECTION_TYPE) != MachO::S_SYMBOL_STUBS) |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 274 | return "mach-o section specifier cannot have a stub size specified because " |
| 275 | "it does not have type 'symbol_stubs'"; |
Jim Grosbach | fe40f95 | 2010-10-21 22:04:05 +0000 | [diff] [blame] | 276 | |
Chris Lattner | d9221d7 | 2009-09-20 06:58:54 +0000 | [diff] [blame] | 277 | // Convert the stub size from a string to an integer. |
| 278 | if (StubSizeStr.getAsInteger(0, StubSize)) |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 279 | return "mach-o section specifier has a malformed stub size"; |
Jim Grosbach | fe40f95 | 2010-10-21 22:04:05 +0000 | [diff] [blame] | 280 | |
Chris Lattner | f9bdedd | 2009-08-10 18:15:01 +0000 | [diff] [blame] | 281 | return ""; |
| 282 | } |