10fca7043efccb8cc319563bc93b0128846d6d1c
[oota-llvm.git] / lib / MC / MCParser / DarwinAsmParser.cpp
1 //===- DarwinAsmParser.cpp - Darwin (Mach-O) Assembly Parser --------------===//
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/MCParser/MCAsmParserExtension.h"
11 #include "llvm/ADT/StringRef.h"
12 #include "llvm/ADT/StringSwitch.h"
13 #include "llvm/ADT/Twine.h"
14 #include "llvm/MC/MCContext.h"
15 #include "llvm/MC/MCParser/MCAsmLexer.h"
16 #include "llvm/MC/MCParser/MCAsmParser.h"
17 #include "llvm/MC/MCSectionMachO.h"
18 #include "llvm/MC/MCStreamer.h"
19 #include "llvm/MC/MCSymbol.h"
20 #include "llvm/Support/MemoryBuffer.h"
21 #include "llvm/Support/SourceMgr.h"
22 using namespace llvm;
23
24 namespace {
25
26 /// \brief Implementation of directive handling which is shared across all
27 /// Darwin targets.
28 class DarwinAsmParser : public MCAsmParserExtension {
29   template<bool (DarwinAsmParser::*HandlerMethod)(StringRef, SMLoc)>
30   void addDirectiveHandler(StringRef Directive) {
31     MCAsmParser::ExtensionDirectiveHandler Handler = std::make_pair(
32         this, HandleDirective<DarwinAsmParser, HandlerMethod>);
33     getParser().addDirectiveHandler(Directive, Handler);
34   }
35
36   bool ParseSectionSwitch(const char *Segment, const char *Section,
37                           unsigned TAA = 0, unsigned ImplicitAlign = 0,
38                           unsigned StubSize = 0);
39
40 public:
41   DarwinAsmParser() {}
42
43   virtual void Initialize(MCAsmParser &Parser) {
44     // Call the base implementation.
45     this->MCAsmParserExtension::Initialize(Parser);
46
47     addDirectiveHandler<&DarwinAsmParser::ParseDirectiveDesc>(".desc");
48     addDirectiveHandler<&DarwinAsmParser::ParseDirectiveIndirectSymbol>(
49       ".indirect_symbol");
50     addDirectiveHandler<&DarwinAsmParser::ParseDirectiveLsym>(".lsym");
51     addDirectiveHandler<&DarwinAsmParser::ParseDirectiveSubsectionsViaSymbols>(
52       ".subsections_via_symbols");
53     addDirectiveHandler<&DarwinAsmParser::ParseDirectiveDumpOrLoad>(".dump");
54     addDirectiveHandler<&DarwinAsmParser::ParseDirectiveDumpOrLoad>(".load");
55     addDirectiveHandler<&DarwinAsmParser::ParseDirectiveSection>(".section");
56     addDirectiveHandler<&DarwinAsmParser::ParseDirectivePushSection>(
57       ".pushsection");
58     addDirectiveHandler<&DarwinAsmParser::ParseDirectivePopSection>(
59       ".popsection");
60     addDirectiveHandler<&DarwinAsmParser::ParseDirectivePrevious>(".previous");
61     addDirectiveHandler<&DarwinAsmParser::ParseDirectiveSecureLogUnique>(
62       ".secure_log_unique");
63     addDirectiveHandler<&DarwinAsmParser::ParseDirectiveSecureLogReset>(
64       ".secure_log_reset");
65     addDirectiveHandler<&DarwinAsmParser::ParseDirectiveTBSS>(".tbss");
66     addDirectiveHandler<&DarwinAsmParser::ParseDirectiveZerofill>(".zerofill");
67
68     addDirectiveHandler<&DarwinAsmParser::ParseDirectiveDataRegion>(
69       ".data_region");
70     addDirectiveHandler<&DarwinAsmParser::ParseDirectiveDataRegionEnd>(
71       ".end_data_region");
72
73     // Special section directives.
74     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveBss>(".bss");
75     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveConst>(".const");
76     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveConstData>(
77       ".const_data");
78     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveConstructor>(
79       ".constructor");
80     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveCString>(
81       ".cstring");
82     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveData>(".data");
83     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveDestructor>(
84       ".destructor");
85     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveDyld>(".dyld");
86     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveFVMLibInit0>(
87       ".fvmlib_init0");
88     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveFVMLibInit1>(
89       ".fvmlib_init1");
90     addDirectiveHandler<
91       &DarwinAsmParser::ParseSectionDirectiveLazySymbolPointers>(
92         ".lazy_symbol_pointer");
93     addDirectiveHandler<&DarwinAsmParser::ParseDirectiveLinkerOption>(
94       ".linker_option");
95     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveLiteral16>(
96       ".literal16");
97     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveLiteral4>(
98       ".literal4");
99     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveLiteral8>(
100       ".literal8");
101     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveModInitFunc>(
102       ".mod_init_func");
103     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveModTermFunc>(
104       ".mod_term_func");
105     addDirectiveHandler<
106       &DarwinAsmParser::ParseSectionDirectiveNonLazySymbolPointers>(
107         ".non_lazy_symbol_pointer");
108     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCCatClsMeth>(
109       ".objc_cat_cls_meth");
110     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCCatInstMeth>(
111       ".objc_cat_inst_meth");
112     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCCategory>(
113       ".objc_category");
114     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCClass>(
115       ".objc_class");
116     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCClassNames>(
117       ".objc_class_names");
118     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCClassVars>(
119       ".objc_class_vars");
120     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCClsMeth>(
121       ".objc_cls_meth");
122     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCClsRefs>(
123       ".objc_cls_refs");
124     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCInstMeth>(
125       ".objc_inst_meth");
126     addDirectiveHandler<
127       &DarwinAsmParser::ParseSectionDirectiveObjCInstanceVars>(
128         ".objc_instance_vars");
129     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCMessageRefs>(
130       ".objc_message_refs");
131     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCMetaClass>(
132       ".objc_meta_class");
133     addDirectiveHandler<
134       &DarwinAsmParser::ParseSectionDirectiveObjCMethVarNames>(
135         ".objc_meth_var_names");
136     addDirectiveHandler<
137       &DarwinAsmParser::ParseSectionDirectiveObjCMethVarTypes>(
138         ".objc_meth_var_types");
139     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCModuleInfo>(
140       ".objc_module_info");
141     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCProtocol>(
142       ".objc_protocol");
143     addDirectiveHandler<
144       &DarwinAsmParser::ParseSectionDirectiveObjCSelectorStrs>(
145         ".objc_selector_strs");
146     addDirectiveHandler<
147       &DarwinAsmParser::ParseSectionDirectiveObjCStringObject>(
148         ".objc_string_object");
149     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCSymbols>(
150       ".objc_symbols");
151     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectivePICSymbolStub>(
152       ".picsymbol_stub");
153     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveStaticConst>(
154       ".static_const");
155     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveStaticData>(
156       ".static_data");
157     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveSymbolStub>(
158       ".symbol_stub");
159     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveTData>(".tdata");
160     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveText>(".text");
161     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveThreadInitFunc>(
162       ".thread_init_func");
163     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveTLV>(".tlv");
164
165     addDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveIdent>(".ident");
166   }
167
168   bool ParseDirectiveDesc(StringRef, SMLoc);
169   bool ParseDirectiveIndirectSymbol(StringRef, SMLoc);
170   bool ParseDirectiveDumpOrLoad(StringRef, SMLoc);
171   bool ParseDirectiveLsym(StringRef, SMLoc);
172   bool ParseDirectiveLinkerOption(StringRef, SMLoc);
173   bool ParseDirectiveSection(StringRef, SMLoc);
174   bool ParseDirectivePushSection(StringRef, SMLoc);
175   bool ParseDirectivePopSection(StringRef, SMLoc);
176   bool ParseDirectivePrevious(StringRef, SMLoc);
177   bool ParseDirectiveSecureLogReset(StringRef, SMLoc);
178   bool ParseDirectiveSecureLogUnique(StringRef, SMLoc);
179   bool ParseDirectiveSubsectionsViaSymbols(StringRef, SMLoc);
180   bool ParseDirectiveTBSS(StringRef, SMLoc);
181   bool ParseDirectiveZerofill(StringRef, SMLoc);
182   bool ParseDirectiveDataRegion(StringRef, SMLoc);
183   bool ParseDirectiveDataRegionEnd(StringRef, SMLoc);
184
185   // Named Section Directive
186   bool ParseSectionDirectiveBss(StringRef, SMLoc) {
187     return ParseSectionSwitch("__DATA", "__bss");
188   }
189
190   bool ParseSectionDirectiveConst(StringRef, SMLoc) {
191     return ParseSectionSwitch("__TEXT", "__const");
192   }
193   bool ParseSectionDirectiveStaticConst(StringRef, SMLoc) {
194     return ParseSectionSwitch("__TEXT", "__static_const");
195   }
196   bool ParseSectionDirectiveCString(StringRef, SMLoc) {
197     return ParseSectionSwitch("__TEXT","__cstring",
198                               MachO::S_CSTRING_LITERALS);
199   }
200   bool ParseSectionDirectiveLiteral4(StringRef, SMLoc) {
201     return ParseSectionSwitch("__TEXT", "__literal4",
202                               MachO::S_4BYTE_LITERALS, 4);
203   }
204   bool ParseSectionDirectiveLiteral8(StringRef, SMLoc) {
205     return ParseSectionSwitch("__TEXT", "__literal8",
206                               MachO::S_8BYTE_LITERALS, 8);
207   }
208   bool ParseSectionDirectiveLiteral16(StringRef, SMLoc) {
209     return ParseSectionSwitch("__TEXT","__literal16",
210                               MachO::S_16BYTE_LITERALS, 16);
211   }
212   bool ParseSectionDirectiveConstructor(StringRef, SMLoc) {
213     return ParseSectionSwitch("__TEXT","__constructor");
214   }
215   bool ParseSectionDirectiveDestructor(StringRef, SMLoc) {
216     return ParseSectionSwitch("__TEXT","__destructor");
217   }
218   bool ParseSectionDirectiveFVMLibInit0(StringRef, SMLoc) {
219     return ParseSectionSwitch("__TEXT","__fvmlib_init0");
220   }
221   bool ParseSectionDirectiveFVMLibInit1(StringRef, SMLoc) {
222     return ParseSectionSwitch("__TEXT","__fvmlib_init1");
223   }
224   bool ParseSectionDirectiveSymbolStub(StringRef, SMLoc) {
225     return ParseSectionSwitch("__TEXT","__symbol_stub",
226                               MachO::S_SYMBOL_STUBS |
227                               MachO::S_ATTR_PURE_INSTRUCTIONS,
228                               // FIXME: Different on PPC and ARM.
229                               0, 16);
230   }
231   bool ParseSectionDirectivePICSymbolStub(StringRef, SMLoc) {
232     return ParseSectionSwitch("__TEXT","__picsymbol_stub",
233                               MachO::S_SYMBOL_STUBS |
234                               MachO::S_ATTR_PURE_INSTRUCTIONS, 0, 26);
235   }
236   bool ParseSectionDirectiveData(StringRef, SMLoc) {
237     return ParseSectionSwitch("__DATA", "__data");
238   }
239   bool ParseSectionDirectiveStaticData(StringRef, SMLoc) {
240     return ParseSectionSwitch("__DATA", "__static_data");
241   }
242   bool ParseSectionDirectiveNonLazySymbolPointers(StringRef, SMLoc) {
243     return ParseSectionSwitch("__DATA", "__nl_symbol_ptr",
244                               MachO::S_NON_LAZY_SYMBOL_POINTERS, 4);
245   }
246   bool ParseSectionDirectiveLazySymbolPointers(StringRef, SMLoc) {
247     return ParseSectionSwitch("__DATA", "__la_symbol_ptr",
248                               MachO::S_LAZY_SYMBOL_POINTERS, 4);
249   }
250   bool ParseSectionDirectiveDyld(StringRef, SMLoc) {
251     return ParseSectionSwitch("__DATA", "__dyld");
252   }
253   bool ParseSectionDirectiveModInitFunc(StringRef, SMLoc) {
254     return ParseSectionSwitch("__DATA", "__mod_init_func",
255                               MachO::S_MOD_INIT_FUNC_POINTERS, 4);
256   }
257   bool ParseSectionDirectiveModTermFunc(StringRef, SMLoc) {
258     return ParseSectionSwitch("__DATA", "__mod_term_func",
259                               MachO::S_MOD_TERM_FUNC_POINTERS, 4);
260   }
261   bool ParseSectionDirectiveConstData(StringRef, SMLoc) {
262     return ParseSectionSwitch("__DATA", "__const");
263   }
264   bool ParseSectionDirectiveObjCClass(StringRef, SMLoc) {
265     return ParseSectionSwitch("__OBJC", "__class",
266                               MachO::S_ATTR_NO_DEAD_STRIP);
267   }
268   bool ParseSectionDirectiveObjCMetaClass(StringRef, SMLoc) {
269     return ParseSectionSwitch("__OBJC", "__meta_class",
270                               MachO::S_ATTR_NO_DEAD_STRIP);
271   }
272   bool ParseSectionDirectiveObjCCatClsMeth(StringRef, SMLoc) {
273     return ParseSectionSwitch("__OBJC", "__cat_cls_meth",
274                               MachO::S_ATTR_NO_DEAD_STRIP);
275   }
276   bool ParseSectionDirectiveObjCCatInstMeth(StringRef, SMLoc) {
277     return ParseSectionSwitch("__OBJC", "__cat_inst_meth",
278                               MachO::S_ATTR_NO_DEAD_STRIP);
279   }
280   bool ParseSectionDirectiveObjCProtocol(StringRef, SMLoc) {
281     return ParseSectionSwitch("__OBJC", "__protocol",
282                               MachO::S_ATTR_NO_DEAD_STRIP);
283   }
284   bool ParseSectionDirectiveObjCStringObject(StringRef, SMLoc) {
285     return ParseSectionSwitch("__OBJC", "__string_object",
286                               MachO::S_ATTR_NO_DEAD_STRIP);
287   }
288   bool ParseSectionDirectiveObjCClsMeth(StringRef, SMLoc) {
289     return ParseSectionSwitch("__OBJC", "__cls_meth",
290                               MachO::S_ATTR_NO_DEAD_STRIP);
291   }
292   bool ParseSectionDirectiveObjCInstMeth(StringRef, SMLoc) {
293     return ParseSectionSwitch("__OBJC", "__inst_meth",
294                               MachO::S_ATTR_NO_DEAD_STRIP);
295   }
296   bool ParseSectionDirectiveObjCClsRefs(StringRef, SMLoc) {
297     return ParseSectionSwitch("__OBJC", "__cls_refs",
298                               MachO::S_ATTR_NO_DEAD_STRIP |
299                               MachO::S_LITERAL_POINTERS, 4);
300   }
301   bool ParseSectionDirectiveObjCMessageRefs(StringRef, SMLoc) {
302     return ParseSectionSwitch("__OBJC", "__message_refs",
303                               MachO::S_ATTR_NO_DEAD_STRIP |
304                               MachO::S_LITERAL_POINTERS, 4);
305   }
306   bool ParseSectionDirectiveObjCSymbols(StringRef, SMLoc) {
307     return ParseSectionSwitch("__OBJC", "__symbols",
308                               MachO::S_ATTR_NO_DEAD_STRIP);
309   }
310   bool ParseSectionDirectiveObjCCategory(StringRef, SMLoc) {
311     return ParseSectionSwitch("__OBJC", "__category",
312                               MachO::S_ATTR_NO_DEAD_STRIP);
313   }
314   bool ParseSectionDirectiveObjCClassVars(StringRef, SMLoc) {
315     return ParseSectionSwitch("__OBJC", "__class_vars",
316                               MachO::S_ATTR_NO_DEAD_STRIP);
317   }
318   bool ParseSectionDirectiveObjCInstanceVars(StringRef, SMLoc) {
319     return ParseSectionSwitch("__OBJC", "__instance_vars",
320                               MachO::S_ATTR_NO_DEAD_STRIP);
321   }
322   bool ParseSectionDirectiveObjCModuleInfo(StringRef, SMLoc) {
323     return ParseSectionSwitch("__OBJC", "__module_info",
324                               MachO::S_ATTR_NO_DEAD_STRIP);
325   }
326   bool ParseSectionDirectiveObjCClassNames(StringRef, SMLoc) {
327     return ParseSectionSwitch("__TEXT", "__cstring",
328                               MachO::S_CSTRING_LITERALS);
329   }
330   bool ParseSectionDirectiveObjCMethVarTypes(StringRef, SMLoc) {
331     return ParseSectionSwitch("__TEXT", "__cstring",
332                               MachO::S_CSTRING_LITERALS);
333   }
334   bool ParseSectionDirectiveObjCMethVarNames(StringRef, SMLoc) {
335     return ParseSectionSwitch("__TEXT", "__cstring",
336                               MachO::S_CSTRING_LITERALS);
337   }
338   bool ParseSectionDirectiveObjCSelectorStrs(StringRef, SMLoc) {
339     return ParseSectionSwitch("__OBJC", "__selector_strs",
340                               MachO::S_CSTRING_LITERALS);
341   }
342   bool ParseSectionDirectiveTData(StringRef, SMLoc) {
343     return ParseSectionSwitch("__DATA", "__thread_data",
344                               MachO::S_THREAD_LOCAL_REGULAR);
345   }
346   bool ParseSectionDirectiveText(StringRef, SMLoc) {
347     return ParseSectionSwitch("__TEXT", "__text",
348                               MachO::S_ATTR_PURE_INSTRUCTIONS);
349   }
350   bool ParseSectionDirectiveTLV(StringRef, SMLoc) {
351     return ParseSectionSwitch("__DATA", "__thread_vars",
352                               MachO::S_THREAD_LOCAL_VARIABLES);
353   }
354   bool ParseSectionDirectiveIdent(StringRef, SMLoc) {
355     // Darwin silently ignores the .ident directive.
356     getParser().eatToEndOfStatement();
357     return false;
358   }
359   bool ParseSectionDirectiveThreadInitFunc(StringRef, SMLoc) {
360     return ParseSectionSwitch("__DATA", "__thread_init",
361                          MachO::S_THREAD_LOCAL_INIT_FUNCTION_POINTERS);
362   }
363
364 };
365
366 } // end anonymous namespace
367
368 bool DarwinAsmParser::ParseSectionSwitch(const char *Segment,
369                                          const char *Section,
370                                          unsigned TAA, unsigned Align,
371                                          unsigned StubSize) {
372   if (getLexer().isNot(AsmToken::EndOfStatement))
373     return TokError("unexpected token in section switching directive");
374   Lex();
375
376   // FIXME: Arch specific.
377   bool isText = TAA & MachO::S_ATTR_PURE_INSTRUCTIONS;
378   getStreamer().SwitchSection(getContext().getMachOSection(
379                                 Segment, Section, TAA, StubSize,
380                                 isText ? SectionKind::getText()
381                                        : SectionKind::getDataRel()));
382
383   // Set the implicit alignment, if any.
384   //
385   // FIXME: This isn't really what 'as' does; I think it just uses the implicit
386   // alignment on the section (e.g., if one manually inserts bytes into the
387   // section, then just issuing the section switch directive will not realign
388   // the section. However, this is arguably more reasonable behavior, and there
389   // is no good reason for someone to intentionally emit incorrectly sized
390   // values into the implicitly aligned sections.
391   if (Align)
392     getStreamer().EmitValueToAlignment(Align);
393
394   return false;
395 }
396
397 /// ParseDirectiveDesc
398 ///  ::= .desc identifier , expression
399 bool DarwinAsmParser::ParseDirectiveDesc(StringRef, SMLoc) {
400   StringRef Name;
401   if (getParser().parseIdentifier(Name))
402     return TokError("expected identifier in directive");
403
404   // Handle the identifier as the key symbol.
405   MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
406
407   if (getLexer().isNot(AsmToken::Comma))
408     return TokError("unexpected token in '.desc' directive");
409   Lex();
410
411   int64_t DescValue;
412   if (getParser().parseAbsoluteExpression(DescValue))
413     return true;
414
415   if (getLexer().isNot(AsmToken::EndOfStatement))
416     return TokError("unexpected token in '.desc' directive");
417
418   Lex();
419
420   // Set the n_desc field of this Symbol to this DescValue
421   getStreamer().EmitSymbolDesc(Sym, DescValue);
422
423   return false;
424 }
425
426 /// ParseDirectiveIndirectSymbol
427 ///  ::= .indirect_symbol identifier
428 bool DarwinAsmParser::ParseDirectiveIndirectSymbol(StringRef, SMLoc Loc) {
429   const MCSectionMachO *Current = static_cast<const MCSectionMachO*>(
430                                        getStreamer().getCurrentSection().first);
431   MachO::SectionType SectionType = Current->getType();
432   if (SectionType != MachO::S_NON_LAZY_SYMBOL_POINTERS &&
433       SectionType != MachO::S_LAZY_SYMBOL_POINTERS &&
434       SectionType != MachO::S_SYMBOL_STUBS)
435     return Error(Loc, "indirect symbol not in a symbol pointer or stub "
436                       "section");
437
438   StringRef Name;
439   if (getParser().parseIdentifier(Name))
440     return TokError("expected identifier in .indirect_symbol directive");
441
442   MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
443
444   // Assembler local symbols don't make any sense here. Complain loudly.
445   if (Sym->isTemporary())
446     return TokError("non-local symbol required in directive");
447
448   if (!getStreamer().EmitSymbolAttribute(Sym, MCSA_IndirectSymbol))
449     return TokError("unable to emit indirect symbol attribute for: " + Name);
450
451   if (getLexer().isNot(AsmToken::EndOfStatement))
452     return TokError("unexpected token in '.indirect_symbol' directive");
453
454   Lex();
455
456   return false;
457 }
458
459 /// ParseDirectiveDumpOrLoad
460 ///  ::= ( .dump | .load ) "filename"
461 bool DarwinAsmParser::ParseDirectiveDumpOrLoad(StringRef Directive,
462                                                SMLoc IDLoc) {
463   bool IsDump = Directive == ".dump";
464   if (getLexer().isNot(AsmToken::String))
465     return TokError("expected string in '.dump' or '.load' directive");
466
467   Lex();
468
469   if (getLexer().isNot(AsmToken::EndOfStatement))
470     return TokError("unexpected token in '.dump' or '.load' directive");
471
472   Lex();
473
474   // FIXME: If/when .dump and .load are implemented they will be done in the
475   // the assembly parser and not have any need for an MCStreamer API.
476   if (IsDump)
477     return Warning(IDLoc, "ignoring directive .dump for now");
478   else
479     return Warning(IDLoc, "ignoring directive .load for now");
480 }
481
482 /// ParseDirectiveLinkerOption
483 ///  ::= .linker_option "string" ( , "string" )*
484 bool DarwinAsmParser::ParseDirectiveLinkerOption(StringRef IDVal, SMLoc) {
485   SmallVector<std::string, 4> Args;
486   for (;;) {
487     if (getLexer().isNot(AsmToken::String))
488       return TokError("expected string in '" + Twine(IDVal) + "' directive");
489
490     std::string Data;
491     if (getParser().parseEscapedString(Data))
492       return true;
493
494     Args.push_back(Data);
495
496     Lex();
497     if (getLexer().is(AsmToken::EndOfStatement))
498       break;
499
500     if (getLexer().isNot(AsmToken::Comma))
501       return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
502     Lex();
503   }
504
505   getStreamer().EmitLinkerOptions(Args);
506   return false;
507 }
508
509 /// ParseDirectiveLsym
510 ///  ::= .lsym identifier , expression
511 bool DarwinAsmParser::ParseDirectiveLsym(StringRef, SMLoc) {
512   StringRef Name;
513   if (getParser().parseIdentifier(Name))
514     return TokError("expected identifier in directive");
515
516   // Handle the identifier as the key symbol.
517   MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
518
519   if (getLexer().isNot(AsmToken::Comma))
520     return TokError("unexpected token in '.lsym' directive");
521   Lex();
522
523   const MCExpr *Value;
524   if (getParser().parseExpression(Value))
525     return true;
526
527   if (getLexer().isNot(AsmToken::EndOfStatement))
528     return TokError("unexpected token in '.lsym' directive");
529
530   Lex();
531
532   // We don't currently support this directive.
533   //
534   // FIXME: Diagnostic location!
535   (void) Sym;
536   return TokError("directive '.lsym' is unsupported");
537 }
538
539 /// ParseDirectiveSection:
540 ///   ::= .section identifier (',' identifier)*
541 bool DarwinAsmParser::ParseDirectiveSection(StringRef, SMLoc) {
542   SMLoc Loc = getLexer().getLoc();
543
544   StringRef SectionName;
545   if (getParser().parseIdentifier(SectionName))
546     return Error(Loc, "expected identifier after '.section' directive");
547
548   // Verify there is a following comma.
549   if (!getLexer().is(AsmToken::Comma))
550     return TokError("unexpected token in '.section' directive");
551
552   std::string SectionSpec = SectionName;
553   SectionSpec += ",";
554
555   // Add all the tokens until the end of the line, ParseSectionSpecifier will
556   // handle this.
557   StringRef EOL = getLexer().LexUntilEndOfStatement();
558   SectionSpec.append(EOL.begin(), EOL.end());
559
560   Lex();
561   if (getLexer().isNot(AsmToken::EndOfStatement))
562     return TokError("unexpected token in '.section' directive");
563   Lex();
564
565
566   StringRef Segment, Section;
567   unsigned StubSize;
568   unsigned TAA;
569   bool TAAParsed;
570   std::string ErrorStr =
571     MCSectionMachO::ParseSectionSpecifier(SectionSpec, Segment, Section,
572                                           TAA, TAAParsed, StubSize);
573
574   if (!ErrorStr.empty())
575     return Error(Loc, ErrorStr.c_str());
576
577   // FIXME: Arch specific.
578   bool isText = Segment == "__TEXT";  // FIXME: Hack.
579   getStreamer().SwitchSection(getContext().getMachOSection(
580                                 Segment, Section, TAA, StubSize,
581                                 isText ? SectionKind::getText()
582                                 : SectionKind::getDataRel()));
583   return false;
584 }
585
586 /// ParseDirectivePushSection:
587 ///   ::= .pushsection identifier (',' identifier)*
588 bool DarwinAsmParser::ParseDirectivePushSection(StringRef S, SMLoc Loc) {
589   getStreamer().PushSection();
590
591   if (ParseDirectiveSection(S, Loc)) {
592     getStreamer().PopSection();
593     return true;
594   }
595
596   return false;
597 }
598
599 /// ParseDirectivePopSection:
600 ///   ::= .popsection
601 bool DarwinAsmParser::ParseDirectivePopSection(StringRef, SMLoc) {
602   if (!getStreamer().PopSection())
603     return TokError(".popsection without corresponding .pushsection");
604   return false;
605 }
606
607 /// ParseDirectivePrevious:
608 ///   ::= .previous
609 bool DarwinAsmParser::ParseDirectivePrevious(StringRef DirName, SMLoc) {
610   MCSectionSubPair PreviousSection = getStreamer().getPreviousSection();
611   if (PreviousSection.first == NULL)
612       return TokError(".previous without corresponding .section");
613   getStreamer().SwitchSection(PreviousSection.first, PreviousSection.second);
614   return false;
615 }
616
617 /// ParseDirectiveSecureLogUnique
618 ///  ::= .secure_log_unique ... message ...
619 bool DarwinAsmParser::ParseDirectiveSecureLogUnique(StringRef, SMLoc IDLoc) {
620   StringRef LogMessage = getParser().parseStringToEndOfStatement();
621   if (getLexer().isNot(AsmToken::EndOfStatement))
622     return TokError("unexpected token in '.secure_log_unique' directive");
623
624   if (getContext().getSecureLogUsed() != false)
625     return Error(IDLoc, ".secure_log_unique specified multiple times");
626
627   // Get the secure log path.
628   const char *SecureLogFile = getContext().getSecureLogFile();
629   if (SecureLogFile == NULL)
630     return Error(IDLoc, ".secure_log_unique used but AS_SECURE_LOG_FILE "
631                  "environment variable unset.");
632
633   // Open the secure log file if we haven't already.
634   raw_ostream *OS = getContext().getSecureLog();
635   if (OS == NULL) {
636     std::string Err;
637     OS = new raw_fd_ostream(SecureLogFile, Err,
638                             sys::fs::F_Append | sys::fs::F_Text);
639     if (!Err.empty()) {
640        delete OS;
641        return Error(IDLoc, Twine("can't open secure log file: ") +
642                     SecureLogFile + " (" + Err + ")");
643     }
644     getContext().setSecureLog(OS);
645   }
646
647   // Write the message.
648   int CurBuf = getSourceManager().FindBufferContainingLoc(IDLoc);
649   *OS << getSourceManager().getBufferInfo(CurBuf).Buffer->getBufferIdentifier()
650       << ":" << getSourceManager().FindLineNumber(IDLoc, CurBuf) << ":"
651       << LogMessage + "\n";
652
653   getContext().setSecureLogUsed(true);
654
655   return false;
656 }
657
658 /// ParseDirectiveSecureLogReset
659 ///  ::= .secure_log_reset
660 bool DarwinAsmParser::ParseDirectiveSecureLogReset(StringRef, SMLoc IDLoc) {
661   if (getLexer().isNot(AsmToken::EndOfStatement))
662     return TokError("unexpected token in '.secure_log_reset' directive");
663
664   Lex();
665
666   getContext().setSecureLogUsed(false);
667
668   return false;
669 }
670
671 /// ParseDirectiveSubsectionsViaSymbols
672 ///  ::= .subsections_via_symbols
673 bool DarwinAsmParser::ParseDirectiveSubsectionsViaSymbols(StringRef, SMLoc) {
674   if (getLexer().isNot(AsmToken::EndOfStatement))
675     return TokError("unexpected token in '.subsections_via_symbols' directive");
676
677   Lex();
678
679   getStreamer().EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
680
681   return false;
682 }
683
684 /// ParseDirectiveTBSS
685 ///  ::= .tbss identifier, size, align
686 bool DarwinAsmParser::ParseDirectiveTBSS(StringRef, SMLoc) {
687   SMLoc IDLoc = getLexer().getLoc();
688   StringRef Name;
689   if (getParser().parseIdentifier(Name))
690     return TokError("expected identifier in directive");
691
692   // Handle the identifier as the key symbol.
693   MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
694
695   if (getLexer().isNot(AsmToken::Comma))
696     return TokError("unexpected token in directive");
697   Lex();
698
699   int64_t Size;
700   SMLoc SizeLoc = getLexer().getLoc();
701   if (getParser().parseAbsoluteExpression(Size))
702     return true;
703
704   int64_t Pow2Alignment = 0;
705   SMLoc Pow2AlignmentLoc;
706   if (getLexer().is(AsmToken::Comma)) {
707     Lex();
708     Pow2AlignmentLoc = getLexer().getLoc();
709     if (getParser().parseAbsoluteExpression(Pow2Alignment))
710       return true;
711   }
712
713   if (getLexer().isNot(AsmToken::EndOfStatement))
714     return TokError("unexpected token in '.tbss' directive");
715
716   Lex();
717
718   if (Size < 0)
719     return Error(SizeLoc, "invalid '.tbss' directive size, can't be less than"
720                  "zero");
721
722   // FIXME: Diagnose overflow.
723   if (Pow2Alignment < 0)
724     return Error(Pow2AlignmentLoc, "invalid '.tbss' alignment, can't be less"
725                  "than zero");
726
727   if (!Sym->isUndefined())
728     return Error(IDLoc, "invalid symbol redefinition");
729
730   getStreamer().EmitTBSSSymbol(getContext().getMachOSection(
731                                  "__DATA", "__thread_bss",
732                                  MachO::S_THREAD_LOCAL_ZEROFILL,
733                                  0, SectionKind::getThreadBSS()),
734                                Sym, Size, 1 << Pow2Alignment);
735
736   return false;
737 }
738
739 /// ParseDirectiveZerofill
740 ///  ::= .zerofill segname , sectname [, identifier , size_expression [
741 ///      , align_expression ]]
742 bool DarwinAsmParser::ParseDirectiveZerofill(StringRef, SMLoc) {
743   StringRef Segment;
744   if (getParser().parseIdentifier(Segment))
745     return TokError("expected segment name after '.zerofill' directive");
746
747   if (getLexer().isNot(AsmToken::Comma))
748     return TokError("unexpected token in directive");
749   Lex();
750
751   StringRef Section;
752   if (getParser().parseIdentifier(Section))
753     return TokError("expected section name after comma in '.zerofill' "
754                     "directive");
755
756   // If this is the end of the line all that was wanted was to create the
757   // the section but with no symbol.
758   if (getLexer().is(AsmToken::EndOfStatement)) {
759     // Create the zerofill section but no symbol
760     getStreamer().EmitZerofill(getContext().getMachOSection(
761                                  Segment, Section, MachO::S_ZEROFILL,
762                                  0, SectionKind::getBSS()));
763     return false;
764   }
765
766   if (getLexer().isNot(AsmToken::Comma))
767     return TokError("unexpected token in directive");
768   Lex();
769
770   SMLoc IDLoc = getLexer().getLoc();
771   StringRef IDStr;
772   if (getParser().parseIdentifier(IDStr))
773     return TokError("expected identifier in directive");
774
775   // handle the identifier as the key symbol.
776   MCSymbol *Sym = getContext().GetOrCreateSymbol(IDStr);
777
778   if (getLexer().isNot(AsmToken::Comma))
779     return TokError("unexpected token in directive");
780   Lex();
781
782   int64_t Size;
783   SMLoc SizeLoc = getLexer().getLoc();
784   if (getParser().parseAbsoluteExpression(Size))
785     return true;
786
787   int64_t Pow2Alignment = 0;
788   SMLoc Pow2AlignmentLoc;
789   if (getLexer().is(AsmToken::Comma)) {
790     Lex();
791     Pow2AlignmentLoc = getLexer().getLoc();
792     if (getParser().parseAbsoluteExpression(Pow2Alignment))
793       return true;
794   }
795
796   if (getLexer().isNot(AsmToken::EndOfStatement))
797     return TokError("unexpected token in '.zerofill' directive");
798
799   Lex();
800
801   if (Size < 0)
802     return Error(SizeLoc, "invalid '.zerofill' directive size, can't be less "
803                  "than zero");
804
805   // NOTE: The alignment in the directive is a power of 2 value, the assembler
806   // may internally end up wanting an alignment in bytes.
807   // FIXME: Diagnose overflow.
808   if (Pow2Alignment < 0)
809     return Error(Pow2AlignmentLoc, "invalid '.zerofill' directive alignment, "
810                  "can't be less than zero");
811
812   if (!Sym->isUndefined())
813     return Error(IDLoc, "invalid symbol redefinition");
814
815   // Create the zerofill Symbol with Size and Pow2Alignment
816   //
817   // FIXME: Arch specific.
818   getStreamer().EmitZerofill(getContext().getMachOSection(
819                                Segment, Section, MachO::S_ZEROFILL,
820                                0, SectionKind::getBSS()),
821                              Sym, Size, 1 << Pow2Alignment);
822
823   return false;
824 }
825
826 /// ParseDirectiveDataRegion
827 ///  ::= .data_region [ ( jt8 | jt16 | jt32 ) ]
828 bool DarwinAsmParser::ParseDirectiveDataRegion(StringRef, SMLoc) {
829   if (getLexer().is(AsmToken::EndOfStatement)) {
830     Lex();
831     getStreamer().EmitDataRegion(MCDR_DataRegion);
832     return false;
833   }
834   StringRef RegionType;
835   SMLoc Loc = getParser().getTok().getLoc();
836   if (getParser().parseIdentifier(RegionType))
837     return TokError("expected region type after '.data_region' directive");
838   int Kind = StringSwitch<int>(RegionType)
839     .Case("jt8", MCDR_DataRegionJT8)
840     .Case("jt16", MCDR_DataRegionJT16)
841     .Case("jt32", MCDR_DataRegionJT32)
842     .Default(-1);
843   if (Kind == -1)
844     return Error(Loc, "unknown region type in '.data_region' directive");
845   Lex();
846
847   getStreamer().EmitDataRegion((MCDataRegionType)Kind);
848   return false;
849 }
850
851 /// ParseDirectiveDataRegionEnd
852 ///  ::= .end_data_region
853 bool DarwinAsmParser::ParseDirectiveDataRegionEnd(StringRef, SMLoc) {
854   if (getLexer().isNot(AsmToken::EndOfStatement))
855     return TokError("unexpected token in '.end_data_region' directive");
856
857   Lex();
858   getStreamer().EmitDataRegion(MCDR_DataRegionEnd);
859   return false;
860 }
861
862 namespace llvm {
863
864 MCAsmParserExtension *createDarwinAsmParser() {
865   return new DarwinAsmParser;
866 }
867
868 } // end llvm namespace