blob: 1574670b6e9bd2aae59af0898c8567cdbc43978a [file] [log] [blame]
Che-Liang Chioud77f2a42010-11-08 02:58:44 +00001//===- 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
Rafael Espindolaa484f2c2010-11-28 14:48:34 +000010#include "llvm/ADT/OwningPtr.h"
11#include "llvm/ADT/SmallString.h"
12#include "llvm/ADT/Twine.h"
Che-Liang Chioud77f2a42010-11-08 02:58:44 +000013#include "llvm/MC/MCAsmInfo.h"
Rafael Espindolaa484f2c2010-11-28 14:48:34 +000014#include "llvm/MC/MCCodeEmitter.h"
Che-Liang Chioufc7072c2010-12-22 10:38:51 +000015#include "llvm/MC/MCContext.h"
Che-Liang Chioud77f2a42010-11-08 02:58:44 +000016#include "llvm/MC/MCExpr.h"
17#include "llvm/MC/MCInst.h"
Rafael Espindolaa484f2c2010-11-28 14:48:34 +000018#include "llvm/MC/MCInstPrinter.h"
19#include "llvm/MC/MCStreamer.h"
Che-Liang Chioud77f2a42010-11-08 02:58:44 +000020#include "llvm/MC/MCSymbol.h"
Che-Liang Chioud77f2a42010-11-08 02:58:44 +000021#include "llvm/Support/ErrorHandling.h"
22#include "llvm/Support/MathExtras.h"
23#include "llvm/Support/Format.h"
Rafael Espindolaa484f2c2010-11-28 14:48:34 +000024#include "llvm/Support/FormattedStream.h"
25#include "llvm/Support/raw_ostream.h"
Rafael Espindola89b93722010-12-10 07:39:47 +000026#include "llvm/Target/TargetAsmInfo.h"
Che-Liang Chioud77f2a42010-11-08 02:58:44 +000027
28using namespace llvm;
29
Rafael Espindolaa484f2c2010-11-28 14:48:34 +000030namespace {
31class 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
Rafael Espindolaa484f2c2010-11-28 14:48:34 +000040 unsigned IsVerboseAsm : 1;
41 unsigned ShowInst : 1;
42
43public:
44 PTXMCAsmStreamer(MCContext &Context,
45 formatted_raw_ostream &os,
Rafael Espindola89b93722010-12-10 07:39:47 +000046 bool isVerboseAsm, bool useLoc,
Rafael Espindolaa484f2c2010-11-28 14:48:34 +000047 MCInstPrinter *printer,
48 MCCodeEmitter *emitter,
49 bool showInst)
50 : MCStreamer(Context), OS(os), MAI(Context.getAsmInfo()),
51 InstPrinter(printer), Emitter(emitter), CommentStream(CommentToEmit),
Rafael Espindola89b93722010-12-10 07:39:47 +000052 IsVerboseAsm(isVerboseAsm),
Rafael Espindolaa484f2c2010-11-28 14:48:34 +000053 ShowInst(showInst) {
54 if (InstPrinter && IsVerboseAsm)
55 InstPrinter->setCommentStream(CommentStream);
56 }
57
58 ~PTXMCAsmStreamer() {}
59
Rafael Espindolaa484f2c2010-11-28 14:48:34 +000060 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
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000103 virtual void ChangeSection(const MCSection *Section);
Che-Liang Chioufc7072c2010-12-22 10:38:51 +0000104 virtual void InitSections() {}
Rafael Espindolaa484f2c2010-11-28 14:48:34 +0000105
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
Rafael Espindola32a006e2010-12-03 00:55:40 +0000116 virtual void EmitDwarfAdvanceLineAddr(int64_t LineDelta,
117 const MCSymbol *LastLabel,
118 const MCSymbol *Label);
119
Rafael Espindolaa484f2c2010-11-28 14:48:34 +0000120 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
Rafael Espindola89b93722010-12-10 07:39:47 +0000145 virtual void EmitValueImpl(const MCExpr *Value, unsigned Size,
Rafael Espindoladebd7e42011-05-01 03:50:49 +0000146 unsigned AddrSpace);
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000147 virtual void EmitULEB128Value(const MCExpr *Value);
148 virtual void EmitSLEB128Value(const MCExpr *Value);
Rafael Espindolaa484f2c2010-11-28 14:48:34 +0000149 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
Che-Liang Chioud77f2a42010-11-08 02:58:44 +0000183/// TODO: Add appropriate implementation of Emit*() methods when needed
184
185void 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
199void 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
224static 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
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000229void PTXMCAsmStreamer::ChangeSection(const MCSection *Section) {
Che-Liang Chioud77f2a42010-11-08 02:58:44 +0000230 assert(Section && "Cannot switch to a null section!");
Che-Liang Chioud77f2a42010-11-08 02:58:44 +0000231}
232
233void PTXMCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
234 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
235 assert(!Symbol->isVariable() && "Cannot emit a variable symbol!");
Che-Liang Chiou88d33672011-03-18 11:08:52 +0000236 //assert(getCurrentSection() && "Cannot emit before setting section!");
Che-Liang Chioud77f2a42010-11-08 02:58:44 +0000237
238 OS << *Symbol << MAI.getLabelSuffix();
239 EmitEOL();
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000240 Symbol->setSection(*getCurrentSection());
Che-Liang Chioud77f2a42010-11-08 02:58:44 +0000241}
242
243void PTXMCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {}
244
245void PTXMCAsmStreamer::EmitThumbFunc(MCSymbol *Func) {}
246
247void 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
255void PTXMCAsmStreamer::EmitWeakReference(MCSymbol *Alias,
256 const MCSymbol *Symbol) {
257 OS << ".weakref " << *Alias << ", " << *Symbol;
258 EmitEOL();
259}
260
Rafael Espindola32a006e2010-12-03 00:55:40 +0000261void PTXMCAsmStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
262 const MCSymbol *LastLabel,
263 const MCSymbol *Label) {
264 report_fatal_error("Unimplemented.");
265}
266
Che-Liang Chioud77f2a42010-11-08 02:58:44 +0000267void PTXMCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
268 MCSymbolAttr Attribute) {}
269
270void PTXMCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {}
271
272void PTXMCAsmStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {}
273
274void PTXMCAsmStreamer::EmitCOFFSymbolStorageClass (int StorageClass) {}
275
276void PTXMCAsmStreamer::EmitCOFFSymbolType (int Type) {}
277
278void PTXMCAsmStreamer::EndCOFFSymbolDef() {}
279
280void PTXMCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {}
281
282void PTXMCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
283 unsigned ByteAlignment) {}
284
285void PTXMCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size) {}
286
287void PTXMCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
288 unsigned Size, unsigned ByteAlignment) {}
289
290void PTXMCAsmStreamer::EmitTBSSSymbol(const MCSection *Section,
291 MCSymbol *Symbol,
292 uint64_t Size, unsigned ByteAlignment) {}
293
294static inline char toOctal(int X) { return (X&7)+'0'; }
295
296static 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
329void PTXMCAsmStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000330 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Che-Liang Chioud77f2a42010-11-08 02:58:44 +0000331 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
Rafael Espindola89b93722010-12-10 07:39:47 +0000354void PTXMCAsmStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size,
Rafael Espindoladebd7e42011-05-01 03:50:49 +0000355 unsigned AddrSpace) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000356 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Che-Liang Chioud77f2a42010-11-08 02:58:44 +0000357 const char *Directive = 0;
358 switch (Size) {
359 default: break;
360 case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
361 case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
362 case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
363 case 8:
364 Directive = MAI.getData64bitsDirective(AddrSpace);
365 // If the target doesn't support 64-bit data, emit as two 32-bit halves.
366 if (Directive) break;
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000367 int64_t IntValue;
368 if (!Value->EvaluateAsAbsolute(IntValue))
369 report_fatal_error("Don't know how to emit this value.");
Rafael Espindola89b93722010-12-10 07:39:47 +0000370 if (getContext().getTargetAsmInfo().isLittleEndian()) {
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000371 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
372 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
Che-Liang Chioud77f2a42010-11-08 02:58:44 +0000373 } else {
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000374 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
375 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
Che-Liang Chioud77f2a42010-11-08 02:58:44 +0000376 }
377 return;
378 }
379
380 assert(Directive && "Invalid size for machine code value!");
Che-Liang Chioud77f2a42010-11-08 02:58:44 +0000381 OS << Directive << *Value;
382 EmitEOL();
383}
384
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000385void PTXMCAsmStreamer::EmitULEB128Value(const MCExpr *Value) {
Che-Liang Chioud77f2a42010-11-08 02:58:44 +0000386 assert(MAI.hasLEB128() && "Cannot print a .uleb");
387 OS << ".uleb128 " << *Value;
388 EmitEOL();
389}
390
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000391void PTXMCAsmStreamer::EmitSLEB128Value(const MCExpr *Value) {
Che-Liang Chioud77f2a42010-11-08 02:58:44 +0000392 assert(MAI.hasLEB128() && "Cannot print a .sleb");
393 OS << ".sleb128 " << *Value;
394 EmitEOL();
395}
396
397void PTXMCAsmStreamer::EmitGPRel32Value(const MCExpr *Value) {
398 assert(MAI.getGPRel32Directive() != 0);
399 OS << MAI.getGPRel32Directive() << *Value;
400 EmitEOL();
401}
402
403
404/// EmitFill - Emit NumBytes bytes worth of the value specified by
405/// FillValue. This implements directives such as '.space'.
406void PTXMCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
407 unsigned AddrSpace) {
408 if (NumBytes == 0) return;
409
410 if (AddrSpace == 0)
411 if (const char *ZeroDirective = MAI.getZeroDirective()) {
412 OS << ZeroDirective << NumBytes;
413 if (FillValue != 0)
414 OS << ',' << (int)FillValue;
415 EmitEOL();
416 return;
417 }
418
419 // Emit a byte at a time.
420 MCStreamer::EmitFill(NumBytes, FillValue, AddrSpace);
421}
422
Justin Holewinski12785e82011-03-03 13:34:29 +0000423void PTXMCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment,
424 int64_t Value,
Che-Liang Chioud77f2a42010-11-08 02:58:44 +0000425 unsigned ValueSize,
426 unsigned MaxBytesToEmit) {
427 // Some assemblers don't support non-power of two alignments, so we always
428 // emit alignments as a power of two if possible.
429 if (isPowerOf2_32(ByteAlignment)) {
430 switch (ValueSize) {
431 default: llvm_unreachable("Invalid size for machine code value!");
432 case 1: OS << MAI.getAlignDirective(); break;
433 // FIXME: use MAI for this!
434 case 2: OS << ".p2alignw "; break;
435 case 4: OS << ".p2alignl "; break;
436 case 8: llvm_unreachable("Unsupported alignment size!");
437 }
438
439 if (MAI.getAlignmentIsInBytes())
440 OS << ByteAlignment;
441 else
442 OS << Log2_32(ByteAlignment);
443
444 if (Value || MaxBytesToEmit) {
445 OS << ", 0x";
446 OS.write_hex(truncateToSize(Value, ValueSize));
447
448 if (MaxBytesToEmit)
449 OS << ", " << MaxBytesToEmit;
450 }
451 EmitEOL();
452 return;
453 }
454
455 // Non-power of two alignment. This is not widely supported by assemblers.
456 // FIXME: Parameterize this based on MAI.
457 switch (ValueSize) {
458 default: llvm_unreachable("Invalid size for machine code value!");
459 case 1: OS << ".balign"; break;
460 case 2: OS << ".balignw"; break;
461 case 4: OS << ".balignl"; break;
462 case 8: llvm_unreachable("Unsupported alignment size!");
463 }
464
465 OS << ' ' << ByteAlignment;
466 OS << ", " << truncateToSize(Value, ValueSize);
467 if (MaxBytesToEmit)
468 OS << ", " << MaxBytesToEmit;
469 EmitEOL();
470}
471
472void PTXMCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
473 unsigned MaxBytesToEmit) {}
474
475void PTXMCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
476 unsigned char Value) {}
477
478
479void PTXMCAsmStreamer::EmitFileDirective(StringRef Filename) {
480 assert(MAI.hasSingleParameterDotFile());
481 OS << "\t.file\t";
482 PrintQuotedString(Filename, OS);
483 EmitEOL();
484}
485
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000486// FIXME: should we inherit from MCAsmStreamer?
487bool PTXMCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo,
Che-Liang Chioud77f2a42010-11-08 02:58:44 +0000488 StringRef Filename){
489 OS << "\t.file\t" << FileNo << ' ';
490 PrintQuotedString(Filename, OS);
491 EmitEOL();
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000492 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Filename);
Che-Liang Chioud77f2a42010-11-08 02:58:44 +0000493}
494
495void PTXMCAsmStreamer::AddEncodingComment(const MCInst &Inst) {}
496
497void PTXMCAsmStreamer::EmitInstruction(const MCInst &Inst) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000498 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Che-Liang Chioud77f2a42010-11-08 02:58:44 +0000499
500 // Show the encoding in a comment if we have a code emitter.
501 if (Emitter)
502 AddEncodingComment(Inst);
503
504 // Show the MCInst if enabled.
505 if (ShowInst) {
506 Inst.dump_pretty(GetCommentOS(), &MAI, InstPrinter.get(), "\n ");
507 GetCommentOS() << "\n";
508 }
509
510 // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
511 if (InstPrinter)
512 InstPrinter->printInst(&Inst, OS);
513 else
514 Inst.print(OS, &MAI);
515 EmitEOL();
516}
517
518/// EmitRawText - If this file is backed by an assembly streamer, this dumps
519/// the specified string in the output .s file. This capability is
520/// indicated by the hasRawTextSupport() predicate.
521void PTXMCAsmStreamer::EmitRawText(StringRef String) {
522 if (!String.empty() && String.back() == '\n')
523 String = String.substr(0, String.size()-1);
524 OS << String;
525 EmitEOL();
526}
527
528void PTXMCAsmStreamer::Finish() {}
529
Rafael Espindolaa484f2c2010-11-28 14:48:34 +0000530namespace llvm {
531 MCStreamer *createPTXAsmStreamer(MCContext &Context,
532 formatted_raw_ostream &OS,
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000533 bool isVerboseAsm, bool useLoc, bool useCFI,
Rafael Espindola89b93722010-12-10 07:39:47 +0000534 MCInstPrinter *IP,
Daniel Dunbar745dacc2010-12-16 03:05:59 +0000535 MCCodeEmitter *CE, TargetAsmBackend *TAB,
536 bool ShowInst) {
Rafael Espindola89b93722010-12-10 07:39:47 +0000537 return new PTXMCAsmStreamer(Context, OS, isVerboseAsm, useLoc,
Rafael Espindolaa484f2c2010-11-28 14:48:34 +0000538 IP, CE, ShowInst);
539 }
Che-Liang Chioud77f2a42010-11-08 02:58:44 +0000540}