blob: 3c092cdb19bbf2a095a7abb711637c488233c20b [file] [log] [blame]
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +00001//===- 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"
21using namespace llvm;
22
23namespace {
24
25/// \brief Implementation of directive handling which is shared across all
26/// Darwin targets.
27class DarwinAsmParser : public MCAsmParserExtension {
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +000028 template<bool (DarwinAsmParser::*Handler)(StringRef, SMLoc)>
29 void AddDirectiveHandler(StringRef Directive) {
30 getParser().AddDirectiveHandler(this, Directive,
31 HandleDirective<DarwinAsmParser, Handler>);
32 }
33
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +000034 bool ParseSectionSwitch(const char *Segment, const char *Section,
35 unsigned TAA = 0, unsigned ImplicitAlign = 0,
36 unsigned StubSize = 0);
37
38public:
39 DarwinAsmParser() {}
40
41 virtual void Initialize(MCAsmParser &Parser) {
42 // Call the base implementation.
43 this->MCAsmParserExtension::Initialize(Parser);
44
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +000045 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");
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +000058
59 // Special section directives.
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +000060 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");
Jim Grosbach8270da82011-03-08 19:17:19 +0000103
104 AddDirectiveHandler<&DarwinAsmParser::ParseSectionDirectiveIdent>(".ident");
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000105 }
106
107 bool ParseDirectiveDesc(StringRef, SMLoc);
108 bool ParseDirectiveDumpOrLoad(StringRef, SMLoc);
109 bool ParseDirectiveLsym(StringRef, SMLoc);
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000110 bool ParseDirectiveSection(StringRef, SMLoc);
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000111 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 }
Jim Grosbach8270da82011-03-08 19:17:19 +0000282 bool ParseSectionDirectiveIdent(StringRef, SMLoc) {
283 // Darwin silently ignores the .ident directive.
284 getParser().EatToEndOfStatement();
285 return false;
286 }
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000287 bool ParseSectionDirectiveThreadInitFunc(StringRef, SMLoc) {
288 return ParseSectionSwitch("__DATA", "__thread_init",
289 MCSectionMachO::S_THREAD_LOCAL_INIT_FUNCTION_POINTERS);
290 }
291
292};
293
294}
295
296bool 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
Bill Wendlingcf2561d2010-10-19 10:18:23 +0000315 // section, then just issuing the section switch directive will not realign
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000316 // 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
327bool 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"
356bool 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
381bool 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)*
Daniel Dunbar1edf6ca2010-07-18 22:22:07 +0000411bool DarwinAsmParser::ParseDirectiveSection(StringRef, SMLoc) {
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000412 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;
Daniel Dunbar8d06ffc2011-03-17 16:25:24 +0000437 unsigned StubSize;
Stuart Hastings65c8bca2011-03-19 02:42:31 +0000438 unsigned TAA;
439 bool TAAParsed;
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000440 std::string ErrorStr =
441 MCSectionMachO::ParseSectionSpecifier(SectionSpec, Segment, Section,
Stuart Hastings65c8bca2011-03-19 02:42:31 +0000442 TAA, TAAParsed, StubSize);
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000443
444 if (!ErrorStr.empty())
445 return Error(Loc, ErrorStr.c_str());
446
447 // FIXME: Arch specific.
448 bool isText = Segment == "__TEXT"; // FIXME: Hack.
449 getStreamer().SwitchSection(getContext().getMachOSection(
450 Segment, Section, TAA, StubSize,
451 isText ? SectionKind::getText()
452 : SectionKind::getDataRel()));
453 return false;
454}
455
456/// ParseDirectiveSecureLogUnique
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000457/// ::= .secure_log_unique ... message ...
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000458bool DarwinAsmParser::ParseDirectiveSecureLogUnique(StringRef, SMLoc IDLoc) {
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000459 StringRef LogMessage = getParser().ParseStringToEndOfStatement();
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000460 if (getLexer().isNot(AsmToken::EndOfStatement))
461 return TokError("unexpected token in '.secure_log_unique' directive");
462
463 if (getContext().getSecureLogUsed() != false)
464 return Error(IDLoc, ".secure_log_unique specified multiple times");
465
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000466 // Get the secure log path.
467 const char *SecureLogFile = getContext().getSecureLogFile();
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000468 if (SecureLogFile == NULL)
469 return Error(IDLoc, ".secure_log_unique used but AS_SECURE_LOG_FILE "
470 "environment variable unset.");
471
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000472 // Open the secure log file if we haven't already.
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000473 raw_ostream *OS = getContext().getSecureLog();
474 if (OS == NULL) {
475 std::string Err;
476 OS = new raw_fd_ostream(SecureLogFile, Err, raw_fd_ostream::F_Append);
477 if (!Err.empty()) {
478 delete OS;
479 return Error(IDLoc, Twine("can't open secure log file: ") +
480 SecureLogFile + " (" + Err + ")");
481 }
482 getContext().setSecureLog(OS);
483 }
484
Daniel Dunbar6a46d572010-07-18 20:15:59 +0000485 // Write the message.
Daniel Dunbar9c23d7f2010-07-12 20:51:51 +0000486 int CurBuf = getSourceManager().FindBufferContainingLoc(IDLoc);
487 *OS << getSourceManager().getBufferInfo(CurBuf).Buffer->getBufferIdentifier()
488 << ":" << getSourceManager().FindLineNumber(IDLoc, CurBuf) << ":"
489 << LogMessage + "\n";
490
491 getContext().setSecureLogUsed(true);
492
493 return false;
494}
495
496/// ParseDirectiveSecureLogReset
497/// ::= .secure_log_reset
498bool DarwinAsmParser::ParseDirectiveSecureLogReset(StringRef, SMLoc IDLoc) {
499 if (getLexer().isNot(AsmToken::EndOfStatement))
500 return TokError("unexpected token in '.secure_log_reset' directive");
501
502 Lex();
503
504 getContext().setSecureLogUsed(false);
505
506 return false;
507}
508
509/// ParseDirectiveSubsectionsViaSymbols
510/// ::= .subsections_via_symbols
511bool DarwinAsmParser::ParseDirectiveSubsectionsViaSymbols(StringRef, SMLoc) {
512 if (getLexer().isNot(AsmToken::EndOfStatement))
513 return TokError("unexpected token in '.subsections_via_symbols' directive");
514
515 Lex();
516
517 getStreamer().EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
518
519 return false;
520}
521
522/// ParseDirectiveTBSS
523/// ::= .tbss identifier, size, align
524bool DarwinAsmParser::ParseDirectiveTBSS(StringRef, SMLoc) {
525 SMLoc IDLoc = getLexer().getLoc();
526 StringRef Name;
527 if (getParser().ParseIdentifier(Name))
528 return TokError("expected identifier in directive");
529
530 // Handle the identifier as the key symbol.
531 MCSymbol *Sym = getContext().GetOrCreateSymbol(Name);
532
533 if (getLexer().isNot(AsmToken::Comma))
534 return TokError("unexpected token in directive");
535 Lex();
536
537 int64_t Size;
538 SMLoc SizeLoc = getLexer().getLoc();
539 if (getParser().ParseAbsoluteExpression(Size))
540 return true;
541
542 int64_t Pow2Alignment = 0;
543 SMLoc Pow2AlignmentLoc;
544 if (getLexer().is(AsmToken::Comma)) {
545 Lex();
546 Pow2AlignmentLoc = getLexer().getLoc();
547 if (getParser().ParseAbsoluteExpression(Pow2Alignment))
548 return true;
549 }
550
551 if (getLexer().isNot(AsmToken::EndOfStatement))
552 return TokError("unexpected token in '.tbss' directive");
553
554 Lex();
555
556 if (Size < 0)
557 return Error(SizeLoc, "invalid '.tbss' directive size, can't be less than"
558 "zero");
559
560 // FIXME: Diagnose overflow.
561 if (Pow2Alignment < 0)
562 return Error(Pow2AlignmentLoc, "invalid '.tbss' alignment, can't be less"
563 "than zero");
564
565 if (!Sym->isUndefined())
566 return Error(IDLoc, "invalid symbol redefinition");
567
568 getStreamer().EmitTBSSSymbol(getContext().getMachOSection(
569 "__DATA", "__thread_bss",
570 MCSectionMachO::S_THREAD_LOCAL_ZEROFILL,
571 0, SectionKind::getThreadBSS()),
572 Sym, Size, 1 << Pow2Alignment);
573
574 return false;
575}
576
577/// ParseDirectiveZerofill
578/// ::= .zerofill segname , sectname [, identifier , size_expression [
579/// , align_expression ]]
580bool DarwinAsmParser::ParseDirectiveZerofill(StringRef, SMLoc) {
581 StringRef Segment;
582 if (getParser().ParseIdentifier(Segment))
583 return TokError("expected segment name after '.zerofill' directive");
584
585 if (getLexer().isNot(AsmToken::Comma))
586 return TokError("unexpected token in directive");
587 Lex();
588
589 StringRef Section;
590 if (getParser().ParseIdentifier(Section))
591 return TokError("expected section name after comma in '.zerofill' "
592 "directive");
593
594 // If this is the end of the line all that was wanted was to create the
595 // the section but with no symbol.
596 if (getLexer().is(AsmToken::EndOfStatement)) {
597 // Create the zerofill section but no symbol
598 getStreamer().EmitZerofill(getContext().getMachOSection(
599 Segment, Section, MCSectionMachO::S_ZEROFILL,
600 0, SectionKind::getBSS()));
601 return false;
602 }
603
604 if (getLexer().isNot(AsmToken::Comma))
605 return TokError("unexpected token in directive");
606 Lex();
607
608 SMLoc IDLoc = getLexer().getLoc();
609 StringRef IDStr;
610 if (getParser().ParseIdentifier(IDStr))
611 return TokError("expected identifier in directive");
612
613 // handle the identifier as the key symbol.
614 MCSymbol *Sym = getContext().GetOrCreateSymbol(IDStr);
615
616 if (getLexer().isNot(AsmToken::Comma))
617 return TokError("unexpected token in directive");
618 Lex();
619
620 int64_t Size;
621 SMLoc SizeLoc = getLexer().getLoc();
622 if (getParser().ParseAbsoluteExpression(Size))
623 return true;
624
625 int64_t Pow2Alignment = 0;
626 SMLoc Pow2AlignmentLoc;
627 if (getLexer().is(AsmToken::Comma)) {
628 Lex();
629 Pow2AlignmentLoc = getLexer().getLoc();
630 if (getParser().ParseAbsoluteExpression(Pow2Alignment))
631 return true;
632 }
633
634 if (getLexer().isNot(AsmToken::EndOfStatement))
635 return TokError("unexpected token in '.zerofill' directive");
636
637 Lex();
638
639 if (Size < 0)
640 return Error(SizeLoc, "invalid '.zerofill' directive size, can't be less "
641 "than zero");
642
643 // NOTE: The alignment in the directive is a power of 2 value, the assembler
644 // may internally end up wanting an alignment in bytes.
645 // FIXME: Diagnose overflow.
646 if (Pow2Alignment < 0)
647 return Error(Pow2AlignmentLoc, "invalid '.zerofill' directive alignment, "
648 "can't be less than zero");
649
650 if (!Sym->isUndefined())
651 return Error(IDLoc, "invalid symbol redefinition");
652
653 // Create the zerofill Symbol with Size and Pow2Alignment
654 //
655 // FIXME: Arch specific.
656 getStreamer().EmitZerofill(getContext().getMachOSection(
657 Segment, Section, MCSectionMachO::S_ZEROFILL,
658 0, SectionKind::getBSS()),
659 Sym, Size, 1 << Pow2Alignment);
660
661 return false;
662}
663
664namespace llvm {
665
666MCAsmParserExtension *createDarwinAsmParser() {
667 return new DarwinAsmParser;
668}
669
670}