Simplify the logic for deciding when to initialize the sections.
[oota-llvm.git] / lib / MC / MCAsmStreamer.cpp
1 //===- lib/MC/MCAsmStreamer.cpp - Text Assembly Output --------------------===//
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/MCStreamer.h"
11 #include "llvm/ADT/OwningPtr.h"
12 #include "llvm/ADT/SmallString.h"
13 #include "llvm/ADT/StringExtras.h"
14 #include "llvm/ADT/Twine.h"
15 #include "llvm/MC/MCAsmBackend.h"
16 #include "llvm/MC/MCAsmInfo.h"
17 #include "llvm/MC/MCCodeEmitter.h"
18 #include "llvm/MC/MCContext.h"
19 #include "llvm/MC/MCExpr.h"
20 #include "llvm/MC/MCFixupKindInfo.h"
21 #include "llvm/MC/MCInst.h"
22 #include "llvm/MC/MCInstPrinter.h"
23 #include "llvm/MC/MCObjectFileInfo.h"
24 #include "llvm/MC/MCRegisterInfo.h"
25 #include "llvm/MC/MCSectionCOFF.h"
26 #include "llvm/MC/MCSectionMachO.h"
27 #include "llvm/MC/MCSymbol.h"
28 #include "llvm/Support/CommandLine.h"
29 #include "llvm/Support/ErrorHandling.h"
30 #include "llvm/Support/Format.h"
31 #include "llvm/Support/FormattedStream.h"
32 #include "llvm/Support/MathExtras.h"
33 #include "llvm/Support/Path.h"
34 #include <cctype>
35 using namespace llvm;
36
37 namespace {
38
39 class MCAsmStreamer : public MCStreamer {
40 protected:
41   formatted_raw_ostream &OS;
42   const MCAsmInfo *MAI;
43 private:
44   OwningPtr<MCInstPrinter> InstPrinter;
45   OwningPtr<MCCodeEmitter> Emitter;
46   OwningPtr<MCAsmBackend> AsmBackend;
47
48   SmallString<128> CommentToEmit;
49   raw_svector_ostream CommentStream;
50
51   unsigned IsVerboseAsm : 1;
52   unsigned ShowInst : 1;
53   unsigned UseLoc : 1;
54   unsigned UseCFI : 1;
55   unsigned UseDwarfDirectory : 1;
56
57   enum EHSymbolFlags { EHGlobal         = 1,
58                        EHWeakDefinition = 1 << 1,
59                        EHPrivateExtern  = 1 << 2 };
60   DenseMap<const MCSymbol*, unsigned> FlagMap;
61
62   bool needsSet(const MCExpr *Value);
63
64   void EmitRegisterName(int64_t Register);
65   virtual void EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame);
66   virtual void EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame);
67
68 public:
69   MCAsmStreamer(MCContext &Context, MCTargetStreamer *TargetStreamer,
70                 formatted_raw_ostream &os, bool isVerboseAsm, bool useLoc,
71                 bool useCFI, bool useDwarfDirectory, MCInstPrinter *printer,
72                 MCCodeEmitter *emitter, MCAsmBackend *asmbackend, bool showInst)
73       : MCStreamer(Context, TargetStreamer), OS(os), MAI(Context.getAsmInfo()),
74         InstPrinter(printer), Emitter(emitter), AsmBackend(asmbackend),
75         CommentStream(CommentToEmit), IsVerboseAsm(isVerboseAsm),
76         ShowInst(showInst), UseLoc(useLoc), UseCFI(useCFI),
77         UseDwarfDirectory(useDwarfDirectory) {
78     if (InstPrinter && IsVerboseAsm)
79       InstPrinter->setCommentStream(CommentStream);
80   }
81   ~MCAsmStreamer() {}
82
83   inline void EmitEOL() {
84     // If we don't have any comments, just emit a \n.
85     if (!IsVerboseAsm) {
86       OS << '\n';
87       return;
88     }
89     EmitCommentsAndEOL();
90   }
91   void EmitCommentsAndEOL();
92
93   /// isVerboseAsm - Return true if this streamer supports verbose assembly at
94   /// all.
95   virtual bool isVerboseAsm() const { return IsVerboseAsm; }
96
97   /// hasRawTextSupport - We support EmitRawText.
98   virtual bool hasRawTextSupport() const { return true; }
99
100   /// AddComment - Add a comment that can be emitted to the generated .s
101   /// file if applicable as a QoI issue to make the output of the compiler
102   /// more readable.  This only affects the MCAsmStreamer, and only when
103   /// verbose assembly output is enabled.
104   virtual void AddComment(const Twine &T);
105
106   /// AddEncodingComment - Add a comment showing the encoding of an instruction.
107   virtual void AddEncodingComment(const MCInst &Inst);
108
109   /// GetCommentOS - Return a raw_ostream that comments can be written to.
110   /// Unlike AddComment, you are required to terminate comments with \n if you
111   /// use this method.
112   virtual raw_ostream &GetCommentOS() {
113     if (!IsVerboseAsm)
114       return nulls();  // Discard comments unless in verbose asm mode.
115     return CommentStream;
116   }
117
118   void emitRawComment(const Twine &T, bool TabPrefix = true) LLVM_OVERRIDE;
119
120   /// AddBlankLine - Emit a blank line to a .s file to pretty it up.
121   virtual void AddBlankLine() {
122     EmitEOL();
123   }
124
125   /// @name MCStreamer Interface
126   /// @{
127
128   virtual void ChangeSection(const MCSection *Section,
129                              const MCExpr *Subsection);
130
131   virtual void InitSections(bool Force) {
132     if (Force)
133       SwitchSection(getContext().getObjectFileInfo()->getTextSection());
134   }
135
136   virtual void EmitLabel(MCSymbol *Symbol);
137   virtual void EmitDebugLabel(MCSymbol *Symbol);
138
139   virtual void EmitEHSymAttributes(const MCSymbol *Symbol,
140                                    MCSymbol *EHSymbol);
141   virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
142   virtual void EmitLinkerOptions(ArrayRef<std::string> Options);
143   virtual void EmitDataRegion(MCDataRegionType Kind);
144   virtual void EmitThumbFunc(MCSymbol *Func);
145
146   virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
147   virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
148   virtual void EmitDwarfAdvanceLineAddr(int64_t LineDelta,
149                                         const MCSymbol *LastLabel,
150                                         const MCSymbol *Label,
151                                         unsigned PointerSize);
152   virtual void EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
153                                          const MCSymbol *Label);
154
155   virtual bool EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
156
157   virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
158   virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol);
159   virtual void EmitCOFFSymbolStorageClass(int StorageClass);
160   virtual void EmitCOFFSymbolType(int Type);
161   virtual void EndCOFFSymbolDef();
162   virtual void EmitCOFFSectionIndex(MCSymbol const *Symbol);
163   virtual void EmitCOFFSecRel32(MCSymbol const *Symbol);
164   virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
165   virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
166                                 unsigned ByteAlignment);
167
168   /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
169   ///
170   /// @param Symbol - The common symbol to emit.
171   /// @param Size - The size of the common symbol.
172   /// @param ByteAlignment - The alignment of the common symbol in bytes.
173   virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
174                                      unsigned ByteAlignment);
175
176   virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
177                             uint64_t Size = 0, unsigned ByteAlignment = 0);
178
179   virtual void EmitTBSSSymbol (const MCSection *Section, MCSymbol *Symbol,
180                                uint64_t Size, unsigned ByteAlignment = 0);
181
182   virtual void EmitBytes(StringRef Data);
183
184   virtual void EmitValueImpl(const MCExpr *Value, unsigned Size);
185   virtual void EmitIntValue(uint64_t Value, unsigned Size);
186
187   virtual void EmitULEB128Value(const MCExpr *Value);
188
189   virtual void EmitSLEB128Value(const MCExpr *Value);
190
191   virtual void EmitGPRel64Value(const MCExpr *Value);
192
193   virtual void EmitGPRel32Value(const MCExpr *Value);
194
195
196   virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue);
197
198   virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
199                                     unsigned ValueSize = 1,
200                                     unsigned MaxBytesToEmit = 0);
201
202   virtual void EmitCodeAlignment(unsigned ByteAlignment,
203                                  unsigned MaxBytesToEmit = 0);
204
205   virtual bool EmitValueToOffset(const MCExpr *Offset,
206                                  unsigned char Value = 0);
207
208   virtual void EmitFileDirective(StringRef Filename);
209   virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
210                                       StringRef Filename, unsigned CUID = 0);
211   virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
212                                      unsigned Column, unsigned Flags,
213                                      unsigned Isa, unsigned Discriminator,
214                                      StringRef FileName);
215
216   virtual void EmitIdent(StringRef IdentString);
217   virtual void EmitCFISections(bool EH, bool Debug);
218   virtual void EmitCFIDefCfa(int64_t Register, int64_t Offset);
219   virtual void EmitCFIDefCfaOffset(int64_t Offset);
220   virtual void EmitCFIDefCfaRegister(int64_t Register);
221   virtual void EmitCFIOffset(int64_t Register, int64_t Offset);
222   virtual void EmitCFIPersonality(const MCSymbol *Sym, unsigned Encoding);
223   virtual void EmitCFILsda(const MCSymbol *Sym, unsigned Encoding);
224   virtual void EmitCFIRememberState();
225   virtual void EmitCFIRestoreState();
226   virtual void EmitCFISameValue(int64_t Register);
227   virtual void EmitCFIRelOffset(int64_t Register, int64_t Offset);
228   virtual void EmitCFIAdjustCfaOffset(int64_t Adjustment);
229   virtual void EmitCFISignalFrame();
230   virtual void EmitCFIUndefined(int64_t Register);
231   virtual void EmitCFIRegister(int64_t Register1, int64_t Register2);
232   virtual void EmitCFIWindowSave();
233
234   virtual void EmitWin64EHStartProc(const MCSymbol *Symbol);
235   virtual void EmitWin64EHEndProc();
236   virtual void EmitWin64EHStartChained();
237   virtual void EmitWin64EHEndChained();
238   virtual void EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
239                                   bool Except);
240   virtual void EmitWin64EHHandlerData();
241   virtual void EmitWin64EHPushReg(unsigned Register);
242   virtual void EmitWin64EHSetFrame(unsigned Register, unsigned Offset);
243   virtual void EmitWin64EHAllocStack(unsigned Size);
244   virtual void EmitWin64EHSaveReg(unsigned Register, unsigned Offset);
245   virtual void EmitWin64EHSaveXMM(unsigned Register, unsigned Offset);
246   virtual void EmitWin64EHPushFrame(bool Code);
247   virtual void EmitWin64EHEndProlog();
248
249   virtual void EmitInstruction(const MCInst &Inst);
250
251   virtual void EmitBundleAlignMode(unsigned AlignPow2);
252   virtual void EmitBundleLock(bool AlignToEnd);
253   virtual void EmitBundleUnlock();
254
255   /// EmitRawText - If this file is backed by an assembly streamer, this dumps
256   /// the specified string in the output .s file.  This capability is
257   /// indicated by the hasRawTextSupport() predicate.
258   virtual void EmitRawTextImpl(StringRef String);
259
260   virtual void FinishImpl();
261 };
262
263 } // end anonymous namespace.
264
265 /// AddComment - Add a comment that can be emitted to the generated .s
266 /// file if applicable as a QoI issue to make the output of the compiler
267 /// more readable.  This only affects the MCAsmStreamer, and only when
268 /// verbose assembly output is enabled.
269 void MCAsmStreamer::AddComment(const Twine &T) {
270   if (!IsVerboseAsm) return;
271
272   // Make sure that CommentStream is flushed.
273   CommentStream.flush();
274
275   T.toVector(CommentToEmit);
276   // Each comment goes on its own line.
277   CommentToEmit.push_back('\n');
278
279   // Tell the comment stream that the vector changed underneath it.
280   CommentStream.resync();
281 }
282
283 void MCAsmStreamer::EmitCommentsAndEOL() {
284   if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) {
285     OS << '\n';
286     return;
287   }
288
289   CommentStream.flush();
290   StringRef Comments = CommentToEmit.str();
291
292   assert(Comments.back() == '\n' &&
293          "Comment array not newline terminated");
294   do {
295     // Emit a line of comments.
296     OS.PadToColumn(MAI->getCommentColumn());
297     size_t Position = Comments.find('\n');
298     OS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) <<'\n';
299
300     Comments = Comments.substr(Position+1);
301   } while (!Comments.empty());
302
303   CommentToEmit.clear();
304   // Tell the comment stream that the vector changed underneath it.
305   CommentStream.resync();
306 }
307
308 static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
309   assert(Bytes && "Invalid size!");
310   return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
311 }
312
313 void MCAsmStreamer::emitRawComment(const Twine &T, bool TabPrefix) {
314   if (TabPrefix)
315     OS << '\t';
316   OS << MAI->getCommentString() << T;
317   EmitEOL();
318 }
319
320 void MCAsmStreamer::ChangeSection(const MCSection *Section,
321                                   const MCExpr *Subsection) {
322   assert(Section && "Cannot switch to a null section!");
323   Section->PrintSwitchToSection(*MAI, OS, Subsection);
324 }
325
326 void MCAsmStreamer::EmitEHSymAttributes(const MCSymbol *Symbol,
327                                         MCSymbol *EHSymbol) {
328   if (UseCFI)
329     return;
330
331   unsigned Flags = FlagMap.lookup(Symbol);
332
333   if (Flags & EHGlobal)
334     EmitSymbolAttribute(EHSymbol, MCSA_Global);
335   if (Flags & EHWeakDefinition)
336     EmitSymbolAttribute(EHSymbol, MCSA_WeakDefinition);
337   if (Flags & EHPrivateExtern)
338     EmitSymbolAttribute(EHSymbol, MCSA_PrivateExtern);
339 }
340
341 void MCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
342   assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
343   MCStreamer::EmitLabel(Symbol);
344
345   OS << *Symbol << MAI->getLabelSuffix();
346   EmitEOL();
347 }
348
349 void MCAsmStreamer::EmitDebugLabel(MCSymbol *Symbol) {
350   assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
351   MCStreamer::EmitDebugLabel(Symbol);
352
353   OS << *Symbol << MAI->getDebugLabelSuffix();
354   EmitEOL();
355 }
356
357 void MCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
358   switch (Flag) {
359   case MCAF_SyntaxUnified:         OS << "\t.syntax unified"; break;
360   case MCAF_SubsectionsViaSymbols: OS << ".subsections_via_symbols"; break;
361   case MCAF_Code16:                OS << '\t'<< MAI->getCode16Directive();break;
362   case MCAF_Code32:                OS << '\t'<< MAI->getCode32Directive();break;
363   case MCAF_Code64:                OS << '\t'<< MAI->getCode64Directive();break;
364   }
365   EmitEOL();
366 }
367
368 void MCAsmStreamer::EmitLinkerOptions(ArrayRef<std::string> Options) {
369   assert(!Options.empty() && "At least one option is required!");
370   OS << "\t.linker_option \"" << Options[0] << '"';
371   for (ArrayRef<std::string>::iterator it = Options.begin() + 1,
372          ie = Options.end(); it != ie; ++it) {
373     OS << ", " << '"' << *it << '"';
374   }
375   OS << "\n";
376 }
377
378 void MCAsmStreamer::EmitDataRegion(MCDataRegionType Kind) {
379   if (!MAI->doesSupportDataRegionDirectives())
380     return;
381   switch (Kind) {
382   case MCDR_DataRegion:            OS << "\t.data_region"; break;
383   case MCDR_DataRegionJT8:         OS << "\t.data_region jt8"; break;
384   case MCDR_DataRegionJT16:        OS << "\t.data_region jt16"; break;
385   case MCDR_DataRegionJT32:        OS << "\t.data_region jt32"; break;
386   case MCDR_DataRegionEnd:         OS << "\t.end_data_region"; break;
387   }
388   EmitEOL();
389 }
390
391 void MCAsmStreamer::EmitThumbFunc(MCSymbol *Func) {
392   // This needs to emit to a temporary string to get properly quoted
393   // MCSymbols when they have spaces in them.
394   OS << "\t.thumb_func";
395   // Only Mach-O hasSubsectionsViaSymbols()
396   if (MAI->hasSubsectionsViaSymbols())
397     OS << '\t' << *Func;
398   EmitEOL();
399 }
400
401 void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
402   OS << *Symbol << " = " << *Value;
403   EmitEOL();
404
405   // FIXME: Lift context changes into super class.
406   Symbol->setVariableValue(Value);
407 }
408
409 void MCAsmStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
410   OS << ".weakref " << *Alias << ", " << *Symbol;
411   EmitEOL();
412 }
413
414 void MCAsmStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
415                                              const MCSymbol *LastLabel,
416                                              const MCSymbol *Label,
417                                              unsigned PointerSize) {
418   EmitDwarfSetLineAddr(LineDelta, Label, PointerSize);
419 }
420
421 void MCAsmStreamer::EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
422                                               const MCSymbol *Label) {
423   EmitIntValue(dwarf::DW_CFA_advance_loc4, 1);
424   const MCExpr *AddrDelta = BuildSymbolDiff(getContext(), Label, LastLabel);
425   AddrDelta = ForceExpAbs(AddrDelta);
426   EmitValue(AddrDelta, 4);
427 }
428
429
430 bool MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
431                                         MCSymbolAttr Attribute) {
432   switch (Attribute) {
433   case MCSA_Invalid: llvm_unreachable("Invalid symbol attribute");
434   case MCSA_ELF_TypeFunction:    /// .type _foo, STT_FUNC  # aka @function
435   case MCSA_ELF_TypeIndFunction: /// .type _foo, STT_GNU_IFUNC
436   case MCSA_ELF_TypeObject:      /// .type _foo, STT_OBJECT  # aka @object
437   case MCSA_ELF_TypeTLS:         /// .type _foo, STT_TLS     # aka @tls_object
438   case MCSA_ELF_TypeCommon:      /// .type _foo, STT_COMMON  # aka @common
439   case MCSA_ELF_TypeNoType:      /// .type _foo, STT_NOTYPE  # aka @notype
440   case MCSA_ELF_TypeGnuUniqueObject:  /// .type _foo, @gnu_unique_object
441     if (!MAI->hasDotTypeDotSizeDirective())
442       return false; // Symbol attribute not supported
443     OS << "\t.type\t" << *Symbol << ','
444        << ((MAI->getCommentString()[0] != '@') ? '@' : '%');
445     switch (Attribute) {
446     default: return false;
447     case MCSA_ELF_TypeFunction:    OS << "function"; break;
448     case MCSA_ELF_TypeIndFunction: OS << "gnu_indirect_function"; break;
449     case MCSA_ELF_TypeObject:      OS << "object"; break;
450     case MCSA_ELF_TypeTLS:         OS << "tls_object"; break;
451     case MCSA_ELF_TypeCommon:      OS << "common"; break;
452     case MCSA_ELF_TypeNoType:      OS << "no_type"; break;
453     case MCSA_ELF_TypeGnuUniqueObject: OS << "gnu_unique_object"; break;
454     }
455     EmitEOL();
456     return true;
457   case MCSA_Global: // .globl/.global
458     OS << MAI->getGlobalDirective();
459     FlagMap[Symbol] |= EHGlobal;
460     break;
461   case MCSA_Hidden:         OS << "\t.hidden\t";          break;
462   case MCSA_IndirectSymbol: OS << "\t.indirect_symbol\t"; break;
463   case MCSA_Internal:       OS << "\t.internal\t";        break;
464   case MCSA_LazyReference:  OS << "\t.lazy_reference\t";  break;
465   case MCSA_Local:          OS << "\t.local\t";           break;
466   case MCSA_NoDeadStrip:    OS << "\t.no_dead_strip\t";   break;
467   case MCSA_SymbolResolver: OS << "\t.symbol_resolver\t"; break;
468   case MCSA_PrivateExtern:
469     OS << "\t.private_extern\t";
470     FlagMap[Symbol] |= EHPrivateExtern;
471     break;
472   case MCSA_Protected:      OS << "\t.protected\t";       break;
473   case MCSA_Reference:      OS << "\t.reference\t";       break;
474   case MCSA_Weak:           OS << "\t.weak\t";            break;
475   case MCSA_WeakDefinition:
476     OS << "\t.weak_definition\t";
477     FlagMap[Symbol] |= EHWeakDefinition;
478     break;
479       // .weak_reference
480   case MCSA_WeakReference:  OS << MAI->getWeakRefDirective(); break;
481   case MCSA_WeakDefAutoPrivate: OS << "\t.weak_def_can_be_hidden\t"; break;
482   }
483
484   OS << *Symbol;
485   EmitEOL();
486
487   return true;
488 }
489
490 void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
491   OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
492   EmitEOL();
493 }
494
495 void MCAsmStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {
496   OS << "\t.def\t " << *Symbol << ';';
497   EmitEOL();
498 }
499
500 void MCAsmStreamer::EmitCOFFSymbolStorageClass (int StorageClass) {
501   OS << "\t.scl\t" << StorageClass << ';';
502   EmitEOL();
503 }
504
505 void MCAsmStreamer::EmitCOFFSymbolType (int Type) {
506   OS << "\t.type\t" << Type << ';';
507   EmitEOL();
508 }
509
510 void MCAsmStreamer::EndCOFFSymbolDef() {
511   OS << "\t.endef";
512   EmitEOL();
513 }
514
515 void MCAsmStreamer::EmitCOFFSectionIndex(MCSymbol const *Symbol) {
516   OS << "\t.secidx\t" << *Symbol;
517   EmitEOL();
518 }
519
520 void MCAsmStreamer::EmitCOFFSecRel32(MCSymbol const *Symbol) {
521   OS << "\t.secrel32\t" << *Symbol;
522   EmitEOL();
523 }
524
525 void MCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
526   assert(MAI->hasDotTypeDotSizeDirective());
527   OS << "\t.size\t" << *Symbol << ", " << *Value << '\n';
528 }
529
530 void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
531                                      unsigned ByteAlignment) {
532   // Common symbols do not belong to any actual section.
533   AssignSection(Symbol, NULL);
534
535   OS << "\t.comm\t" << *Symbol << ',' << Size;
536   if (ByteAlignment != 0) {
537     if (MAI->getCOMMDirectiveAlignmentIsInBytes())
538       OS << ',' << ByteAlignment;
539     else
540       OS << ',' << Log2_32(ByteAlignment);
541   }
542   EmitEOL();
543 }
544
545 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
546 ///
547 /// @param Symbol - The common symbol to emit.
548 /// @param Size - The size of the common symbol.
549 void MCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
550                                           unsigned ByteAlign) {
551   // Common symbols do not belong to any actual section.
552   AssignSection(Symbol, NULL);
553
554   OS << "\t.lcomm\t" << *Symbol << ',' << Size;
555   if (ByteAlign > 1) {
556     switch (MAI->getLCOMMDirectiveAlignmentType()) {
557     case LCOMM::NoAlignment:
558       llvm_unreachable("alignment not supported on .lcomm!");
559     case LCOMM::ByteAlignment:
560       OS << ',' << ByteAlign;
561       break;
562     case LCOMM::Log2Alignment:
563       assert(isPowerOf2_32(ByteAlign) && "alignment must be a power of 2");
564       OS << ',' << Log2_32(ByteAlign);
565       break;
566     }
567   }
568   EmitEOL();
569 }
570
571 void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
572                                  uint64_t Size, unsigned ByteAlignment) {
573   if (Symbol)
574     AssignSection(Symbol, Section);
575
576   // Note: a .zerofill directive does not switch sections.
577   OS << ".zerofill ";
578
579   // This is a mach-o specific directive.
580   const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
581   OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
582
583   if (Symbol != NULL) {
584     OS << ',' << *Symbol << ',' << Size;
585     if (ByteAlignment != 0)
586       OS << ',' << Log2_32(ByteAlignment);
587   }
588   EmitEOL();
589 }
590
591 // .tbss sym, size, align
592 // This depends that the symbol has already been mangled from the original,
593 // e.g. _a.
594 void MCAsmStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
595                                    uint64_t Size, unsigned ByteAlignment) {
596   AssignSection(Symbol, Section);
597
598   assert(Symbol != NULL && "Symbol shouldn't be NULL!");
599   // Instead of using the Section we'll just use the shortcut.
600   // This is a mach-o specific directive and section.
601   OS << ".tbss " << *Symbol << ", " << Size;
602
603   // Output align if we have it.  We default to 1 so don't bother printing
604   // that.
605   if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
606
607   EmitEOL();
608 }
609
610 static inline char toOctal(int X) { return (X&7)+'0'; }
611
612 static void PrintQuotedString(StringRef Data, raw_ostream &OS) {
613   OS << '"';
614
615   for (unsigned i = 0, e = Data.size(); i != e; ++i) {
616     unsigned char C = Data[i];
617     if (C == '"' || C == '\\') {
618       OS << '\\' << (char)C;
619       continue;
620     }
621
622     if (isprint((unsigned char)C)) {
623       OS << (char)C;
624       continue;
625     }
626
627     switch (C) {
628       case '\b': OS << "\\b"; break;
629       case '\f': OS << "\\f"; break;
630       case '\n': OS << "\\n"; break;
631       case '\r': OS << "\\r"; break;
632       case '\t': OS << "\\t"; break;
633       default:
634         OS << '\\';
635         OS << toOctal(C >> 6);
636         OS << toOctal(C >> 3);
637         OS << toOctal(C >> 0);
638         break;
639     }
640   }
641
642   OS << '"';
643 }
644
645
646 void MCAsmStreamer::EmitBytes(StringRef Data) {
647   assert(getCurrentSection().first &&
648          "Cannot emit contents before setting section!");
649   if (Data.empty()) return;
650
651   if (Data.size() == 1) {
652     OS << MAI->getData8bitsDirective();
653     OS << (unsigned)(unsigned char)Data[0];
654     EmitEOL();
655     return;
656   }
657
658   // If the data ends with 0 and the target supports .asciz, use it, otherwise
659   // use .ascii
660   if (MAI->getAscizDirective() && Data.back() == 0) {
661     OS << MAI->getAscizDirective();
662     Data = Data.substr(0, Data.size()-1);
663   } else {
664     OS << MAI->getAsciiDirective();
665   }
666
667   PrintQuotedString(Data, OS);
668   EmitEOL();
669 }
670
671 void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size) {
672   EmitValue(MCConstantExpr::Create(Value, getContext()), Size);
673 }
674
675 void MCAsmStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size) {
676   assert(getCurrentSection().first &&
677          "Cannot emit contents before setting section!");
678   const char *Directive = 0;
679   switch (Size) {
680   default: break;
681   case 1: Directive = MAI->getData8bitsDirective();  break;
682   case 2: Directive = MAI->getData16bitsDirective(); break;
683   case 4: Directive = MAI->getData32bitsDirective(); break;
684   case 8:
685     Directive = MAI->getData64bitsDirective();
686     // If the target doesn't support 64-bit data, emit as two 32-bit halves.
687     if (Directive) break;
688     int64_t IntValue;
689     if (!Value->EvaluateAsAbsolute(IntValue))
690       report_fatal_error("Don't know how to emit this value.");
691     if (MAI->isLittleEndian()) {
692       EmitIntValue((uint32_t)(IntValue >> 0 ), 4);
693       EmitIntValue((uint32_t)(IntValue >> 32), 4);
694     } else {
695       EmitIntValue((uint32_t)(IntValue >> 32), 4);
696       EmitIntValue((uint32_t)(IntValue >> 0 ), 4);
697     }
698     return;
699   }
700
701   assert(Directive && "Invalid size for machine code value!");
702   OS << Directive << *Value;
703   EmitEOL();
704 }
705
706 void MCAsmStreamer::EmitULEB128Value(const MCExpr *Value) {
707   int64_t IntValue;
708   if (Value->EvaluateAsAbsolute(IntValue)) {
709     EmitULEB128IntValue(IntValue);
710     return;
711   }
712   assert(MAI->hasLEB128() && "Cannot print a .uleb");
713   OS << ".uleb128 " << *Value;
714   EmitEOL();
715 }
716
717 void MCAsmStreamer::EmitSLEB128Value(const MCExpr *Value) {
718   int64_t IntValue;
719   if (Value->EvaluateAsAbsolute(IntValue)) {
720     EmitSLEB128IntValue(IntValue);
721     return;
722   }
723   assert(MAI->hasLEB128() && "Cannot print a .sleb");
724   OS << ".sleb128 " << *Value;
725   EmitEOL();
726 }
727
728 void MCAsmStreamer::EmitGPRel64Value(const MCExpr *Value) {
729   assert(MAI->getGPRel64Directive() != 0);
730   OS << MAI->getGPRel64Directive() << *Value;
731   EmitEOL();
732 }
733
734 void MCAsmStreamer::EmitGPRel32Value(const MCExpr *Value) {
735   assert(MAI->getGPRel32Directive() != 0);
736   OS << MAI->getGPRel32Directive() << *Value;
737   EmitEOL();
738 }
739
740
741 /// EmitFill - Emit NumBytes bytes worth of the value specified by
742 /// FillValue.  This implements directives such as '.space'.
743 void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue) {
744   if (NumBytes == 0) return;
745
746   if (const char *ZeroDirective = MAI->getZeroDirective()) {
747     OS << ZeroDirective << NumBytes;
748     if (FillValue != 0)
749       OS << ',' << (int)FillValue;
750     EmitEOL();
751     return;
752   }
753
754   // Emit a byte at a time.
755   MCStreamer::EmitFill(NumBytes, FillValue);
756 }
757
758 void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
759                                          unsigned ValueSize,
760                                          unsigned MaxBytesToEmit) {
761   // Some assemblers don't support non-power of two alignments, so we always
762   // emit alignments as a power of two if possible.
763   if (isPowerOf2_32(ByteAlignment)) {
764     switch (ValueSize) {
765     default: llvm_unreachable("Invalid size for machine code value!");
766     case 1: OS << MAI->getAlignDirective(); break;
767     // FIXME: use MAI for this!
768     case 2: OS << ".p2alignw "; break;
769     case 4: OS << ".p2alignl "; break;
770     case 8: llvm_unreachable("Unsupported alignment size!");
771     }
772
773     if (MAI->getAlignmentIsInBytes())
774       OS << ByteAlignment;
775     else
776       OS << Log2_32(ByteAlignment);
777
778     if (Value || MaxBytesToEmit) {
779       OS << ", 0x";
780       OS.write_hex(truncateToSize(Value, ValueSize));
781
782       if (MaxBytesToEmit)
783         OS << ", " << MaxBytesToEmit;
784     }
785     EmitEOL();
786     return;
787   }
788
789   // Non-power of two alignment.  This is not widely supported by assemblers.
790   // FIXME: Parameterize this based on MAI.
791   switch (ValueSize) {
792   default: llvm_unreachable("Invalid size for machine code value!");
793   case 1: OS << ".balign";  break;
794   case 2: OS << ".balignw"; break;
795   case 4: OS << ".balignl"; break;
796   case 8: llvm_unreachable("Unsupported alignment size!");
797   }
798
799   OS << ' ' << ByteAlignment;
800   OS << ", " << truncateToSize(Value, ValueSize);
801   if (MaxBytesToEmit)
802     OS << ", " << MaxBytesToEmit;
803   EmitEOL();
804 }
805
806 void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
807                                       unsigned MaxBytesToEmit) {
808   // Emit with a text fill value.
809   EmitValueToAlignment(ByteAlignment, MAI->getTextAlignFillValue(),
810                        1, MaxBytesToEmit);
811 }
812
813 bool MCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
814                                       unsigned char Value) {
815   // FIXME: Verify that Offset is associated with the current section.
816   OS << ".org " << *Offset << ", " << (unsigned) Value;
817   EmitEOL();
818   return false;
819 }
820
821
822 void MCAsmStreamer::EmitFileDirective(StringRef Filename) {
823   assert(MAI->hasSingleParameterDotFile());
824   OS << "\t.file\t";
825   PrintQuotedString(Filename, OS);
826   EmitEOL();
827 }
828
829 bool MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
830                                            StringRef Filename, unsigned CUID) {
831   if (!UseDwarfDirectory && !Directory.empty()) {
832     if (sys::path::is_absolute(Filename))
833       return EmitDwarfFileDirective(FileNo, "", Filename, CUID);
834
835     SmallString<128> FullPathName = Directory;
836     sys::path::append(FullPathName, Filename);
837     return EmitDwarfFileDirective(FileNo, "", FullPathName, CUID);
838   }
839
840   if (UseLoc) {
841     OS << "\t.file\t" << FileNo << ' ';
842     if (!Directory.empty()) {
843       PrintQuotedString(Directory, OS);
844       OS << ' ';
845     }
846     PrintQuotedString(Filename, OS);
847     EmitEOL();
848     // All .file will belong to a single CUID.
849     CUID = 0;
850   }
851   return this->MCStreamer::EmitDwarfFileDirective(FileNo, Directory, Filename,
852                                                   CUID);
853 }
854
855 void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
856                                           unsigned Column, unsigned Flags,
857                                           unsigned Isa,
858                                           unsigned Discriminator,
859                                           StringRef FileName) {
860   this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
861                                           Isa, Discriminator, FileName);
862   if (!UseLoc)
863     return;
864
865   OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
866   if (Flags & DWARF2_FLAG_BASIC_BLOCK)
867     OS << " basic_block";
868   if (Flags & DWARF2_FLAG_PROLOGUE_END)
869     OS << " prologue_end";
870   if (Flags & DWARF2_FLAG_EPILOGUE_BEGIN)
871     OS << " epilogue_begin";
872
873   unsigned OldFlags = getContext().getCurrentDwarfLoc().getFlags();
874   if ((Flags & DWARF2_FLAG_IS_STMT) != (OldFlags & DWARF2_FLAG_IS_STMT)) {
875     OS << " is_stmt ";
876
877     if (Flags & DWARF2_FLAG_IS_STMT)
878       OS << "1";
879     else
880       OS << "0";
881   }
882
883   if (Isa)
884     OS << "isa " << Isa;
885   if (Discriminator)
886     OS << "discriminator " << Discriminator;
887
888   if (IsVerboseAsm) {
889     OS.PadToColumn(MAI->getCommentColumn());
890     OS << MAI->getCommentString() << ' ' << FileName << ':'
891        << Line << ':' << Column;
892   }
893   EmitEOL();
894 }
895
896 void MCAsmStreamer::EmitIdent(StringRef IdentString) {
897   assert(MAI->hasIdentDirective() && ".ident directive not supported");
898   OS << "\t.ident\t";
899   PrintQuotedString(IdentString, OS);
900   EmitEOL();
901 }
902
903 void MCAsmStreamer::EmitCFISections(bool EH, bool Debug) {
904   MCStreamer::EmitCFISections(EH, Debug);
905
906   if (!UseCFI)
907     return;
908
909   OS << "\t.cfi_sections ";
910   if (EH) {
911     OS << ".eh_frame";
912     if (Debug)
913       OS << ", .debug_frame";
914   } else if (Debug) {
915     OS << ".debug_frame";
916   }
917
918   EmitEOL();
919 }
920
921 void MCAsmStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) {
922   if (!UseCFI) {
923     RecordProcStart(Frame);
924     return;
925   }
926
927   OS << "\t.cfi_startproc";
928   EmitEOL();
929 }
930
931 void MCAsmStreamer::EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) {
932   if (!UseCFI) {
933     RecordProcEnd(Frame);
934     return;
935   }
936
937   // Put a dummy non-null value in Frame.End to mark that this frame has been
938   // closed.
939   Frame.End = (MCSymbol *) 1;
940
941   OS << "\t.cfi_endproc";
942   EmitEOL();
943 }
944
945 void MCAsmStreamer::EmitRegisterName(int64_t Register) {
946   if (InstPrinter && !MAI->useDwarfRegNumForCFI()) {
947     const MCRegisterInfo *MRI = getContext().getRegisterInfo();
948     unsigned LLVMRegister = MRI->getLLVMRegNum(Register, true);
949     InstPrinter->printRegName(OS, LLVMRegister);
950   } else {
951     OS << Register;
952   }
953 }
954
955 void MCAsmStreamer::EmitCFIDefCfa(int64_t Register, int64_t Offset) {
956   MCStreamer::EmitCFIDefCfa(Register, Offset);
957
958   if (!UseCFI)
959     return;
960
961   OS << "\t.cfi_def_cfa ";
962   EmitRegisterName(Register);
963   OS << ", " << Offset;
964   EmitEOL();
965 }
966
967 void MCAsmStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
968   MCStreamer::EmitCFIDefCfaOffset(Offset);
969
970   if (!UseCFI)
971     return;
972
973   OS << "\t.cfi_def_cfa_offset " << Offset;
974   EmitEOL();
975 }
976
977 void MCAsmStreamer::EmitCFIDefCfaRegister(int64_t Register) {
978   MCStreamer::EmitCFIDefCfaRegister(Register);
979
980   if (!UseCFI)
981     return;
982
983   OS << "\t.cfi_def_cfa_register ";
984   EmitRegisterName(Register);
985   EmitEOL();
986 }
987
988 void MCAsmStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
989   this->MCStreamer::EmitCFIOffset(Register, Offset);
990
991   if (!UseCFI)
992     return;
993
994   OS << "\t.cfi_offset ";
995   EmitRegisterName(Register);
996   OS << ", " << Offset;
997   EmitEOL();
998 }
999
1000 void MCAsmStreamer::EmitCFIPersonality(const MCSymbol *Sym,
1001                                        unsigned Encoding) {
1002   MCStreamer::EmitCFIPersonality(Sym, Encoding);
1003
1004   if (!UseCFI)
1005     return;
1006
1007   OS << "\t.cfi_personality " << Encoding << ", " << *Sym;
1008   EmitEOL();
1009 }
1010
1011 void MCAsmStreamer::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) {
1012   MCStreamer::EmitCFILsda(Sym, Encoding);
1013
1014   if (!UseCFI)
1015     return;
1016
1017   OS << "\t.cfi_lsda " << Encoding << ", " << *Sym;
1018   EmitEOL();
1019 }
1020
1021 void MCAsmStreamer::EmitCFIRememberState() {
1022   MCStreamer::EmitCFIRememberState();
1023
1024   if (!UseCFI)
1025     return;
1026
1027   OS << "\t.cfi_remember_state";
1028   EmitEOL();
1029 }
1030
1031 void MCAsmStreamer::EmitCFIRestoreState() {
1032   MCStreamer::EmitCFIRestoreState();
1033
1034   if (!UseCFI)
1035     return;
1036
1037   OS << "\t.cfi_restore_state";
1038   EmitEOL();
1039 }
1040
1041 void MCAsmStreamer::EmitCFISameValue(int64_t Register) {
1042   MCStreamer::EmitCFISameValue(Register);
1043
1044   if (!UseCFI)
1045     return;
1046
1047   OS << "\t.cfi_same_value ";
1048   EmitRegisterName(Register);
1049   EmitEOL();
1050 }
1051
1052 void MCAsmStreamer::EmitCFIRelOffset(int64_t Register, int64_t Offset) {
1053   MCStreamer::EmitCFIRelOffset(Register, Offset);
1054
1055   if (!UseCFI)
1056     return;
1057
1058   OS << "\t.cfi_rel_offset ";
1059   EmitRegisterName(Register);
1060   OS << ", " << Offset;
1061   EmitEOL();
1062 }
1063
1064 void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) {
1065   MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
1066
1067   if (!UseCFI)
1068     return;
1069
1070   OS << "\t.cfi_adjust_cfa_offset " << Adjustment;
1071   EmitEOL();
1072 }
1073
1074 void MCAsmStreamer::EmitCFISignalFrame() {
1075   MCStreamer::EmitCFISignalFrame();
1076
1077   if (!UseCFI)
1078     return;
1079
1080   OS << "\t.cfi_signal_frame";
1081   EmitEOL();
1082 }
1083
1084 void MCAsmStreamer::EmitCFIUndefined(int64_t Register) {
1085   MCStreamer::EmitCFIUndefined(Register);
1086
1087   if (!UseCFI)
1088     return;
1089
1090   OS << "\t.cfi_undefined " << Register;
1091   EmitEOL();
1092 }
1093
1094 void MCAsmStreamer::EmitCFIRegister(int64_t Register1, int64_t Register2) {
1095   MCStreamer::EmitCFIRegister(Register1, Register2);
1096
1097   if (!UseCFI)
1098     return;
1099
1100   OS << "\t.cfi_register " << Register1 << ", " << Register2;
1101   EmitEOL();
1102 }
1103
1104 void MCAsmStreamer::EmitCFIWindowSave() {
1105   MCStreamer::EmitCFIWindowSave();
1106
1107   if (!UseCFI)
1108     return;
1109
1110   OS << "\t.cfi_window_save";
1111   EmitEOL();
1112 }
1113
1114 void MCAsmStreamer::EmitWin64EHStartProc(const MCSymbol *Symbol) {
1115   MCStreamer::EmitWin64EHStartProc(Symbol);
1116
1117   OS << ".seh_proc " << *Symbol;
1118   EmitEOL();
1119 }
1120
1121 void MCAsmStreamer::EmitWin64EHEndProc() {
1122   MCStreamer::EmitWin64EHEndProc();
1123
1124   OS << "\t.seh_endproc";
1125   EmitEOL();
1126 }
1127
1128 void MCAsmStreamer::EmitWin64EHStartChained() {
1129   MCStreamer::EmitWin64EHStartChained();
1130
1131   OS << "\t.seh_startchained";
1132   EmitEOL();
1133 }
1134
1135 void MCAsmStreamer::EmitWin64EHEndChained() {
1136   MCStreamer::EmitWin64EHEndChained();
1137
1138   OS << "\t.seh_endchained";
1139   EmitEOL();
1140 }
1141
1142 void MCAsmStreamer::EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
1143                                        bool Except) {
1144   MCStreamer::EmitWin64EHHandler(Sym, Unwind, Except);
1145
1146   OS << "\t.seh_handler " << *Sym;
1147   if (Unwind)
1148     OS << ", @unwind";
1149   if (Except)
1150     OS << ", @except";
1151   EmitEOL();
1152 }
1153
1154 static const MCSection *getWin64EHTableSection(StringRef suffix,
1155                                                MCContext &context) {
1156   // FIXME: This doesn't belong in MCObjectFileInfo. However,
1157   /// this duplicate code in MCWin64EH.cpp.
1158   if (suffix == "")
1159     return context.getObjectFileInfo()->getXDataSection();
1160   return context.getCOFFSection((".xdata"+suffix).str(),
1161                                 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
1162                                 COFF::IMAGE_SCN_MEM_READ |
1163                                 COFF::IMAGE_SCN_MEM_WRITE,
1164                                 SectionKind::getDataRel());
1165 }
1166
1167 void MCAsmStreamer::EmitWin64EHHandlerData() {
1168   MCStreamer::EmitWin64EHHandlerData();
1169
1170   // Switch sections. Don't call SwitchSection directly, because that will
1171   // cause the section switch to be visible in the emitted assembly.
1172   // We only do this so the section switch that terminates the handler
1173   // data block is visible.
1174   MCWin64EHUnwindInfo *CurFrame = getCurrentW64UnwindInfo();
1175   StringRef suffix=MCWin64EHUnwindEmitter::GetSectionSuffix(CurFrame->Function);
1176   const MCSection *xdataSect = getWin64EHTableSection(suffix, getContext());
1177   if (xdataSect)
1178     SwitchSectionNoChange(xdataSect);
1179
1180   OS << "\t.seh_handlerdata";
1181   EmitEOL();
1182 }
1183
1184 void MCAsmStreamer::EmitWin64EHPushReg(unsigned Register) {
1185   MCStreamer::EmitWin64EHPushReg(Register);
1186
1187   OS << "\t.seh_pushreg " << Register;
1188   EmitEOL();
1189 }
1190
1191 void MCAsmStreamer::EmitWin64EHSetFrame(unsigned Register, unsigned Offset) {
1192   MCStreamer::EmitWin64EHSetFrame(Register, Offset);
1193
1194   OS << "\t.seh_setframe " << Register << ", " << Offset;
1195   EmitEOL();
1196 }
1197
1198 void MCAsmStreamer::EmitWin64EHAllocStack(unsigned Size) {
1199   MCStreamer::EmitWin64EHAllocStack(Size);
1200
1201   OS << "\t.seh_stackalloc " << Size;
1202   EmitEOL();
1203 }
1204
1205 void MCAsmStreamer::EmitWin64EHSaveReg(unsigned Register, unsigned Offset) {
1206   MCStreamer::EmitWin64EHSaveReg(Register, Offset);
1207
1208   OS << "\t.seh_savereg " << Register << ", " << Offset;
1209   EmitEOL();
1210 }
1211
1212 void MCAsmStreamer::EmitWin64EHSaveXMM(unsigned Register, unsigned Offset) {
1213   MCStreamer::EmitWin64EHSaveXMM(Register, Offset);
1214
1215   OS << "\t.seh_savexmm " << Register << ", " << Offset;
1216   EmitEOL();
1217 }
1218
1219 void MCAsmStreamer::EmitWin64EHPushFrame(bool Code) {
1220   MCStreamer::EmitWin64EHPushFrame(Code);
1221
1222   OS << "\t.seh_pushframe";
1223   if (Code)
1224     OS << " @code";
1225   EmitEOL();
1226 }
1227
1228 void MCAsmStreamer::EmitWin64EHEndProlog(void) {
1229   MCStreamer::EmitWin64EHEndProlog();
1230
1231   OS << "\t.seh_endprologue";
1232   EmitEOL();
1233 }
1234
1235 void MCAsmStreamer::AddEncodingComment(const MCInst &Inst) {
1236   raw_ostream &OS = GetCommentOS();
1237   SmallString<256> Code;
1238   SmallVector<MCFixup, 4> Fixups;
1239   raw_svector_ostream VecOS(Code);
1240   Emitter->EncodeInstruction(Inst, VecOS, Fixups);
1241   VecOS.flush();
1242
1243   // If we are showing fixups, create symbolic markers in the encoded
1244   // representation. We do this by making a per-bit map to the fixup item index,
1245   // then trying to display it as nicely as possible.
1246   SmallVector<uint8_t, 64> FixupMap;
1247   FixupMap.resize(Code.size() * 8);
1248   for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
1249     FixupMap[i] = 0;
1250
1251   for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1252     MCFixup &F = Fixups[i];
1253     const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
1254     for (unsigned j = 0; j != Info.TargetSize; ++j) {
1255       unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j;
1256       assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
1257       FixupMap[Index] = 1 + i;
1258     }
1259   }
1260
1261   // FIXME: Note the fixup comments for Thumb2 are completely bogus since the
1262   // high order halfword of a 32-bit Thumb2 instruction is emitted first.
1263   OS << "encoding: [";
1264   for (unsigned i = 0, e = Code.size(); i != e; ++i) {
1265     if (i)
1266       OS << ',';
1267
1268     // See if all bits are the same map entry.
1269     uint8_t MapEntry = FixupMap[i * 8 + 0];
1270     for (unsigned j = 1; j != 8; ++j) {
1271       if (FixupMap[i * 8 + j] == MapEntry)
1272         continue;
1273
1274       MapEntry = uint8_t(~0U);
1275       break;
1276     }
1277
1278     if (MapEntry != uint8_t(~0U)) {
1279       if (MapEntry == 0) {
1280         OS << format("0x%02x", uint8_t(Code[i]));
1281       } else {
1282         if (Code[i]) {
1283           // FIXME: Some of the 8 bits require fix up.
1284           OS << format("0x%02x", uint8_t(Code[i])) << '\''
1285              << char('A' + MapEntry - 1) << '\'';
1286         } else
1287           OS << char('A' + MapEntry - 1);
1288       }
1289     } else {
1290       // Otherwise, write out in binary.
1291       OS << "0b";
1292       for (unsigned j = 8; j--;) {
1293         unsigned Bit = (Code[i] >> j) & 1;
1294
1295         unsigned FixupBit;
1296         if (MAI->isLittleEndian())
1297           FixupBit = i * 8 + j;
1298         else
1299           FixupBit = i * 8 + (7-j);
1300
1301         if (uint8_t MapEntry = FixupMap[FixupBit]) {
1302           assert(Bit == 0 && "Encoder wrote into fixed up bit!");
1303           OS << char('A' + MapEntry - 1);
1304         } else
1305           OS << Bit;
1306       }
1307     }
1308   }
1309   OS << "]\n";
1310
1311   for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1312     MCFixup &F = Fixups[i];
1313     const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
1314     OS << "  fixup " << char('A' + i) << " - " << "offset: " << F.getOffset()
1315        << ", value: " << *F.getValue() << ", kind: " << Info.Name << "\n";
1316   }
1317 }
1318
1319 void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
1320   assert(getCurrentSection().first &&
1321          "Cannot emit contents before setting section!");
1322
1323   // Show the encoding in a comment if we have a code emitter.
1324   if (Emitter)
1325     AddEncodingComment(Inst);
1326
1327   // Show the MCInst if enabled.
1328   if (ShowInst) {
1329     Inst.dump_pretty(GetCommentOS(), MAI, InstPrinter.get(), "\n ");
1330     GetCommentOS() << "\n";
1331   }
1332
1333   // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
1334   if (InstPrinter)
1335     InstPrinter->printInst(&Inst, OS, "");
1336   else
1337     Inst.print(OS, MAI);
1338   EmitEOL();
1339 }
1340
1341 void MCAsmStreamer::EmitBundleAlignMode(unsigned AlignPow2) {
1342   OS << "\t.bundle_align_mode " << AlignPow2;
1343   EmitEOL();
1344 }
1345
1346 void MCAsmStreamer::EmitBundleLock(bool AlignToEnd) {
1347   OS << "\t.bundle_lock";
1348   if (AlignToEnd)
1349     OS << " align_to_end";
1350   EmitEOL();
1351 }
1352
1353 void MCAsmStreamer::EmitBundleUnlock() {
1354   OS << "\t.bundle_unlock";
1355   EmitEOL();
1356 }
1357
1358 /// EmitRawText - If this file is backed by an assembly streamer, this dumps
1359 /// the specified string in the output .s file.  This capability is
1360 /// indicated by the hasRawTextSupport() predicate.
1361 void MCAsmStreamer::EmitRawTextImpl(StringRef String) {
1362   if (!String.empty() && String.back() == '\n')
1363     String = String.substr(0, String.size()-1);
1364   OS << String;
1365   EmitEOL();
1366 }
1367
1368 void MCAsmStreamer::FinishImpl() {
1369   // FIXME: This header is duplicated with MCObjectStreamer
1370   // Dump out the dwarf file & directory tables and line tables.
1371   const MCSymbol *LineSectionSymbol = NULL;
1372   if (getContext().hasDwarfFiles() && !UseLoc)
1373     LineSectionSymbol = MCDwarfFileTable::Emit(this);
1374
1375   // If we are generating dwarf for assembly source files dump out the sections.
1376   if (getContext().getGenDwarfForAssembly())
1377     MCGenDwarfInfo::Emit(this, LineSectionSymbol);
1378
1379   if (!UseCFI)
1380     EmitFrames(AsmBackend.get(), false);
1381 }
1382
1383 MCStreamer *llvm::createAsmStreamer(MCContext &Context,
1384                                     MCTargetStreamer *TargetStreamer,
1385                                     formatted_raw_ostream &OS,
1386                                     bool isVerboseAsm, bool useLoc, bool useCFI,
1387                                     bool useDwarfDirectory, MCInstPrinter *IP,
1388                                     MCCodeEmitter *CE, MCAsmBackend *MAB,
1389                                     bool ShowInst) {
1390   return new MCAsmStreamer(Context, TargetStreamer, OS, isVerboseAsm, useLoc,
1391                            useCFI, useDwarfDirectory, IP, CE, MAB, ShowInst);
1392 }