MC: Add support for .cfi_startproc simple
[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, formatted_raw_ostream &os,
70                 bool isVerboseAsm, bool useLoc, bool useCFI,
71                 bool useDwarfDirectory, MCInstPrinter *printer,
72                 MCCodeEmitter *emitter, MCAsmBackend *asmbackend, bool showInst)
73       : MCStreamer(Context), 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   if (Frame.IsSimple)
929     OS << " simple";
930   EmitEOL();
931 }
932
933 void MCAsmStreamer::EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) {
934   if (!UseCFI) {
935     RecordProcEnd(Frame);
936     return;
937   }
938
939   // Put a dummy non-null value in Frame.End to mark that this frame has been
940   // closed.
941   Frame.End = (MCSymbol *) 1;
942
943   OS << "\t.cfi_endproc";
944   EmitEOL();
945 }
946
947 void MCAsmStreamer::EmitRegisterName(int64_t Register) {
948   if (InstPrinter && !MAI->useDwarfRegNumForCFI()) {
949     const MCRegisterInfo *MRI = getContext().getRegisterInfo();
950     unsigned LLVMRegister = MRI->getLLVMRegNum(Register, true);
951     InstPrinter->printRegName(OS, LLVMRegister);
952   } else {
953     OS << Register;
954   }
955 }
956
957 void MCAsmStreamer::EmitCFIDefCfa(int64_t Register, int64_t Offset) {
958   MCStreamer::EmitCFIDefCfa(Register, Offset);
959
960   if (!UseCFI)
961     return;
962
963   OS << "\t.cfi_def_cfa ";
964   EmitRegisterName(Register);
965   OS << ", " << Offset;
966   EmitEOL();
967 }
968
969 void MCAsmStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
970   MCStreamer::EmitCFIDefCfaOffset(Offset);
971
972   if (!UseCFI)
973     return;
974
975   OS << "\t.cfi_def_cfa_offset " << Offset;
976   EmitEOL();
977 }
978
979 void MCAsmStreamer::EmitCFIDefCfaRegister(int64_t Register) {
980   MCStreamer::EmitCFIDefCfaRegister(Register);
981
982   if (!UseCFI)
983     return;
984
985   OS << "\t.cfi_def_cfa_register ";
986   EmitRegisterName(Register);
987   EmitEOL();
988 }
989
990 void MCAsmStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
991   this->MCStreamer::EmitCFIOffset(Register, Offset);
992
993   if (!UseCFI)
994     return;
995
996   OS << "\t.cfi_offset ";
997   EmitRegisterName(Register);
998   OS << ", " << Offset;
999   EmitEOL();
1000 }
1001
1002 void MCAsmStreamer::EmitCFIPersonality(const MCSymbol *Sym,
1003                                        unsigned Encoding) {
1004   MCStreamer::EmitCFIPersonality(Sym, Encoding);
1005
1006   if (!UseCFI)
1007     return;
1008
1009   OS << "\t.cfi_personality " << Encoding << ", " << *Sym;
1010   EmitEOL();
1011 }
1012
1013 void MCAsmStreamer::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) {
1014   MCStreamer::EmitCFILsda(Sym, Encoding);
1015
1016   if (!UseCFI)
1017     return;
1018
1019   OS << "\t.cfi_lsda " << Encoding << ", " << *Sym;
1020   EmitEOL();
1021 }
1022
1023 void MCAsmStreamer::EmitCFIRememberState() {
1024   MCStreamer::EmitCFIRememberState();
1025
1026   if (!UseCFI)
1027     return;
1028
1029   OS << "\t.cfi_remember_state";
1030   EmitEOL();
1031 }
1032
1033 void MCAsmStreamer::EmitCFIRestoreState() {
1034   MCStreamer::EmitCFIRestoreState();
1035
1036   if (!UseCFI)
1037     return;
1038
1039   OS << "\t.cfi_restore_state";
1040   EmitEOL();
1041 }
1042
1043 void MCAsmStreamer::EmitCFISameValue(int64_t Register) {
1044   MCStreamer::EmitCFISameValue(Register);
1045
1046   if (!UseCFI)
1047     return;
1048
1049   OS << "\t.cfi_same_value ";
1050   EmitRegisterName(Register);
1051   EmitEOL();
1052 }
1053
1054 void MCAsmStreamer::EmitCFIRelOffset(int64_t Register, int64_t Offset) {
1055   MCStreamer::EmitCFIRelOffset(Register, Offset);
1056
1057   if (!UseCFI)
1058     return;
1059
1060   OS << "\t.cfi_rel_offset ";
1061   EmitRegisterName(Register);
1062   OS << ", " << Offset;
1063   EmitEOL();
1064 }
1065
1066 void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) {
1067   MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
1068
1069   if (!UseCFI)
1070     return;
1071
1072   OS << "\t.cfi_adjust_cfa_offset " << Adjustment;
1073   EmitEOL();
1074 }
1075
1076 void MCAsmStreamer::EmitCFISignalFrame() {
1077   MCStreamer::EmitCFISignalFrame();
1078
1079   if (!UseCFI)
1080     return;
1081
1082   OS << "\t.cfi_signal_frame";
1083   EmitEOL();
1084 }
1085
1086 void MCAsmStreamer::EmitCFIUndefined(int64_t Register) {
1087   MCStreamer::EmitCFIUndefined(Register);
1088
1089   if (!UseCFI)
1090     return;
1091
1092   OS << "\t.cfi_undefined " << Register;
1093   EmitEOL();
1094 }
1095
1096 void MCAsmStreamer::EmitCFIRegister(int64_t Register1, int64_t Register2) {
1097   MCStreamer::EmitCFIRegister(Register1, Register2);
1098
1099   if (!UseCFI)
1100     return;
1101
1102   OS << "\t.cfi_register " << Register1 << ", " << Register2;
1103   EmitEOL();
1104 }
1105
1106 void MCAsmStreamer::EmitCFIWindowSave() {
1107   MCStreamer::EmitCFIWindowSave();
1108
1109   if (!UseCFI)
1110     return;
1111
1112   OS << "\t.cfi_window_save";
1113   EmitEOL();
1114 }
1115
1116 void MCAsmStreamer::EmitWin64EHStartProc(const MCSymbol *Symbol) {
1117   MCStreamer::EmitWin64EHStartProc(Symbol);
1118
1119   OS << ".seh_proc " << *Symbol;
1120   EmitEOL();
1121 }
1122
1123 void MCAsmStreamer::EmitWin64EHEndProc() {
1124   MCStreamer::EmitWin64EHEndProc();
1125
1126   OS << "\t.seh_endproc";
1127   EmitEOL();
1128 }
1129
1130 void MCAsmStreamer::EmitWin64EHStartChained() {
1131   MCStreamer::EmitWin64EHStartChained();
1132
1133   OS << "\t.seh_startchained";
1134   EmitEOL();
1135 }
1136
1137 void MCAsmStreamer::EmitWin64EHEndChained() {
1138   MCStreamer::EmitWin64EHEndChained();
1139
1140   OS << "\t.seh_endchained";
1141   EmitEOL();
1142 }
1143
1144 void MCAsmStreamer::EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
1145                                        bool Except) {
1146   MCStreamer::EmitWin64EHHandler(Sym, Unwind, Except);
1147
1148   OS << "\t.seh_handler " << *Sym;
1149   if (Unwind)
1150     OS << ", @unwind";
1151   if (Except)
1152     OS << ", @except";
1153   EmitEOL();
1154 }
1155
1156 static const MCSection *getWin64EHTableSection(StringRef suffix,
1157                                                MCContext &context) {
1158   // FIXME: This doesn't belong in MCObjectFileInfo. However,
1159   /// this duplicate code in MCWin64EH.cpp.
1160   if (suffix == "")
1161     return context.getObjectFileInfo()->getXDataSection();
1162   return context.getCOFFSection((".xdata"+suffix).str(),
1163                                 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
1164                                 COFF::IMAGE_SCN_MEM_READ |
1165                                 COFF::IMAGE_SCN_MEM_WRITE,
1166                                 SectionKind::getDataRel());
1167 }
1168
1169 void MCAsmStreamer::EmitWin64EHHandlerData() {
1170   MCStreamer::EmitWin64EHHandlerData();
1171
1172   // Switch sections. Don't call SwitchSection directly, because that will
1173   // cause the section switch to be visible in the emitted assembly.
1174   // We only do this so the section switch that terminates the handler
1175   // data block is visible.
1176   MCWin64EHUnwindInfo *CurFrame = getCurrentW64UnwindInfo();
1177   StringRef suffix=MCWin64EHUnwindEmitter::GetSectionSuffix(CurFrame->Function);
1178   const MCSection *xdataSect = getWin64EHTableSection(suffix, getContext());
1179   if (xdataSect)
1180     SwitchSectionNoChange(xdataSect);
1181
1182   OS << "\t.seh_handlerdata";
1183   EmitEOL();
1184 }
1185
1186 void MCAsmStreamer::EmitWin64EHPushReg(unsigned Register) {
1187   MCStreamer::EmitWin64EHPushReg(Register);
1188
1189   OS << "\t.seh_pushreg " << Register;
1190   EmitEOL();
1191 }
1192
1193 void MCAsmStreamer::EmitWin64EHSetFrame(unsigned Register, unsigned Offset) {
1194   MCStreamer::EmitWin64EHSetFrame(Register, Offset);
1195
1196   OS << "\t.seh_setframe " << Register << ", " << Offset;
1197   EmitEOL();
1198 }
1199
1200 void MCAsmStreamer::EmitWin64EHAllocStack(unsigned Size) {
1201   MCStreamer::EmitWin64EHAllocStack(Size);
1202
1203   OS << "\t.seh_stackalloc " << Size;
1204   EmitEOL();
1205 }
1206
1207 void MCAsmStreamer::EmitWin64EHSaveReg(unsigned Register, unsigned Offset) {
1208   MCStreamer::EmitWin64EHSaveReg(Register, Offset);
1209
1210   OS << "\t.seh_savereg " << Register << ", " << Offset;
1211   EmitEOL();
1212 }
1213
1214 void MCAsmStreamer::EmitWin64EHSaveXMM(unsigned Register, unsigned Offset) {
1215   MCStreamer::EmitWin64EHSaveXMM(Register, Offset);
1216
1217   OS << "\t.seh_savexmm " << Register << ", " << Offset;
1218   EmitEOL();
1219 }
1220
1221 void MCAsmStreamer::EmitWin64EHPushFrame(bool Code) {
1222   MCStreamer::EmitWin64EHPushFrame(Code);
1223
1224   OS << "\t.seh_pushframe";
1225   if (Code)
1226     OS << " @code";
1227   EmitEOL();
1228 }
1229
1230 void MCAsmStreamer::EmitWin64EHEndProlog(void) {
1231   MCStreamer::EmitWin64EHEndProlog();
1232
1233   OS << "\t.seh_endprologue";
1234   EmitEOL();
1235 }
1236
1237 void MCAsmStreamer::AddEncodingComment(const MCInst &Inst) {
1238   raw_ostream &OS = GetCommentOS();
1239   SmallString<256> Code;
1240   SmallVector<MCFixup, 4> Fixups;
1241   raw_svector_ostream VecOS(Code);
1242   Emitter->EncodeInstruction(Inst, VecOS, Fixups);
1243   VecOS.flush();
1244
1245   // If we are showing fixups, create symbolic markers in the encoded
1246   // representation. We do this by making a per-bit map to the fixup item index,
1247   // then trying to display it as nicely as possible.
1248   SmallVector<uint8_t, 64> FixupMap;
1249   FixupMap.resize(Code.size() * 8);
1250   for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
1251     FixupMap[i] = 0;
1252
1253   for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1254     MCFixup &F = Fixups[i];
1255     const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
1256     for (unsigned j = 0; j != Info.TargetSize; ++j) {
1257       unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j;
1258       assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
1259       FixupMap[Index] = 1 + i;
1260     }
1261   }
1262
1263   // FIXME: Note the fixup comments for Thumb2 are completely bogus since the
1264   // high order halfword of a 32-bit Thumb2 instruction is emitted first.
1265   OS << "encoding: [";
1266   for (unsigned i = 0, e = Code.size(); i != e; ++i) {
1267     if (i)
1268       OS << ',';
1269
1270     // See if all bits are the same map entry.
1271     uint8_t MapEntry = FixupMap[i * 8 + 0];
1272     for (unsigned j = 1; j != 8; ++j) {
1273       if (FixupMap[i * 8 + j] == MapEntry)
1274         continue;
1275
1276       MapEntry = uint8_t(~0U);
1277       break;
1278     }
1279
1280     if (MapEntry != uint8_t(~0U)) {
1281       if (MapEntry == 0) {
1282         OS << format("0x%02x", uint8_t(Code[i]));
1283       } else {
1284         if (Code[i]) {
1285           // FIXME: Some of the 8 bits require fix up.
1286           OS << format("0x%02x", uint8_t(Code[i])) << '\''
1287              << char('A' + MapEntry - 1) << '\'';
1288         } else
1289           OS << char('A' + MapEntry - 1);
1290       }
1291     } else {
1292       // Otherwise, write out in binary.
1293       OS << "0b";
1294       for (unsigned j = 8; j--;) {
1295         unsigned Bit = (Code[i] >> j) & 1;
1296
1297         unsigned FixupBit;
1298         if (MAI->isLittleEndian())
1299           FixupBit = i * 8 + j;
1300         else
1301           FixupBit = i * 8 + (7-j);
1302
1303         if (uint8_t MapEntry = FixupMap[FixupBit]) {
1304           assert(Bit == 0 && "Encoder wrote into fixed up bit!");
1305           OS << char('A' + MapEntry - 1);
1306         } else
1307           OS << Bit;
1308       }
1309     }
1310   }
1311   OS << "]\n";
1312
1313   for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1314     MCFixup &F = Fixups[i];
1315     const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
1316     OS << "  fixup " << char('A' + i) << " - " << "offset: " << F.getOffset()
1317        << ", value: " << *F.getValue() << ", kind: " << Info.Name << "\n";
1318   }
1319 }
1320
1321 void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
1322   assert(getCurrentSection().first &&
1323          "Cannot emit contents before setting section!");
1324
1325   // Show the encoding in a comment if we have a code emitter.
1326   if (Emitter)
1327     AddEncodingComment(Inst);
1328
1329   // Show the MCInst if enabled.
1330   if (ShowInst) {
1331     Inst.dump_pretty(GetCommentOS(), MAI, InstPrinter.get(), "\n ");
1332     GetCommentOS() << "\n";
1333   }
1334
1335   // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
1336   if (InstPrinter)
1337     InstPrinter->printInst(&Inst, OS, "");
1338   else
1339     Inst.print(OS, MAI);
1340   EmitEOL();
1341 }
1342
1343 void MCAsmStreamer::EmitBundleAlignMode(unsigned AlignPow2) {
1344   OS << "\t.bundle_align_mode " << AlignPow2;
1345   EmitEOL();
1346 }
1347
1348 void MCAsmStreamer::EmitBundleLock(bool AlignToEnd) {
1349   OS << "\t.bundle_lock";
1350   if (AlignToEnd)
1351     OS << " align_to_end";
1352   EmitEOL();
1353 }
1354
1355 void MCAsmStreamer::EmitBundleUnlock() {
1356   OS << "\t.bundle_unlock";
1357   EmitEOL();
1358 }
1359
1360 /// EmitRawText - If this file is backed by an assembly streamer, this dumps
1361 /// the specified string in the output .s file.  This capability is
1362 /// indicated by the hasRawTextSupport() predicate.
1363 void MCAsmStreamer::EmitRawTextImpl(StringRef String) {
1364   if (!String.empty() && String.back() == '\n')
1365     String = String.substr(0, String.size()-1);
1366   OS << String;
1367   EmitEOL();
1368 }
1369
1370 void MCAsmStreamer::FinishImpl() {
1371   // FIXME: This header is duplicated with MCObjectStreamer
1372   // Dump out the dwarf file & directory tables and line tables.
1373   const MCSymbol *LineSectionSymbol = NULL;
1374   if (getContext().hasDwarfFiles() && !UseLoc)
1375     LineSectionSymbol = MCDwarfFileTable::Emit(this);
1376
1377   // If we are generating dwarf for assembly source files dump out the sections.
1378   if (getContext().getGenDwarfForAssembly())
1379     MCGenDwarfInfo::Emit(this, LineSectionSymbol);
1380
1381   if (!UseCFI)
1382     EmitFrames(AsmBackend.get(), false);
1383 }
1384
1385 MCStreamer *llvm::createAsmStreamer(MCContext &Context,
1386                                     formatted_raw_ostream &OS,
1387                                     bool isVerboseAsm, bool useLoc, bool useCFI,
1388                                     bool useDwarfDirectory, MCInstPrinter *IP,
1389                                     MCCodeEmitter *CE, MCAsmBackend *MAB,
1390                                     bool ShowInst) {
1391   return new MCAsmStreamer(Context, OS, isVerboseAsm, useLoc,
1392                            useCFI, useDwarfDirectory, IP, CE, MAB, ShowInst);
1393 }