blob: 6ce040efd6b0230531b026c6e82f2c57fdbf8f2a [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");
230 case MCSA_Global: OS << MAI.getGlobalDirective(); break; // .globl
231 case MCSA_Hidden: OS << ".hidden "; break;
232 case MCSA_IndirectSymbol: OS << ".indirect_symbol "; break;
233 case MCSA_Internal: OS << ".internal "; break;
234 case MCSA_LazyReference: OS << ".lazy_reference "; break;
235 case MCSA_Local: OS << ".local "; break;
236 case MCSA_NoDeadStrip: OS << ".no_dead_strip "; break;
237 case MCSA_PrivateExtern: OS << ".private_extern "; break;
238 case MCSA_Protected: OS << ".protected "; break;
239 case MCSA_Reference: OS << ".reference "; break;
240 case MCSA_Weak: OS << ".weak "; break;
241 case MCSA_WeakDefinition: OS << ".weak_definition "; break;
242 // .weak_reference
243 case MCSA_WeakReference: OS << MAI.getWeakRefDirective(); break;
Daniel Dunbara11af532009-06-24 01:03:06 +0000244 }
245
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000246 OS << *Symbol;
247 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000248}
249
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000250void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000251 OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
252 EmitEOL();
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000253}
254
Chris Lattner99328ad2010-01-25 07:52:13 +0000255void MCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
256 assert(MAI.hasDotTypeDotSizeDirective());
257 OS << "\t.size\t" << *Symbol << ", " << *Value << '\n';
258}
259
Chris Lattner9eb158d2010-01-23 07:47:02 +0000260void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000261 unsigned ByteAlignment) {
Chris Lattner9eb158d2010-01-23 07:47:02 +0000262 OS << "\t.comm\t" << *Symbol << ',' << Size;
Chris Lattner6559d762010-01-25 07:29:13 +0000263 if (ByteAlignment != 0) {
Chris Lattner4ed54382010-01-19 06:01:04 +0000264 if (MAI.getAlignmentIsInBytes())
265 OS << ',' << ByteAlignment;
266 else
267 OS << ',' << Log2_32(ByteAlignment);
268 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000269 EmitEOL();
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000270}
271
Chris Lattner9eb158d2010-01-23 07:47:02 +0000272/// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
273///
274/// @param Symbol - The common symbol to emit.
275/// @param Size - The size of the common symbol.
276void MCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size) {
277 assert(MAI.hasLCOMMDirective() && "Doesn't have .lcomm, can't emit it!");
278 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
279 EmitEOL();
280}
281
Daniel Dunbar8751b942009-08-28 05:48:22 +0000282void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000283 unsigned Size, unsigned ByteAlignment) {
Daniel Dunbar011e4db2009-08-13 23:36:34 +0000284 // Note: a .zerofill directive does not switch sections.
Chris Lattner93b6db32009-08-08 23:39:42 +0000285 OS << ".zerofill ";
286
287 // This is a mach-o specific directive.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000288 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
Daniel Dunbar12de0df2009-08-14 18:51:45 +0000289 OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
Chris Lattner93b6db32009-08-08 23:39:42 +0000290
Chris Lattner9be3fee2009-07-10 22:20:30 +0000291 if (Symbol != NULL) {
Chris Lattner10b318b2010-01-17 21:43:43 +0000292 OS << ',' << *Symbol << ',' << Size;
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000293 if (ByteAlignment != 0)
294 OS << ',' << Log2_32(ByteAlignment);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000295 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000296 EmitEOL();
Chris Lattner9be3fee2009-07-10 22:20:30 +0000297}
298
Chris Lattner12e555c2010-01-23 00:15:00 +0000299static inline char toOctal(int X) { return (X&7)+'0'; }
300
Chris Lattneraaec2052010-01-19 19:46:13 +0000301void MCAsmStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000302 assert(CurSection && "Cannot emit contents before setting section!");
Chris Lattner12e555c2010-01-23 00:15:00 +0000303 if (Data.empty()) return;
304
305 if (Data.size() == 1) {
306 OS << MAI.getData8bitsDirective(AddrSpace);
307 OS << (unsigned)(unsigned char)Data[0];
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000308 EmitEOL();
Chris Lattner12e555c2010-01-23 00:15:00 +0000309 return;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000310 }
Chris Lattner12e555c2010-01-23 00:15:00 +0000311
312 // If the data ends with 0 and the target supports .asciz, use it, otherwise
313 // use .ascii
314 if (MAI.getAscizDirective() && Data.back() == 0) {
315 OS << MAI.getAscizDirective();
316 Data = Data.substr(0, Data.size()-1);
317 } else {
318 OS << MAI.getAsciiDirective();
319 }
320
321 OS << " \"";
322 for (unsigned i = 0, e = Data.size(); i != e; ++i) {
323 unsigned char C = Data[i];
324 if (C == '"' || C == '\\') {
325 OS << '\\' << (char)C;
326 continue;
327 }
328
329 if (isprint((unsigned char)C)) {
330 OS << (char)C;
331 continue;
332 }
333
334 switch (C) {
335 case '\b': OS << "\\b"; break;
336 case '\f': OS << "\\f"; break;
337 case '\n': OS << "\\n"; break;
338 case '\r': OS << "\\r"; break;
339 case '\t': OS << "\\t"; break;
340 default:
341 OS << '\\';
342 OS << toOctal(C >> 6);
343 OS << toOctal(C >> 3);
344 OS << toOctal(C >> 0);
345 break;
346 }
347 }
348 OS << '"';
349 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000350}
351
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000352/// EmitIntValue - Special case of EmitValue that avoids the client having
353/// to pass in a MCExpr for constant integers.
354void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size,
355 unsigned AddrSpace) {
356 assert(CurSection && "Cannot emit contents before setting section!");
Chris Lattner32ae3fe2010-01-19 22:03:38 +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;
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000363 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;
367 if (isLittleEndian()) {
368 EmitIntValue((uint32_t)(Value >> 0 ), 4, AddrSpace);
369 EmitIntValue((uint32_t)(Value >> 32), 4, AddrSpace);
370 } else {
371 EmitIntValue((uint32_t)(Value >> 32), 4, AddrSpace);
372 EmitIntValue((uint32_t)(Value >> 0 ), 4, AddrSpace);
373 }
374 return;
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000375 }
376
377 assert(Directive && "Invalid size for machine code value!");
Chris Lattner86e22112010-01-22 07:29:22 +0000378 OS << Directive << truncateToSize(Value, Size);
379 EmitEOL();
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000380}
381
Chris Lattneraaec2052010-01-19 19:46:13 +0000382void MCAsmStreamer::EmitValue(const MCExpr *Value, unsigned Size,
383 unsigned AddrSpace) {
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000384 assert(CurSection && "Cannot emit contents before setting section!");
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000385 const char *Directive = 0;
Daniel Dunbara11af532009-06-24 01:03:06 +0000386 switch (Size) {
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000387 default: break;
388 case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
389 case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
390 case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
391 case 8: Directive = MAI.getData64bitsDirective(AddrSpace); break;
Daniel Dunbara11af532009-06-24 01:03:06 +0000392 }
Chris Lattneraaec2052010-01-19 19:46:13 +0000393
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000394 assert(Directive && "Invalid size for machine code value!");
Chris Lattner86e22112010-01-22 07:29:22 +0000395 OS << Directive << *truncateToSize(Value, Size);
396 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000397}
398
Chris Lattner6113b3d2010-01-19 18:52:28 +0000399/// EmitFill - Emit NumBytes bytes worth of the value specified by
400/// FillValue. This implements directives such as '.space'.
Chris Lattneraaec2052010-01-19 19:46:13 +0000401void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
402 unsigned AddrSpace) {
Chris Lattner8a6d7ac2010-01-19 18:58:52 +0000403 if (NumBytes == 0) return;
404
Chris Lattneraaec2052010-01-19 19:46:13 +0000405 if (AddrSpace == 0)
406 if (const char *ZeroDirective = MAI.getZeroDirective()) {
407 OS << ZeroDirective << NumBytes;
408 if (FillValue != 0)
409 OS << ',' << (int)FillValue;
Chris Lattner86e22112010-01-22 07:29:22 +0000410 EmitEOL();
Chris Lattneraaec2052010-01-19 19:46:13 +0000411 return;
412 }
413
414 // Emit a byte at a time.
415 MCStreamer::EmitFill(NumBytes, FillValue, AddrSpace);
Chris Lattner6113b3d2010-01-19 18:52:28 +0000416}
417
Daniel Dunbar84a29262009-06-24 19:25:34 +0000418void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
419 unsigned ValueSize,
420 unsigned MaxBytesToEmit) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000421 // Some assemblers don't support non-power of two alignments, so we always
422 // emit alignments as a power of two if possible.
423 if (isPowerOf2_32(ByteAlignment)) {
Chris Lattner6e579c62009-08-19 06:35:36 +0000424 switch (ValueSize) {
425 default: llvm_unreachable("Invalid size for machine code value!");
Chris Lattner33adcfb2009-08-22 21:43:10 +0000426 case 1: OS << MAI.getAlignDirective(); break;
427 // FIXME: use MAI for this!
Chris Lattner6e579c62009-08-19 06:35:36 +0000428 case 2: OS << ".p2alignw "; break;
429 case 4: OS << ".p2alignl "; break;
430 case 8: llvm_unreachable("Unsupported alignment size!");
431 }
Chris Lattner663c2d22009-08-19 06:12:02 +0000432
Chris Lattner33adcfb2009-08-22 21:43:10 +0000433 if (MAI.getAlignmentIsInBytes())
Chris Lattner663c2d22009-08-19 06:12:02 +0000434 OS << ByteAlignment;
435 else
436 OS << Log2_32(ByteAlignment);
Daniel Dunbar84a29262009-06-24 19:25:34 +0000437
Chris Lattner663c2d22009-08-19 06:12:02 +0000438 if (Value || MaxBytesToEmit) {
Chris Lattner579531c2009-09-03 04:01:10 +0000439 OS << ", 0x";
440 OS.write_hex(truncateToSize(Value, ValueSize));
Chris Lattner663c2d22009-08-19 06:12:02 +0000441
442 if (MaxBytesToEmit)
443 OS << ", " << MaxBytesToEmit;
444 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000445 EmitEOL();
Chris Lattner663c2d22009-08-19 06:12:02 +0000446 return;
447 }
448
449 // Non-power of two alignment. This is not widely supported by assemblers.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000450 // FIXME: Parameterize this based on MAI.
Daniel Dunbar84a29262009-06-24 19:25:34 +0000451 switch (ValueSize) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000452 default: llvm_unreachable("Invalid size for machine code value!");
453 case 1: OS << ".balign"; break;
454 case 2: OS << ".balignw"; break;
455 case 4: OS << ".balignl"; break;
456 case 8: llvm_unreachable("Unsupported alignment size!");
Daniel Dunbar84a29262009-06-24 19:25:34 +0000457 }
458
Chris Lattner663c2d22009-08-19 06:12:02 +0000459 OS << ' ' << ByteAlignment;
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000460 OS << ", " << truncateToSize(Value, ValueSize);
Daniel Dunbar84a29262009-06-24 19:25:34 +0000461 if (MaxBytesToEmit)
462 OS << ", " << MaxBytesToEmit;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000463 EmitEOL();
Daniel Dunbar84a29262009-06-24 19:25:34 +0000464}
465
Daniel Dunbar821e3332009-08-31 08:09:28 +0000466void MCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbar84a29262009-06-24 19:25:34 +0000467 unsigned char Value) {
468 // FIXME: Verify that Offset is associated with the current section.
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000469 OS << ".org " << *Offset << ", " << (unsigned) Value;
470 EmitEOL();
Daniel Dunbar84a29262009-06-24 19:25:34 +0000471}
472
Daniel Dunbara11af532009-06-24 01:03:06 +0000473void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000474 assert(CurSection && "Cannot emit contents before setting section!");
Daniel Dunbarc22e0b22009-08-14 03:48:55 +0000475
476 // If we have an AsmPrinter, use that to print.
Chris Lattner90edac02009-09-14 03:02:37 +0000477 if (InstPrinter) {
478 InstPrinter->printInst(&Inst);
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000479 EmitEOL();
Daniel Dunbara356aea2009-08-27 07:58:57 +0000480
481 // Show the encoding if we have a code emitter.
482 if (Emitter) {
483 SmallString<256> Code;
484 raw_svector_ostream VecOS(Code);
485 Emitter->EncodeInstruction(Inst, VecOS);
486 VecOS.flush();
487
488 OS.indent(20);
489 OS << " # encoding: [";
490 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
491 if (i)
492 OS << ',';
493 OS << format("%#04x", uint8_t(Code[i]));
494 }
495 OS << "]\n";
496 }
497
Daniel Dunbarc22e0b22009-08-14 03:48:55 +0000498 return;
499 }
500
501 // Otherwise fall back to a structural printing for now. Eventually we should
502 // always have access to the target specific printer.
Chris Lattner684c593d2009-09-03 05:46:51 +0000503 Inst.print(OS, &MAI);
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000504 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000505}
506
507void MCAsmStreamer::Finish() {
508 OS.flush();
509}
510
Chris Lattner86e22112010-01-22 07:29:22 +0000511MCStreamer *llvm::createAsmStreamer(MCContext &Context,
512 formatted_raw_ostream &OS,
Chris Lattner16582022010-01-20 06:39:07 +0000513 const MCAsmInfo &MAI, bool isLittleEndian,
Chris Lattner07404412010-01-22 07:06:15 +0000514 bool isVerboseAsm, MCInstPrinter *IP,
Daniel Dunbar4a0abd82009-08-27 00:51:57 +0000515 MCCodeEmitter *CE) {
Chris Lattner07404412010-01-22 07:06:15 +0000516 return new MCAsmStreamer(Context, OS, MAI, isLittleEndian, isVerboseAsm,
517 IP, CE);
Daniel Dunbara11af532009-06-24 01:03:06 +0000518}