When rematerializing, use the debug location of the original
[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/MC/MCAsmInfo.h"
12 #include "llvm/MC/MCCodeEmitter.h"
13 #include "llvm/MC/MCContext.h"
14 #include "llvm/MC/MCExpr.h"
15 #include "llvm/MC/MCInst.h"
16 #include "llvm/MC/MCInstPrinter.h"
17 #include "llvm/MC/MCSectionMachO.h"
18 #include "llvm/MC/MCSymbol.h"
19 #include "llvm/ADT/OwningPtr.h"
20 #include "llvm/ADT/SmallString.h"
21 #include "llvm/ADT/Twine.h"
22 #include "llvm/Support/ErrorHandling.h"
23 #include "llvm/Support/MathExtras.h"
24 #include "llvm/Support/Format.h"
25 #include "llvm/Support/FormattedStream.h"
26 using namespace llvm;
27
28 namespace {
29
30 class MCAsmStreamer : public MCStreamer {
31   formatted_raw_ostream &OS;
32   const MCAsmInfo &MAI;
33   OwningPtr<MCInstPrinter> InstPrinter;
34   MCCodeEmitter *Emitter;
35   
36   SmallString<128> CommentToEmit;
37   raw_svector_ostream CommentStream;
38
39   unsigned IsLittleEndian : 1;
40   unsigned IsVerboseAsm : 1;
41   unsigned ShowInst : 1;
42
43 public:
44   MCAsmStreamer(MCContext &Context, formatted_raw_ostream &os,
45                 bool isLittleEndian, bool isVerboseAsm, MCInstPrinter *printer,
46                 MCCodeEmitter *emitter, bool showInst)
47     : MCStreamer(Context), OS(os), MAI(Context.getAsmInfo()),
48       InstPrinter(printer), Emitter(emitter), CommentStream(CommentToEmit),
49       IsLittleEndian(isLittleEndian), IsVerboseAsm(isVerboseAsm),
50       ShowInst(showInst) {
51     if (InstPrinter && IsVerboseAsm)
52       InstPrinter->setCommentStream(CommentStream);
53   }
54   ~MCAsmStreamer() {}
55
56   bool isLittleEndian() const { return IsLittleEndian; }
57
58   inline void EmitEOL() {
59     // If we don't have any comments, just emit a \n.
60     if (!IsVerboseAsm) {
61       OS << '\n';
62       return;
63     }
64     EmitCommentsAndEOL();
65   }
66   void EmitCommentsAndEOL();
67
68   /// isVerboseAsm - Return true if this streamer supports verbose assembly at
69   /// all.
70   virtual bool isVerboseAsm() const { return IsVerboseAsm; }
71   
72   /// hasRawTextSupport - We support EmitRawText.
73   virtual bool hasRawTextSupport() const { return true; }
74
75   /// AddComment - Add a comment that can be emitted to the generated .s
76   /// file if applicable as a QoI issue to make the output of the compiler
77   /// more readable.  This only affects the MCAsmStreamer, and only when
78   /// verbose assembly output is enabled.
79   virtual void AddComment(const Twine &T);
80
81   /// AddEncodingComment - Add a comment showing the encoding of an instruction.
82   virtual void AddEncodingComment(const MCInst &Inst);
83
84   /// GetCommentOS - Return a raw_ostream that comments can be written to.
85   /// Unlike AddComment, you are required to terminate comments with \n if you
86   /// use this method.
87   virtual raw_ostream &GetCommentOS() {
88     if (!IsVerboseAsm)
89       return nulls();  // Discard comments unless in verbose asm mode.
90     return CommentStream;
91   }
92
93   /// AddBlankLine - Emit a blank line to a .s file to pretty it up.
94   virtual void AddBlankLine() {
95     EmitEOL();
96   }
97
98   /// @name MCStreamer Interface
99   /// @{
100
101   virtual void SwitchSection(const MCSection *Section);
102
103   virtual void EmitLabel(MCSymbol *Symbol);
104
105   virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
106
107   virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
108
109   virtual void EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
110
111   virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
112
113   virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
114   virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
115                                 unsigned ByteAlignment);
116
117   /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
118   ///
119   /// @param Symbol - The common symbol to emit.
120   /// @param Size - The size of the common symbol.
121   virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size);
122   
123   virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
124                             unsigned Size = 0, unsigned ByteAlignment = 0);
125
126   virtual void EmitBytes(StringRef Data, unsigned AddrSpace);
127
128   virtual void EmitValue(const MCExpr *Value, unsigned Size,unsigned AddrSpace);
129   virtual void EmitIntValue(uint64_t Value, unsigned Size, unsigned AddrSpace);
130   virtual void EmitGPRel32Value(const MCExpr *Value);
131   
132
133   virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue,
134                         unsigned AddrSpace);
135
136   virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
137                                     unsigned ValueSize = 1,
138                                     unsigned MaxBytesToEmit = 0);
139
140   virtual void EmitCodeAlignment(unsigned ByteAlignment,
141                                  unsigned MaxBytesToEmit = 0);
142
143   virtual void EmitValueToOffset(const MCExpr *Offset,
144                                  unsigned char Value = 0);
145
146   virtual void EmitFileDirective(StringRef Filename);
147   virtual void EmitDwarfFileDirective(unsigned FileNo, StringRef Filename);
148
149   virtual void EmitInstruction(const MCInst &Inst);
150   
151   /// EmitRawText - If this file is backed by a assembly streamer, this dumps
152   /// the specified string in the output .s file.  This capability is
153   /// indicated by the hasRawTextSupport() predicate.
154   virtual void EmitRawText(StringRef String);
155   
156   virtual void Finish();
157   
158   /// @}
159 };
160
161 } // end anonymous namespace.
162
163 /// AddComment - Add a comment that can be emitted to the generated .s
164 /// file if applicable as a QoI issue to make the output of the compiler
165 /// more readable.  This only affects the MCAsmStreamer, and only when
166 /// verbose assembly output is enabled.
167 void MCAsmStreamer::AddComment(const Twine &T) {
168   if (!IsVerboseAsm) return;
169   
170   // Make sure that CommentStream is flushed.
171   CommentStream.flush();
172   
173   T.toVector(CommentToEmit);
174   // Each comment goes on its own line.
175   CommentToEmit.push_back('\n');
176   
177   // Tell the comment stream that the vector changed underneath it.
178   CommentStream.resync();
179 }
180
181 void MCAsmStreamer::EmitCommentsAndEOL() {
182   if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) {
183     OS << '\n';
184     return;
185   }
186   
187   CommentStream.flush();
188   StringRef Comments = CommentToEmit.str();
189   
190   assert(Comments.back() == '\n' &&
191          "Comment array not newline terminated");
192   do {
193     // Emit a line of comments.
194     OS.PadToColumn(MAI.getCommentColumn());
195     size_t Position = Comments.find('\n');
196     OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
197     
198     Comments = Comments.substr(Position+1);
199   } while (!Comments.empty());
200   
201   CommentToEmit.clear();
202   // Tell the comment stream that the vector changed underneath it.
203   CommentStream.resync();
204 }
205
206 static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
207   assert(Bytes && "Invalid size!");
208   return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
209 }
210
211 void MCAsmStreamer::SwitchSection(const MCSection *Section) {
212   assert(Section && "Cannot switch to a null section!");
213   if (Section != CurSection) {
214     CurSection = Section;
215     Section->PrintSwitchToSection(MAI, OS);
216   }
217 }
218
219 void MCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
220   assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
221   assert(!Symbol->isVariable() && "Cannot emit a variable symbol!");
222   assert(CurSection && "Cannot emit before setting section!");
223
224   OS << *Symbol << ":";
225   EmitEOL();
226   Symbol->setSection(*CurSection);
227 }
228
229 void MCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
230   switch (Flag) {
231   default: assert(0 && "Invalid flag!");
232   case MCAF_SubsectionsViaSymbols: OS << ".subsections_via_symbols"; break;
233   }
234   EmitEOL();
235 }
236
237 void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
238   OS << *Symbol << " = " << *Value;
239   EmitEOL();
240
241   // FIXME: Lift context changes into super class.
242   Symbol->setVariableValue(Value);
243 }
244
245 void MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
246                                         MCSymbolAttr Attribute) {
247   switch (Attribute) {
248   case MCSA_Invalid: assert(0 && "Invalid symbol attribute");
249   case MCSA_ELF_TypeFunction:    /// .type _foo, STT_FUNC  # aka @function
250   case MCSA_ELF_TypeIndFunction: /// .type _foo, STT_GNU_IFUNC
251   case MCSA_ELF_TypeObject:      /// .type _foo, STT_OBJECT  # aka @object
252   case MCSA_ELF_TypeTLS:         /// .type _foo, STT_TLS     # aka @tls_object
253   case MCSA_ELF_TypeCommon:      /// .type _foo, STT_COMMON  # aka @common
254   case MCSA_ELF_TypeNoType:      /// .type _foo, STT_NOTYPE  # aka @notype
255     assert(MAI.hasDotTypeDotSizeDirective() && "Symbol Attr not supported");
256     OS << "\t.type\t" << *Symbol << ','
257        << ((MAI.getCommentString()[0] != '@') ? '@' : '%');
258     switch (Attribute) {
259     default: assert(0 && "Unknown ELF .type");
260     case MCSA_ELF_TypeFunction:    OS << "function"; break;
261     case MCSA_ELF_TypeIndFunction: OS << "gnu_indirect_function"; break;
262     case MCSA_ELF_TypeObject:      OS << "object"; break;
263     case MCSA_ELF_TypeTLS:         OS << "tls_object"; break;
264     case MCSA_ELF_TypeCommon:      OS << "common"; break;
265     case MCSA_ELF_TypeNoType:      OS << "no_type"; break;
266     }
267     EmitEOL();
268     return;
269   case MCSA_Global: // .globl/.global
270     OS << MAI.getGlobalDirective();
271     break;
272   case MCSA_Hidden:         OS << ".hidden ";          break;
273   case MCSA_IndirectSymbol: OS << ".indirect_symbol "; break;
274   case MCSA_Internal:       OS << ".internal ";        break;
275   case MCSA_LazyReference:  OS << ".lazy_reference ";  break;
276   case MCSA_Local:          OS << ".local ";           break;
277   case MCSA_NoDeadStrip:    OS << ".no_dead_strip ";   break;
278   case MCSA_PrivateExtern:  OS << ".private_extern ";  break;
279   case MCSA_Protected:      OS << ".protected ";       break;
280   case MCSA_Reference:      OS << ".reference ";       break;
281   case MCSA_Weak:           OS << ".weak ";            break;
282   case MCSA_WeakDefinition: OS << ".weak_definition "; break;
283       // .weak_reference
284   case MCSA_WeakReference:  OS << MAI.getWeakRefDirective(); break;
285   }
286
287   OS << *Symbol;
288   EmitEOL();
289 }
290
291 void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
292   OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
293   EmitEOL();
294 }
295
296 void MCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
297   assert(MAI.hasDotTypeDotSizeDirective());
298   OS << "\t.size\t" << *Symbol << ", " << *Value << '\n';
299 }
300
301 void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
302                                      unsigned ByteAlignment) {
303   OS << "\t.comm\t" << *Symbol << ',' << Size;
304   if (ByteAlignment != 0) {
305     if (MAI.getCOMMDirectiveAlignmentIsInBytes())
306       OS << ',' << ByteAlignment;
307     else
308       OS << ',' << Log2_32(ByteAlignment);
309   }
310   EmitEOL();
311 }
312
313 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
314 ///
315 /// @param Symbol - The common symbol to emit.
316 /// @param Size - The size of the common symbol.
317 void MCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size) {
318   assert(MAI.hasLCOMMDirective() && "Doesn't have .lcomm, can't emit it!");
319   OS << "\t.lcomm\t" << *Symbol << ',' << Size;
320   EmitEOL();
321 }
322
323 void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
324                                  unsigned Size, unsigned ByteAlignment) {
325   // Note: a .zerofill directive does not switch sections.
326   OS << ".zerofill ";
327   
328   // This is a mach-o specific directive.
329   const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
330   OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
331   
332   if (Symbol != NULL) {
333     OS << ',' << *Symbol << ',' << Size;
334     if (ByteAlignment != 0)
335       OS << ',' << Log2_32(ByteAlignment);
336   }
337   EmitEOL();
338 }
339
340 static inline char toOctal(int X) { return (X&7)+'0'; }
341
342 static void PrintQuotedString(StringRef Data, raw_ostream &OS) {
343   OS << '"';
344   
345   for (unsigned i = 0, e = Data.size(); i != e; ++i) {
346     unsigned char C = Data[i];
347     if (C == '"' || C == '\\') {
348       OS << '\\' << (char)C;
349       continue;
350     }
351     
352     if (isprint((unsigned char)C)) {
353       OS << (char)C;
354       continue;
355     }
356     
357     switch (C) {
358       case '\b': OS << "\\b"; break;
359       case '\f': OS << "\\f"; break;
360       case '\n': OS << "\\n"; break;
361       case '\r': OS << "\\r"; break;
362       case '\t': OS << "\\t"; break;
363       default:
364         OS << '\\';
365         OS << toOctal(C >> 6);
366         OS << toOctal(C >> 3);
367         OS << toOctal(C >> 0);
368         break;
369     }
370   }
371   
372   OS << '"';
373 }
374
375
376 void MCAsmStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
377   assert(CurSection && "Cannot emit contents before setting section!");
378   if (Data.empty()) return;
379   
380   if (Data.size() == 1) {
381     OS << MAI.getData8bitsDirective(AddrSpace);
382     OS << (unsigned)(unsigned char)Data[0];
383     EmitEOL();
384     return;
385   }
386
387   // If the data ends with 0 and the target supports .asciz, use it, otherwise
388   // use .ascii
389   if (MAI.getAscizDirective() && Data.back() == 0) {
390     OS << MAI.getAscizDirective();
391     Data = Data.substr(0, Data.size()-1);
392   } else {
393     OS << MAI.getAsciiDirective();
394   }
395
396   OS << ' ';
397   PrintQuotedString(Data, OS);
398   EmitEOL();
399 }
400
401 /// EmitIntValue - Special case of EmitValue that avoids the client having
402 /// to pass in a MCExpr for constant integers.
403 void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size,
404                                  unsigned AddrSpace) {
405   assert(CurSection && "Cannot emit contents before setting section!");
406   const char *Directive = 0;
407   switch (Size) {
408   default: break;
409   case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
410   case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
411   case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
412   case 8:
413     Directive = MAI.getData64bitsDirective(AddrSpace);
414     // If the target doesn't support 64-bit data, emit as two 32-bit halves.
415     if (Directive) break;
416     if (isLittleEndian()) {
417       EmitIntValue((uint32_t)(Value >> 0 ), 4, AddrSpace);
418       EmitIntValue((uint32_t)(Value >> 32), 4, AddrSpace);
419     } else {
420       EmitIntValue((uint32_t)(Value >> 32), 4, AddrSpace);
421       EmitIntValue((uint32_t)(Value >> 0 ), 4, AddrSpace);
422     }
423     return;
424   }
425   
426   assert(Directive && "Invalid size for machine code value!");
427   OS << Directive << truncateToSize(Value, Size);
428   EmitEOL();
429 }
430
431 void MCAsmStreamer::EmitValue(const MCExpr *Value, unsigned Size,
432                               unsigned AddrSpace) {
433   assert(CurSection && "Cannot emit contents before setting section!");
434   const char *Directive = 0;
435   switch (Size) {
436   default: break;
437   case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
438   case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
439   case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
440   case 8: Directive = MAI.getData64bitsDirective(AddrSpace); break;
441   }
442   
443   assert(Directive && "Invalid size for machine code value!");
444   OS << Directive << *Value;
445   EmitEOL();
446 }
447
448 void MCAsmStreamer::EmitGPRel32Value(const MCExpr *Value) {
449   assert(MAI.getGPRel32Directive() != 0);
450   OS << MAI.getGPRel32Directive() << *Value;
451   EmitEOL();
452 }
453
454
455 /// EmitFill - Emit NumBytes bytes worth of the value specified by
456 /// FillValue.  This implements directives such as '.space'.
457 void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
458                              unsigned AddrSpace) {
459   if (NumBytes == 0) return;
460   
461   if (AddrSpace == 0)
462     if (const char *ZeroDirective = MAI.getZeroDirective()) {
463       OS << ZeroDirective << NumBytes;
464       if (FillValue != 0)
465         OS << ',' << (int)FillValue;
466       EmitEOL();
467       return;
468     }
469
470   // Emit a byte at a time.
471   MCStreamer::EmitFill(NumBytes, FillValue, AddrSpace);
472 }
473
474 void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
475                                          unsigned ValueSize,
476                                          unsigned MaxBytesToEmit) {
477   // Some assemblers don't support non-power of two alignments, so we always
478   // emit alignments as a power of two if possible.
479   if (isPowerOf2_32(ByteAlignment)) {
480     switch (ValueSize) {
481     default: llvm_unreachable("Invalid size for machine code value!");
482     case 1: OS << MAI.getAlignDirective(); break;
483     // FIXME: use MAI for this!
484     case 2: OS << ".p2alignw "; break;
485     case 4: OS << ".p2alignl "; break;
486     case 8: llvm_unreachable("Unsupported alignment size!");
487     }
488     
489     if (MAI.getAlignmentIsInBytes())
490       OS << ByteAlignment;
491     else
492       OS << Log2_32(ByteAlignment);
493
494     if (Value || MaxBytesToEmit) {
495       OS << ", 0x";
496       OS.write_hex(truncateToSize(Value, ValueSize));
497
498       if (MaxBytesToEmit) 
499         OS << ", " << MaxBytesToEmit;
500     }
501     EmitEOL();
502     return;
503   }
504   
505   // Non-power of two alignment.  This is not widely supported by assemblers.
506   // FIXME: Parameterize this based on MAI.
507   switch (ValueSize) {
508   default: llvm_unreachable("Invalid size for machine code value!");
509   case 1: OS << ".balign";  break;
510   case 2: OS << ".balignw"; break;
511   case 4: OS << ".balignl"; break;
512   case 8: llvm_unreachable("Unsupported alignment size!");
513   }
514
515   OS << ' ' << ByteAlignment;
516   OS << ", " << truncateToSize(Value, ValueSize);
517   if (MaxBytesToEmit) 
518     OS << ", " << MaxBytesToEmit;
519   EmitEOL();
520 }
521
522 void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
523                                       unsigned MaxBytesToEmit) {
524   // Emit with a text fill value.
525   EmitValueToAlignment(ByteAlignment, MAI.getTextAlignFillValue(),
526                        1, MaxBytesToEmit);
527 }
528
529 void MCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
530                                       unsigned char Value) {
531   // FIXME: Verify that Offset is associated with the current section.
532   OS << ".org " << *Offset << ", " << (unsigned) Value;
533   EmitEOL();
534 }
535
536
537 void MCAsmStreamer::EmitFileDirective(StringRef Filename) {
538   assert(MAI.hasSingleParameterDotFile());
539   OS << "\t.file\t";
540   PrintQuotedString(Filename, OS);
541   EmitEOL();
542 }
543
544 void MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Filename){
545   OS << "\t.file\t" << FileNo << ' ';
546   PrintQuotedString(Filename, OS);
547   EmitEOL();
548 }
549
550 void MCAsmStreamer::AddEncodingComment(const MCInst &Inst) {
551   raw_ostream &OS = GetCommentOS();
552   SmallString<256> Code;
553   SmallVector<MCFixup, 4> Fixups;
554   raw_svector_ostream VecOS(Code);
555   Emitter->EncodeInstruction(Inst, VecOS, Fixups);
556   VecOS.flush();
557
558   // If we are showing fixups, create symbolic markers in the encoded
559   // representation. We do this by making a per-bit map to the fixup item index,
560   // then trying to display it as nicely as possible.
561   SmallVector<uint8_t, 64> FixupMap;
562   FixupMap.resize(Code.size() * 8);
563   for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
564     FixupMap[i] = 0;
565
566   for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
567     MCFixup &F = Fixups[i];
568     const MCFixupKindInfo &Info = Emitter->getFixupKindInfo(F.getKind());
569     for (unsigned j = 0; j != Info.TargetSize; ++j) {
570       unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j;
571       assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
572       FixupMap[Index] = 1 + i;
573     }
574   }
575
576   OS << "encoding: [";
577   for (unsigned i = 0, e = Code.size(); i != e; ++i) {
578     if (i)
579       OS << ',';
580
581     // See if all bits are the same map entry.
582     uint8_t MapEntry = FixupMap[i * 8 + 0];
583     for (unsigned j = 1; j != 8; ++j) {
584       if (FixupMap[i * 8 + j] == MapEntry)
585         continue;
586
587       MapEntry = uint8_t(~0U);
588       break;
589     }
590
591     if (MapEntry != uint8_t(~0U)) {
592       if (MapEntry == 0) {
593         OS << format("0x%02x", uint8_t(Code[i]));
594       } else {
595         assert(Code[i] == 0 && "Encoder wrote into fixed up bit!");
596         OS << char('A' + MapEntry - 1);
597       }
598     } else {
599       // Otherwise, write out in binary.
600       OS << "0b";
601       for (unsigned j = 8; j--;) {
602         unsigned Bit = (Code[i] >> j) & 1;
603         if (uint8_t MapEntry = FixupMap[i * 8 + j]) {
604           assert(Bit == 0 && "Encoder wrote into fixed up bit!");
605           OS << char('A' + MapEntry - 1);
606         } else
607           OS << Bit;
608       }
609     }
610   }
611   OS << "]\n";
612
613   for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
614     MCFixup &F = Fixups[i];
615     const MCFixupKindInfo &Info = Emitter->getFixupKindInfo(F.getKind());
616     OS << "  fixup " << char('A' + i) << " - " << "offset: " << F.getOffset()
617        << ", value: " << *F.getValue() << ", kind: " << Info.Name << "\n";
618   }
619 }
620
621 void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
622   assert(CurSection && "Cannot emit contents before setting section!");
623
624   // Show the encoding in a comment if we have a code emitter.
625   if (Emitter)
626     AddEncodingComment(Inst);
627
628   // Show the MCInst if enabled.
629   if (ShowInst)
630     Inst.dump_pretty(GetCommentOS(), &MAI, InstPrinter.get(), "\n ");
631   
632   // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
633   if (InstPrinter)
634     InstPrinter->printInst(&Inst, OS);
635   else
636     Inst.print(OS, &MAI);
637   EmitEOL();
638 }
639
640 /// EmitRawText - If this file is backed by a assembly streamer, this dumps
641 /// the specified string in the output .s file.  This capability is
642 /// indicated by the hasRawTextSupport() predicate.
643 void MCAsmStreamer::EmitRawText(StringRef String) {
644   if (!String.empty() && String.back() == '\n')
645     String = String.substr(0, String.size()-1);
646   OS << String;
647   EmitEOL();
648 }
649
650 void MCAsmStreamer::Finish() {
651   OS.flush();
652 }
653
654 MCStreamer *llvm::createAsmStreamer(MCContext &Context,
655                                     formatted_raw_ostream &OS,
656                                     bool isLittleEndian,
657                                     bool isVerboseAsm, MCInstPrinter *IP,
658                                     MCCodeEmitter *CE, bool ShowInst) {
659   return new MCAsmStreamer(Context, OS, isLittleEndian, isVerboseAsm,
660                            IP, CE, ShowInst);
661 }