| 1 | //===- DarwinAsmParser.cpp - Darwin (Mach-O) Assembly Parser --------------===// |
| 2 | // |
| 3 | // 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 |
| 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #include "llvm/ADT/SmallVector.h" |
| 10 | #include "llvm/ADT/StringRef.h" |
| 11 | #include "llvm/ADT/StringSwitch.h" |
| 12 | #include "llvm/ADT/Twine.h" |
| 13 | #include "llvm/BinaryFormat/MachO.h" |
| 14 | #include "llvm/MC/MCContext.h" |
| 15 | #include "llvm/MC/MCDirectives.h" |
| 16 | #include "llvm/MC/MCParser/AsmLexer.h" |
| 17 | #include "llvm/MC/MCParser/MCAsmParser.h" |
| 18 | #include "llvm/MC/MCParser/MCAsmParserExtension.h" |
| 19 | #include "llvm/MC/MCSectionMachO.h" |
| 20 | #include "llvm/MC/MCStreamer.h" |
| 21 | #include "llvm/MC/MCSymbol.h" |
| 22 | #include "llvm/MC/SectionKind.h" |
| 23 | #include "llvm/Support/Error.h" |
| 24 | #include "llvm/Support/FileSystem.h" |
| 25 | #include "llvm/Support/MemoryBuffer.h" |
| 26 | #include "llvm/Support/SMLoc.h" |
| 27 | #include "llvm/Support/SourceMgr.h" |
| 28 | #include "llvm/Support/raw_ostream.h" |
| 29 | #include "llvm/TargetParser/Triple.h" |
| 30 | #include <cstddef> |
| 31 | #include <cstdint> |
| 32 | #include <string> |
| 33 | #include <system_error> |
| 34 | #include <utility> |
| 35 | |
| 36 | using namespace llvm; |
| 37 | |
| 38 | namespace { |
| 39 | |
| 40 | /// Implementation of directive handling which is shared across all |
| 41 | /// Darwin targets. |
| 42 | class DarwinAsmParser : public MCAsmParserExtension { |
| 43 | template<bool (DarwinAsmParser::*HandlerMethod)(StringRef, SMLoc)> |
| 44 | void addDirectiveHandler(StringRef Directive) { |
| 45 | MCAsmParser::ExtensionDirectiveHandler Handler = std::make_pair( |
| 46 | this, HandleDirective<DarwinAsmParser, HandlerMethod>); |
| 47 | getParser().addDirectiveHandler(Directive, Handler); |
| 48 | } |
| 49 | |
| 50 | bool parseSectionSwitch(StringRef Segment, StringRef Section, |
| 51 | unsigned TAA = 0, unsigned ImplicitAlign = 0, |
| 52 | unsigned StubSize = 0); |
| 53 | |
| 54 | SMLoc LastVersionDirective; |
| 55 | |
| 56 | public: |
| 57 | DarwinAsmParser() = default; |
| 58 | |
| 59 | void Initialize(MCAsmParser &Parser) override { |
| 60 | // Call the base implementation. |
| 61 | this->MCAsmParserExtension::Initialize(Parser); |
| 62 | |
| 63 | addDirectiveHandler<&DarwinAsmParser::parseDirectiveAltEntry>(Directive: ".alt_entry" ); |
| 64 | addDirectiveHandler<&DarwinAsmParser::parseDirectiveDesc>(Directive: ".desc" ); |
| 65 | addDirectiveHandler<&DarwinAsmParser::parseDirectiveIndirectSymbol>( |
| 66 | Directive: ".indirect_symbol" ); |
| 67 | addDirectiveHandler<&DarwinAsmParser::parseDirectiveLsym>(Directive: ".lsym" ); |
| 68 | addDirectiveHandler<&DarwinAsmParser::parseDirectiveSubsectionsViaSymbols>( |
| 69 | Directive: ".subsections_via_symbols" ); |
| 70 | addDirectiveHandler<&DarwinAsmParser::parseDirectiveDumpOrLoad>(Directive: ".dump" ); |
| 71 | addDirectiveHandler<&DarwinAsmParser::parseDirectiveDumpOrLoad>(Directive: ".load" ); |
| 72 | addDirectiveHandler<&DarwinAsmParser::parseDirectiveSection>(Directive: ".section" ); |
| 73 | addDirectiveHandler<&DarwinAsmParser::parseDirectivePushSection>( |
| 74 | Directive: ".pushsection" ); |
| 75 | addDirectiveHandler<&DarwinAsmParser::parseDirectivePopSection>( |
| 76 | Directive: ".popsection" ); |
| 77 | addDirectiveHandler<&DarwinAsmParser::parseDirectivePrevious>(Directive: ".previous" ); |
| 78 | addDirectiveHandler<&DarwinAsmParser::parseDirectiveSecureLogUnique>( |
| 79 | Directive: ".secure_log_unique" ); |
| 80 | addDirectiveHandler<&DarwinAsmParser::parseDirectiveSecureLogReset>( |
| 81 | Directive: ".secure_log_reset" ); |
| 82 | addDirectiveHandler<&DarwinAsmParser::parseDirectiveTBSS>(Directive: ".tbss" ); |
| 83 | addDirectiveHandler<&DarwinAsmParser::parseDirectiveZerofill>(Directive: ".zerofill" ); |
| 84 | |
| 85 | addDirectiveHandler<&DarwinAsmParser::parseDirectiveDataRegion>( |
| 86 | Directive: ".data_region" ); |
| 87 | addDirectiveHandler<&DarwinAsmParser::parseDirectiveDataRegionEnd>( |
| 88 | Directive: ".end_data_region" ); |
| 89 | |
| 90 | // Special section directives. |
| 91 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveBss>(Directive: ".bss" ); |
| 92 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveConst>(Directive: ".const" ); |
| 93 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveConstData>( |
| 94 | Directive: ".const_data" ); |
| 95 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveConstructor>( |
| 96 | Directive: ".constructor" ); |
| 97 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveCString>( |
| 98 | Directive: ".cstring" ); |
| 99 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveData>(Directive: ".data" ); |
| 100 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveDestructor>( |
| 101 | Directive: ".destructor" ); |
| 102 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveDyld>(Directive: ".dyld" ); |
| 103 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveFVMLibInit0>( |
| 104 | Directive: ".fvmlib_init0" ); |
| 105 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveFVMLibInit1>( |
| 106 | Directive: ".fvmlib_init1" ); |
| 107 | addDirectiveHandler< |
| 108 | &DarwinAsmParser::parseSectionDirectiveLazySymbolPointers>( |
| 109 | Directive: ".lazy_symbol_pointer" ); |
| 110 | addDirectiveHandler<&DarwinAsmParser::parseDirectiveLinkerOption>( |
| 111 | Directive: ".linker_option" ); |
| 112 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveLiteral16>( |
| 113 | Directive: ".literal16" ); |
| 114 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveLiteral4>( |
| 115 | Directive: ".literal4" ); |
| 116 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveLiteral8>( |
| 117 | Directive: ".literal8" ); |
| 118 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveModInitFunc>( |
| 119 | Directive: ".mod_init_func" ); |
| 120 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveModTermFunc>( |
| 121 | Directive: ".mod_term_func" ); |
| 122 | addDirectiveHandler< |
| 123 | &DarwinAsmParser::parseSectionDirectiveNonLazySymbolPointers>( |
| 124 | Directive: ".non_lazy_symbol_pointer" ); |
| 125 | addDirectiveHandler< |
| 126 | &DarwinAsmParser::parseSectionDirectiveThreadLocalVariablePointers>( |
| 127 | Directive: ".thread_local_variable_pointer" ); |
| 128 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveObjCCatClsMeth>( |
| 129 | Directive: ".objc_cat_cls_meth" ); |
| 130 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveObjCCatInstMeth>( |
| 131 | Directive: ".objc_cat_inst_meth" ); |
| 132 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveObjCCategory>( |
| 133 | Directive: ".objc_category" ); |
| 134 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveObjCClass>( |
| 135 | Directive: ".objc_class" ); |
| 136 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveObjCClassNames>( |
| 137 | Directive: ".objc_class_names" ); |
| 138 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveObjCClassVars>( |
| 139 | Directive: ".objc_class_vars" ); |
| 140 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveObjCClsMeth>( |
| 141 | Directive: ".objc_cls_meth" ); |
| 142 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveObjCClsRefs>( |
| 143 | Directive: ".objc_cls_refs" ); |
| 144 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveObjCInstMeth>( |
| 145 | Directive: ".objc_inst_meth" ); |
| 146 | addDirectiveHandler< |
| 147 | &DarwinAsmParser::parseSectionDirectiveObjCInstanceVars>( |
| 148 | Directive: ".objc_instance_vars" ); |
| 149 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveObjCMessageRefs>( |
| 150 | Directive: ".objc_message_refs" ); |
| 151 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveObjCMetaClass>( |
| 152 | Directive: ".objc_meta_class" ); |
| 153 | addDirectiveHandler< |
| 154 | &DarwinAsmParser::parseSectionDirectiveObjCMethVarNames>( |
| 155 | Directive: ".objc_meth_var_names" ); |
| 156 | addDirectiveHandler< |
| 157 | &DarwinAsmParser::parseSectionDirectiveObjCMethVarTypes>( |
| 158 | Directive: ".objc_meth_var_types" ); |
| 159 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveObjCModuleInfo>( |
| 160 | Directive: ".objc_module_info" ); |
| 161 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveObjCProtocol>( |
| 162 | Directive: ".objc_protocol" ); |
| 163 | addDirectiveHandler< |
| 164 | &DarwinAsmParser::parseSectionDirectiveObjCSelectorStrs>( |
| 165 | Directive: ".objc_selector_strs" ); |
| 166 | addDirectiveHandler< |
| 167 | &DarwinAsmParser::parseSectionDirectiveObjCStringObject>( |
| 168 | Directive: ".objc_string_object" ); |
| 169 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveObjCSymbols>( |
| 170 | Directive: ".objc_symbols" ); |
| 171 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectivePICSymbolStub>( |
| 172 | Directive: ".picsymbol_stub" ); |
| 173 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveStaticConst>( |
| 174 | Directive: ".static_const" ); |
| 175 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveStaticData>( |
| 176 | Directive: ".static_data" ); |
| 177 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveSymbolStub>( |
| 178 | Directive: ".symbol_stub" ); |
| 179 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveTData>(Directive: ".tdata" ); |
| 180 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveText>(Directive: ".text" ); |
| 181 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveThreadInitFunc>( |
| 182 | Directive: ".thread_init_func" ); |
| 183 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveTLV>(Directive: ".tlv" ); |
| 184 | |
| 185 | addDirectiveHandler<&DarwinAsmParser::parseSectionDirectiveIdent>(Directive: ".ident" ); |
| 186 | addDirectiveHandler<&DarwinAsmParser::parseWatchOSVersionMin>( |
| 187 | Directive: ".watchos_version_min" ); |
| 188 | addDirectiveHandler<&DarwinAsmParser::parseTvOSVersionMin>( |
| 189 | Directive: ".tvos_version_min" ); |
| 190 | addDirectiveHandler<&DarwinAsmParser::parseIOSVersionMin>( |
| 191 | Directive: ".ios_version_min" ); |
| 192 | addDirectiveHandler<&DarwinAsmParser::parseMacOSXVersionMin>( |
| 193 | Directive: ".macosx_version_min" ); |
| 194 | addDirectiveHandler<&DarwinAsmParser::parseBuildVersion>(Directive: ".build_version" ); |
| 195 | addDirectiveHandler<&DarwinAsmParser::parseTargetTripleDirective>( |
| 196 | Directive: ".target_triple" ); |
| 197 | addDirectiveHandler<&DarwinAsmParser::parseDirectiveCGProfile>( |
| 198 | Directive: ".cg_profile" ); |
| 199 | |
| 200 | LastVersionDirective = SMLoc(); |
| 201 | } |
| 202 | |
| 203 | bool parseDirectiveAltEntry(StringRef, SMLoc); |
| 204 | bool parseDirectiveDesc(StringRef, SMLoc); |
| 205 | bool parseDirectiveIndirectSymbol(StringRef, SMLoc); |
| 206 | bool parseDirectiveDumpOrLoad(StringRef, SMLoc); |
| 207 | bool parseDirectiveLsym(StringRef, SMLoc); |
| 208 | bool parseDirectiveLinkerOption(StringRef, SMLoc); |
| 209 | bool parseDirectiveSection(StringRef, SMLoc); |
| 210 | bool parseDirectivePushSection(StringRef, SMLoc); |
| 211 | bool parseDirectivePopSection(StringRef, SMLoc); |
| 212 | bool parseDirectivePrevious(StringRef, SMLoc); |
| 213 | bool parseDirectiveSecureLogReset(StringRef, SMLoc); |
| 214 | bool parseDirectiveSecureLogUnique(StringRef, SMLoc); |
| 215 | bool parseDirectiveSubsectionsViaSymbols(StringRef, SMLoc); |
| 216 | bool parseDirectiveTBSS(StringRef, SMLoc); |
| 217 | bool parseDirectiveZerofill(StringRef, SMLoc); |
| 218 | bool parseDirectiveDataRegion(StringRef, SMLoc); |
| 219 | bool parseDirectiveDataRegionEnd(StringRef, SMLoc); |
| 220 | |
| 221 | // Named Section Directive |
| 222 | bool parseSectionDirectiveBss(StringRef, SMLoc) { |
| 223 | return parseSectionSwitch(Segment: "__DATA" , Section: "__bss" ); |
| 224 | } |
| 225 | |
| 226 | bool parseSectionDirectiveConst(StringRef, SMLoc) { |
| 227 | return parseSectionSwitch(Segment: "__TEXT" , Section: "__const" ); |
| 228 | } |
| 229 | |
| 230 | bool parseSectionDirectiveStaticConst(StringRef, SMLoc) { |
| 231 | return parseSectionSwitch(Segment: "__TEXT" , Section: "__static_const" ); |
| 232 | } |
| 233 | |
| 234 | bool parseSectionDirectiveCString(StringRef, SMLoc) { |
| 235 | return parseSectionSwitch(Segment: "__TEXT" ,Section: "__cstring" , |
| 236 | TAA: MachO::S_CSTRING_LITERALS); |
| 237 | } |
| 238 | |
| 239 | bool parseSectionDirectiveLiteral4(StringRef, SMLoc) { |
| 240 | return parseSectionSwitch(Segment: "__TEXT" , Section: "__literal4" , |
| 241 | TAA: MachO::S_4BYTE_LITERALS, ImplicitAlign: 4); |
| 242 | } |
| 243 | |
| 244 | bool parseSectionDirectiveLiteral8(StringRef, SMLoc) { |
| 245 | return parseSectionSwitch(Segment: "__TEXT" , Section: "__literal8" , |
| 246 | TAA: MachO::S_8BYTE_LITERALS, ImplicitAlign: 8); |
| 247 | } |
| 248 | |
| 249 | bool parseSectionDirectiveLiteral16(StringRef, SMLoc) { |
| 250 | return parseSectionSwitch(Segment: "__TEXT" ,Section: "__literal16" , |
| 251 | TAA: MachO::S_16BYTE_LITERALS, ImplicitAlign: 16); |
| 252 | } |
| 253 | |
| 254 | bool parseSectionDirectiveConstructor(StringRef, SMLoc) { |
| 255 | return parseSectionSwitch(Segment: "__TEXT" ,Section: "__constructor" ); |
| 256 | } |
| 257 | |
| 258 | bool parseSectionDirectiveDestructor(StringRef, SMLoc) { |
| 259 | return parseSectionSwitch(Segment: "__TEXT" ,Section: "__destructor" ); |
| 260 | } |
| 261 | |
| 262 | bool parseSectionDirectiveFVMLibInit0(StringRef, SMLoc) { |
| 263 | return parseSectionSwitch(Segment: "__TEXT" ,Section: "__fvmlib_init0" ); |
| 264 | } |
| 265 | |
| 266 | bool parseSectionDirectiveFVMLibInit1(StringRef, SMLoc) { |
| 267 | return parseSectionSwitch(Segment: "__TEXT" ,Section: "__fvmlib_init1" ); |
| 268 | } |
| 269 | |
| 270 | bool parseSectionDirectiveSymbolStub(StringRef, SMLoc) { |
| 271 | return parseSectionSwitch(Segment: "__TEXT" ,Section: "__symbol_stub" , |
| 272 | TAA: MachO::S_SYMBOL_STUBS | |
| 273 | MachO::S_ATTR_PURE_INSTRUCTIONS, |
| 274 | // FIXME: Different on PPC and ARM. |
| 275 | ImplicitAlign: 0, StubSize: 16); |
| 276 | } |
| 277 | |
| 278 | bool parseSectionDirectivePICSymbolStub(StringRef, SMLoc) { |
| 279 | return parseSectionSwitch(Segment: "__TEXT" ,Section: "__picsymbol_stub" , |
| 280 | TAA: MachO::S_SYMBOL_STUBS | |
| 281 | MachO::S_ATTR_PURE_INSTRUCTIONS, ImplicitAlign: 0, StubSize: 26); |
| 282 | } |
| 283 | |
| 284 | bool parseSectionDirectiveData(StringRef, SMLoc) { |
| 285 | return parseSectionSwitch(Segment: "__DATA" , Section: "__data" ); |
| 286 | } |
| 287 | |
| 288 | bool parseSectionDirectiveStaticData(StringRef, SMLoc) { |
| 289 | return parseSectionSwitch(Segment: "__DATA" , Section: "__static_data" ); |
| 290 | } |
| 291 | |
| 292 | bool parseSectionDirectiveNonLazySymbolPointers(StringRef, SMLoc) { |
| 293 | return parseSectionSwitch(Segment: "__DATA" , Section: "__nl_symbol_ptr" , |
| 294 | TAA: MachO::S_NON_LAZY_SYMBOL_POINTERS, ImplicitAlign: 4); |
| 295 | } |
| 296 | |
| 297 | bool parseSectionDirectiveLazySymbolPointers(StringRef, SMLoc) { |
| 298 | return parseSectionSwitch(Segment: "__DATA" , Section: "__la_symbol_ptr" , |
| 299 | TAA: MachO::S_LAZY_SYMBOL_POINTERS, ImplicitAlign: 4); |
| 300 | } |
| 301 | |
| 302 | bool parseSectionDirectiveThreadLocalVariablePointers(StringRef, SMLoc) { |
| 303 | return parseSectionSwitch(Segment: "__DATA" , Section: "__thread_ptr" , |
| 304 | TAA: MachO::S_THREAD_LOCAL_VARIABLE_POINTERS, ImplicitAlign: 4); |
| 305 | } |
| 306 | |
| 307 | bool parseSectionDirectiveDyld(StringRef, SMLoc) { |
| 308 | return parseSectionSwitch(Segment: "__DATA" , Section: "__dyld" ); |
| 309 | } |
| 310 | |
| 311 | bool parseSectionDirectiveModInitFunc(StringRef, SMLoc) { |
| 312 | return parseSectionSwitch(Segment: "__DATA" , Section: "__mod_init_func" , |
| 313 | TAA: MachO::S_MOD_INIT_FUNC_POINTERS, ImplicitAlign: 4); |
| 314 | } |
| 315 | |
| 316 | bool parseSectionDirectiveModTermFunc(StringRef, SMLoc) { |
| 317 | return parseSectionSwitch(Segment: "__DATA" , Section: "__mod_term_func" , |
| 318 | TAA: MachO::S_MOD_TERM_FUNC_POINTERS, ImplicitAlign: 4); |
| 319 | } |
| 320 | |
| 321 | bool parseSectionDirectiveConstData(StringRef, SMLoc) { |
| 322 | return parseSectionSwitch(Segment: "__DATA" , Section: "__const" ); |
| 323 | } |
| 324 | |
| 325 | bool parseSectionDirectiveObjCClass(StringRef, SMLoc) { |
| 326 | return parseSectionSwitch(Segment: "__OBJC" , Section: "__class" , |
| 327 | TAA: MachO::S_ATTR_NO_DEAD_STRIP); |
| 328 | } |
| 329 | |
| 330 | bool parseSectionDirectiveObjCMetaClass(StringRef, SMLoc) { |
| 331 | return parseSectionSwitch(Segment: "__OBJC" , Section: "__meta_class" , |
| 332 | TAA: MachO::S_ATTR_NO_DEAD_STRIP); |
| 333 | } |
| 334 | |
| 335 | bool parseSectionDirectiveObjCCatClsMeth(StringRef, SMLoc) { |
| 336 | return parseSectionSwitch(Segment: "__OBJC" , Section: "__cat_cls_meth" , |
| 337 | TAA: MachO::S_ATTR_NO_DEAD_STRIP); |
| 338 | } |
| 339 | |
| 340 | bool parseSectionDirectiveObjCCatInstMeth(StringRef, SMLoc) { |
| 341 | return parseSectionSwitch(Segment: "__OBJC" , Section: "__cat_inst_meth" , |
| 342 | TAA: MachO::S_ATTR_NO_DEAD_STRIP); |
| 343 | } |
| 344 | |
| 345 | bool parseSectionDirectiveObjCProtocol(StringRef, SMLoc) { |
| 346 | return parseSectionSwitch(Segment: "__OBJC" , Section: "__protocol" , |
| 347 | TAA: MachO::S_ATTR_NO_DEAD_STRIP); |
| 348 | } |
| 349 | |
| 350 | bool parseSectionDirectiveObjCStringObject(StringRef, SMLoc) { |
| 351 | return parseSectionSwitch(Segment: "__OBJC" , Section: "__string_object" , |
| 352 | TAA: MachO::S_ATTR_NO_DEAD_STRIP); |
| 353 | } |
| 354 | |
| 355 | bool parseSectionDirectiveObjCClsMeth(StringRef, SMLoc) { |
| 356 | return parseSectionSwitch(Segment: "__OBJC" , Section: "__cls_meth" , |
| 357 | TAA: MachO::S_ATTR_NO_DEAD_STRIP); |
| 358 | } |
| 359 | |
| 360 | bool parseSectionDirectiveObjCInstMeth(StringRef, SMLoc) { |
| 361 | return parseSectionSwitch(Segment: "__OBJC" , Section: "__inst_meth" , |
| 362 | TAA: MachO::S_ATTR_NO_DEAD_STRIP); |
| 363 | } |
| 364 | |
| 365 | bool parseSectionDirectiveObjCClsRefs(StringRef, SMLoc) { |
| 366 | return parseSectionSwitch(Segment: "__OBJC" , Section: "__cls_refs" , |
| 367 | TAA: MachO::S_ATTR_NO_DEAD_STRIP | |
| 368 | MachO::S_LITERAL_POINTERS, ImplicitAlign: 4); |
| 369 | } |
| 370 | |
| 371 | bool parseSectionDirectiveObjCMessageRefs(StringRef, SMLoc) { |
| 372 | return parseSectionSwitch(Segment: "__OBJC" , Section: "__message_refs" , |
| 373 | TAA: MachO::S_ATTR_NO_DEAD_STRIP | |
| 374 | MachO::S_LITERAL_POINTERS, ImplicitAlign: 4); |
| 375 | } |
| 376 | |
| 377 | bool parseSectionDirectiveObjCSymbols(StringRef, SMLoc) { |
| 378 | return parseSectionSwitch(Segment: "__OBJC" , Section: "__symbols" , |
| 379 | TAA: MachO::S_ATTR_NO_DEAD_STRIP); |
| 380 | } |
| 381 | |
| 382 | bool parseSectionDirectiveObjCCategory(StringRef, SMLoc) { |
| 383 | return parseSectionSwitch(Segment: "__OBJC" , Section: "__category" , |
| 384 | TAA: MachO::S_ATTR_NO_DEAD_STRIP); |
| 385 | } |
| 386 | |
| 387 | bool parseSectionDirectiveObjCClassVars(StringRef, SMLoc) { |
| 388 | return parseSectionSwitch(Segment: "__OBJC" , Section: "__class_vars" , |
| 389 | TAA: MachO::S_ATTR_NO_DEAD_STRIP); |
| 390 | } |
| 391 | |
| 392 | bool parseSectionDirectiveObjCInstanceVars(StringRef, SMLoc) { |
| 393 | return parseSectionSwitch(Segment: "__OBJC" , Section: "__instance_vars" , |
| 394 | TAA: MachO::S_ATTR_NO_DEAD_STRIP); |
| 395 | } |
| 396 | |
| 397 | bool parseSectionDirectiveObjCModuleInfo(StringRef, SMLoc) { |
| 398 | return parseSectionSwitch(Segment: "__OBJC" , Section: "__module_info" , |
| 399 | TAA: MachO::S_ATTR_NO_DEAD_STRIP); |
| 400 | } |
| 401 | |
| 402 | bool parseSectionDirectiveObjCClassNames(StringRef, SMLoc) { |
| 403 | return parseSectionSwitch(Segment: "__TEXT" , Section: "__cstring" , |
| 404 | TAA: MachO::S_CSTRING_LITERALS); |
| 405 | } |
| 406 | |
| 407 | bool parseSectionDirectiveObjCMethVarTypes(StringRef, SMLoc) { |
| 408 | return parseSectionSwitch(Segment: "__TEXT" , Section: "__cstring" , |
| 409 | TAA: MachO::S_CSTRING_LITERALS); |
| 410 | } |
| 411 | |
| 412 | bool parseSectionDirectiveObjCMethVarNames(StringRef, SMLoc) { |
| 413 | return parseSectionSwitch(Segment: "__TEXT" , Section: "__cstring" , |
| 414 | TAA: MachO::S_CSTRING_LITERALS); |
| 415 | } |
| 416 | |
| 417 | bool parseSectionDirectiveObjCSelectorStrs(StringRef, SMLoc) { |
| 418 | return parseSectionSwitch(Segment: "__OBJC" , Section: "__selector_strs" , |
| 419 | TAA: MachO::S_CSTRING_LITERALS); |
| 420 | } |
| 421 | |
| 422 | bool parseSectionDirectiveTData(StringRef, SMLoc) { |
| 423 | return parseSectionSwitch(Segment: "__DATA" , Section: "__thread_data" , |
| 424 | TAA: MachO::S_THREAD_LOCAL_REGULAR); |
| 425 | } |
| 426 | |
| 427 | bool parseSectionDirectiveText(StringRef, SMLoc) { |
| 428 | return parseSectionSwitch(Segment: "__TEXT" , Section: "__text" , |
| 429 | TAA: MachO::S_ATTR_PURE_INSTRUCTIONS); |
| 430 | } |
| 431 | |
| 432 | bool parseSectionDirectiveTLV(StringRef, SMLoc) { |
| 433 | return parseSectionSwitch(Segment: "__DATA" , Section: "__thread_vars" , |
| 434 | TAA: MachO::S_THREAD_LOCAL_VARIABLES); |
| 435 | } |
| 436 | |
| 437 | bool parseSectionDirectiveIdent(StringRef, SMLoc) { |
| 438 | // Darwin silently ignores the .ident directive. |
| 439 | getParser().eatToEndOfStatement(); |
| 440 | return false; |
| 441 | } |
| 442 | |
| 443 | bool parseSectionDirectiveThreadInitFunc(StringRef, SMLoc) { |
| 444 | return parseSectionSwitch(Segment: "__DATA" , Section: "__thread_init" , |
| 445 | TAA: MachO::S_THREAD_LOCAL_INIT_FUNCTION_POINTERS); |
| 446 | } |
| 447 | |
| 448 | bool parseWatchOSVersionMin(StringRef Directive, SMLoc Loc) { |
| 449 | return parseVersionMin(Directive, Loc, Type: MCVM_WatchOSVersionMin); |
| 450 | } |
| 451 | bool parseTvOSVersionMin(StringRef Directive, SMLoc Loc) { |
| 452 | return parseVersionMin(Directive, Loc, Type: MCVM_TvOSVersionMin); |
| 453 | } |
| 454 | bool parseIOSVersionMin(StringRef Directive, SMLoc Loc) { |
| 455 | return parseVersionMin(Directive, Loc, Type: MCVM_IOSVersionMin); |
| 456 | } |
| 457 | bool parseMacOSXVersionMin(StringRef Directive, SMLoc Loc) { |
| 458 | return parseVersionMin(Directive, Loc, Type: MCVM_OSXVersionMin); |
| 459 | } |
| 460 | |
| 461 | bool parseBuildVersion(StringRef Directive, SMLoc Loc); |
| 462 | bool parseTargetTripleDirective(StringRef Directive, SMLoc Loc); |
| 463 | bool parseVersionMin(StringRef Directive, SMLoc Loc, MCVersionMinType Type); |
| 464 | bool parseMajorMinorVersionComponent(unsigned *Major, unsigned *Minor, |
| 465 | const char *VersionName); |
| 466 | bool parseOptionalTrailingVersionComponent(unsigned *Component, |
| 467 | const char *ComponentName); |
| 468 | bool parseVersion(unsigned *Major, unsigned *Minor, unsigned *Update); |
| 469 | bool parseSDKVersion(VersionTuple &SDKVersion); |
| 470 | void checkVersion(StringRef Directive, StringRef Arg, SMLoc Loc, |
| 471 | Triple::OSType ExpectedOS); |
| 472 | bool parseDirectiveCGProfile(StringRef Directive, SMLoc Loc); |
| 473 | }; |
| 474 | |
| 475 | } // end anonymous namespace |
| 476 | |
| 477 | bool DarwinAsmParser::parseSectionSwitch(StringRef Segment, StringRef Section, |
| 478 | unsigned TAA, unsigned Alignment, |
| 479 | unsigned StubSize) { |
| 480 | if (getLexer().isNot(K: AsmToken::EndOfStatement)) |
| 481 | return TokError(Msg: "unexpected token in section switching directive" ); |
| 482 | Lex(); |
| 483 | |
| 484 | // FIXME: Arch specific. |
| 485 | bool isText = TAA & MachO::S_ATTR_PURE_INSTRUCTIONS; |
| 486 | getStreamer().switchSection(Section: getContext().getMachOSection( |
| 487 | Segment, Section, TypeAndAttributes: TAA, Reserved2: StubSize, |
| 488 | K: isText ? SectionKind::getText() : SectionKind::getData())); |
| 489 | |
| 490 | // Set the implicit alignment, if any. |
| 491 | // |
| 492 | // FIXME: This isn't really what 'as' does; I think it just uses the implicit |
| 493 | // alignment on the section (e.g., if one manually inserts bytes into the |
| 494 | // section, then just issuing the section switch directive will not realign |
| 495 | // the section. However, this is arguably more reasonable behavior, and there |
| 496 | // is no good reason for someone to intentionally emit incorrectly sized |
| 497 | // values into the implicitly aligned sections. |
| 498 | if (Alignment) |
| 499 | getStreamer().emitValueToAlignment(Alignment: Align(Alignment)); |
| 500 | |
| 501 | return false; |
| 502 | } |
| 503 | |
| 504 | /// parseDirectiveAltEntry |
| 505 | /// ::= .alt_entry identifier |
| 506 | bool DarwinAsmParser::parseDirectiveAltEntry(StringRef, SMLoc) { |
| 507 | MCSymbol *Sym; |
| 508 | if (getParser().parseSymbol(Res&: Sym)) |
| 509 | return TokError(Msg: "expected identifier in directive" ); |
| 510 | |
| 511 | if (Sym->isDefined()) |
| 512 | return TokError(Msg: ".alt_entry must preceed symbol definition" ); |
| 513 | |
| 514 | if (!getStreamer().emitSymbolAttribute(Symbol: Sym, Attribute: MCSA_AltEntry)) |
| 515 | return TokError(Msg: "unable to emit symbol attribute" ); |
| 516 | |
| 517 | Lex(); |
| 518 | return false; |
| 519 | } |
| 520 | |
| 521 | /// parseDirectiveDesc |
| 522 | /// ::= .desc identifier , expression |
| 523 | bool DarwinAsmParser::parseDirectiveDesc(StringRef, SMLoc) { |
| 524 | MCSymbol *Sym; |
| 525 | if (getParser().parseSymbol(Res&: Sym)) |
| 526 | return TokError(Msg: "expected identifier in directive" ); |
| 527 | |
| 528 | if (getLexer().isNot(K: AsmToken::Comma)) |
| 529 | return TokError(Msg: "unexpected token in '.desc' directive" ); |
| 530 | Lex(); |
| 531 | |
| 532 | int64_t DescValue; |
| 533 | if (getParser().parseAbsoluteExpression(Res&: DescValue)) |
| 534 | return true; |
| 535 | |
| 536 | if (getLexer().isNot(K: AsmToken::EndOfStatement)) |
| 537 | return TokError(Msg: "unexpected token in '.desc' directive" ); |
| 538 | |
| 539 | Lex(); |
| 540 | |
| 541 | // Set the n_desc field of this Symbol to this DescValue |
| 542 | getStreamer().emitSymbolDesc(Symbol: Sym, DescValue); |
| 543 | |
| 544 | return false; |
| 545 | } |
| 546 | |
| 547 | /// parseDirectiveIndirectSymbol |
| 548 | /// ::= .indirect_symbol identifier |
| 549 | bool DarwinAsmParser::parseDirectiveIndirectSymbol(StringRef, SMLoc Loc) { |
| 550 | const MCSectionMachO *Current = static_cast<const MCSectionMachO *>( |
| 551 | getStreamer().getCurrentSectionOnly()); |
| 552 | MachO::SectionType SectionType = Current->getType(); |
| 553 | if (SectionType != MachO::S_NON_LAZY_SYMBOL_POINTERS && |
| 554 | SectionType != MachO::S_LAZY_SYMBOL_POINTERS && |
| 555 | SectionType != MachO::S_THREAD_LOCAL_VARIABLE_POINTERS && |
| 556 | SectionType != MachO::S_SYMBOL_STUBS) |
| 557 | return Error(L: Loc, Msg: "indirect symbol not in a symbol pointer or stub " |
| 558 | "section" ); |
| 559 | |
| 560 | MCSymbol *Sym; |
| 561 | if (getParser().parseSymbol(Res&: Sym)) |
| 562 | return TokError(Msg: "expected identifier in .indirect_symbol directive" ); |
| 563 | |
| 564 | // Assembler local symbols don't make any sense here. Complain loudly. |
| 565 | if (Sym->isTemporary()) |
| 566 | return TokError(Msg: "non-local symbol required in directive" ); |
| 567 | |
| 568 | if (!getStreamer().emitSymbolAttribute(Symbol: Sym, Attribute: MCSA_IndirectSymbol)) |
| 569 | return TokError(Msg: "unable to emit indirect symbol attribute for: " + |
| 570 | Sym->getName()); |
| 571 | |
| 572 | if (getLexer().isNot(K: AsmToken::EndOfStatement)) |
| 573 | return TokError(Msg: "unexpected token in '.indirect_symbol' directive" ); |
| 574 | |
| 575 | Lex(); |
| 576 | |
| 577 | return false; |
| 578 | } |
| 579 | |
| 580 | /// parseDirectiveDumpOrLoad |
| 581 | /// ::= ( .dump | .load ) "filename" |
| 582 | bool DarwinAsmParser::parseDirectiveDumpOrLoad(StringRef Directive, |
| 583 | SMLoc IDLoc) { |
| 584 | bool IsDump = Directive == ".dump" ; |
| 585 | if (getLexer().isNot(K: AsmToken::String)) |
| 586 | return TokError(Msg: "expected string in '.dump' or '.load' directive" ); |
| 587 | |
| 588 | Lex(); |
| 589 | |
| 590 | if (getLexer().isNot(K: AsmToken::EndOfStatement)) |
| 591 | return TokError(Msg: "unexpected token in '.dump' or '.load' directive" ); |
| 592 | |
| 593 | Lex(); |
| 594 | |
| 595 | // FIXME: If/when .dump and .load are implemented they will be done in the |
| 596 | // the assembly parser and not have any need for an MCStreamer API. |
| 597 | if (IsDump) |
| 598 | return Warning(L: IDLoc, Msg: "ignoring directive .dump for now" ); |
| 599 | else |
| 600 | return Warning(L: IDLoc, Msg: "ignoring directive .load for now" ); |
| 601 | } |
| 602 | |
| 603 | /// ParseDirectiveLinkerOption |
| 604 | /// ::= .linker_option "string" ( , "string" )* |
| 605 | bool DarwinAsmParser::parseDirectiveLinkerOption(StringRef IDVal, SMLoc) { |
| 606 | SmallVector<std::string, 4> Args; |
| 607 | while (true) { |
| 608 | if (getLexer().isNot(K: AsmToken::String)) |
| 609 | return TokError(Msg: "expected string in '" + Twine(IDVal) + "' directive" ); |
| 610 | |
| 611 | std::string Data; |
| 612 | if (getParser().parseEscapedString(Data)) |
| 613 | return true; |
| 614 | |
| 615 | Args.push_back(Elt: Data); |
| 616 | |
| 617 | if (getLexer().is(K: AsmToken::EndOfStatement)) |
| 618 | break; |
| 619 | |
| 620 | if (getLexer().isNot(K: AsmToken::Comma)) |
| 621 | return TokError(Msg: "unexpected token in '" + Twine(IDVal) + "' directive" ); |
| 622 | Lex(); |
| 623 | } |
| 624 | |
| 625 | getStreamer().emitLinkerOptions(Kind: Args); |
| 626 | return false; |
| 627 | } |
| 628 | |
| 629 | /// parseDirectiveLsym |
| 630 | /// ::= .lsym identifier , expression |
| 631 | bool DarwinAsmParser::parseDirectiveLsym(StringRef, SMLoc) { |
| 632 | MCSymbol *Sym; |
| 633 | if (getParser().parseSymbol(Res&: Sym)) |
| 634 | return TokError(Msg: "expected identifier in directive" ); |
| 635 | |
| 636 | if (getLexer().isNot(K: AsmToken::Comma)) |
| 637 | return TokError(Msg: "unexpected token in '.lsym' directive" ); |
| 638 | Lex(); |
| 639 | |
| 640 | const MCExpr *Value; |
| 641 | if (getParser().parseExpression(Res&: Value)) |
| 642 | return true; |
| 643 | |
| 644 | if (getLexer().isNot(K: AsmToken::EndOfStatement)) |
| 645 | return TokError(Msg: "unexpected token in '.lsym' directive" ); |
| 646 | |
| 647 | Lex(); |
| 648 | |
| 649 | // We don't currently support this directive. |
| 650 | // |
| 651 | // FIXME: Diagnostic location! |
| 652 | (void) Sym; |
| 653 | return TokError(Msg: "directive '.lsym' is unsupported" ); |
| 654 | } |
| 655 | |
| 656 | /// parseDirectiveSection: |
| 657 | /// ::= .section identifier (',' identifier)* |
| 658 | bool DarwinAsmParser::parseDirectiveSection(StringRef, SMLoc) { |
| 659 | SMLoc Loc = getLexer().getLoc(); |
| 660 | |
| 661 | StringRef SectionName; |
| 662 | if (getParser().parseIdentifier(Res&: SectionName)) |
| 663 | return Error(L: Loc, Msg: "expected identifier after '.section' directive" ); |
| 664 | |
| 665 | // Verify there is a following comma. |
| 666 | if (!getLexer().is(K: AsmToken::Comma)) |
| 667 | return TokError(Msg: "unexpected token in '.section' directive" ); |
| 668 | |
| 669 | std::string SectionSpec = std::string(SectionName); |
| 670 | SectionSpec += "," ; |
| 671 | |
| 672 | // Add all the tokens until the end of the line, ParseSectionSpecifier will |
| 673 | // handle this. |
| 674 | StringRef EOL = getLexer().LexUntilEndOfStatement(); |
| 675 | SectionSpec.append(first: EOL.begin(), last: EOL.end()); |
| 676 | |
| 677 | Lex(); |
| 678 | if (getLexer().isNot(K: AsmToken::EndOfStatement)) |
| 679 | return TokError(Msg: "unexpected token in '.section' directive" ); |
| 680 | Lex(); |
| 681 | |
| 682 | StringRef Segment, Section; |
| 683 | unsigned StubSize; |
| 684 | unsigned TAA; |
| 685 | bool TAAParsed; |
| 686 | if (class Error E = MCSectionMachO::ParseSectionSpecifier( |
| 687 | Spec: SectionSpec, Segment, Section, TAA, TAAParsed, StubSize)) |
| 688 | return Error(L: Loc, Msg: toString(E: std::move(E))); |
| 689 | |
| 690 | // Issue a warning if the target is not powerpc and Section is a *coal* section. |
| 691 | Triple TT = getParser().getContext().getTargetTriple(); |
| 692 | Triple::ArchType ArchTy = TT.getArch(); |
| 693 | |
| 694 | if (ArchTy != Triple::ppc && ArchTy != Triple::ppc64) { |
| 695 | StringRef NonCoalSection = StringSwitch<StringRef>(Section) |
| 696 | .Case(S: "__textcoal_nt" , Value: "__text" ) |
| 697 | .Case(S: "__const_coal" , Value: "__const" ) |
| 698 | .Case(S: "__datacoal_nt" , Value: "__data" ) |
| 699 | .Default(Value: Section); |
| 700 | |
| 701 | if (Section != NonCoalSection) { |
| 702 | StringRef SectionVal(Loc.getPointer()); |
| 703 | size_t B = SectionVal.find(C: ',') + 1, E = SectionVal.find(C: ',', From: B); |
| 704 | SMLoc BLoc = SMLoc::getFromPointer(Ptr: SectionVal.data() + B); |
| 705 | SMLoc ELoc = SMLoc::getFromPointer(Ptr: SectionVal.data() + E); |
| 706 | getParser().Warning(L: Loc, Msg: "section \"" + Section + "\" is deprecated" , |
| 707 | Range: SMRange(BLoc, ELoc)); |
| 708 | getParser().Note(L: Loc, Msg: "change section name to \"" + NonCoalSection + |
| 709 | "\"" , Range: SMRange(BLoc, ELoc)); |
| 710 | } |
| 711 | } |
| 712 | |
| 713 | // FIXME: Arch specific. |
| 714 | bool isText = Segment == "__TEXT" ; // FIXME: Hack. |
| 715 | getStreamer().switchSection(Section: getContext().getMachOSection( |
| 716 | Segment, Section, TypeAndAttributes: TAA, Reserved2: StubSize, |
| 717 | K: isText ? SectionKind::getText() : SectionKind::getData())); |
| 718 | return false; |
| 719 | } |
| 720 | |
| 721 | /// ParseDirectivePushSection: |
| 722 | /// ::= .pushsection identifier (',' identifier)* |
| 723 | bool DarwinAsmParser::parseDirectivePushSection(StringRef S, SMLoc Loc) { |
| 724 | getStreamer().pushSection(); |
| 725 | |
| 726 | if (parseDirectiveSection(S, Loc)) { |
| 727 | getStreamer().popSection(); |
| 728 | return true; |
| 729 | } |
| 730 | |
| 731 | return false; |
| 732 | } |
| 733 | |
| 734 | /// ParseDirectivePopSection: |
| 735 | /// ::= .popsection |
| 736 | bool DarwinAsmParser::parseDirectivePopSection(StringRef, SMLoc) { |
| 737 | if (!getStreamer().popSection()) |
| 738 | return TokError(Msg: ".popsection without corresponding .pushsection" ); |
| 739 | return false; |
| 740 | } |
| 741 | |
| 742 | /// ParseDirectivePrevious: |
| 743 | /// ::= .previous |
| 744 | bool DarwinAsmParser::parseDirectivePrevious(StringRef DirName, SMLoc) { |
| 745 | MCSectionSubPair PreviousSection = getStreamer().getPreviousSection(); |
| 746 | if (!PreviousSection.first) |
| 747 | return TokError(Msg: ".previous without corresponding .section" ); |
| 748 | getStreamer().switchSection(Section: PreviousSection.first, Subsec: PreviousSection.second); |
| 749 | return false; |
| 750 | } |
| 751 | |
| 752 | /// ParseDirectiveSecureLogUnique |
| 753 | /// ::= .secure_log_unique ... message ... |
| 754 | bool DarwinAsmParser::parseDirectiveSecureLogUnique(StringRef, SMLoc IDLoc) { |
| 755 | StringRef LogMessage = getParser().parseStringToEndOfStatement(); |
| 756 | if (getLexer().isNot(K: AsmToken::EndOfStatement)) |
| 757 | return TokError(Msg: "unexpected token in '.secure_log_unique' directive" ); |
| 758 | |
| 759 | if (getContext().getSecureLogUsed()) |
| 760 | return Error(L: IDLoc, Msg: ".secure_log_unique specified multiple times" ); |
| 761 | |
| 762 | // Get the secure log path. |
| 763 | StringRef SecureLogFile = getContext().getSecureLogFile(); |
| 764 | if (SecureLogFile.empty()) |
| 765 | return Error(L: IDLoc, Msg: ".secure_log_unique used but AS_SECURE_LOG_FILE " |
| 766 | "environment variable unset." ); |
| 767 | |
| 768 | // Open the secure log file if we haven't already. |
| 769 | raw_fd_ostream *OS = getContext().getSecureLog(); |
| 770 | if (!OS) { |
| 771 | std::error_code EC; |
| 772 | auto NewOS = std::make_unique<raw_fd_ostream>( |
| 773 | args&: SecureLogFile, args&: EC, args: sys::fs::OF_Append | sys::fs::OF_TextWithCRLF); |
| 774 | if (EC) |
| 775 | return Error(L: IDLoc, Msg: Twine("can't open secure log file: " ) + |
| 776 | SecureLogFile + " (" + EC.message() + ")" ); |
| 777 | OS = NewOS.get(); |
| 778 | getContext().setSecureLog(std::move(NewOS)); |
| 779 | } |
| 780 | |
| 781 | // Write the message. |
| 782 | unsigned CurBuf = getSourceManager().FindBufferContainingLoc(Loc: IDLoc); |
| 783 | *OS << getSourceManager().getBufferInfo(i: CurBuf).Buffer->getBufferIdentifier() |
| 784 | << ":" << getSourceManager().FindLineNumber(Loc: IDLoc, BufferID: CurBuf) << ":" |
| 785 | << LogMessage + "\n" ; |
| 786 | |
| 787 | getContext().setSecureLogUsed(true); |
| 788 | |
| 789 | return false; |
| 790 | } |
| 791 | |
| 792 | /// ParseDirectiveSecureLogReset |
| 793 | /// ::= .secure_log_reset |
| 794 | bool DarwinAsmParser::parseDirectiveSecureLogReset(StringRef, SMLoc IDLoc) { |
| 795 | if (getLexer().isNot(K: AsmToken::EndOfStatement)) |
| 796 | return TokError(Msg: "unexpected token in '.secure_log_reset' directive" ); |
| 797 | |
| 798 | Lex(); |
| 799 | |
| 800 | getContext().setSecureLogUsed(false); |
| 801 | |
| 802 | return false; |
| 803 | } |
| 804 | |
| 805 | /// parseDirectiveSubsectionsViaSymbols |
| 806 | /// ::= .subsections_via_symbols |
| 807 | bool DarwinAsmParser::parseDirectiveSubsectionsViaSymbols(StringRef, SMLoc) { |
| 808 | if (getLexer().isNot(K: AsmToken::EndOfStatement)) |
| 809 | return TokError(Msg: "unexpected token in '.subsections_via_symbols' directive" ); |
| 810 | |
| 811 | Lex(); |
| 812 | |
| 813 | getStreamer().emitSubsectionsViaSymbols(); |
| 814 | |
| 815 | return false; |
| 816 | } |
| 817 | |
| 818 | /// ParseDirectiveTBSS |
| 819 | /// ::= .tbss identifier, size, align |
| 820 | bool DarwinAsmParser::parseDirectiveTBSS(StringRef, SMLoc) { |
| 821 | SMLoc IDLoc = getLexer().getLoc(); |
| 822 | MCSymbol *Sym; |
| 823 | if (getParser().parseSymbol(Res&: Sym)) |
| 824 | return TokError(Msg: "expected identifier in directive" ); |
| 825 | |
| 826 | if (getLexer().isNot(K: AsmToken::Comma)) |
| 827 | return TokError(Msg: "unexpected token in directive" ); |
| 828 | Lex(); |
| 829 | |
| 830 | int64_t Size; |
| 831 | SMLoc SizeLoc = getLexer().getLoc(); |
| 832 | if (getParser().parseAbsoluteExpression(Res&: Size)) |
| 833 | return true; |
| 834 | |
| 835 | int64_t Pow2Alignment = 0; |
| 836 | SMLoc Pow2AlignmentLoc; |
| 837 | if (getLexer().is(K: AsmToken::Comma)) { |
| 838 | Lex(); |
| 839 | Pow2AlignmentLoc = getLexer().getLoc(); |
| 840 | if (getParser().parseAbsoluteExpression(Res&: Pow2Alignment)) |
| 841 | return true; |
| 842 | } |
| 843 | |
| 844 | if (getLexer().isNot(K: AsmToken::EndOfStatement)) |
| 845 | return TokError(Msg: "unexpected token in '.tbss' directive" ); |
| 846 | |
| 847 | Lex(); |
| 848 | |
| 849 | if (Size < 0) |
| 850 | return Error(L: SizeLoc, Msg: "invalid '.tbss' directive size, can't be less than" |
| 851 | "zero" ); |
| 852 | |
| 853 | // FIXME: Diagnose overflow. |
| 854 | if (Pow2Alignment < 0) |
| 855 | return Error(L: Pow2AlignmentLoc, Msg: "invalid '.tbss' alignment, can't be less" |
| 856 | "than zero" ); |
| 857 | |
| 858 | if (!Sym->isUndefined()) |
| 859 | return Error(L: IDLoc, Msg: "invalid symbol redefinition" ); |
| 860 | |
| 861 | getStreamer().emitTBSSSymbol( |
| 862 | Section: getContext().getMachOSection(Segment: "__DATA" , Section: "__thread_bss" , |
| 863 | TypeAndAttributes: MachO::S_THREAD_LOCAL_ZEROFILL, Reserved2: 0, |
| 864 | K: SectionKind::getThreadBSS()), |
| 865 | Symbol: Sym, Size, ByteAlignment: Align(1ULL << Pow2Alignment)); |
| 866 | |
| 867 | return false; |
| 868 | } |
| 869 | |
| 870 | /// ParseDirectiveZerofill |
| 871 | /// ::= .zerofill segname , sectname [, identifier , size_expression [ |
| 872 | /// , align_expression ]] |
| 873 | bool DarwinAsmParser::parseDirectiveZerofill(StringRef, SMLoc) { |
| 874 | StringRef Segment; |
| 875 | if (getParser().parseIdentifier(Res&: Segment)) |
| 876 | return TokError(Msg: "expected segment name after '.zerofill' directive" ); |
| 877 | |
| 878 | if (getLexer().isNot(K: AsmToken::Comma)) |
| 879 | return TokError(Msg: "unexpected token in directive" ); |
| 880 | Lex(); |
| 881 | |
| 882 | StringRef Section; |
| 883 | SMLoc SectionLoc = getLexer().getLoc(); |
| 884 | if (getParser().parseIdentifier(Res&: Section)) |
| 885 | return TokError(Msg: "expected section name after comma in '.zerofill' " |
| 886 | "directive" ); |
| 887 | |
| 888 | // If this is the end of the line all that was wanted was to create the |
| 889 | // the section but with no symbol. |
| 890 | if (getLexer().is(K: AsmToken::EndOfStatement)) { |
| 891 | // Create the zerofill section but no symbol |
| 892 | getStreamer().emitZerofill( |
| 893 | Section: getContext().getMachOSection(Segment, Section, TypeAndAttributes: MachO::S_ZEROFILL, Reserved2: 0, |
| 894 | K: SectionKind::getBSS()), |
| 895 | /*Symbol=*/nullptr, /*Size=*/0, ByteAlignment: Align(1), Loc: SectionLoc); |
| 896 | return false; |
| 897 | } |
| 898 | |
| 899 | if (getLexer().isNot(K: AsmToken::Comma)) |
| 900 | return TokError(Msg: "unexpected token in directive" ); |
| 901 | Lex(); |
| 902 | |
| 903 | SMLoc IDLoc = getLexer().getLoc(); |
| 904 | MCSymbol *Sym; |
| 905 | if (getParser().parseSymbol(Res&: Sym)) |
| 906 | return TokError(Msg: "expected identifier in directive" ); |
| 907 | |
| 908 | if (getLexer().isNot(K: AsmToken::Comma)) |
| 909 | return TokError(Msg: "unexpected token in directive" ); |
| 910 | Lex(); |
| 911 | |
| 912 | int64_t Size; |
| 913 | SMLoc SizeLoc = getLexer().getLoc(); |
| 914 | if (getParser().parseAbsoluteExpression(Res&: Size)) |
| 915 | return true; |
| 916 | |
| 917 | int64_t Pow2Alignment = 0; |
| 918 | SMLoc Pow2AlignmentLoc; |
| 919 | if (getLexer().is(K: AsmToken::Comma)) { |
| 920 | Lex(); |
| 921 | Pow2AlignmentLoc = getLexer().getLoc(); |
| 922 | if (getParser().parseAbsoluteExpression(Res&: Pow2Alignment)) |
| 923 | return true; |
| 924 | } |
| 925 | |
| 926 | if (getLexer().isNot(K: AsmToken::EndOfStatement)) |
| 927 | return TokError(Msg: "unexpected token in '.zerofill' directive" ); |
| 928 | |
| 929 | Lex(); |
| 930 | |
| 931 | if (Size < 0) |
| 932 | return Error(L: SizeLoc, Msg: "invalid '.zerofill' directive size, can't be less " |
| 933 | "than zero" ); |
| 934 | |
| 935 | // NOTE: The alignment in the directive is a power of 2 value, the assembler |
| 936 | // may internally end up wanting an alignment in bytes. |
| 937 | // FIXME: Diagnose overflow. |
| 938 | if (Pow2Alignment < 0) |
| 939 | return Error(L: Pow2AlignmentLoc, Msg: "invalid '.zerofill' directive alignment, " |
| 940 | "can't be less than zero" ); |
| 941 | |
| 942 | if (!Sym->isUndefined()) |
| 943 | return Error(L: IDLoc, Msg: "invalid symbol redefinition" ); |
| 944 | |
| 945 | // Create the zerofill Symbol with Size and Pow2Alignment |
| 946 | // |
| 947 | // FIXME: Arch specific. |
| 948 | getStreamer().emitZerofill( |
| 949 | Section: getContext().getMachOSection(Segment, Section, TypeAndAttributes: MachO::S_ZEROFILL, Reserved2: 0, |
| 950 | K: SectionKind::getBSS()), |
| 951 | Symbol: Sym, Size, ByteAlignment: Align(1ULL << Pow2Alignment), Loc: SectionLoc); |
| 952 | |
| 953 | return false; |
| 954 | } |
| 955 | |
| 956 | /// ParseDirectiveDataRegion |
| 957 | /// ::= .data_region [ ( jt8 | jt16 | jt32 ) ] |
| 958 | bool DarwinAsmParser::parseDirectiveDataRegion(StringRef, SMLoc) { |
| 959 | if (getLexer().is(K: AsmToken::EndOfStatement)) { |
| 960 | Lex(); |
| 961 | getStreamer().emitDataRegion(Kind: MCDR_DataRegion); |
| 962 | return false; |
| 963 | } |
| 964 | StringRef RegionType; |
| 965 | SMLoc Loc = getParser().getTok().getLoc(); |
| 966 | if (getParser().parseIdentifier(Res&: RegionType)) |
| 967 | return TokError(Msg: "expected region type after '.data_region' directive" ); |
| 968 | int Kind = StringSwitch<int>(RegionType) |
| 969 | .Case(S: "jt8" , Value: MCDR_DataRegionJT8) |
| 970 | .Case(S: "jt16" , Value: MCDR_DataRegionJT16) |
| 971 | .Case(S: "jt32" , Value: MCDR_DataRegionJT32) |
| 972 | .Default(Value: -1); |
| 973 | if (Kind == -1) |
| 974 | return Error(L: Loc, Msg: "unknown region type in '.data_region' directive" ); |
| 975 | Lex(); |
| 976 | |
| 977 | getStreamer().emitDataRegion(Kind: (MCDataRegionType)Kind); |
| 978 | return false; |
| 979 | } |
| 980 | |
| 981 | /// ParseDirectiveDataRegionEnd |
| 982 | /// ::= .end_data_region |
| 983 | bool DarwinAsmParser::parseDirectiveDataRegionEnd(StringRef, SMLoc) { |
| 984 | if (getLexer().isNot(K: AsmToken::EndOfStatement)) |
| 985 | return TokError(Msg: "unexpected token in '.end_data_region' directive" ); |
| 986 | |
| 987 | Lex(); |
| 988 | getStreamer().emitDataRegion(Kind: MCDR_DataRegionEnd); |
| 989 | return false; |
| 990 | } |
| 991 | |
| 992 | static bool isSDKVersionToken(const AsmToken &Tok) { |
| 993 | return Tok.is(K: AsmToken::Identifier) && Tok.getIdentifier() == "sdk_version" ; |
| 994 | } |
| 995 | |
| 996 | /// parseMajorMinorVersionComponent ::= major, minor |
| 997 | bool DarwinAsmParser::parseMajorMinorVersionComponent(unsigned *Major, |
| 998 | unsigned *Minor, |
| 999 | const char *VersionName) { |
| 1000 | // Get the major version number. |
| 1001 | if (getLexer().isNot(K: AsmToken::Integer)) |
| 1002 | return TokError(Msg: Twine("invalid " ) + VersionName + |
| 1003 | " major version number, integer expected" ); |
| 1004 | int64_t MajorVal = getLexer().getTok().getIntVal(); |
| 1005 | if (MajorVal > 65535 || MajorVal <= 0) |
| 1006 | return TokError(Msg: Twine("invalid " ) + VersionName + " major version number" ); |
| 1007 | *Major = (unsigned)MajorVal; |
| 1008 | Lex(); |
| 1009 | if (getLexer().isNot(K: AsmToken::Comma)) |
| 1010 | return TokError(Msg: Twine(VersionName) + |
| 1011 | " minor version number required, comma expected" ); |
| 1012 | Lex(); |
| 1013 | // Get the minor version number. |
| 1014 | if (getLexer().isNot(K: AsmToken::Integer)) |
| 1015 | return TokError(Msg: Twine("invalid " ) + VersionName + |
| 1016 | " minor version number, integer expected" ); |
| 1017 | int64_t MinorVal = getLexer().getTok().getIntVal(); |
| 1018 | if (MinorVal > 255 || MinorVal < 0) |
| 1019 | return TokError(Msg: Twine("invalid " ) + VersionName + " minor version number" ); |
| 1020 | *Minor = MinorVal; |
| 1021 | Lex(); |
| 1022 | return false; |
| 1023 | } |
| 1024 | |
| 1025 | /// parseOptionalTrailingVersionComponent ::= , version_number |
| 1026 | bool DarwinAsmParser::parseOptionalTrailingVersionComponent( |
| 1027 | unsigned *Component, const char *ComponentName) { |
| 1028 | assert(getLexer().is(AsmToken::Comma) && "comma expected" ); |
| 1029 | Lex(); |
| 1030 | if (getLexer().isNot(K: AsmToken::Integer)) |
| 1031 | return TokError(Msg: Twine("invalid " ) + ComponentName + |
| 1032 | " version number, integer expected" ); |
| 1033 | int64_t Val = getLexer().getTok().getIntVal(); |
| 1034 | if (Val > 255 || Val < 0) |
| 1035 | return TokError(Msg: Twine("invalid " ) + ComponentName + " version number" ); |
| 1036 | *Component = Val; |
| 1037 | Lex(); |
| 1038 | return false; |
| 1039 | } |
| 1040 | |
| 1041 | /// parseVersion ::= parseMajorMinorVersionComponent |
| 1042 | /// parseOptionalTrailingVersionComponent |
| 1043 | bool DarwinAsmParser::parseVersion(unsigned *Major, unsigned *Minor, |
| 1044 | unsigned *Update) { |
| 1045 | if (parseMajorMinorVersionComponent(Major, Minor, VersionName: "OS" )) |
| 1046 | return true; |
| 1047 | |
| 1048 | // Get the update level, if specified |
| 1049 | *Update = 0; |
| 1050 | if (getLexer().is(K: AsmToken::EndOfStatement) || |
| 1051 | isSDKVersionToken(Tok: getLexer().getTok())) |
| 1052 | return false; |
| 1053 | if (getLexer().isNot(K: AsmToken::Comma)) |
| 1054 | return TokError(Msg: "invalid OS update specifier, comma expected" ); |
| 1055 | if (parseOptionalTrailingVersionComponent(Component: Update, ComponentName: "OS update" )) |
| 1056 | return true; |
| 1057 | return false; |
| 1058 | } |
| 1059 | |
| 1060 | bool DarwinAsmParser::parseSDKVersion(VersionTuple &SDKVersion) { |
| 1061 | assert(isSDKVersionToken(getLexer().getTok()) && "expected sdk_version" ); |
| 1062 | Lex(); |
| 1063 | unsigned Major, Minor; |
| 1064 | if (parseMajorMinorVersionComponent(Major: &Major, Minor: &Minor, VersionName: "SDK" )) |
| 1065 | return true; |
| 1066 | SDKVersion = VersionTuple(Major, Minor); |
| 1067 | |
| 1068 | // Get the subminor version, if specified. |
| 1069 | if (getLexer().is(K: AsmToken::Comma)) { |
| 1070 | unsigned Subminor; |
| 1071 | if (parseOptionalTrailingVersionComponent(Component: &Subminor, ComponentName: "SDK subminor" )) |
| 1072 | return true; |
| 1073 | SDKVersion = VersionTuple(Major, Minor, Subminor); |
| 1074 | } |
| 1075 | return false; |
| 1076 | } |
| 1077 | |
| 1078 | void DarwinAsmParser::checkVersion(StringRef Directive, StringRef Arg, |
| 1079 | SMLoc Loc, Triple::OSType ExpectedOS) { |
| 1080 | const Triple &Target = getContext().getTargetTriple(); |
| 1081 | if (Target.getOS() != ExpectedOS) |
| 1082 | Warning(L: Loc, Msg: Twine(Directive) + |
| 1083 | (Arg.empty() ? Twine() : Twine(' ') + Arg) + |
| 1084 | " used while targeting " + Target.getOSName()); |
| 1085 | |
| 1086 | if (LastVersionDirective.isValid()) { |
| 1087 | Warning(L: Loc, Msg: "overriding previous version directive" ); |
| 1088 | Note(L: LastVersionDirective, Msg: "previous definition is here" ); |
| 1089 | } |
| 1090 | LastVersionDirective = Loc; |
| 1091 | } |
| 1092 | |
| 1093 | static Triple::OSType getOSTypeFromMCVM(MCVersionMinType Type) { |
| 1094 | switch (Type) { |
| 1095 | case MCVM_WatchOSVersionMin: return Triple::WatchOS; |
| 1096 | case MCVM_TvOSVersionMin: return Triple::TvOS; |
| 1097 | case MCVM_IOSVersionMin: return Triple::IOS; |
| 1098 | case MCVM_OSXVersionMin: return Triple::MacOSX; |
| 1099 | } |
| 1100 | llvm_unreachable("Invalid mc version min type" ); |
| 1101 | } |
| 1102 | |
| 1103 | /// parseVersionMin |
| 1104 | /// ::= .ios_version_min parseVersion parseSDKVersion |
| 1105 | /// | .macosx_version_min parseVersion parseSDKVersion |
| 1106 | /// | .tvos_version_min parseVersion parseSDKVersion |
| 1107 | /// | .watchos_version_min parseVersion parseSDKVersion |
| 1108 | bool DarwinAsmParser::parseVersionMin(StringRef Directive, SMLoc Loc, |
| 1109 | MCVersionMinType Type) { |
| 1110 | unsigned Major; |
| 1111 | unsigned Minor; |
| 1112 | unsigned Update; |
| 1113 | if (parseVersion(Major: &Major, Minor: &Minor, Update: &Update)) |
| 1114 | return true; |
| 1115 | |
| 1116 | VersionTuple SDKVersion; |
| 1117 | if (isSDKVersionToken(Tok: getLexer().getTok()) && parseSDKVersion(SDKVersion)) |
| 1118 | return true; |
| 1119 | |
| 1120 | if (parseEOL()) |
| 1121 | return addErrorSuffix(Suffix: Twine(" in '" ) + Directive + "' directive" ); |
| 1122 | |
| 1123 | Triple::OSType ExpectedOS = getOSTypeFromMCVM(Type); |
| 1124 | checkVersion(Directive, Arg: StringRef(), Loc, ExpectedOS); |
| 1125 | getStreamer().emitVersionMin(Type, Major, Minor, Update, SDKVersion); |
| 1126 | return false; |
| 1127 | } |
| 1128 | |
| 1129 | static Triple::OSType getOSTypeFromPlatform(MachO::PlatformType Type) { |
| 1130 | switch (Type) { |
| 1131 | case MachO::PLATFORM_UNKNOWN: /* silence warning */ |
| 1132 | break; |
| 1133 | case MachO::PLATFORM_MACOS: return Triple::MacOSX; |
| 1134 | case MachO::PLATFORM_IOS: return Triple::IOS; |
| 1135 | case MachO::PLATFORM_TVOS: return Triple::TvOS; |
| 1136 | case MachO::PLATFORM_WATCHOS: return Triple::WatchOS; |
| 1137 | case MachO::PLATFORM_XROS: return Triple::XROS; |
| 1138 | case MachO::PLATFORM_BRIDGEOS: /* silence warning */ break; |
| 1139 | case MachO::PLATFORM_DRIVERKIT: |
| 1140 | return Triple::DriverKit; |
| 1141 | case MachO::PLATFORM_MACCATALYST: return Triple::IOS; |
| 1142 | case MachO::PLATFORM_IOSSIMULATOR: /* silence warning */ break; |
| 1143 | case MachO::PLATFORM_TVOSSIMULATOR: /* silence warning */ break; |
| 1144 | case MachO::PLATFORM_WATCHOSSIMULATOR: /* silence warning */ break; |
| 1145 | case MachO::PLATFORM_XROS_SIMULATOR: /* silence warning */ break; |
| 1146 | } |
| 1147 | llvm_unreachable("Invalid mach-o platform type" ); |
| 1148 | } |
| 1149 | |
| 1150 | /// parseBuildVersion |
| 1151 | /// ::= .build_version (macos|ios|tvos|watchos), parseVersion parseSDKVersion |
| 1152 | bool DarwinAsmParser::parseBuildVersion(StringRef Directive, SMLoc Loc) { |
| 1153 | StringRef PlatformName; |
| 1154 | SMLoc PlatformLoc = getTok().getLoc(); |
| 1155 | if (getParser().parseIdentifier(Res&: PlatformName)) |
| 1156 | return TokError(Msg: "platform name expected" ); |
| 1157 | |
| 1158 | unsigned Platform = StringSwitch<unsigned>(PlatformName) |
| 1159 | #define PLATFORM(platform, id, name, build_name, target, tapi_target, \ |
| 1160 | marketing) \ |
| 1161 | .Case(#build_name, MachO::PLATFORM_##platform) |
| 1162 | #include "llvm/BinaryFormat/MachO.def" |
| 1163 | .Default(Value: MachO::PLATFORM_UNKNOWN); |
| 1164 | |
| 1165 | if (Platform == MachO::PLATFORM_UNKNOWN) |
| 1166 | return Error(L: PlatformLoc, Msg: "unknown platform name" ); |
| 1167 | |
| 1168 | if (getLexer().isNot(K: AsmToken::Comma)) |
| 1169 | return TokError(Msg: "version number required, comma expected" ); |
| 1170 | Lex(); |
| 1171 | |
| 1172 | unsigned Major; |
| 1173 | unsigned Minor; |
| 1174 | unsigned Update; |
| 1175 | if (parseVersion(Major: &Major, Minor: &Minor, Update: &Update)) |
| 1176 | return true; |
| 1177 | |
| 1178 | VersionTuple SDKVersion; |
| 1179 | if (isSDKVersionToken(Tok: getLexer().getTok()) && parseSDKVersion(SDKVersion)) |
| 1180 | return true; |
| 1181 | |
| 1182 | if (parseEOL()) |
| 1183 | return addErrorSuffix(Suffix: " in '.build_version' directive" ); |
| 1184 | |
| 1185 | Triple::OSType ExpectedOS |
| 1186 | = getOSTypeFromPlatform(Type: (MachO::PlatformType)Platform); |
| 1187 | checkVersion(Directive, Arg: PlatformName, Loc, ExpectedOS); |
| 1188 | getStreamer().emitBuildVersion(Platform, Major, Minor, Update, SDKVersion); |
| 1189 | return false; |
| 1190 | } |
| 1191 | |
| 1192 | /// parseTargetTripleDirective |
| 1193 | /// ::= .target_triple parseTargetTriple |
| 1194 | bool DarwinAsmParser::parseTargetTripleDirective(StringRef Directive, |
| 1195 | SMLoc Loc) { |
| 1196 | StringRef TargetTriple; |
| 1197 | SMLoc TargetTripleLoc = getTok().getLoc(); |
| 1198 | if (getParser().parseIdentifier(Res&: TargetTriple)) |
| 1199 | return TokError(Msg: "target triple expected" ); |
| 1200 | std::string NormalizedTriple = Triple::normalize(Str: TargetTriple); |
| 1201 | if (!Triple(NormalizedTriple).isOSDarwin()) |
| 1202 | return Error(L: TargetTripleLoc, Msg: "non-Darwin target triple" ); |
| 1203 | |
| 1204 | if (parseEOL()) |
| 1205 | return addErrorSuffix(Suffix: " in '.target_triple' directive" ); |
| 1206 | |
| 1207 | getStreamer().emitTargetTriple(TargetTriple: NormalizedTriple); |
| 1208 | return false; |
| 1209 | } |
| 1210 | |
| 1211 | /// parseDirectiveCGProfile |
| 1212 | /// ::= .cg_profile from, to, count |
| 1213 | bool DarwinAsmParser::parseDirectiveCGProfile(StringRef S, SMLoc Loc) { |
| 1214 | return MCAsmParserExtension::parseDirectiveCGProfile(S, Loc); |
| 1215 | } |
| 1216 | |
| 1217 | MCAsmParserExtension *llvm::createDarwinAsmParser() { |
| 1218 | return new DarwinAsmParser; |
| 1219 | } |
| 1220 | |