blob: 735ea6ba17c091447eaa7fc20cc64b03931e09c5 [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 Dunbar2761fc42010-12-16 03:20:06 +000015#include "llvm/MC/MCFixupKindInfo.h"
Daniel Dunbarabde2982009-07-01 06:35:03 +000016#include "llvm/MC/MCInst.h"
Chris Lattner90edac02009-09-14 03:02:37 +000017#include "llvm/MC/MCInstPrinter.h"
Chris Lattnerf9bdedd2009-08-10 18:15:01 +000018#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbara11af532009-06-24 01:03:06 +000019#include "llvm/MC/MCSymbol.h"
Chris Lattner4c42a6d2010-03-19 05:48:53 +000020#include "llvm/ADT/OwningPtr.h"
Chris Lattner86e22112010-01-22 07:29:22 +000021#include "llvm/ADT/SmallString.h"
22#include "llvm/ADT/Twine.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000023#include "llvm/Support/ErrorHandling.h"
Chris Lattner663c2d22009-08-19 06:12:02 +000024#include "llvm/Support/MathExtras.h"
Daniel Dunbar4a0abd82009-08-27 00:51:57 +000025#include "llvm/Support/Format.h"
Chris Lattner86e22112010-01-22 07:29:22 +000026#include "llvm/Support/FormattedStream.h"
Daniel Dunbar745dacc2010-12-16 03:05:59 +000027#include "llvm/Target/TargetAsmBackend.h"
Rafael Espindola89b93722010-12-10 07:39:47 +000028#include "llvm/Target/TargetAsmInfo.h"
Daniel Dunbar745dacc2010-12-16 03:05:59 +000029#include "llvm/Target/TargetLoweringObjectFile.h"
Nick Lewycky476b2422010-12-19 20:43:38 +000030#include <cctype>
Daniel Dunbara11af532009-06-24 01:03:06 +000031using namespace llvm;
32
33namespace {
34
Chris Lattner46a947d2009-08-17 04:17:34 +000035class MCAsmStreamer : public MCStreamer {
Chris Lattner86e22112010-01-22 07:29:22 +000036 formatted_raw_ostream &OS;
Chris Lattner33adcfb2009-08-22 21:43:10 +000037 const MCAsmInfo &MAI;
Chris Lattner4c42a6d2010-03-19 05:48:53 +000038 OwningPtr<MCInstPrinter> InstPrinter;
Benjamin Kramer1abcd062010-07-29 17:48:06 +000039 OwningPtr<MCCodeEmitter> Emitter;
Daniel Dunbar745dacc2010-12-16 03:05:59 +000040 OwningPtr<TargetAsmBackend> AsmBackend;
Jim Grosbach00545e12010-09-22 18:16:55 +000041
Chris Lattner86e22112010-01-22 07:29:22 +000042 SmallString<128> CommentToEmit;
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000043 raw_svector_ostream CommentStream;
Daniel Dunbar9dee8e32010-02-03 18:18:30 +000044
Daniel Dunbar9dee8e32010-02-03 18:18:30 +000045 unsigned IsVerboseAsm : 1;
46 unsigned ShowInst : 1;
Rafael Espindola89b93722010-12-10 07:39:47 +000047 unsigned UseLoc : 1;
Daniel Dunbar9dee8e32010-02-03 18:18:30 +000048
Rafael Espindola5d4918d2010-12-04 03:21:47 +000049 bool needsSet(const MCExpr *Value);
50
Chris Lattner46a947d2009-08-17 04:17:34 +000051public:
Chris Lattner86e22112010-01-22 07:29:22 +000052 MCAsmStreamer(MCContext &Context, formatted_raw_ostream &os,
Rafael Espindola89b93722010-12-10 07:39:47 +000053 bool isVerboseAsm,
54 bool useLoc,
Daniel Dunbar745dacc2010-12-16 03:05:59 +000055 MCInstPrinter *printer, MCCodeEmitter *emitter,
56 TargetAsmBackend *asmbackend,
57 bool showInst)
Chris Lattnerfdab14b2010-03-12 18:28:53 +000058 : MCStreamer(Context), OS(os), MAI(Context.getAsmInfo()),
Daniel Dunbar745dacc2010-12-16 03:05:59 +000059 InstPrinter(printer), Emitter(emitter), AsmBackend(asmbackend),
60 CommentStream(CommentToEmit), IsVerboseAsm(isVerboseAsm),
Rafael Espindola89b93722010-12-10 07:39:47 +000061 ShowInst(showInst), UseLoc(useLoc) {
Chris Lattner5d672cf2010-02-10 00:10:18 +000062 if (InstPrinter && IsVerboseAsm)
63 InstPrinter->setCommentStream(CommentStream);
64 }
Chris Lattner46a947d2009-08-17 04:17:34 +000065 ~MCAsmStreamer() {}
Daniel Dunbara11af532009-06-24 01:03:06 +000066
Chris Lattner86e22112010-01-22 07:29:22 +000067 inline void EmitEOL() {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000068 // If we don't have any comments, just emit a \n.
69 if (!IsVerboseAsm) {
Chris Lattner86e22112010-01-22 07:29:22 +000070 OS << '\n';
71 return;
72 }
73 EmitCommentsAndEOL();
74 }
75 void EmitCommentsAndEOL();
Chris Lattner56591ab2010-02-02 23:37:42 +000076
77 /// isVerboseAsm - Return true if this streamer supports verbose assembly at
78 /// all.
79 virtual bool isVerboseAsm() const { return IsVerboseAsm; }
Jim Grosbach00545e12010-09-22 18:16:55 +000080
Chris Lattner91bead72010-04-03 21:35:55 +000081 /// hasRawTextSupport - We support EmitRawText.
82 virtual bool hasRawTextSupport() const { return true; }
Daniel Dunbar6b716532010-02-09 23:00:14 +000083
Chris Lattnerd32c7cf2010-01-22 18:21:35 +000084 /// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner86e22112010-01-22 07:29:22 +000085 /// file if applicable as a QoI issue to make the output of the compiler
86 /// more readable. This only affects the MCAsmStreamer, and only when
87 /// verbose assembly output is enabled.
Chris Lattnerd32c7cf2010-01-22 18:21:35 +000088 virtual void AddComment(const Twine &T);
Daniel Dunbar6b716532010-02-09 23:00:14 +000089
90 /// AddEncodingComment - Add a comment showing the encoding of an instruction.
91 virtual void AddEncodingComment(const MCInst &Inst);
92
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000093 /// GetCommentOS - Return a raw_ostream that comments can be written to.
94 /// Unlike AddComment, you are required to terminate comments with \n if you
95 /// use this method.
96 virtual raw_ostream &GetCommentOS() {
97 if (!IsVerboseAsm)
98 return nulls(); // Discard comments unless in verbose asm mode.
99 return CommentStream;
100 }
Daniel Dunbar6b716532010-02-09 23:00:14 +0000101
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000102 /// AddBlankLine - Emit a blank line to a .s file to pretty it up.
103 virtual void AddBlankLine() {
104 EmitEOL();
105 }
Daniel Dunbar6b716532010-02-09 23:00:14 +0000106
Chris Lattner46a947d2009-08-17 04:17:34 +0000107 /// @name MCStreamer Interface
108 /// @{
Daniel Dunbara11af532009-06-24 01:03:06 +0000109
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000110 virtual void ChangeSection(const MCSection *Section);
Daniel Dunbara11af532009-06-24 01:03:06 +0000111
Rafael Espindolad80781b2010-09-15 21:48:40 +0000112 virtual void InitSections() {
113 // FIXME, this is MachO specific, but the testsuite
114 // expects this.
115 SwitchSection(getContext().getMachOSection("__TEXT", "__text",
116 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
117 0, SectionKind::getText()));
118 }
119
Chris Lattner46a947d2009-08-17 04:17:34 +0000120 virtual void EmitLabel(MCSymbol *Symbol);
Daniel Dunbara11af532009-06-24 01:03:06 +0000121
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000122 virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
Jim Grosbachce792992010-11-05 22:08:08 +0000123 virtual void EmitThumbFunc(MCSymbol *Func);
Daniel Dunbara11af532009-06-24 01:03:06 +0000124
Daniel Dunbar821e3332009-08-31 08:09:28 +0000125 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
Rafael Espindola484291c2010-11-01 14:28:48 +0000126 virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
Rafael Espindola32a006e2010-12-03 00:55:40 +0000127 virtual void EmitDwarfAdvanceLineAddr(int64_t LineDelta,
128 const MCSymbol *LastLabel,
129 const MCSymbol *Label);
Daniel Dunbara11af532009-06-24 01:03:06 +0000130
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000131 virtual void EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
Kevin Enderbya5c78322009-07-13 21:03:15 +0000132
Chris Lattner46a947d2009-08-17 04:17:34 +0000133 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
Chris Lattnerb54b9dd2010-05-08 19:54:22 +0000134 virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol);
135 virtual void EmitCOFFSymbolStorageClass(int StorageClass);
136 virtual void EmitCOFFSymbolType(int Type);
137 virtual void EndCOFFSymbolDef();
Chris Lattner99328ad2010-01-25 07:52:13 +0000138 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
Chris Lattner9eb158d2010-01-23 07:47:02 +0000139 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000140 unsigned ByteAlignment);
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000141
Chris Lattner9eb158d2010-01-23 07:47:02 +0000142 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
143 ///
144 /// @param Symbol - The common symbol to emit.
145 /// @param Size - The size of the common symbol.
146 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size);
Jim Grosbach00545e12010-09-22 18:16:55 +0000147
Daniel Dunbar8751b942009-08-28 05:48:22 +0000148 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000149 unsigned Size = 0, unsigned ByteAlignment = 0);
Kevin Enderby71148242009-07-14 21:35:03 +0000150
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000151 virtual void EmitTBSSSymbol (const MCSection *Section, MCSymbol *Symbol,
152 uint64_t Size, unsigned ByteAlignment = 0);
Jim Grosbach00545e12010-09-22 18:16:55 +0000153
Chris Lattneraaec2052010-01-19 19:46:13 +0000154 virtual void EmitBytes(StringRef Data, unsigned AddrSpace);
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000155
Rafael Espindola89b93722010-12-10 07:39:47 +0000156 virtual void EmitValueImpl(const MCExpr *Value, unsigned Size,
157 bool isPCRel, unsigned AddrSpace);
Rafael Espindola2df042c2010-12-03 02:54:21 +0000158 virtual void EmitIntValue(uint64_t Value, unsigned Size,
159 unsigned AddrSpace = 0);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000160
Rafael Espindola3ff57092010-11-02 17:22:24 +0000161 virtual void EmitULEB128Value(const MCExpr *Value, unsigned AddrSpace = 0);
162
163 virtual void EmitSLEB128Value(const MCExpr *Value, unsigned AddrSpace = 0);
164
Chris Lattner718fb592010-01-25 21:28:50 +0000165 virtual void EmitGPRel32Value(const MCExpr *Value);
Jim Grosbach00545e12010-09-22 18:16:55 +0000166
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000167
Chris Lattneraaec2052010-01-19 19:46:13 +0000168 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue,
169 unsigned AddrSpace);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000170
Chris Lattner46a947d2009-08-17 04:17:34 +0000171 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
172 unsigned ValueSize = 1,
173 unsigned MaxBytesToEmit = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000174
Kevin Enderby6e720482010-02-23 18:26:34 +0000175 virtual void EmitCodeAlignment(unsigned ByteAlignment,
176 unsigned MaxBytesToEmit = 0);
177
Daniel Dunbar821e3332009-08-31 08:09:28 +0000178 virtual void EmitValueToOffset(const MCExpr *Offset,
Chris Lattner46a947d2009-08-17 04:17:34 +0000179 unsigned char Value = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000180
Chris Lattnera6594fc2010-01-25 18:58:59 +0000181 virtual void EmitFileDirective(StringRef Filename);
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000182 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Filename);
183 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
184 unsigned Column, unsigned Flags,
185 unsigned Isa, unsigned Discriminator);
Chris Lattnera6594fc2010-01-25 18:58:59 +0000186
Rafael Espindola066c2f42011-04-12 23:59:07 +0000187 virtual void EmitCFIStartProc();
188 virtual void EmitCFIEndProc();
189 virtual void EmitCFIDefCfa(int64_t Register, int64_t Offset);
190 virtual void EmitCFIDefCfaOffset(int64_t Offset);
191 virtual void EmitCFIDefCfaRegister(int64_t Register);
192 virtual void EmitCFIOffset(int64_t Register, int64_t Offset);
193 virtual void EmitCFIPersonality(const MCSymbol *Sym, unsigned Encoding);
194 virtual void EmitCFILsda(const MCSymbol *Sym, unsigned Encoding);
195 virtual void EmitCFIRememberState();
196 virtual void EmitCFIRestoreState();
197 virtual void EmitCFISameValue(int64_t Register);
198 virtual void EmitCFIRelOffset(int64_t Register, int64_t Offset);
199 virtual void EmitCFIAdjustCfaOffset(int64_t Adjustment);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000200
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000201 virtual void EmitFnStart();
202 virtual void EmitFnEnd();
203 virtual void EmitCantUnwind();
204 virtual void EmitPersonality(const MCSymbol *Personality);
205 virtual void EmitHandlerData();
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000206 virtual void EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset = 0);
207 virtual void EmitPad(int64_t Offset);
208 virtual void EmitRegSave(const SmallVectorImpl<unsigned> &RegList, bool);
209
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000210
Chris Lattnera6594fc2010-01-25 18:58:59 +0000211 virtual void EmitInstruction(const MCInst &Inst);
Jim Grosbach00545e12010-09-22 18:16:55 +0000212
Jim Grosbachbd4ec842010-09-22 18:18:30 +0000213 /// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +0000214 /// the specified string in the output .s file. This capability is
215 /// indicated by the hasRawTextSupport() predicate.
216 virtual void EmitRawText(StringRef String);
Jim Grosbach00545e12010-09-22 18:16:55 +0000217
Chris Lattner46a947d2009-08-17 04:17:34 +0000218 virtual void Finish();
Jim Grosbach00545e12010-09-22 18:16:55 +0000219
Chris Lattner46a947d2009-08-17 04:17:34 +0000220 /// @}
221};
Daniel Dunbar84a29262009-06-24 19:25:34 +0000222
Chris Lattner46a947d2009-08-17 04:17:34 +0000223} // end anonymous namespace.
Daniel Dunbara11af532009-06-24 01:03:06 +0000224
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000225/// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner86e22112010-01-22 07:29:22 +0000226/// file if applicable as a QoI issue to make the output of the compiler
227/// more readable. This only affects the MCAsmStreamer, and only when
228/// verbose assembly output is enabled.
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000229void MCAsmStreamer::AddComment(const Twine &T) {
Chris Lattner86e22112010-01-22 07:29:22 +0000230 if (!IsVerboseAsm) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000231
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000232 // Make sure that CommentStream is flushed.
233 CommentStream.flush();
Jim Grosbach00545e12010-09-22 18:16:55 +0000234
Chris Lattner86e22112010-01-22 07:29:22 +0000235 T.toVector(CommentToEmit);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000236 // Each comment goes on its own line.
237 CommentToEmit.push_back('\n');
Jim Grosbach00545e12010-09-22 18:16:55 +0000238
Chris Lattner14ca1772010-01-22 21:16:10 +0000239 // Tell the comment stream that the vector changed underneath it.
240 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000241}
242
243void MCAsmStreamer::EmitCommentsAndEOL() {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000244 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) {
245 OS << '\n';
246 return;
247 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000248
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000249 CommentStream.flush();
Chris Lattner86e22112010-01-22 07:29:22 +0000250 StringRef Comments = CommentToEmit.str();
Jim Grosbach00545e12010-09-22 18:16:55 +0000251
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000252 assert(Comments.back() == '\n' &&
253 "Comment array not newline terminated");
254 do {
Chris Lattner86e22112010-01-22 07:29:22 +0000255 // Emit a line of comments.
256 OS.PadToColumn(MAI.getCommentColumn());
257 size_t Position = Comments.find('\n');
258 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
Jim Grosbach00545e12010-09-22 18:16:55 +0000259
Chris Lattner86e22112010-01-22 07:29:22 +0000260 Comments = Comments.substr(Position+1);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000261 } while (!Comments.empty());
Jim Grosbach00545e12010-09-22 18:16:55 +0000262
Chris Lattner14ca1772010-01-22 21:16:10 +0000263 CommentToEmit.clear();
264 // Tell the comment stream that the vector changed underneath it.
265 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000266}
267
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000268static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
269 assert(Bytes && "Invalid size!");
270 return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
271}
272
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000273void MCAsmStreamer::ChangeSection(const MCSection *Section) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000274 assert(Section && "Cannot switch to a null section!");
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000275 Section->PrintSwitchToSection(MAI, OS);
Daniel Dunbara11af532009-06-24 01:03:06 +0000276}
277
278void MCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
Daniel Dunbar8906ff12009-08-22 07:22:36 +0000279 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Daniel Dunbarc3047182010-05-05 19:01:00 +0000280 assert(!Symbol->isVariable() && "Cannot emit a variable symbol!");
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000281 assert(getCurrentSection() && "Cannot emit before setting section!");
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000282
Chris Lattnere07b75e2010-09-22 22:19:53 +0000283 OS << *Symbol << MAI.getLabelSuffix();
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000284 EmitEOL();
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000285 Symbol->setSection(*getCurrentSection());
Daniel Dunbara11af532009-06-24 01:03:06 +0000286}
287
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000288void MCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
Kevin Enderbyf96db462009-07-16 17:56:39 +0000289 switch (Flag) {
Daniel Dunbar011e4db2009-08-13 23:36:34 +0000290 default: assert(0 && "Invalid flag!");
Jason W Kimafd1cc22010-09-30 02:45:56 +0000291 case MCAF_SyntaxUnified: OS << "\t.syntax unified"; break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000292 case MCAF_SubsectionsViaSymbols: OS << ".subsections_via_symbols"; break;
Jim Grosbachce792992010-11-05 22:08:08 +0000293 case MCAF_Code16: OS << "\t.code\t16"; break;
Jim Grosbachba219572010-11-05 22:40:09 +0000294 case MCAF_Code32: OS << "\t.code\t32"; break;
Kevin Enderbyf96db462009-07-16 17:56:39 +0000295 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000296 EmitEOL();
Kevin Enderbya5c78322009-07-13 21:03:15 +0000297}
298
Jim Grosbachce792992010-11-05 22:08:08 +0000299void MCAsmStreamer::EmitThumbFunc(MCSymbol *Func) {
300 // This needs to emit to a temporary string to get properly quoted
301 // MCSymbols when they have spaces in them.
302 OS << "\t.thumb_func";
303 if (Func)
304 OS << '\t' << *Func;
305 EmitEOL();
306}
307
Daniel Dunbar821e3332009-08-31 08:09:28 +0000308void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000309 OS << *Symbol << " = " << *Value;
310 EmitEOL();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000311
312 // FIXME: Lift context changes into super class.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000313 Symbol->setVariableValue(Value);
Daniel Dunbara11af532009-06-24 01:03:06 +0000314}
315
Rafael Espindola484291c2010-11-01 14:28:48 +0000316void MCAsmStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
317 OS << ".weakref " << *Alias << ", " << *Symbol;
318 EmitEOL();
319}
320
Rafael Espindola32a006e2010-12-03 00:55:40 +0000321void MCAsmStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
322 const MCSymbol *LastLabel,
323 const MCSymbol *Label) {
Rafael Espindola89b93722010-12-10 07:39:47 +0000324 EmitDwarfSetLineAddr(LineDelta, Label,
325 getContext().getTargetAsmInfo().getPointerSize());
Rafael Espindola32a006e2010-12-03 00:55:40 +0000326}
327
Daniel Dunbarfffff912009-10-16 01:34:54 +0000328void MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000329 MCSymbolAttr Attribute) {
Daniel Dunbara11af532009-06-24 01:03:06 +0000330 switch (Attribute) {
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000331 case MCSA_Invalid: assert(0 && "Invalid symbol attribute");
Chris Lattnered0ab152010-01-25 18:30:45 +0000332 case MCSA_ELF_TypeFunction: /// .type _foo, STT_FUNC # aka @function
333 case MCSA_ELF_TypeIndFunction: /// .type _foo, STT_GNU_IFUNC
334 case MCSA_ELF_TypeObject: /// .type _foo, STT_OBJECT # aka @object
335 case MCSA_ELF_TypeTLS: /// .type _foo, STT_TLS # aka @tls_object
336 case MCSA_ELF_TypeCommon: /// .type _foo, STT_COMMON # aka @common
337 case MCSA_ELF_TypeNoType: /// .type _foo, STT_NOTYPE # aka @notype
Rafael Espindolae9c0ff22010-11-13 04:55:06 +0000338 case MCSA_ELF_TypeGnuUniqueObject: /// .type _foo, @gnu_unique_object
Chris Lattnered0ab152010-01-25 18:30:45 +0000339 assert(MAI.hasDotTypeDotSizeDirective() && "Symbol Attr not supported");
Dan Gohman523d70e2010-02-04 01:42:13 +0000340 OS << "\t.type\t" << *Symbol << ','
Chris Lattnered0ab152010-01-25 18:30:45 +0000341 << ((MAI.getCommentString()[0] != '@') ? '@' : '%');
342 switch (Attribute) {
343 default: assert(0 && "Unknown ELF .type");
344 case MCSA_ELF_TypeFunction: OS << "function"; break;
345 case MCSA_ELF_TypeIndFunction: OS << "gnu_indirect_function"; break;
346 case MCSA_ELF_TypeObject: OS << "object"; break;
347 case MCSA_ELF_TypeTLS: OS << "tls_object"; break;
348 case MCSA_ELF_TypeCommon: OS << "common"; break;
349 case MCSA_ELF_TypeNoType: OS << "no_type"; break;
Rafael Espindolae9c0ff22010-11-13 04:55:06 +0000350 case MCSA_ELF_TypeGnuUniqueObject: OS << "gnu_unique_object"; break;
Chris Lattnered0ab152010-01-25 18:30:45 +0000351 }
352 EmitEOL();
353 return;
354 case MCSA_Global: // .globl/.global
355 OS << MAI.getGlobalDirective();
356 break;
Chris Lattner61abd7b2010-06-21 20:35:01 +0000357 case MCSA_Hidden: OS << "\t.hidden\t"; break;
358 case MCSA_IndirectSymbol: OS << "\t.indirect_symbol\t"; break;
359 case MCSA_Internal: OS << "\t.internal\t"; break;
360 case MCSA_LazyReference: OS << "\t.lazy_reference\t"; break;
361 case MCSA_Local: OS << "\t.local\t"; break;
362 case MCSA_NoDeadStrip: OS << "\t.no_dead_strip\t"; break;
Kevin Enderbye8e98d72010-11-19 18:39:33 +0000363 case MCSA_SymbolResolver: OS << "\t.symbol_resolver\t"; break;
Chris Lattner61abd7b2010-06-21 20:35:01 +0000364 case MCSA_PrivateExtern: OS << "\t.private_extern\t"; break;
365 case MCSA_Protected: OS << "\t.protected\t"; break;
366 case MCSA_Reference: OS << "\t.reference\t"; break;
367 case MCSA_Weak: OS << "\t.weak\t"; break;
368 case MCSA_WeakDefinition: OS << "\t.weak_definition\t"; break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000369 // .weak_reference
370 case MCSA_WeakReference: OS << MAI.getWeakRefDirective(); break;
Kevin Enderbyf59cac52010-07-08 17:22:42 +0000371 case MCSA_WeakDefAutoPrivate: OS << "\t.weak_def_can_be_hidden\t"; break;
Daniel Dunbara11af532009-06-24 01:03:06 +0000372 }
373
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000374 OS << *Symbol;
375 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000376}
377
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000378void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000379 OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
380 EmitEOL();
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000381}
382
Chris Lattnerb54b9dd2010-05-08 19:54:22 +0000383void MCAsmStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {
384 OS << "\t.def\t " << *Symbol << ';';
385 EmitEOL();
386}
387
388void MCAsmStreamer::EmitCOFFSymbolStorageClass (int StorageClass) {
389 OS << "\t.scl\t" << StorageClass << ';';
390 EmitEOL();
391}
392
393void MCAsmStreamer::EmitCOFFSymbolType (int Type) {
394 OS << "\t.type\t" << Type << ';';
395 EmitEOL();
396}
397
398void MCAsmStreamer::EndCOFFSymbolDef() {
399 OS << "\t.endef";
400 EmitEOL();
401}
402
Chris Lattner99328ad2010-01-25 07:52:13 +0000403void MCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
404 assert(MAI.hasDotTypeDotSizeDirective());
405 OS << "\t.size\t" << *Symbol << ", " << *Value << '\n';
406}
407
Chris Lattner9eb158d2010-01-23 07:47:02 +0000408void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000409 unsigned ByteAlignment) {
Chris Lattner9eb158d2010-01-23 07:47:02 +0000410 OS << "\t.comm\t" << *Symbol << ',' << Size;
Chris Lattner6559d762010-01-25 07:29:13 +0000411 if (ByteAlignment != 0) {
Rafael Espindola2e2563b2010-01-26 20:21:43 +0000412 if (MAI.getCOMMDirectiveAlignmentIsInBytes())
Chris Lattner4ed54382010-01-19 06:01:04 +0000413 OS << ',' << ByteAlignment;
414 else
415 OS << ',' << Log2_32(ByteAlignment);
416 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000417 EmitEOL();
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000418}
419
Chris Lattner9eb158d2010-01-23 07:47:02 +0000420/// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
421///
422/// @param Symbol - The common symbol to emit.
423/// @param Size - The size of the common symbol.
424void MCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size) {
425 assert(MAI.hasLCOMMDirective() && "Doesn't have .lcomm, can't emit it!");
426 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
427 EmitEOL();
428}
429
Daniel Dunbar8751b942009-08-28 05:48:22 +0000430void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000431 unsigned Size, unsigned ByteAlignment) {
Daniel Dunbar011e4db2009-08-13 23:36:34 +0000432 // Note: a .zerofill directive does not switch sections.
Chris Lattner93b6db32009-08-08 23:39:42 +0000433 OS << ".zerofill ";
Jim Grosbach00545e12010-09-22 18:16:55 +0000434
Chris Lattner93b6db32009-08-08 23:39:42 +0000435 // This is a mach-o specific directive.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000436 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
Daniel Dunbar12de0df2009-08-14 18:51:45 +0000437 OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
Jim Grosbach00545e12010-09-22 18:16:55 +0000438
Chris Lattner9be3fee2009-07-10 22:20:30 +0000439 if (Symbol != NULL) {
Chris Lattner10b318b2010-01-17 21:43:43 +0000440 OS << ',' << *Symbol << ',' << Size;
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000441 if (ByteAlignment != 0)
442 OS << ',' << Log2_32(ByteAlignment);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000443 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000444 EmitEOL();
Chris Lattner9be3fee2009-07-10 22:20:30 +0000445}
446
Eric Christopherd04d98d2010-05-17 02:13:02 +0000447// .tbss sym, size, align
448// This depends that the symbol has already been mangled from the original,
449// e.g. _a.
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000450void MCAsmStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
451 uint64_t Size, unsigned ByteAlignment) {
Eric Christopher482eba02010-05-14 01:50:28 +0000452 assert(Symbol != NULL && "Symbol shouldn't be NULL!");
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000453 // Instead of using the Section we'll just use the shortcut.
454 // This is a mach-o specific directive and section.
Eric Christopherd04d98d2010-05-17 02:13:02 +0000455 OS << ".tbss " << *Symbol << ", " << Size;
Jim Grosbach00545e12010-09-22 18:16:55 +0000456
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000457 // Output align if we have it. We default to 1 so don't bother printing
458 // that.
459 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
Jim Grosbach00545e12010-09-22 18:16:55 +0000460
Eric Christopher482eba02010-05-14 01:50:28 +0000461 EmitEOL();
462}
463
Chris Lattner12e555c2010-01-23 00:15:00 +0000464static inline char toOctal(int X) { return (X&7)+'0'; }
465
Chris Lattnera6594fc2010-01-25 18:58:59 +0000466static void PrintQuotedString(StringRef Data, raw_ostream &OS) {
467 OS << '"';
Jim Grosbach00545e12010-09-22 18:16:55 +0000468
Chris Lattnera6594fc2010-01-25 18:58:59 +0000469 for (unsigned i = 0, e = Data.size(); i != e; ++i) {
470 unsigned char C = Data[i];
471 if (C == '"' || C == '\\') {
472 OS << '\\' << (char)C;
473 continue;
474 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000475
Chris Lattnera6594fc2010-01-25 18:58:59 +0000476 if (isprint((unsigned char)C)) {
477 OS << (char)C;
478 continue;
479 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000480
Chris Lattnera6594fc2010-01-25 18:58:59 +0000481 switch (C) {
482 case '\b': OS << "\\b"; break;
483 case '\f': OS << "\\f"; break;
484 case '\n': OS << "\\n"; break;
485 case '\r': OS << "\\r"; break;
486 case '\t': OS << "\\t"; break;
487 default:
488 OS << '\\';
489 OS << toOctal(C >> 6);
490 OS << toOctal(C >> 3);
491 OS << toOctal(C >> 0);
492 break;
493 }
494 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000495
Chris Lattnera6594fc2010-01-25 18:58:59 +0000496 OS << '"';
497}
498
499
Chris Lattneraaec2052010-01-19 19:46:13 +0000500void MCAsmStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000501 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Chris Lattner12e555c2010-01-23 00:15:00 +0000502 if (Data.empty()) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000503
Chris Lattner12e555c2010-01-23 00:15:00 +0000504 if (Data.size() == 1) {
505 OS << MAI.getData8bitsDirective(AddrSpace);
506 OS << (unsigned)(unsigned char)Data[0];
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000507 EmitEOL();
Chris Lattner12e555c2010-01-23 00:15:00 +0000508 return;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000509 }
Chris Lattner12e555c2010-01-23 00:15:00 +0000510
511 // If the data ends with 0 and the target supports .asciz, use it, otherwise
512 // use .ascii
513 if (MAI.getAscizDirective() && Data.back() == 0) {
514 OS << MAI.getAscizDirective();
515 Data = Data.substr(0, Data.size()-1);
516 } else {
517 OS << MAI.getAsciiDirective();
518 }
519
Chris Lattnera6594fc2010-01-25 18:58:59 +0000520 OS << ' ';
521 PrintQuotedString(Data, OS);
Chris Lattner12e555c2010-01-23 00:15:00 +0000522 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000523}
524
Rafael Espindola2df042c2010-12-03 02:54:21 +0000525void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size,
526 unsigned AddrSpace) {
527 EmitValue(MCConstantExpr::Create(Value, getContext()), Size, AddrSpace);
528}
529
Rafael Espindola89b93722010-12-10 07:39:47 +0000530void MCAsmStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size,
531 bool isPCRel, unsigned AddrSpace) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000532 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Rafael Espindola89b93722010-12-10 07:39:47 +0000533 assert(!isPCRel && "Cannot emit pc relative relocations!");
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000534 const char *Directive = 0;
535 switch (Size) {
536 default: break;
537 case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
538 case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
539 case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000540 case 8:
541 Directive = MAI.getData64bitsDirective(AddrSpace);
542 // If the target doesn't support 64-bit data, emit as two 32-bit halves.
543 if (Directive) break;
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000544 int64_t IntValue;
545 if (!Value->EvaluateAsAbsolute(IntValue))
546 report_fatal_error("Don't know how to emit this value.");
Rafael Espindola89b93722010-12-10 07:39:47 +0000547 if (getContext().getTargetAsmInfo().isLittleEndian()) {
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000548 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
549 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000550 } else {
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000551 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
552 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000553 }
554 return;
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000555 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000556
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000557 assert(Directive && "Invalid size for machine code value!");
Chris Lattner718fb592010-01-25 21:28:50 +0000558 OS << Directive << *Value;
Chris Lattner86e22112010-01-22 07:29:22 +0000559 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000560}
561
Rafael Espindola3ff57092010-11-02 17:22:24 +0000562void MCAsmStreamer::EmitULEB128Value(const MCExpr *Value, unsigned AddrSpace) {
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000563 int64_t IntValue;
564 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindola660b5fc2010-12-03 01:19:49 +0000565 EmitULEB128IntValue(IntValue, AddrSpace);
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000566 return;
567 }
Rafael Espindola73873452010-11-04 18:17:08 +0000568 assert(MAI.hasLEB128() && "Cannot print a .uleb");
569 OS << ".uleb128 " << *Value;
Rafael Espindola3ff57092010-11-02 17:22:24 +0000570 EmitEOL();
571}
572
573void MCAsmStreamer::EmitSLEB128Value(const MCExpr *Value, unsigned AddrSpace) {
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000574 int64_t IntValue;
575 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindola660b5fc2010-12-03 01:19:49 +0000576 EmitSLEB128IntValue(IntValue, AddrSpace);
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000577 return;
578 }
Rafael Espindola73873452010-11-04 18:17:08 +0000579 assert(MAI.hasLEB128() && "Cannot print a .sleb");
580 OS << ".sleb128 " << *Value;
Rafael Espindola3ff57092010-11-02 17:22:24 +0000581 EmitEOL();
582}
583
Chris Lattner718fb592010-01-25 21:28:50 +0000584void MCAsmStreamer::EmitGPRel32Value(const MCExpr *Value) {
585 assert(MAI.getGPRel32Directive() != 0);
586 OS << MAI.getGPRel32Directive() << *Value;
587 EmitEOL();
588}
589
590
Chris Lattner6113b3d2010-01-19 18:52:28 +0000591/// EmitFill - Emit NumBytes bytes worth of the value specified by
592/// FillValue. This implements directives such as '.space'.
Chris Lattneraaec2052010-01-19 19:46:13 +0000593void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
594 unsigned AddrSpace) {
Chris Lattner8a6d7ac2010-01-19 18:58:52 +0000595 if (NumBytes == 0) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000596
Chris Lattneraaec2052010-01-19 19:46:13 +0000597 if (AddrSpace == 0)
598 if (const char *ZeroDirective = MAI.getZeroDirective()) {
599 OS << ZeroDirective << NumBytes;
600 if (FillValue != 0)
601 OS << ',' << (int)FillValue;
Chris Lattner86e22112010-01-22 07:29:22 +0000602 EmitEOL();
Chris Lattneraaec2052010-01-19 19:46:13 +0000603 return;
604 }
605
606 // Emit a byte at a time.
607 MCStreamer::EmitFill(NumBytes, FillValue, AddrSpace);
Chris Lattner6113b3d2010-01-19 18:52:28 +0000608}
609
Daniel Dunbar84a29262009-06-24 19:25:34 +0000610void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
611 unsigned ValueSize,
612 unsigned MaxBytesToEmit) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000613 // Some assemblers don't support non-power of two alignments, so we always
614 // emit alignments as a power of two if possible.
615 if (isPowerOf2_32(ByteAlignment)) {
Chris Lattner6e579c62009-08-19 06:35:36 +0000616 switch (ValueSize) {
617 default: llvm_unreachable("Invalid size for machine code value!");
Chris Lattner33adcfb2009-08-22 21:43:10 +0000618 case 1: OS << MAI.getAlignDirective(); break;
619 // FIXME: use MAI for this!
Chris Lattner6e579c62009-08-19 06:35:36 +0000620 case 2: OS << ".p2alignw "; break;
621 case 4: OS << ".p2alignl "; break;
622 case 8: llvm_unreachable("Unsupported alignment size!");
623 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000624
Chris Lattner33adcfb2009-08-22 21:43:10 +0000625 if (MAI.getAlignmentIsInBytes())
Chris Lattner663c2d22009-08-19 06:12:02 +0000626 OS << ByteAlignment;
627 else
628 OS << Log2_32(ByteAlignment);
Daniel Dunbar84a29262009-06-24 19:25:34 +0000629
Chris Lattner663c2d22009-08-19 06:12:02 +0000630 if (Value || MaxBytesToEmit) {
Chris Lattner579531c2009-09-03 04:01:10 +0000631 OS << ", 0x";
632 OS.write_hex(truncateToSize(Value, ValueSize));
Chris Lattner663c2d22009-08-19 06:12:02 +0000633
Jim Grosbach00545e12010-09-22 18:16:55 +0000634 if (MaxBytesToEmit)
Chris Lattner663c2d22009-08-19 06:12:02 +0000635 OS << ", " << MaxBytesToEmit;
636 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000637 EmitEOL();
Chris Lattner663c2d22009-08-19 06:12:02 +0000638 return;
639 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000640
Chris Lattner663c2d22009-08-19 06:12:02 +0000641 // Non-power of two alignment. This is not widely supported by assemblers.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000642 // FIXME: Parameterize this based on MAI.
Daniel Dunbar84a29262009-06-24 19:25:34 +0000643 switch (ValueSize) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000644 default: llvm_unreachable("Invalid size for machine code value!");
645 case 1: OS << ".balign"; break;
646 case 2: OS << ".balignw"; break;
647 case 4: OS << ".balignl"; break;
648 case 8: llvm_unreachable("Unsupported alignment size!");
Daniel Dunbar84a29262009-06-24 19:25:34 +0000649 }
650
Chris Lattner663c2d22009-08-19 06:12:02 +0000651 OS << ' ' << ByteAlignment;
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000652 OS << ", " << truncateToSize(Value, ValueSize);
Jim Grosbach00545e12010-09-22 18:16:55 +0000653 if (MaxBytesToEmit)
Daniel Dunbar84a29262009-06-24 19:25:34 +0000654 OS << ", " << MaxBytesToEmit;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000655 EmitEOL();
Daniel Dunbar84a29262009-06-24 19:25:34 +0000656}
657
Kevin Enderby6e720482010-02-23 18:26:34 +0000658void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
659 unsigned MaxBytesToEmit) {
Chris Lattnerec167fd2010-02-23 18:44:31 +0000660 // Emit with a text fill value.
661 EmitValueToAlignment(ByteAlignment, MAI.getTextAlignFillValue(),
662 1, MaxBytesToEmit);
Kevin Enderby6e720482010-02-23 18:26:34 +0000663}
664
Daniel Dunbar821e3332009-08-31 08:09:28 +0000665void MCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbar84a29262009-06-24 19:25:34 +0000666 unsigned char Value) {
667 // FIXME: Verify that Offset is associated with the current section.
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000668 OS << ".org " << *Offset << ", " << (unsigned) Value;
669 EmitEOL();
Daniel Dunbar84a29262009-06-24 19:25:34 +0000670}
671
Chris Lattnera6594fc2010-01-25 18:58:59 +0000672
673void MCAsmStreamer::EmitFileDirective(StringRef Filename) {
674 assert(MAI.hasSingleParameterDotFile());
675 OS << "\t.file\t";
676 PrintQuotedString(Filename, OS);
677 EmitEOL();
678}
679
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000680bool MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Filename){
Rafael Espindola89b93722010-12-10 07:39:47 +0000681 if (UseLoc) {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000682 OS << "\t.file\t" << FileNo << ' ';
683 PrintQuotedString(Filename, OS);
684 EmitEOL();
685 }
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000686 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Filename);
687}
688
689void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
690 unsigned Column, unsigned Flags,
691 unsigned Isa,
692 unsigned Discriminator) {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000693 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
694 Isa, Discriminator);
Rafael Espindola89b93722010-12-10 07:39:47 +0000695 if (!UseLoc)
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000696 return;
697
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000698 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
699 if (Flags & DWARF2_FLAG_BASIC_BLOCK)
700 OS << " basic_block";
701 if (Flags & DWARF2_FLAG_PROLOGUE_END)
702 OS << " prologue_end";
703 if (Flags & DWARF2_FLAG_EPILOGUE_BEGIN)
704 OS << " epilogue_begin";
705
706 unsigned OldFlags = getContext().getCurrentDwarfLoc().getFlags();
707 if ((Flags & DWARF2_FLAG_IS_STMT) != (OldFlags & DWARF2_FLAG_IS_STMT)) {
708 OS << " is_stmt ";
709
710 if (Flags & DWARF2_FLAG_IS_STMT)
711 OS << "1";
712 else
713 OS << "0";
714 }
715
716 if (Isa)
717 OS << "isa " << Isa;
718 if (Discriminator)
719 OS << "discriminator " << Discriminator;
720 EmitEOL();
Chris Lattnera6594fc2010-01-25 18:58:59 +0000721}
722
Rafael Espindola066c2f42011-04-12 23:59:07 +0000723void MCAsmStreamer::EmitCFIStartProc() {
724 MCStreamer::EmitCFIStartProc();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000725
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000726 OS << "\t.cfi_startproc";
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000727 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000728}
729
Rafael Espindola066c2f42011-04-12 23:59:07 +0000730void MCAsmStreamer::EmitCFIEndProc() {
731 MCStreamer::EmitCFIEndProc();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000732
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000733 OS << "\t.cfi_endproc";
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000734 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000735}
736
Rafael Espindola066c2f42011-04-12 23:59:07 +0000737void MCAsmStreamer::EmitCFIDefCfa(int64_t Register, int64_t Offset) {
738 abort();
739}
740
741void MCAsmStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
742 MCStreamer::EmitCFIDefCfaOffset(Offset);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000743
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000744 OS << "\t.cfi_def_cfa_offset " << Offset;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000745 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000746}
747
Rafael Espindola066c2f42011-04-12 23:59:07 +0000748void MCAsmStreamer::EmitCFIDefCfaRegister(int64_t Register) {
749 MCStreamer::EmitCFIDefCfaRegister(Register);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000750
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000751 OS << "\t.cfi_def_cfa_register " << Register;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000752 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000753}
754
Rafael Espindola066c2f42011-04-12 23:59:07 +0000755void MCAsmStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
756 this->MCStreamer::EmitCFIOffset(Register, Offset);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000757
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000758 OS << "\t.cfi_offset " << Register << ", " << Offset;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000759 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000760}
761
Rafael Espindola066c2f42011-04-12 23:59:07 +0000762void MCAsmStreamer::EmitCFIPersonality(const MCSymbol *Sym,
Rafael Espindola3a83c402010-12-27 00:36:05 +0000763 unsigned Encoding) {
Rafael Espindola066c2f42011-04-12 23:59:07 +0000764 MCStreamer::EmitCFIPersonality(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000765
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000766 OS << "\t.cfi_personality " << Encoding << ", " << *Sym;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000767 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000768}
769
Rafael Espindola066c2f42011-04-12 23:59:07 +0000770void MCAsmStreamer::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) {
771 MCStreamer::EmitCFILsda(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000772
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000773 OS << "\t.cfi_lsda " << Encoding << ", " << *Sym;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000774 EmitEOL();
Rafael Espindola066c2f42011-04-12 23:59:07 +0000775}
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000776
Rafael Espindola066c2f42011-04-12 23:59:07 +0000777void MCAsmStreamer::EmitCFIRememberState() {
778 MCStreamer::EmitCFIRememberState();
779
780 OS << "\t.cfi_remember_state";
781 EmitEOL();
782}
783
784void MCAsmStreamer::EmitCFIRestoreState() {
785 MCStreamer::EmitCFIRestoreState();
786
787 OS << "\t.cfi_restore_state";
788 EmitEOL();
789}
790
791void MCAsmStreamer::EmitCFISameValue(int64_t Register) {
792 MCStreamer::EmitCFISameValue(Register);
793
794 OS << "\t.cfi_same_value " << Register;
795 EmitEOL();
796}
797
798void MCAsmStreamer::EmitCFIRelOffset(int64_t Register, int64_t Offset) {
799 MCStreamer::EmitCFIRelOffset(Register, Offset);
800
801 OS << "\t.cfi_rel_offset " << Register << ", " << Offset;
802 EmitEOL();
803}
804
805void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) {
806 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
807
808 OS << "\t.cfi_adjust_cfa_offset " << Adjustment;
809 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000810}
811
Daniel Dunbar6b716532010-02-09 23:00:14 +0000812void MCAsmStreamer::AddEncodingComment(const MCInst &Inst) {
813 raw_ostream &OS = GetCommentOS();
814 SmallString<256> Code;
815 SmallVector<MCFixup, 4> Fixups;
816 raw_svector_ostream VecOS(Code);
817 Emitter->EncodeInstruction(Inst, VecOS, Fixups);
818 VecOS.flush();
Chris Lattnera6594fc2010-01-25 18:58:59 +0000819
Daniel Dunbar6b716532010-02-09 23:00:14 +0000820 // If we are showing fixups, create symbolic markers in the encoded
821 // representation. We do this by making a per-bit map to the fixup item index,
822 // then trying to display it as nicely as possible.
Daniel Dunbar5532cf42010-02-10 01:41:14 +0000823 SmallVector<uint8_t, 64> FixupMap;
824 FixupMap.resize(Code.size() * 8);
Daniel Dunbar6b716532010-02-09 23:00:14 +0000825 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
826 FixupMap[i] = 0;
827
828 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
829 MCFixup &F = Fixups[i];
Daniel Dunbar2761fc42010-12-16 03:20:06 +0000830 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar6b716532010-02-09 23:00:14 +0000831 for (unsigned j = 0; j != Info.TargetSize; ++j) {
832 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j;
833 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
834 FixupMap[Index] = 1 + i;
835 }
836 }
837
Evan Cheng8fbbd1c2011-01-13 23:27:39 +0000838 // FIXME: Node the fixup comments for Thumb2 are completely bogus since the
839 // high order halfword of a 32-bit Thumb2 instruction is emitted first.
Daniel Dunbar6b716532010-02-09 23:00:14 +0000840 OS << "encoding: [";
841 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
842 if (i)
843 OS << ',';
844
845 // See if all bits are the same map entry.
846 uint8_t MapEntry = FixupMap[i * 8 + 0];
847 for (unsigned j = 1; j != 8; ++j) {
848 if (FixupMap[i * 8 + j] == MapEntry)
849 continue;
850
851 MapEntry = uint8_t(~0U);
852 break;
853 }
854
855 if (MapEntry != uint8_t(~0U)) {
856 if (MapEntry == 0) {
857 OS << format("0x%02x", uint8_t(Code[i]));
858 } else {
Evan Cheng82caf1a2011-01-13 21:45:26 +0000859 if (Code[i]) {
Evan Cheng8fbbd1c2011-01-13 23:27:39 +0000860 // FIXME: Some of the 8 bits require fix up.
Evan Cheng82caf1a2011-01-13 21:45:26 +0000861 OS << format("0x%02x", uint8_t(Code[i])) << '\''
862 << char('A' + MapEntry - 1) << '\'';
863 } else
864 OS << char('A' + MapEntry - 1);
Daniel Dunbar6b716532010-02-09 23:00:14 +0000865 }
866 } else {
867 // Otherwise, write out in binary.
868 OS << "0b";
869 for (unsigned j = 8; j--;) {
870 unsigned Bit = (Code[i] >> j) & 1;
NAKAMURA Takumid6451512011-03-27 01:44:40 +0000871
Chris Lattner3170a3b2010-11-15 05:56:19 +0000872 unsigned FixupBit;
Rafael Espindola89b93722010-12-10 07:39:47 +0000873 if (getContext().getTargetAsmInfo().isLittleEndian())
Chris Lattner3170a3b2010-11-15 05:56:19 +0000874 FixupBit = i * 8 + j;
875 else
876 FixupBit = i * 8 + (7-j);
NAKAMURA Takumid6451512011-03-27 01:44:40 +0000877
Chris Lattner3170a3b2010-11-15 05:56:19 +0000878 if (uint8_t MapEntry = FixupMap[FixupBit]) {
Daniel Dunbar6b716532010-02-09 23:00:14 +0000879 assert(Bit == 0 && "Encoder wrote into fixed up bit!");
880 OS << char('A' + MapEntry - 1);
881 } else
882 OS << Bit;
883 }
884 }
885 }
886 OS << "]\n";
887
888 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
889 MCFixup &F = Fixups[i];
Daniel Dunbar2761fc42010-12-16 03:20:06 +0000890 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar6b716532010-02-09 23:00:14 +0000891 OS << " fixup " << char('A' + i) << " - " << "offset: " << F.getOffset()
Daniel Dunbar5d5a1e12010-02-10 04:47:08 +0000892 << ", value: " << *F.getValue() << ", kind: " << Info.Name << "\n";
Daniel Dunbar6b716532010-02-09 23:00:14 +0000893 }
894}
895
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000896void MCAsmStreamer::EmitFnStart() {
897 OS << "\t.fnstart";
898 EmitEOL();
899}
900
901void MCAsmStreamer::EmitFnEnd() {
902 OS << "\t.fnend";
903 EmitEOL();
904}
905
906void MCAsmStreamer::EmitCantUnwind() {
907 OS << "\t.cantunwind";
908 EmitEOL();
909}
910
911void MCAsmStreamer::EmitHandlerData() {
912 OS << "\t.handlerdata";
913 EmitEOL();
914}
915
916void MCAsmStreamer::EmitPersonality(const MCSymbol *Personality) {
917 OS << "\t.personality " << Personality->getName();
918 EmitEOL();
919}
920
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000921void MCAsmStreamer::EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset) {
922 OS << "\t.setfp\t" << InstPrinter->getRegName(FpReg)
923 << ", " << InstPrinter->getRegName(SpReg);
924 if (Offset)
925 OS << ", #" << Offset;
926 EmitEOL();
927}
928
929void MCAsmStreamer::EmitPad(int64_t Offset) {
930 OS << "\t.pad\t#" << Offset;
931 EmitEOL();
932}
933
934void MCAsmStreamer::EmitRegSave(const SmallVectorImpl<unsigned> &RegList,
935 bool isVector) {
936 assert(RegList.size() && "RegList should not be empty");
937 if (isVector)
938 OS << "\t.vsave\t{";
939 else
940 OS << "\t.save\t{";
941
942 OS << InstPrinter->getRegName(RegList[0]);
943
944 for (unsigned i = 1, e = RegList.size(); i != e; ++i)
945 OS << ", " << InstPrinter->getRegName(RegList[i]);
946
947 OS << "}";
948 EmitEOL();
949}
950
Daniel Dunbar6b716532010-02-09 23:00:14 +0000951void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000952 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Daniel Dunbar6b716532010-02-09 23:00:14 +0000953
Rafael Espindola89b93722010-12-10 07:39:47 +0000954 if (!UseLoc)
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000955 MCLineEntry::Make(this, getCurrentSection());
956
Daniel Dunbar6b716532010-02-09 23:00:14 +0000957 // Show the encoding in a comment if we have a code emitter.
958 if (Emitter)
959 AddEncodingComment(Inst);
960
Chris Lattner30d9a642010-02-09 00:54:51 +0000961 // Show the MCInst if enabled.
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +0000962 if (ShowInst) {
Daniel Dunbar67c076c2010-03-22 21:49:34 +0000963 Inst.dump_pretty(GetCommentOS(), &MAI, InstPrinter.get(), "\n ");
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +0000964 GetCommentOS() << "\n";
965 }
966
Daniel Dunbar67c076c2010-03-22 21:49:34 +0000967 // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
Daniel Dunbar9dee8e32010-02-03 18:18:30 +0000968 if (InstPrinter)
Chris Lattnerd3740872010-04-04 05:04:31 +0000969 InstPrinter->printInst(&Inst, OS);
Daniel Dunbar9dee8e32010-02-03 18:18:30 +0000970 else
971 Inst.print(OS, &MAI);
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000972 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000973}
974
Jim Grosbachbd4ec842010-09-22 18:18:30 +0000975/// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +0000976/// the specified string in the output .s file. This capability is
977/// indicated by the hasRawTextSupport() predicate.
978void MCAsmStreamer::EmitRawText(StringRef String) {
Chris Lattnerd5928dc2010-04-03 22:06:56 +0000979 if (!String.empty() && String.back() == '\n')
980 String = String.substr(0, String.size()-1);
Chris Lattner91bead72010-04-03 21:35:55 +0000981 OS << String;
Chris Lattnerd5928dc2010-04-03 22:06:56 +0000982 EmitEOL();
Chris Lattner91bead72010-04-03 21:35:55 +0000983}
984
Daniel Dunbara11af532009-06-24 01:03:06 +0000985void MCAsmStreamer::Finish() {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000986 // Dump out the dwarf file & directory tables and line tables.
Rafael Espindola89b93722010-12-10 07:39:47 +0000987 if (getContext().hasDwarfFiles() && !UseLoc)
988 MCDwarfFileTable::Emit(this);
Daniel Dunbara11af532009-06-24 01:03:06 +0000989}
Daniel Dunbar9dee8e32010-02-03 18:18:30 +0000990
Chris Lattner86e22112010-01-22 07:29:22 +0000991MCStreamer *llvm::createAsmStreamer(MCContext &Context,
992 formatted_raw_ostream &OS,
Rafael Espindola89b93722010-12-10 07:39:47 +0000993 bool isVerboseAsm, bool useLoc,
Daniel Dunbar745dacc2010-12-16 03:05:59 +0000994 MCInstPrinter *IP, MCCodeEmitter *CE,
995 TargetAsmBackend *TAB, bool ShowInst) {
Rafael Espindola89b93722010-12-10 07:39:47 +0000996 return new MCAsmStreamer(Context, OS, isVerboseAsm, useLoc,
Daniel Dunbar745dacc2010-12-16 03:05:59 +0000997 IP, CE, TAB, ShowInst);
Daniel Dunbara11af532009-06-24 01:03:06 +0000998}