Roll out r126425 and r126450 to see if it fixes the failures on the buildbots.
[oota-llvm.git] / lib / Target / PTX / PTXMCAsmStreamer.cpp
1 //===- lib/Target/PTX/PTXMCAsmStreamer.cpp - PTX 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/ADT/OwningPtr.h"
11 #include "llvm/ADT/SmallString.h"
12 #include "llvm/ADT/Twine.h"
13 #include "llvm/MC/MCAsmInfo.h"
14 #include "llvm/MC/MCCodeEmitter.h"
15 #include "llvm/MC/MCContext.h"
16 #include "llvm/MC/MCExpr.h"
17 #include "llvm/MC/MCInst.h"
18 #include "llvm/MC/MCInstPrinter.h"
19 #include "llvm/MC/MCStreamer.h"
20 #include "llvm/MC/MCSymbol.h"
21 #include "llvm/Support/ErrorHandling.h"
22 #include "llvm/Support/MathExtras.h"
23 #include "llvm/Support/Format.h"
24 #include "llvm/Support/FormattedStream.h"
25 #include "llvm/Support/raw_ostream.h"
26 #include "llvm/Target/TargetAsmInfo.h"
27
28 using namespace llvm;
29
30 namespace {
31 class PTXMCAsmStreamer : public MCStreamer {
32   formatted_raw_ostream &OS;
33   const MCAsmInfo &MAI;
34   OwningPtr<MCInstPrinter> InstPrinter;
35   OwningPtr<MCCodeEmitter> Emitter;
36
37   SmallString<128> CommentToEmit;
38   raw_svector_ostream CommentStream;
39
40   unsigned IsVerboseAsm : 1;
41   unsigned ShowInst : 1;
42
43 public:
44   PTXMCAsmStreamer(MCContext &Context,
45                    formatted_raw_ostream &os,
46                    bool isVerboseAsm, bool useLoc,
47                    MCInstPrinter *printer,
48                    MCCodeEmitter *emitter,
49                    bool showInst)
50     : MCStreamer(Context), OS(os), MAI(Context.getAsmInfo()),
51       InstPrinter(printer), Emitter(emitter), CommentStream(CommentToEmit),
52       IsVerboseAsm(isVerboseAsm),
53       ShowInst(showInst) {
54     if (InstPrinter && IsVerboseAsm)
55       InstPrinter->setCommentStream(CommentStream);
56   }
57
58   ~PTXMCAsmStreamer() {}
59
60   inline void EmitEOL() {
61     // If we don't have any comments, just emit a \n.
62     if (!IsVerboseAsm) {
63       OS << '\n';
64       return;
65     }
66     EmitCommentsAndEOL();
67   }
68   void EmitCommentsAndEOL();
69
70   /// isVerboseAsm - Return true if this streamer supports verbose assembly at
71   /// all.
72   virtual bool isVerboseAsm() const { return IsVerboseAsm; }
73
74   /// hasRawTextSupport - We support EmitRawText.
75   virtual bool hasRawTextSupport() const { return true; }
76
77   /// AddComment - Add a comment that can be emitted to the generated .s
78   /// file if applicable as a QoI issue to make the output of the compiler
79   /// more readable.  This only affects the MCAsmStreamer, and only when
80   /// verbose assembly output is enabled.
81   virtual void AddComment(const Twine &T);
82
83   /// AddEncodingComment - Add a comment showing the encoding of an instruction.
84   virtual void AddEncodingComment(const MCInst &Inst);
85
86   /// GetCommentOS - Return a raw_ostream that comments can be written to.
87   /// Unlike AddComment, you are required to terminate comments with \n if you
88   /// use this method.
89   virtual raw_ostream &GetCommentOS() {
90     if (!IsVerboseAsm)
91       return nulls();  // Discard comments unless in verbose asm mode.
92     return CommentStream;
93   }
94
95   /// AddBlankLine - Emit a blank line to a .s file to pretty it up.
96   virtual void AddBlankLine() {
97     EmitEOL();
98   }
99
100   /// @name MCStreamer Interface
101   /// @{
102
103   virtual void ChangeSection(const MCSection *Section);
104   virtual void InitSections() {}
105
106   virtual void EmitLabel(MCSymbol *Symbol);
107
108   virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
109
110   virtual void EmitThumbFunc(MCSymbol *Func);
111
112   virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
113
114   virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
115
116   virtual void EmitDwarfAdvanceLineAddr(int64_t LineDelta,
117                                         const MCSymbol *LastLabel,
118                                         const MCSymbol *Label);
119
120   virtual void EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
121
122   virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
123   virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol);
124   virtual void EmitCOFFSymbolStorageClass(int StorageClass);
125   virtual void EmitCOFFSymbolType(int Type);
126   virtual void EndCOFFSymbolDef();
127   virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
128   virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
129                                 unsigned ByteAlignment);
130
131   /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
132   ///
133   /// @param Symbol - The common symbol to emit.
134   /// @param Size - The size of the common symbol.
135   virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size);
136
137   virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
138                             unsigned Size = 0, unsigned ByteAlignment = 0);
139
140   virtual void EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
141                               uint64_t Size, unsigned ByteAlignment = 0);
142
143   virtual void EmitBytes(StringRef Data, unsigned AddrSpace);
144
145   virtual void EmitValueImpl(const MCExpr *Value, unsigned Size,
146                              bool isPCRel, unsigned AddrSpace);
147   virtual void EmitULEB128Value(const MCExpr *Value, unsigned AddrSpace = 0);
148   virtual void EmitSLEB128Value(const MCExpr *Value, unsigned AddrSpace = 0);
149   virtual void EmitGPRel32Value(const MCExpr *Value);
150
151
152   virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue,
153                         unsigned AddrSpace);
154
155   virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
156                                     unsigned ValueSize = 1,
157                                     unsigned MaxBytesToEmit = 0);
158
159   virtual void EmitCodeAlignment(unsigned ByteAlignment,
160                                  unsigned MaxBytesToEmit = 0);
161
162   virtual void EmitValueToOffset(const MCExpr *Offset,
163                                  unsigned char Value = 0);
164
165   virtual void EmitFileDirective(StringRef Filename);
166   virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Filename);
167
168   virtual void EmitInstruction(const MCInst &Inst);
169
170   /// EmitRawText - If this file is backed by an assembly streamer, this dumps
171   /// the specified string in the output .s file.  This capability is
172   /// indicated by the hasRawTextSupport() predicate.
173   virtual void EmitRawText(StringRef String);
174
175   virtual void Finish();
176
177   /// @}
178
179 }; // class PTXMCAsmStreamer
180
181 }
182
183 /// TODO: Add appropriate implementation of Emit*() methods when needed
184
185 void PTXMCAsmStreamer::AddComment(const Twine &T) {
186   if (!IsVerboseAsm) return;
187
188   // Make sure that CommentStream is flushed.
189   CommentStream.flush();
190
191   T.toVector(CommentToEmit);
192   // Each comment goes on its own line.
193   CommentToEmit.push_back('\n');
194
195   // Tell the comment stream that the vector changed underneath it.
196   CommentStream.resync();
197 }
198
199 void PTXMCAsmStreamer::EmitCommentsAndEOL() {
200   if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) {
201     OS << '\n';
202     return;
203   }
204
205   CommentStream.flush();
206   StringRef Comments = CommentToEmit.str();
207
208   assert(Comments.back() == '\n' &&
209          "Comment array not newline terminated");
210   do {
211     // Emit a line of comments.
212     OS.PadToColumn(MAI.getCommentColumn());
213     size_t Position = Comments.find('\n');
214     OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
215
216     Comments = Comments.substr(Position+1);
217   } while (!Comments.empty());
218
219   CommentToEmit.clear();
220   // Tell the comment stream that the vector changed underneath it.
221   CommentStream.resync();
222 }
223
224 static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
225   assert(Bytes && "Invalid size!");
226   return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
227 }
228
229 void PTXMCAsmStreamer::ChangeSection(const MCSection *Section) {
230   assert(Section && "Cannot switch to a null section!");
231 }
232
233 void PTXMCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
234   assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
235   assert(!Symbol->isVariable() && "Cannot emit a variable symbol!");
236   assert(getCurrentSection() && "Cannot emit before setting section!");
237
238   OS << *Symbol << MAI.getLabelSuffix();
239   EmitEOL();
240   Symbol->setSection(*getCurrentSection());
241 }
242
243 void PTXMCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {}
244
245 void PTXMCAsmStreamer::EmitThumbFunc(MCSymbol *Func) {}
246
247 void PTXMCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
248   OS << *Symbol << " = " << *Value;
249   EmitEOL();
250
251   // FIXME: Lift context changes into super class.
252   Symbol->setVariableValue(Value);
253 }
254
255 void PTXMCAsmStreamer::EmitWeakReference(MCSymbol *Alias,
256                                          const MCSymbol *Symbol) {
257   OS << ".weakref " << *Alias << ", " << *Symbol;
258   EmitEOL();
259 }
260
261 void PTXMCAsmStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
262                                                 const MCSymbol *LastLabel,
263                                                 const MCSymbol *Label) {
264   report_fatal_error("Unimplemented.");
265 }
266
267 void PTXMCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
268                                            MCSymbolAttr Attribute) {}
269
270 void PTXMCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {}
271
272 void PTXMCAsmStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {}
273
274 void PTXMCAsmStreamer::EmitCOFFSymbolStorageClass (int StorageClass) {}
275
276 void PTXMCAsmStreamer::EmitCOFFSymbolType (int Type) {}
277
278 void PTXMCAsmStreamer::EndCOFFSymbolDef() {}
279
280 void PTXMCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {}
281
282 void PTXMCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
283                                         unsigned ByteAlignment) {}
284
285 void PTXMCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size) {}
286
287 void PTXMCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
288                                     unsigned Size, unsigned ByteAlignment) {}
289
290 void PTXMCAsmStreamer::EmitTBSSSymbol(const MCSection *Section,
291                                       MCSymbol *Symbol,
292                                       uint64_t Size, unsigned ByteAlignment) {}
293
294 static inline char toOctal(int X) { return (X&7)+'0'; }
295
296 static void PrintQuotedString(StringRef Data, raw_ostream &OS) {
297   OS << '"';
298
299   for (unsigned i = 0, e = Data.size(); i != e; ++i) {
300     unsigned char C = Data[i];
301     if (C == '"' || C == '\\') {
302       OS << '\\' << (char)C;
303       continue;
304     }
305
306     if (isprint((unsigned char)C)) {
307       OS << (char)C;
308       continue;
309     }
310
311     switch (C) {
312       case '\b': OS << "\\b"; break;
313       case '\f': OS << "\\f"; break;
314       case '\n': OS << "\\n"; break;
315       case '\r': OS << "\\r"; break;
316       case '\t': OS << "\\t"; break;
317       default:
318         OS << '\\';
319         OS << toOctal(C >> 6);
320         OS << toOctal(C >> 3);
321         OS << toOctal(C >> 0);
322         break;
323     }
324   }
325
326   OS << '"';
327 }
328
329 void PTXMCAsmStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
330   assert(getCurrentSection() && "Cannot emit contents before setting section!");
331   if (Data.empty()) return;
332
333   if (Data.size() == 1) {
334     OS << MAI.getData8bitsDirective(AddrSpace);
335     OS << (unsigned)(unsigned char)Data[0];
336     EmitEOL();
337     return;
338   }
339
340   // If the data ends with 0 and the target supports .asciz, use it, otherwise
341   // use .ascii
342   if (MAI.getAscizDirective() && Data.back() == 0) {
343     OS << MAI.getAscizDirective();
344     Data = Data.substr(0, Data.size()-1);
345   } else {
346     OS << MAI.getAsciiDirective();
347   }
348
349   OS << ' ';
350   PrintQuotedString(Data, OS);
351   EmitEOL();
352 }
353
354 void PTXMCAsmStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size,
355                                      bool isPCRel, unsigned AddrSpace) {
356   assert(getCurrentSection() && "Cannot emit contents before setting section!");
357   assert(!isPCRel && "Cannot emit pc relative relocations!");
358   const char *Directive = 0;
359   switch (Size) {
360   default: break;
361   case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
362   case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
363   case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
364   case 8:
365     Directive = MAI.getData64bitsDirective(AddrSpace);
366     // If the target doesn't support 64-bit data, emit as two 32-bit halves.
367     if (Directive) break;
368     int64_t IntValue;
369     if (!Value->EvaluateAsAbsolute(IntValue))
370       report_fatal_error("Don't know how to emit this value.");
371     if (getContext().getTargetAsmInfo().isLittleEndian()) {
372       EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
373       EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
374     } else {
375       EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
376       EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
377     }
378     return;
379   }
380
381   assert(Directive && "Invalid size for machine code value!");
382   OS << Directive << *Value;
383   EmitEOL();
384 }
385
386 void PTXMCAsmStreamer::EmitULEB128Value(const MCExpr *Value,
387                                         unsigned AddrSpace) {
388   assert(MAI.hasLEB128() && "Cannot print a .uleb");
389   OS << ".uleb128 " << *Value;
390   EmitEOL();
391 }
392
393 void PTXMCAsmStreamer::EmitSLEB128Value(const MCExpr *Value,
394                                         unsigned AddrSpace) {
395   assert(MAI.hasLEB128() && "Cannot print a .sleb");
396   OS << ".sleb128 " << *Value;
397   EmitEOL();
398 }
399
400 void PTXMCAsmStreamer::EmitGPRel32Value(const MCExpr *Value) {
401   assert(MAI.getGPRel32Directive() != 0);
402   OS << MAI.getGPRel32Directive() << *Value;
403   EmitEOL();
404 }
405
406
407 /// EmitFill - Emit NumBytes bytes worth of the value specified by
408 /// FillValue.  This implements directives such as '.space'.
409 void PTXMCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
410                                 unsigned AddrSpace) {
411   if (NumBytes == 0) return;
412
413   if (AddrSpace == 0)
414     if (const char *ZeroDirective = MAI.getZeroDirective()) {
415       OS << ZeroDirective << NumBytes;
416       if (FillValue != 0)
417         OS << ',' << (int)FillValue;
418       EmitEOL();
419       return;
420     }
421
422   // Emit a byte at a time.
423   MCStreamer::EmitFill(NumBytes, FillValue, AddrSpace);
424 }
425
426 void PTXMCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
427                                             unsigned ValueSize,
428                                             unsigned MaxBytesToEmit) {
429   // Some assemblers don't support non-power of two alignments, so we always
430   // emit alignments as a power of two if possible.
431   if (isPowerOf2_32(ByteAlignment)) {
432     switch (ValueSize) {
433     default: llvm_unreachable("Invalid size for machine code value!");
434     case 1: OS << MAI.getAlignDirective(); break;
435     // FIXME: use MAI for this!
436     case 2: OS << ".p2alignw "; break;
437     case 4: OS << ".p2alignl "; break;
438     case 8: llvm_unreachable("Unsupported alignment size!");
439     }
440
441     if (MAI.getAlignmentIsInBytes())
442       OS << ByteAlignment;
443     else
444       OS << Log2_32(ByteAlignment);
445
446     if (Value || MaxBytesToEmit) {
447       OS << ", 0x";
448       OS.write_hex(truncateToSize(Value, ValueSize));
449
450       if (MaxBytesToEmit)
451         OS << ", " << MaxBytesToEmit;
452     }
453     EmitEOL();
454     return;
455   }
456
457   // Non-power of two alignment.  This is not widely supported by assemblers.
458   // FIXME: Parameterize this based on MAI.
459   switch (ValueSize) {
460   default: llvm_unreachable("Invalid size for machine code value!");
461   case 1: OS << ".balign";  break;
462   case 2: OS << ".balignw"; break;
463   case 4: OS << ".balignl"; break;
464   case 8: llvm_unreachable("Unsupported alignment size!");
465   }
466
467   OS << ' ' << ByteAlignment;
468   OS << ", " << truncateToSize(Value, ValueSize);
469   if (MaxBytesToEmit)
470     OS << ", " << MaxBytesToEmit;
471   EmitEOL();
472 }
473
474 void PTXMCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
475                                          unsigned MaxBytesToEmit) {}
476
477 void PTXMCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
478                                          unsigned char Value) {}
479
480
481 void PTXMCAsmStreamer::EmitFileDirective(StringRef Filename) {
482   assert(MAI.hasSingleParameterDotFile());
483   OS << "\t.file\t";
484   PrintQuotedString(Filename, OS);
485   EmitEOL();
486 }
487
488 // FIXME: should we inherit from MCAsmStreamer?
489 bool PTXMCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo,
490                                               StringRef Filename){
491   OS << "\t.file\t" << FileNo << ' ';
492   PrintQuotedString(Filename, OS);
493   EmitEOL();
494   return this->MCStreamer::EmitDwarfFileDirective(FileNo, Filename);
495 }
496
497 void PTXMCAsmStreamer::AddEncodingComment(const MCInst &Inst) {}
498
499 void PTXMCAsmStreamer::EmitInstruction(const MCInst &Inst) {
500   assert(getCurrentSection() && "Cannot emit contents before setting section!");
501
502   // Show the encoding in a comment if we have a code emitter.
503   if (Emitter)
504     AddEncodingComment(Inst);
505
506   // Show the MCInst if enabled.
507   if (ShowInst) {
508     Inst.dump_pretty(GetCommentOS(), &MAI, InstPrinter.get(), "\n ");
509     GetCommentOS() << "\n";
510   }
511
512   // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
513   if (InstPrinter)
514     InstPrinter->printInst(&Inst, OS);
515   else
516     Inst.print(OS, &MAI);
517   EmitEOL();
518 }
519
520 /// EmitRawText - If this file is backed by an assembly streamer, this dumps
521 /// the specified string in the output .s file.  This capability is
522 /// indicated by the hasRawTextSupport() predicate.
523 void PTXMCAsmStreamer::EmitRawText(StringRef String) {
524   if (!String.empty() && String.back() == '\n')
525     String = String.substr(0, String.size()-1);
526   OS << String;
527   EmitEOL();
528 }
529
530 void PTXMCAsmStreamer::Finish() {}
531
532 namespace llvm {
533   MCStreamer *createPTXAsmStreamer(MCContext &Context,
534                                    formatted_raw_ostream &OS,
535                                    bool isVerboseAsm, bool useLoc,
536                                    MCInstPrinter *IP,
537                                    MCCodeEmitter *CE, TargetAsmBackend *TAB,
538                                    bool ShowInst) {
539     return new PTXMCAsmStreamer(Context, OS, isVerboseAsm, useLoc,
540                                 IP, CE, ShowInst);
541   }
542 }