MC/Mach-O: Fix regression introduced in r126127, this assignment shouldn't have
[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/MC/MCContext.h"
12 #include "llvm/MC/MCSectionMachO.h"
13 #include "llvm/MC/MCStreamer.h"
14 #include "llvm/MC/MCSymbol.h"
15 #include "llvm/MC/MCParser/MCAsmLexer.h"
16 #include "llvm/MC/MCParser/MCAsmParser.h"
17 #include "llvm/ADT/StringRef.h"
18 #include "llvm/ADT/Twine.h"
19 #include "llvm/Support/MemoryBuffer.h"
20 #include "llvm/Support/SourceMgr.h"
21 using namespace llvm;
22
23 namespace {
24
25 /// \brief Implementation of directive handling which is shared across all
26 /// Darwin targets.
27 class DarwinAsmParser : public MCAsmParserExtension {
28   template<bool (DarwinAsmParser::*Handler)(StringRef, SMLoc)>
29   void AddDirectiveHandler(StringRef Directive) {
30     getParser().AddDirectiveHandler(this, Directive,
31                                     HandleDirective<DarwinAsmParser, Handler>);
32   }
33
34   bool ParseSectionSwitch(const char *Segment, const char *Section,
35                           unsigned TAA = 0, unsigned ImplicitAlign = 0,
36                           unsigned StubSize = 0);
37
38 public:
39   DarwinAsmParser() {}
40
41   virtual void Initialize(MCAsmParser &Parser) {
42     // Call the base implementation.
43     this->MCAsmParserExtension::Initialize(Parser);
44
45     AddDirectiveHandler<&DarwinAsmParser::ParseDirectiveDesc>(".desc");
46     AddDirectiveHandler<&DarwinAsmParser::ParseDirectiveLsym>(".lsym");
47     AddDirectiveHandler<&DarwinAsmParser::ParseDirectiveSubsectionsViaSymbols>(
48       ".subsections_via_symbols");
49     AddDirectiveHandler<&DarwinAsmParser::ParseDirectiveDumpOrLoad>(".dump");
50     AddDirectiveHandler<&DarwinAsmParser::ParseDirectiveDumpOrLoad>(".load");
51     AddDirectiveHandler<&DarwinAsmParser::ParseDirectiveSection>(".section");
52     AddDirectiveHandler<&DarwinAsmParser::ParseDirectiveSecureLogUnique>(
53       ".secure_log_unique");
54     AddDirectiveHandler<&DarwinAsmParser::ParseDirectiveSecureLogReset>(
55       ".secure_log_reset");
56     AddDirectiveHandler<&DarwinAsmParser::ParseDirectiveTBSS>(".tbss");
57     AddDirectiveHandler<&DarwinAsmParser::ParseDirectiveZerofill>(".zerofill");
58
59     // Special section directives.
60     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveConst>(".const");
61     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveConstData>(".const_data");
62     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveConstructor>(".constructor");
63     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveCString>(".cstring");
64     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveData>(".data");
65     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveDestructor>(".destructor");
66     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveDyld>(".dyld");
67     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveFVMLibInit0>(".fvmlib_init0");
68     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveFVMLibInit1>(".fvmlib_init1");
69     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveLazySymbolPointers>(".lazy_symbol_pointer");
70     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveLiteral16>(".literal16");
71     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveLiteral4>(".literal4");
72     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveLiteral8>(".literal8");
73     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveModInitFunc>(".mod_init_func");
74     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveModTermFunc>(".mod_term_func");
75     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveNonLazySymbolPointers>(".non_lazy_symbol_pointer");
76     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCCatClsMeth>(".objc_cat_cls_meth");
77     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCCatInstMeth>(".objc_cat_inst_meth");
78     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCCategory>(".objc_category");
79     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCClass>(".objc_class");
80     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCClassNames>(".objc_class_names");
81     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCClassVars>(".objc_class_vars");
82     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCClsMeth>(".objc_cls_meth");
83     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCClsRefs>(".objc_cls_refs");
84     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCInstMeth>(".objc_inst_meth");
85     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCInstanceVars>(".objc_instance_vars");
86     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCMessageRefs>(".objc_message_refs");
87     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCMetaClass>(".objc_meta_class");
88     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCMethVarNames>(".objc_meth_var_names");
89     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCMethVarTypes>(".objc_meth_var_types");
90     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCModuleInfo>(".objc_module_info");
91     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCProtocol>(".objc_protocol");
92     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCSelectorStrs>(".objc_selector_strs");
93     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCStringObject>(".objc_string_object");
94     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveObjCSymbols>(".objc_symbols");
95     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectivePICSymbolStub>(".picsymbol_stub");
96     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveStaticConst>(".static_const");
97     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveStaticData>(".static_data");
98     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveSymbolStub>(".symbol_stub");
99     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveTData>(".tdata");
100     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveText>(".text");
101     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveThreadInitFunc>(".thread_init_func");
102     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveTLV>(".tlv");
103
104     AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveIdent>(".ident");
105   }
106
107   bool ParseDirectiveDesc(StringRef, SMLoc);
108   bool ParseDirectiveDumpOrLoad(StringRef, SMLoc);
109   bool ParseDirectiveLsym(StringRef, SMLoc);
110   bool ParseDirectiveSection(StringRef, SMLoc);
111   bool ParseDirectiveSecureLogReset(StringRef, SMLoc);
112   bool ParseDirectiveSecureLogUnique(StringRef, SMLoc);
113   bool ParseDirectiveSubsectionsViaSymbols(StringRef, SMLoc);
114   bool ParseDirectiveTBSS(StringRef, SMLoc);
115   bool ParseDirectiveZerofill(StringRef, SMLoc);
116
117   // Named Section Directive
118   bool ParseSectionDirectiveConst(StringRef, SMLoc) {
119     return ParseSectionSwitch("__TEXT", "__const");
120   }
121   bool ParseSectionDirectiveStaticConst(StringRef, SMLoc) {
122     return ParseSectionSwitch("__TEXT", "__static_const");
123   }
124   bool ParseSectionDirectiveCString(StringRef, SMLoc) {
125     return ParseSectionSwitch("__TEXT","__cstring",
126                               MCSectionMachO::S_CSTRING_LITERALS);
127   }
128   bool ParseSectionDirectiveLiteral4(StringRef, SMLoc) {
129     return ParseSectionSwitch("__TEXT", "__literal4",
130                               MCSectionMachO::S_4BYTE_LITERALS, 4);
131   }
132   bool ParseSectionDirectiveLiteral8(StringRef, SMLoc) {
133     return ParseSectionSwitch("__TEXT", "__literal8",
134                               MCSectionMachO::S_8BYTE_LITERALS, 8);
135   }
136   bool ParseSectionDirectiveLiteral16(StringRef, SMLoc) {
137     return ParseSectionSwitch("__TEXT","__literal16",
138                               MCSectionMachO::S_16BYTE_LITERALS, 16);
139   }
140   bool ParseSectionDirectiveConstructor(StringRef, SMLoc) {
141     return ParseSectionSwitch("__TEXT","__constructor");
142   }
143   bool ParseSectionDirectiveDestructor(StringRef, SMLoc) {
144     return ParseSectionSwitch("__TEXT","__destructor");
145   }
146   bool ParseSectionDirectiveFVMLibInit0(StringRef, SMLoc) {
147     return ParseSectionSwitch("__TEXT","__fvmlib_init0");
148   }
149   bool ParseSectionDirectiveFVMLibInit1(StringRef, SMLoc) {
150     return ParseSectionSwitch("__TEXT","__fvmlib_init1");
151   }
152   bool ParseSectionDirectiveSymbolStub(StringRef, SMLoc) {
153     return ParseSectionSwitch("__TEXT","__symbol_stub",
154                               MCSectionMachO::S_SYMBOL_STUBS |
155                               MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
156                               // FIXME: Different on PPC and ARM.
157                               0, 16);
158   }
159   bool ParseSectionDirectivePICSymbolStub(StringRef, SMLoc) {
160     return ParseSectionSwitch("__TEXT","__picsymbol_stub",
161                               MCSectionMachO::S_SYMBOL_STUBS |
162                               MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS, 0, 26);
163   }
164   bool ParseSectionDirectiveData(StringRef, SMLoc) {
165     return ParseSectionSwitch("__DATA", "__data");
166   }
167   bool ParseSectionDirectiveStaticData(StringRef, SMLoc) {
168     return ParseSectionSwitch("__DATA", "__static_data");
169   }
170   bool ParseSectionDirectiveNonLazySymbolPointers(StringRef, SMLoc) {
171     return ParseSectionSwitch("__DATA", "__nl_symbol_ptr",
172                               MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS, 4);
173   }
174   bool ParseSectionDirectiveLazySymbolPointers(StringRef, SMLoc) {
175     return ParseSectionSwitch("__DATA", "__la_symbol_ptr",
176                               MCSectionMachO::S_LAZY_SYMBOL_POINTERS, 4);
177   }
178   bool ParseSectionDirectiveDyld(StringRef, SMLoc) {
179     return ParseSectionSwitch("__DATA", "__dyld");
180   }
181   bool ParseSectionDirectiveModInitFunc(StringRef, SMLoc) {
182     return ParseSectionSwitch("__DATA", "__mod_init_func",
183                               MCSectionMachO::S_MOD_INIT_FUNC_POINTERS, 4);
184   }
185   bool ParseSectionDirectiveModTermFunc(StringRef, SMLoc) {
186     return ParseSectionSwitch("__DATA", "__mod_term_func",
187                               MCSectionMachO::S_MOD_TERM_FUNC_POINTERS, 4);
188   }
189   bool ParseSectionDirectiveConstData(StringRef, SMLoc) {
190     return ParseSectionSwitch("__DATA", "__const");
191   }
192   bool ParseSectionDirectiveObjCClass(StringRef, SMLoc) {
193     return ParseSectionSwitch("__OBJC", "__class",
194                               MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
195   }
196   bool ParseSectionDirectiveObjCMetaClass(StringRef, SMLoc) {
197     return ParseSectionSwitch("__OBJC", "__meta_class",
198                               MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
199   }
200   bool ParseSectionDirectiveObjCCatClsMeth(StringRef, SMLoc) {
201     return ParseSectionSwitch("__OBJC", "__cat_cls_meth",
202                               MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
203   }
204   bool ParseSectionDirectiveObjCCatInstMeth(StringRef, SMLoc) {
205     return ParseSectionSwitch("__OBJC", "__cat_inst_meth",
206                               MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
207   }
208   bool ParseSectionDirectiveObjCProtocol(StringRef, SMLoc) {
209     return ParseSectionSwitch("__OBJC", "__protocol",
210                               MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
211   }
212   bool ParseSectionDirectiveObjCStringObject(StringRef, SMLoc) {
213     return ParseSectionSwitch("__OBJC", "__string_object",
214                               MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
215   }
216   bool ParseSectionDirectiveObjCClsMeth(StringRef, SMLoc) {
217     return ParseSectionSwitch("__OBJC", "__cls_meth",
218                               MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
219   }
220   bool ParseSectionDirectiveObjCInstMeth(StringRef, SMLoc) {
221     return ParseSectionSwitch("__OBJC", "__inst_meth",
222                               MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
223   }
224   bool ParseSectionDirectiveObjCClsRefs(StringRef, SMLoc) {
225     return ParseSectionSwitch("__OBJC", "__cls_refs",
226                               MCSectionMachO::S_ATTR_NO_DEAD_STRIP |
227                               MCSectionMachO::S_LITERAL_POINTERS, 4);
228   }
229   bool ParseSectionDirectiveObjCMessageRefs(StringRef, SMLoc) {
230     return ParseSectionSwitch("__OBJC", "__message_refs",
231                               MCSectionMachO::S_ATTR_NO_DEAD_STRIP |
232                               MCSectionMachO::S_LITERAL_POINTERS, 4);
233   }
234   bool ParseSectionDirectiveObjCSymbols(StringRef, SMLoc) {
235     return ParseSectionSwitch("__OBJC", "__symbols",
236                               MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
237   }
238   bool ParseSectionDirectiveObjCCategory(StringRef, SMLoc) {
239     return ParseSectionSwitch("__OBJC", "__category",
240                               MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
241   }
242   bool ParseSectionDirectiveObjCClassVars(StringRef, SMLoc) {
243     return ParseSectionSwitch("__OBJC", "__class_vars",
244                               MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
245   }
246   bool ParseSectionDirectiveObjCInstanceVars(StringRef, SMLoc) {
247     return ParseSectionSwitch("__OBJC", "__instance_vars",
248                               MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
249   }
250   bool ParseSectionDirectiveObjCModuleInfo(StringRef, SMLoc) {
251     return ParseSectionSwitch("__OBJC", "__module_info",
252                               MCSectionMachO::S_ATTR_NO_DEAD_STRIP);
253   }
254   bool ParseSectionDirectiveObjCClassNames(StringRef, SMLoc) {
255     return ParseSectionSwitch("__TEXT", "__cstring",
256                               MCSectionMachO::S_CSTRING_LITERALS);
257   }
258   bool ParseSectionDirectiveObjCMethVarTypes(StringRef, SMLoc) {
259     return ParseSectionSwitch("__TEXT", "__cstring",
260                               MCSectionMachO::S_CSTRING_LITERALS);
261   }
262   bool ParseSectionDirectiveObjCMethVarNames(StringRef, SMLoc) {
263     return ParseSectionSwitch("__TEXT", "__cstring",
264                               MCSectionMachO::S_CSTRING_LITERALS);
265   }
266   bool ParseSectionDirectiveObjCSelectorStrs(StringRef, SMLoc) {
267     return ParseSectionSwitch("__OBJC", "__selector_strs",
268                               MCSectionMachO::S_CSTRING_LITERALS);
269   }
270   bool ParseSectionDirectiveTData(StringRef, SMLoc) {
271     return ParseSectionSwitch("__DATA", "__thread_data",
272                               MCSectionMachO::S_THREAD_LOCAL_REGULAR);
273   }
274   bool ParseSectionDirectiveText(StringRef, SMLoc) {
275     return ParseSectionSwitch("__TEXT", "__text",
276                               MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS);
277   }
278   bool ParseSectionDirectiveTLV(StringRef, SMLoc) {
279     return ParseSectionSwitch("__DATA", "__thread_vars",
280                               MCSectionMachO::S_THREAD_LOCAL_VARIABLES);
281   }
282   bool ParseSectionDirectiveIdent(StringRef, SMLoc) {
283     // Darwin silently ignores the .ident directive.
284     getParser().EatToEndOfStatement();
285     return false;
286   }
287   bool ParseSectionDirectiveThreadInitFunc(StringRef, SMLoc) {
288     return ParseSectionSwitch("__DATA", "__thread_init",
289                          MCSectionMachO::S_THREAD_LOCAL_INIT_FUNCTION_POINTERS);
290   }
291
292 };
293
294 }
295
296 bool DarwinAsmParser::ParseSectionSwitch(const char *Segment,
297                                          const char *Section,
298                                          unsigned TAA, unsigned Align,
299                                          unsigned StubSize) {
300   if (getLexer().isNot(AsmToken::EndOfStatement))
301     return TokError("unexpected token in section switching directive");
302   Lex();
303
304   // FIXME: Arch specific.
305   bool isText = StringRef(Segment) == "__TEXT";  // FIXME: Hack.
306   getStreamer().SwitchSection(getContext().getMachOSection(
307                                 Segment, Section, TAA, StubSize,
308                                 isText ? SectionKind::getText()
309                                        : SectionKind::getDataRel()));
310
311   // Set the implicit alignment, if any.
312   //
313   // FIXME: This isn't really what 'as' does; I think it just uses the implicit
314   // alignment on the section (e.g., if one manually inserts bytes into the
315   // section, then just issuing the section switch directive will not realign
316   // the section. However, this is arguably more reasonable behavior, and there
317   // is no good reason for someone to intentionally emit incorrectly sized
318   // values into the implicitly aligned sections.
319   if (Align)
320     getStreamer().EmitValueToAlignment(Align, 0, 1, 0);
321
322   return false;
323 }
324
325 /// ParseDirectiveDesc
326 ///  ::= .desc identifier , expression
327 bool DarwinAsmParser::ParseDirectiveDesc(StringRef, SMLoc) {
328   StringRef Name;
329   if (getParser().ParseIdentifier(Name))
330     return TokError("expected identifier in directive");
331
332   // Handle the identifier as the key symbol.
333   MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
334
335   if (getLexer().isNot(AsmToken::Comma))
336     return TokError("unexpected token in '.desc' directive");
337   Lex();
338
339   int64_t DescValue;
340   if (getParser().ParseAbsoluteExpression(DescValue))
341     return true;
342
343   if (getLexer().isNot(AsmToken::EndOfStatement))
344     return TokError("unexpected token in '.desc' directive");
345
346   Lex();
347
348   // Set the n_desc field of this Symbol to this DescValue
349   getStreamer().EmitSymbolDesc(Sym, DescValue);
350
351   return false;
352 }
353
354 /// ParseDirectiveDumpOrLoad
355 ///  ::= ( .dump | .load ) "filename"
356 bool DarwinAsmParser::ParseDirectiveDumpOrLoad(StringRef Directive,
357                                                SMLoc IDLoc) {
358   bool IsDump = Directive == ".dump";
359   if (getLexer().isNot(AsmToken::String))
360     return TokError("expected string in '.dump' or '.load' directive");
361
362   Lex();
363
364   if (getLexer().isNot(AsmToken::EndOfStatement))
365     return TokError("unexpected token in '.dump' or '.load' directive");
366
367   Lex();
368
369   // FIXME: If/when .dump and .load are implemented they will be done in the
370   // the assembly parser and not have any need for an MCStreamer API.
371   if (IsDump)
372     Warning(IDLoc, "ignoring directive .dump for now");
373   else
374     Warning(IDLoc, "ignoring directive .load for now");
375
376   return false;
377 }
378
379 /// ParseDirectiveLsym
380 ///  ::= .lsym identifier , expression
381 bool DarwinAsmParser::ParseDirectiveLsym(StringRef, SMLoc) {
382   StringRef Name;
383   if (getParser().ParseIdentifier(Name))
384     return TokError("expected identifier in directive");
385
386   // Handle the identifier as the key symbol.
387   MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
388
389   if (getLexer().isNot(AsmToken::Comma))
390     return TokError("unexpected token in '.lsym' directive");
391   Lex();
392
393   const MCExpr *Value;
394   if (getParser().ParseExpression(Value))
395     return true;
396
397   if (getLexer().isNot(AsmToken::EndOfStatement))
398     return TokError("unexpected token in '.lsym' directive");
399
400   Lex();
401
402   // We don't currently support this directive.
403   //
404   // FIXME: Diagnostic location!
405   (void) Sym;
406   return TokError("directive '.lsym' is unsupported");
407 }
408
409 /// ParseDirectiveSection:
410 ///   ::= .section identifier (',' identifier)*
411 bool DarwinAsmParser::ParseDirectiveSection(StringRef, SMLoc) {
412   SMLoc Loc = getLexer().getLoc();
413
414   StringRef SectionName;
415   if (getParser().ParseIdentifier(SectionName))
416     return Error(Loc, "expected identifier after '.section' directive");
417
418   // Verify there is a following comma.
419   if (!getLexer().is(AsmToken::Comma))
420     return TokError("unexpected token in '.section' directive");
421
422   std::string SectionSpec = SectionName;
423   SectionSpec += ",";
424
425   // Add all the tokens until the end of the line, ParseSectionSpecifier will
426   // handle this.
427   StringRef EOL = getLexer().LexUntilEndOfStatement();
428   SectionSpec.append(EOL.begin(), EOL.end());
429
430   Lex();
431   if (getLexer().isNot(AsmToken::EndOfStatement))
432     return TokError("unexpected token in '.section' directive");
433   Lex();
434
435
436   StringRef Segment, Section;
437   unsigned StubSize;
438   unsigned TAA = 0;
439   std::string ErrorStr =
440     MCSectionMachO::ParseSectionSpecifier(SectionSpec, Segment, Section,
441                                           TAA, StubSize);
442
443   if (!ErrorStr.empty())
444     return Error(Loc, ErrorStr.c_str());
445
446   // FIXME: Arch specific.
447   bool isText = Segment == "__TEXT";  // FIXME: Hack.
448   getStreamer().SwitchSection(getContext().getMachOSection(
449                                 Segment, Section, TAA, StubSize,
450                                 isText ? SectionKind::getText()
451                                 : SectionKind::getDataRel()));
452   return false;
453 }
454
455 /// ParseDirectiveSecureLogUnique
456 ///  ::= .secure_log_unique ... message ...
457 bool DarwinAsmParser::ParseDirectiveSecureLogUnique(StringRef, SMLoc IDLoc) {
458   StringRef LogMessage = getParser().ParseStringToEndOfStatement();
459   if (getLexer().isNot(AsmToken::EndOfStatement))
460     return TokError("unexpected token in '.secure_log_unique' directive");
461
462   if (getContext().getSecureLogUsed() != false)
463     return Error(IDLoc, ".secure_log_unique specified multiple times");
464
465   // Get the secure log path.
466   const char *SecureLogFile = getContext().getSecureLogFile();
467   if (SecureLogFile == NULL)
468     return Error(IDLoc, ".secure_log_unique used but AS_SECURE_LOG_FILE "
469                  "environment variable unset.");
470
471   // Open the secure log file if we haven't already.
472   raw_ostream *OS = getContext().getSecureLog();
473   if (OS == NULL) {
474     std::string Err;
475     OS = new raw_fd_ostream(SecureLogFile, Err, raw_fd_ostream::F_Append);
476     if (!Err.empty()) {
477        delete OS;
478        return Error(IDLoc, Twine("can't open secure log file: ") +
479                     SecureLogFile + " (" + Err + ")");
480     }
481     getContext().setSecureLog(OS);
482   }
483
484   // Write the message.
485   int CurBuf = getSourceManager().FindBufferContainingLoc(IDLoc);
486   *OS << getSourceManager().getBufferInfo(CurBuf).Buffer->getBufferIdentifier()
487       << ":" << getSourceManager().FindLineNumber(IDLoc, CurBuf) << ":"
488       << LogMessage + "\n";
489
490   getContext().setSecureLogUsed(true);
491
492   return false;
493 }
494
495 /// ParseDirectiveSecureLogReset
496 ///  ::= .secure_log_reset
497 bool DarwinAsmParser::ParseDirectiveSecureLogReset(StringRef, SMLoc IDLoc) {
498   if (getLexer().isNot(AsmToken::EndOfStatement))
499     return TokError("unexpected token in '.secure_log_reset' directive");
500
501   Lex();
502
503   getContext().setSecureLogUsed(false);
504
505   return false;
506 }
507
508 /// ParseDirectiveSubsectionsViaSymbols
509 ///  ::= .subsections_via_symbols
510 bool DarwinAsmParser::ParseDirectiveSubsectionsViaSymbols(StringRef, SMLoc) {
511   if (getLexer().isNot(AsmToken::EndOfStatement))
512     return TokError("unexpected token in '.subsections_via_symbols' directive");
513
514   Lex();
515
516   getStreamer().EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
517
518   return false;
519 }
520
521 /// ParseDirectiveTBSS
522 ///  ::= .tbss identifier, size, align
523 bool DarwinAsmParser::ParseDirectiveTBSS(StringRef, SMLoc) {
524   SMLoc IDLoc = getLexer().getLoc();
525   StringRef Name;
526   if (getParser().ParseIdentifier(Name))
527     return TokError("expected identifier in directive");
528
529   // Handle the identifier as the key symbol.
530   MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
531
532   if (getLexer().isNot(AsmToken::Comma))
533     return TokError("unexpected token in directive");
534   Lex();
535
536   int64_t Size;
537   SMLoc SizeLoc = getLexer().getLoc();
538   if (getParser().ParseAbsoluteExpression(Size))
539     return true;
540
541   int64_t Pow2Alignment = 0;
542   SMLoc Pow2AlignmentLoc;
543   if (getLexer().is(AsmToken::Comma)) {
544     Lex();
545     Pow2AlignmentLoc = getLexer().getLoc();
546     if (getParser().ParseAbsoluteExpression(Pow2Alignment))
547       return true;
548   }
549
550   if (getLexer().isNot(AsmToken::EndOfStatement))
551     return TokError("unexpected token in '.tbss' directive");
552
553   Lex();
554
555   if (Size < 0)
556     return Error(SizeLoc, "invalid '.tbss' directive size, can't be less than"
557                  "zero");
558
559   // FIXME: Diagnose overflow.
560   if (Pow2Alignment < 0)
561     return Error(Pow2AlignmentLoc, "invalid '.tbss' alignment, can't be less"
562                  "than zero");
563
564   if (!Sym->isUndefined())
565     return Error(IDLoc, "invalid symbol redefinition");
566
567   getStreamer().EmitTBSSSymbol(getContext().getMachOSection(
568                                  "__DATA", "__thread_bss",
569                                  MCSectionMachO::S_THREAD_LOCAL_ZEROFILL,
570                                  0, SectionKind::getThreadBSS()),
571                                Sym, Size, 1 << Pow2Alignment);
572
573   return false;
574 }
575
576 /// ParseDirectiveZerofill
577 ///  ::= .zerofill segname , sectname [, identifier , size_expression [
578 ///      , align_expression ]]
579 bool DarwinAsmParser::ParseDirectiveZerofill(StringRef, SMLoc) {
580   StringRef Segment;
581   if (getParser().ParseIdentifier(Segment))
582     return TokError("expected segment name after '.zerofill' directive");
583
584   if (getLexer().isNot(AsmToken::Comma))
585     return TokError("unexpected token in directive");
586   Lex();
587
588   StringRef Section;
589   if (getParser().ParseIdentifier(Section))
590     return TokError("expected section name after comma in '.zerofill' "
591                     "directive");
592
593   // If this is the end of the line all that was wanted was to create the
594   // the section but with no symbol.
595   if (getLexer().is(AsmToken::EndOfStatement)) {
596     // Create the zerofill section but no symbol
597     getStreamer().EmitZerofill(getContext().getMachOSection(
598                                  Segment, Section, MCSectionMachO::S_ZEROFILL,
599                                  0, SectionKind::getBSS()));
600     return false;
601   }
602
603   if (getLexer().isNot(AsmToken::Comma))
604     return TokError("unexpected token in directive");
605   Lex();
606
607   SMLoc IDLoc = getLexer().getLoc();
608   StringRef IDStr;
609   if (getParser().ParseIdentifier(IDStr))
610     return TokError("expected identifier in directive");
611
612   // handle the identifier as the key symbol.
613   MCSymbol *Sym = getContext().GetOrCreateSymbol(IDStr);
614
615   if (getLexer().isNot(AsmToken::Comma))
616     return TokError("unexpected token in directive");
617   Lex();
618
619   int64_t Size;
620   SMLoc SizeLoc = getLexer().getLoc();
621   if (getParser().ParseAbsoluteExpression(Size))
622     return true;
623
624   int64_t Pow2Alignment = 0;
625   SMLoc Pow2AlignmentLoc;
626   if (getLexer().is(AsmToken::Comma)) {
627     Lex();
628     Pow2AlignmentLoc = getLexer().getLoc();
629     if (getParser().ParseAbsoluteExpression(Pow2Alignment))
630       return true;
631   }
632
633   if (getLexer().isNot(AsmToken::EndOfStatement))
634     return TokError("unexpected token in '.zerofill' directive");
635
636   Lex();
637
638   if (Size < 0)
639     return Error(SizeLoc, "invalid '.zerofill' directive size, can't be less "
640                  "than zero");
641
642   // NOTE: The alignment in the directive is a power of 2 value, the assembler
643   // may internally end up wanting an alignment in bytes.
644   // FIXME: Diagnose overflow.
645   if (Pow2Alignment < 0)
646     return Error(Pow2AlignmentLoc, "invalid '.zerofill' directive alignment, "
647                  "can't be less than zero");
648
649   if (!Sym->isUndefined())
650     return Error(IDLoc, "invalid symbol redefinition");
651
652   // Create the zerofill Symbol with Size and Pow2Alignment
653   //
654   // FIXME: Arch specific.
655   getStreamer().EmitZerofill(getContext().getMachOSection(
656                                Segment, Section, MCSectionMachO::S_ZEROFILL,
657                                0, SectionKind::getBSS()),
658                              Sym, Size, 1 << Pow2Alignment);
659
660   return false;
661 }
662
663 namespace llvm {
664
665 MCAsmParserExtension *createDarwinAsmParser() {
666   return new DarwinAsmParser;
667 }
668
669 }