blob: 9d9f46a37861d98460058ae8a4f169998a092943 [file] [log] [blame]
Daniel Dunbara11af532009-06-24 01:03:06 +00001//===- 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"
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +000011#include "llvm/MC/MCAsmInfo.h"
Daniel Dunbar4a0abd82009-08-27 00:51:57 +000012#include "llvm/MC/MCCodeEmitter.h"
Daniel Dunbara11af532009-06-24 01:03:06 +000013#include "llvm/MC/MCContext.h"
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +000014#include "llvm/MC/MCExpr.h"
Daniel Dunbarabde2982009-07-01 06:35:03 +000015#include "llvm/MC/MCInst.h"
Chris Lattner90edac02009-09-14 03:02:37 +000016#include "llvm/MC/MCInstPrinter.h"
Chris Lattnerf9bdedd2009-08-10 18:15:01 +000017#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbara11af532009-06-24 01:03:06 +000018#include "llvm/MC/MCSymbol.h"
Chris Lattner86e22112010-01-22 07:29:22 +000019#include "llvm/ADT/SmallString.h"
20#include "llvm/ADT/Twine.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000021#include "llvm/Support/ErrorHandling.h"
Chris Lattner663c2d22009-08-19 06:12:02 +000022#include "llvm/Support/MathExtras.h"
Daniel Dunbar4a0abd82009-08-27 00:51:57 +000023#include "llvm/Support/Format.h"
Chris Lattner86e22112010-01-22 07:29:22 +000024#include "llvm/Support/FormattedStream.h"
Daniel Dunbara11af532009-06-24 01:03:06 +000025using namespace llvm;
26
27namespace {
28
Chris Lattner46a947d2009-08-17 04:17:34 +000029class MCAsmStreamer : public MCStreamer {
Chris Lattner86e22112010-01-22 07:29:22 +000030 formatted_raw_ostream &OS;
Chris Lattner33adcfb2009-08-22 21:43:10 +000031 const MCAsmInfo &MAI;
Chris Lattner07404412010-01-22 07:06:15 +000032 bool IsLittleEndian, IsVerboseAsm;
Chris Lattner90edac02009-09-14 03:02:37 +000033 MCInstPrinter *InstPrinter;
Daniel Dunbar4a0abd82009-08-27 00:51:57 +000034 MCCodeEmitter *Emitter;
Chris Lattner86e22112010-01-22 07:29:22 +000035
36 SmallString<128> CommentToEmit;
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000037 raw_svector_ostream CommentStream;
Chris Lattner46a947d2009-08-17 04:17:34 +000038public:
Chris Lattner86e22112010-01-22 07:29:22 +000039 MCAsmStreamer(MCContext &Context, formatted_raw_ostream &os,
40 const MCAsmInfo &mai,
Chris Lattner07404412010-01-22 07:06:15 +000041 bool isLittleEndian, bool isVerboseAsm, MCInstPrinter *printer,
42 MCCodeEmitter *emitter)
43 : MCStreamer(Context), OS(os), MAI(mai), IsLittleEndian(isLittleEndian),
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000044 IsVerboseAsm(isVerboseAsm), InstPrinter(printer), Emitter(emitter),
45 CommentStream(CommentToEmit) {}
Chris Lattner46a947d2009-08-17 04:17:34 +000046 ~MCAsmStreamer() {}
Daniel Dunbara11af532009-06-24 01:03:06 +000047
Chris Lattner16582022010-01-20 06:39:07 +000048 bool isLittleEndian() const { return IsLittleEndian; }
49
Chris Lattner86e22112010-01-22 07:29:22 +000050
51 inline void EmitEOL() {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000052 // If we don't have any comments, just emit a \n.
53 if (!IsVerboseAsm) {
Chris Lattner86e22112010-01-22 07:29:22 +000054 OS << '\n';
55 return;
56 }
57 EmitCommentsAndEOL();
58 }
59 void EmitCommentsAndEOL();
60
Chris Lattnerd32c7cf2010-01-22 18:21:35 +000061 /// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner86e22112010-01-22 07:29:22 +000062 /// file if applicable as a QoI issue to make the output of the compiler
63 /// more readable. This only affects the MCAsmStreamer, and only when
64 /// verbose assembly output is enabled.
Chris Lattnerd32c7cf2010-01-22 18:21:35 +000065 virtual void AddComment(const Twine &T);
Chris Lattner86e22112010-01-22 07:29:22 +000066
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000067 /// GetCommentOS - Return a raw_ostream that comments can be written to.
68 /// Unlike AddComment, you are required to terminate comments with \n if you
69 /// use this method.
70 virtual raw_ostream &GetCommentOS() {
71 if (!IsVerboseAsm)
72 return nulls(); // Discard comments unless in verbose asm mode.
73 return CommentStream;
74 }
75
Chris Lattner0fd90fd2010-01-22 19:52:01 +000076 /// AddBlankLine - Emit a blank line to a .s file to pretty it up.
77 virtual void AddBlankLine() {
78 EmitEOL();
79 }
80
Chris Lattner46a947d2009-08-17 04:17:34 +000081 /// @name MCStreamer Interface
82 /// @{
Daniel Dunbara11af532009-06-24 01:03:06 +000083
Chris Lattner975780b2009-08-17 05:49:08 +000084 virtual void SwitchSection(const MCSection *Section);
Daniel Dunbara11af532009-06-24 01:03:06 +000085
Chris Lattner46a947d2009-08-17 04:17:34 +000086 virtual void EmitLabel(MCSymbol *Symbol);
Daniel Dunbara11af532009-06-24 01:03:06 +000087
Chris Lattnera5ad93a2010-01-23 06:39:22 +000088 virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
Daniel Dunbara11af532009-06-24 01:03:06 +000089
Daniel Dunbar821e3332009-08-31 08:09:28 +000090 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
Daniel Dunbara11af532009-06-24 01:03:06 +000091
Chris Lattnera5ad93a2010-01-23 06:39:22 +000092 virtual void EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
Kevin Enderbya5c78322009-07-13 21:03:15 +000093
Chris Lattner46a947d2009-08-17 04:17:34 +000094 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
Daniel Dunbara11af532009-06-24 01:03:06 +000095
Chris Lattner99328ad2010-01-25 07:52:13 +000096 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
Chris Lattner9eb158d2010-01-23 07:47:02 +000097 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +000098 unsigned ByteAlignment);
Kevin Enderby95cf30c2009-07-14 18:17:10 +000099
Chris Lattner9eb158d2010-01-23 07:47:02 +0000100 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
101 ///
102 /// @param Symbol - The common symbol to emit.
103 /// @param Size - The size of the common symbol.
104 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size);
105
Daniel Dunbar8751b942009-08-28 05:48:22 +0000106 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000107 unsigned Size = 0, unsigned ByteAlignment = 0);
Kevin Enderby71148242009-07-14 21:35:03 +0000108
Chris Lattneraaec2052010-01-19 19:46:13 +0000109 virtual void EmitBytes(StringRef Data, unsigned AddrSpace);
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000110
Chris Lattneraaec2052010-01-19 19:46:13 +0000111 virtual void EmitValue(const MCExpr *Value, unsigned Size,unsigned AddrSpace);
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000112 virtual void EmitIntValue(uint64_t Value, unsigned Size, unsigned AddrSpace);
113
Chris Lattneraaec2052010-01-19 19:46:13 +0000114 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue,
115 unsigned AddrSpace);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000116
Chris Lattner46a947d2009-08-17 04:17:34 +0000117 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
118 unsigned ValueSize = 1,
119 unsigned MaxBytesToEmit = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000120
Daniel Dunbar821e3332009-08-31 08:09:28 +0000121 virtual void EmitValueToOffset(const MCExpr *Offset,
Chris Lattner46a947d2009-08-17 04:17:34 +0000122 unsigned char Value = 0);
123
124 virtual void EmitInstruction(const MCInst &Inst);
Daniel Dunbara11af532009-06-24 01:03:06 +0000125
Chris Lattner46a947d2009-08-17 04:17:34 +0000126 virtual void Finish();
127
128 /// @}
129};
Daniel Dunbar84a29262009-06-24 19:25:34 +0000130
Chris Lattner46a947d2009-08-17 04:17:34 +0000131} // end anonymous namespace.
Daniel Dunbara11af532009-06-24 01:03:06 +0000132
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000133/// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner86e22112010-01-22 07:29:22 +0000134/// file if applicable as a QoI issue to make the output of the compiler
135/// more readable. This only affects the MCAsmStreamer, and only when
136/// verbose assembly output is enabled.
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000137void MCAsmStreamer::AddComment(const Twine &T) {
Chris Lattner86e22112010-01-22 07:29:22 +0000138 if (!IsVerboseAsm) return;
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000139
140 // Make sure that CommentStream is flushed.
141 CommentStream.flush();
142
Chris Lattner86e22112010-01-22 07:29:22 +0000143 T.toVector(CommentToEmit);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000144 // Each comment goes on its own line.
145 CommentToEmit.push_back('\n');
Chris Lattner14ca1772010-01-22 21:16:10 +0000146
147 // Tell the comment stream that the vector changed underneath it.
148 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000149}
150
151void MCAsmStreamer::EmitCommentsAndEOL() {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000152 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) {
153 OS << '\n';
154 return;
155 }
156
157 CommentStream.flush();
Chris Lattner86e22112010-01-22 07:29:22 +0000158 StringRef Comments = CommentToEmit.str();
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000159
160 assert(Comments.back() == '\n' &&
161 "Comment array not newline terminated");
162 do {
Chris Lattner86e22112010-01-22 07:29:22 +0000163 // Emit a line of comments.
164 OS.PadToColumn(MAI.getCommentColumn());
165 size_t Position = Comments.find('\n');
166 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
167
Chris Lattner86e22112010-01-22 07:29:22 +0000168 Comments = Comments.substr(Position+1);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000169 } while (!Comments.empty());
Chris Lattner86e22112010-01-22 07:29:22 +0000170
Chris Lattner14ca1772010-01-22 21:16:10 +0000171 CommentToEmit.clear();
172 // Tell the comment stream that the vector changed underneath it.
173 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000174}
175
176
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000177static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
178 assert(Bytes && "Invalid size!");
179 return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
180}
181
Daniel Dunbar821e3332009-08-31 08:09:28 +0000182static inline const MCExpr *truncateToSize(const MCExpr *Value,
183 unsigned Bytes) {
184 // FIXME: Do we really need this routine?
185 return Value;
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000186}
187
Chris Lattner975780b2009-08-17 05:49:08 +0000188void MCAsmStreamer::SwitchSection(const MCSection *Section) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000189 assert(Section && "Cannot switch to a null section!");
Daniel Dunbara11af532009-06-24 01:03:06 +0000190 if (Section != CurSection) {
191 CurSection = Section;
Chris Lattner33adcfb2009-08-22 21:43:10 +0000192 Section->PrintSwitchToSection(MAI, OS);
Daniel Dunbara11af532009-06-24 01:03:06 +0000193 }
194}
195
196void MCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
Daniel Dunbar8906ff12009-08-22 07:22:36 +0000197 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000198 assert(CurSection && "Cannot emit before setting section!");
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000199
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000200 OS << *Symbol << ":";
201 EmitEOL();
Daniel Dunbar8906ff12009-08-22 07:22:36 +0000202 Symbol->setSection(*CurSection);
Daniel Dunbara11af532009-06-24 01:03:06 +0000203}
204
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000205void MCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
Kevin Enderbyf96db462009-07-16 17:56:39 +0000206 switch (Flag) {
Daniel Dunbar011e4db2009-08-13 23:36:34 +0000207 default: assert(0 && "Invalid flag!");
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000208 case MCAF_SubsectionsViaSymbols: OS << ".subsections_via_symbols"; break;
Kevin Enderbyf96db462009-07-16 17:56:39 +0000209 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000210 EmitEOL();
Kevin Enderbya5c78322009-07-13 21:03:15 +0000211}
212
Daniel Dunbar821e3332009-08-31 08:09:28 +0000213void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
Daniel Dunbar8906ff12009-08-22 07:22:36 +0000214 // Only absolute symbols can be redefined.
215 assert((Symbol->isUndefined() || Symbol->isAbsolute()) &&
216 "Cannot define a symbol twice!");
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000217
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000218 OS << *Symbol << " = " << *Value;
219 EmitEOL();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000220
221 // FIXME: Lift context changes into super class.
Daniel Dunbar75773ff2009-10-16 01:57:39 +0000222 // FIXME: Set associated section.
Daniel Dunbarfffff912009-10-16 01:34:54 +0000223 Symbol->setValue(Value);
Daniel Dunbara11af532009-06-24 01:03:06 +0000224}
225
Daniel Dunbarfffff912009-10-16 01:34:54 +0000226void MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000227 MCSymbolAttr Attribute) {
Daniel Dunbara11af532009-06-24 01:03:06 +0000228 switch (Attribute) {
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000229 case MCSA_Invalid: assert(0 && "Invalid symbol attribute");
Chris Lattnered0ab152010-01-25 18:30:45 +0000230 case MCSA_ELF_TypeFunction: /// .type _foo, STT_FUNC # aka @function
231 case MCSA_ELF_TypeIndFunction: /// .type _foo, STT_GNU_IFUNC
232 case MCSA_ELF_TypeObject: /// .type _foo, STT_OBJECT # aka @object
233 case MCSA_ELF_TypeTLS: /// .type _foo, STT_TLS # aka @tls_object
234 case MCSA_ELF_TypeCommon: /// .type _foo, STT_COMMON # aka @common
235 case MCSA_ELF_TypeNoType: /// .type _foo, STT_NOTYPE # aka @notype
236 assert(MAI.hasDotTypeDotSizeDirective() && "Symbol Attr not supported");
Chris Lattnera800f7c2010-01-25 18:33:40 +0000237 OS << "\t.type " << *Symbol << ','
Chris Lattnered0ab152010-01-25 18:30:45 +0000238 << ((MAI.getCommentString()[0] != '@') ? '@' : '%');
239 switch (Attribute) {
240 default: assert(0 && "Unknown ELF .type");
241 case MCSA_ELF_TypeFunction: OS << "function"; break;
242 case MCSA_ELF_TypeIndFunction: OS << "gnu_indirect_function"; break;
243 case MCSA_ELF_TypeObject: OS << "object"; break;
244 case MCSA_ELF_TypeTLS: OS << "tls_object"; break;
245 case MCSA_ELF_TypeCommon: OS << "common"; break;
246 case MCSA_ELF_TypeNoType: OS << "no_type"; break;
247 }
248 EmitEOL();
249 return;
250 case MCSA_Global: // .globl/.global
251 OS << MAI.getGlobalDirective();
252 break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000253 case MCSA_Hidden: OS << ".hidden "; break;
254 case MCSA_IndirectSymbol: OS << ".indirect_symbol "; break;
255 case MCSA_Internal: OS << ".internal "; break;
256 case MCSA_LazyReference: OS << ".lazy_reference "; break;
257 case MCSA_Local: OS << ".local "; break;
258 case MCSA_NoDeadStrip: OS << ".no_dead_strip "; break;
259 case MCSA_PrivateExtern: OS << ".private_extern "; break;
260 case MCSA_Protected: OS << ".protected "; break;
261 case MCSA_Reference: OS << ".reference "; break;
262 case MCSA_Weak: OS << ".weak "; break;
263 case MCSA_WeakDefinition: OS << ".weak_definition "; break;
264 // .weak_reference
265 case MCSA_WeakReference: OS << MAI.getWeakRefDirective(); break;
Daniel Dunbara11af532009-06-24 01:03:06 +0000266 }
267
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000268 OS << *Symbol;
269 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000270}
271
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000272void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000273 OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
274 EmitEOL();
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000275}
276
Chris Lattner99328ad2010-01-25 07:52:13 +0000277void MCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
278 assert(MAI.hasDotTypeDotSizeDirective());
279 OS << "\t.size\t" << *Symbol << ", " << *Value << '\n';
280}
281
Chris Lattner9eb158d2010-01-23 07:47:02 +0000282void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000283 unsigned ByteAlignment) {
Chris Lattner9eb158d2010-01-23 07:47:02 +0000284 OS << "\t.comm\t" << *Symbol << ',' << Size;
Chris Lattner6559d762010-01-25 07:29:13 +0000285 if (ByteAlignment != 0) {
Chris Lattner4ed54382010-01-19 06:01:04 +0000286 if (MAI.getAlignmentIsInBytes())
287 OS << ',' << ByteAlignment;
288 else
289 OS << ',' << Log2_32(ByteAlignment);
290 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000291 EmitEOL();
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000292}
293
Chris Lattner9eb158d2010-01-23 07:47:02 +0000294/// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
295///
296/// @param Symbol - The common symbol to emit.
297/// @param Size - The size of the common symbol.
298void MCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size) {
299 assert(MAI.hasLCOMMDirective() && "Doesn't have .lcomm, can't emit it!");
300 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
301 EmitEOL();
302}
303
Daniel Dunbar8751b942009-08-28 05:48:22 +0000304void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000305 unsigned Size, unsigned ByteAlignment) {
Daniel Dunbar011e4db2009-08-13 23:36:34 +0000306 // Note: a .zerofill directive does not switch sections.
Chris Lattner93b6db32009-08-08 23:39:42 +0000307 OS << ".zerofill ";
308
309 // This is a mach-o specific directive.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000310 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
Daniel Dunbar12de0df2009-08-14 18:51:45 +0000311 OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
Chris Lattner93b6db32009-08-08 23:39:42 +0000312
Chris Lattner9be3fee2009-07-10 22:20:30 +0000313 if (Symbol != NULL) {
Chris Lattner10b318b2010-01-17 21:43:43 +0000314 OS << ',' << *Symbol << ',' << Size;
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000315 if (ByteAlignment != 0)
316 OS << ',' << Log2_32(ByteAlignment);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000317 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000318 EmitEOL();
Chris Lattner9be3fee2009-07-10 22:20:30 +0000319}
320
Chris Lattner12e555c2010-01-23 00:15:00 +0000321static inline char toOctal(int X) { return (X&7)+'0'; }
322
Chris Lattneraaec2052010-01-19 19:46:13 +0000323void MCAsmStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000324 assert(CurSection && "Cannot emit contents before setting section!");
Chris Lattner12e555c2010-01-23 00:15:00 +0000325 if (Data.empty()) return;
326
327 if (Data.size() == 1) {
328 OS << MAI.getData8bitsDirective(AddrSpace);
329 OS << (unsigned)(unsigned char)Data[0];
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000330 EmitEOL();
Chris Lattner12e555c2010-01-23 00:15:00 +0000331 return;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000332 }
Chris Lattner12e555c2010-01-23 00:15:00 +0000333
334 // If the data ends with 0 and the target supports .asciz, use it, otherwise
335 // use .ascii
336 if (MAI.getAscizDirective() && Data.back() == 0) {
337 OS << MAI.getAscizDirective();
338 Data = Data.substr(0, Data.size()-1);
339 } else {
340 OS << MAI.getAsciiDirective();
341 }
342
343 OS << " \"";
344 for (unsigned i = 0, e = Data.size(); i != e; ++i) {
345 unsigned char C = Data[i];
346 if (C == '"' || C == '\\') {
347 OS << '\\' << (char)C;
348 continue;
349 }
350
351 if (isprint((unsigned char)C)) {
352 OS << (char)C;
353 continue;
354 }
355
356 switch (C) {
357 case '\b': OS << "\\b"; break;
358 case '\f': OS << "\\f"; break;
359 case '\n': OS << "\\n"; break;
360 case '\r': OS << "\\r"; break;
361 case '\t': OS << "\\t"; break;
362 default:
363 OS << '\\';
364 OS << toOctal(C >> 6);
365 OS << toOctal(C >> 3);
366 OS << toOctal(C >> 0);
367 break;
368 }
369 }
370 OS << '"';
371 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000372}
373
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000374/// EmitIntValue - Special case of EmitValue that avoids the client having
375/// to pass in a MCExpr for constant integers.
376void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size,
377 unsigned AddrSpace) {
378 assert(CurSection && "Cannot emit contents before setting section!");
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000379 const char *Directive = 0;
380 switch (Size) {
381 default: break;
382 case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
383 case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
384 case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000385 case 8:
386 Directive = MAI.getData64bitsDirective(AddrSpace);
387 // If the target doesn't support 64-bit data, emit as two 32-bit halves.
388 if (Directive) break;
389 if (isLittleEndian()) {
390 EmitIntValue((uint32_t)(Value >> 0 ), 4, AddrSpace);
391 EmitIntValue((uint32_t)(Value >> 32), 4, AddrSpace);
392 } else {
393 EmitIntValue((uint32_t)(Value >> 32), 4, AddrSpace);
394 EmitIntValue((uint32_t)(Value >> 0 ), 4, AddrSpace);
395 }
396 return;
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000397 }
398
399 assert(Directive && "Invalid size for machine code value!");
Chris Lattner86e22112010-01-22 07:29:22 +0000400 OS << Directive << truncateToSize(Value, Size);
401 EmitEOL();
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000402}
403
Chris Lattneraaec2052010-01-19 19:46:13 +0000404void MCAsmStreamer::EmitValue(const MCExpr *Value, unsigned Size,
405 unsigned AddrSpace) {
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000406 assert(CurSection && "Cannot emit contents before setting section!");
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000407 const char *Directive = 0;
Daniel Dunbara11af532009-06-24 01:03:06 +0000408 switch (Size) {
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000409 default: break;
410 case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
411 case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
412 case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
413 case 8: Directive = MAI.getData64bitsDirective(AddrSpace); break;
Daniel Dunbara11af532009-06-24 01:03:06 +0000414 }
Chris Lattneraaec2052010-01-19 19:46:13 +0000415
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000416 assert(Directive && "Invalid size for machine code value!");
Chris Lattner86e22112010-01-22 07:29:22 +0000417 OS << Directive << *truncateToSize(Value, Size);
418 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000419}
420
Chris Lattner6113b3d2010-01-19 18:52:28 +0000421/// EmitFill - Emit NumBytes bytes worth of the value specified by
422/// FillValue. This implements directives such as '.space'.
Chris Lattneraaec2052010-01-19 19:46:13 +0000423void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
424 unsigned AddrSpace) {
Chris Lattner8a6d7ac2010-01-19 18:58:52 +0000425 if (NumBytes == 0) return;
426
Chris Lattneraaec2052010-01-19 19:46:13 +0000427 if (AddrSpace == 0)
428 if (const char *ZeroDirective = MAI.getZeroDirective()) {
429 OS << ZeroDirective << NumBytes;
430 if (FillValue != 0)
431 OS << ',' << (int)FillValue;
Chris Lattner86e22112010-01-22 07:29:22 +0000432 EmitEOL();
Chris Lattneraaec2052010-01-19 19:46:13 +0000433 return;
434 }
435
436 // Emit a byte at a time.
437 MCStreamer::EmitFill(NumBytes, FillValue, AddrSpace);
Chris Lattner6113b3d2010-01-19 18:52:28 +0000438}
439
Daniel Dunbar84a29262009-06-24 19:25:34 +0000440void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
441 unsigned ValueSize,
442 unsigned MaxBytesToEmit) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000443 // Some assemblers don't support non-power of two alignments, so we always
444 // emit alignments as a power of two if possible.
445 if (isPowerOf2_32(ByteAlignment)) {
Chris Lattner6e579c62009-08-19 06:35:36 +0000446 switch (ValueSize) {
447 default: llvm_unreachable("Invalid size for machine code value!");
Chris Lattner33adcfb2009-08-22 21:43:10 +0000448 case 1: OS << MAI.getAlignDirective(); break;
449 // FIXME: use MAI for this!
Chris Lattner6e579c62009-08-19 06:35:36 +0000450 case 2: OS << ".p2alignw "; break;
451 case 4: OS << ".p2alignl "; break;
452 case 8: llvm_unreachable("Unsupported alignment size!");
453 }
Chris Lattner663c2d22009-08-19 06:12:02 +0000454
Chris Lattner33adcfb2009-08-22 21:43:10 +0000455 if (MAI.getAlignmentIsInBytes())
Chris Lattner663c2d22009-08-19 06:12:02 +0000456 OS << ByteAlignment;
457 else
458 OS << Log2_32(ByteAlignment);
Daniel Dunbar84a29262009-06-24 19:25:34 +0000459
Chris Lattner663c2d22009-08-19 06:12:02 +0000460 if (Value || MaxBytesToEmit) {
Chris Lattner579531c2009-09-03 04:01:10 +0000461 OS << ", 0x";
462 OS.write_hex(truncateToSize(Value, ValueSize));
Chris Lattner663c2d22009-08-19 06:12:02 +0000463
464 if (MaxBytesToEmit)
465 OS << ", " << MaxBytesToEmit;
466 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000467 EmitEOL();
Chris Lattner663c2d22009-08-19 06:12:02 +0000468 return;
469 }
470
471 // Non-power of two alignment. This is not widely supported by assemblers.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000472 // FIXME: Parameterize this based on MAI.
Daniel Dunbar84a29262009-06-24 19:25:34 +0000473 switch (ValueSize) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000474 default: llvm_unreachable("Invalid size for machine code value!");
475 case 1: OS << ".balign"; break;
476 case 2: OS << ".balignw"; break;
477 case 4: OS << ".balignl"; break;
478 case 8: llvm_unreachable("Unsupported alignment size!");
Daniel Dunbar84a29262009-06-24 19:25:34 +0000479 }
480
Chris Lattner663c2d22009-08-19 06:12:02 +0000481 OS << ' ' << ByteAlignment;
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000482 OS << ", " << truncateToSize(Value, ValueSize);
Daniel Dunbar84a29262009-06-24 19:25:34 +0000483 if (MaxBytesToEmit)
484 OS << ", " << MaxBytesToEmit;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000485 EmitEOL();
Daniel Dunbar84a29262009-06-24 19:25:34 +0000486}
487
Daniel Dunbar821e3332009-08-31 08:09:28 +0000488void MCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbar84a29262009-06-24 19:25:34 +0000489 unsigned char Value) {
490 // FIXME: Verify that Offset is associated with the current section.
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000491 OS << ".org " << *Offset << ", " << (unsigned) Value;
492 EmitEOL();
Daniel Dunbar84a29262009-06-24 19:25:34 +0000493}
494
Daniel Dunbara11af532009-06-24 01:03:06 +0000495void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000496 assert(CurSection && "Cannot emit contents before setting section!");
Daniel Dunbarc22e0b22009-08-14 03:48:55 +0000497
498 // If we have an AsmPrinter, use that to print.
Chris Lattner90edac02009-09-14 03:02:37 +0000499 if (InstPrinter) {
500 InstPrinter->printInst(&Inst);
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000501 EmitEOL();
Daniel Dunbara356aea2009-08-27 07:58:57 +0000502
503 // Show the encoding if we have a code emitter.
504 if (Emitter) {
505 SmallString<256> Code;
506 raw_svector_ostream VecOS(Code);
507 Emitter->EncodeInstruction(Inst, VecOS);
508 VecOS.flush();
509
510 OS.indent(20);
511 OS << " # encoding: [";
512 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
513 if (i)
514 OS << ',';
515 OS << format("%#04x", uint8_t(Code[i]));
516 }
517 OS << "]\n";
518 }
519
Daniel Dunbarc22e0b22009-08-14 03:48:55 +0000520 return;
521 }
522
523 // Otherwise fall back to a structural printing for now. Eventually we should
524 // always have access to the target specific printer.
Chris Lattner684c593d2009-09-03 05:46:51 +0000525 Inst.print(OS, &MAI);
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000526 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000527}
528
529void MCAsmStreamer::Finish() {
530 OS.flush();
531}
532
Chris Lattner86e22112010-01-22 07:29:22 +0000533MCStreamer *llvm::createAsmStreamer(MCContext &Context,
534 formatted_raw_ostream &OS,
Chris Lattner16582022010-01-20 06:39:07 +0000535 const MCAsmInfo &MAI, bool isLittleEndian,
Chris Lattner07404412010-01-22 07:06:15 +0000536 bool isVerboseAsm, MCInstPrinter *IP,
Daniel Dunbar4a0abd82009-08-27 00:51:57 +0000537 MCCodeEmitter *CE) {
Chris Lattner07404412010-01-22 07:06:15 +0000538 return new MCAsmStreamer(Context, OS, MAI, isLittleEndian, isVerboseAsm,
539 IP, CE);
Daniel Dunbara11af532009-06-24 01:03:06 +0000540}