blob: be7febfb178e010dd96aa9c1cc5197522cb77988 [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;
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +000048 unsigned UseCFI : 1;
Daniel Dunbar9dee8e32010-02-03 18:18:30 +000049
Rafael Espindola277abc82011-04-30 16:34:57 +000050 enum EHSymbolFlags { EHGlobal = 1,
51 EHWeakDefinition = 1 << 1,
52 EHPrivateExtern = 1 << 2 };
53 DenseMap<const MCSymbol*, unsigned> FlagMap;
54
Rafael Espindola5d4918d2010-12-04 03:21:47 +000055 bool needsSet(const MCExpr *Value);
56
Chris Lattner46a947d2009-08-17 04:17:34 +000057public:
Chris Lattner86e22112010-01-22 07:29:22 +000058 MCAsmStreamer(MCContext &Context, formatted_raw_ostream &os,
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +000059 bool isVerboseAsm, bool useLoc, bool useCFI,
Daniel Dunbar745dacc2010-12-16 03:05:59 +000060 MCInstPrinter *printer, MCCodeEmitter *emitter,
61 TargetAsmBackend *asmbackend,
62 bool showInst)
Chris Lattnerfdab14b2010-03-12 18:28:53 +000063 : MCStreamer(Context), OS(os), MAI(Context.getAsmInfo()),
Daniel Dunbar745dacc2010-12-16 03:05:59 +000064 InstPrinter(printer), Emitter(emitter), AsmBackend(asmbackend),
65 CommentStream(CommentToEmit), IsVerboseAsm(isVerboseAsm),
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +000066 ShowInst(showInst), UseLoc(useLoc), UseCFI(useCFI) {
Chris Lattner5d672cf2010-02-10 00:10:18 +000067 if (InstPrinter && IsVerboseAsm)
68 InstPrinter->setCommentStream(CommentStream);
69 }
Chris Lattner46a947d2009-08-17 04:17:34 +000070 ~MCAsmStreamer() {}
Daniel Dunbara11af532009-06-24 01:03:06 +000071
Chris Lattner86e22112010-01-22 07:29:22 +000072 inline void EmitEOL() {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000073 // If we don't have any comments, just emit a \n.
74 if (!IsVerboseAsm) {
Chris Lattner86e22112010-01-22 07:29:22 +000075 OS << '\n';
76 return;
77 }
78 EmitCommentsAndEOL();
79 }
80 void EmitCommentsAndEOL();
Chris Lattner56591ab2010-02-02 23:37:42 +000081
82 /// isVerboseAsm - Return true if this streamer supports verbose assembly at
83 /// all.
84 virtual bool isVerboseAsm() const { return IsVerboseAsm; }
Jim Grosbach00545e12010-09-22 18:16:55 +000085
Chris Lattner91bead72010-04-03 21:35:55 +000086 /// hasRawTextSupport - We support EmitRawText.
87 virtual bool hasRawTextSupport() const { return true; }
Daniel Dunbar6b716532010-02-09 23:00:14 +000088
Chris Lattnerd32c7cf2010-01-22 18:21:35 +000089 /// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner86e22112010-01-22 07:29:22 +000090 /// file if applicable as a QoI issue to make the output of the compiler
91 /// more readable. This only affects the MCAsmStreamer, and only when
92 /// verbose assembly output is enabled.
Chris Lattnerd32c7cf2010-01-22 18:21:35 +000093 virtual void AddComment(const Twine &T);
Daniel Dunbar6b716532010-02-09 23:00:14 +000094
95 /// AddEncodingComment - Add a comment showing the encoding of an instruction.
96 virtual void AddEncodingComment(const MCInst &Inst);
97
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000098 /// GetCommentOS - Return a raw_ostream that comments can be written to.
99 /// Unlike AddComment, you are required to terminate comments with \n if you
100 /// use this method.
101 virtual raw_ostream &GetCommentOS() {
102 if (!IsVerboseAsm)
103 return nulls(); // Discard comments unless in verbose asm mode.
104 return CommentStream;
105 }
Daniel Dunbar6b716532010-02-09 23:00:14 +0000106
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000107 /// AddBlankLine - Emit a blank line to a .s file to pretty it up.
108 virtual void AddBlankLine() {
109 EmitEOL();
110 }
Daniel Dunbar6b716532010-02-09 23:00:14 +0000111
Chris Lattner46a947d2009-08-17 04:17:34 +0000112 /// @name MCStreamer Interface
113 /// @{
Daniel Dunbara11af532009-06-24 01:03:06 +0000114
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000115 virtual void ChangeSection(const MCSection *Section);
Daniel Dunbara11af532009-06-24 01:03:06 +0000116
Rafael Espindolad80781b2010-09-15 21:48:40 +0000117 virtual void InitSections() {
118 // FIXME, this is MachO specific, but the testsuite
119 // expects this.
120 SwitchSection(getContext().getMachOSection("__TEXT", "__text",
121 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
122 0, SectionKind::getText()));
123 }
124
Chris Lattner46a947d2009-08-17 04:17:34 +0000125 virtual void EmitLabel(MCSymbol *Symbol);
Rafael Espindola277abc82011-04-30 16:34:57 +0000126 virtual void EmitEHSymAttributes(const MCSymbol *Symbol,
127 MCSymbol *EHSymbol);
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000128 virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
Jim Grosbachce792992010-11-05 22:08:08 +0000129 virtual void EmitThumbFunc(MCSymbol *Func);
Daniel Dunbara11af532009-06-24 01:03:06 +0000130
Daniel Dunbar821e3332009-08-31 08:09:28 +0000131 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
Rafael Espindola484291c2010-11-01 14:28:48 +0000132 virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
Rafael Espindola32a006e2010-12-03 00:55:40 +0000133 virtual void EmitDwarfAdvanceLineAddr(int64_t LineDelta,
134 const MCSymbol *LastLabel,
135 const MCSymbol *Label);
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000136 virtual void EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
137 const MCSymbol *Label);
Daniel Dunbara11af532009-06-24 01:03:06 +0000138
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000139 virtual void EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
Kevin Enderbya5c78322009-07-13 21:03:15 +0000140
Chris Lattner46a947d2009-08-17 04:17:34 +0000141 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
Chris Lattnerb54b9dd2010-05-08 19:54:22 +0000142 virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol);
143 virtual void EmitCOFFSymbolStorageClass(int StorageClass);
144 virtual void EmitCOFFSymbolType(int Type);
145 virtual void EndCOFFSymbolDef();
Chris Lattner99328ad2010-01-25 07:52:13 +0000146 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
Chris Lattner9eb158d2010-01-23 07:47:02 +0000147 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000148 unsigned ByteAlignment);
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000149
Chris Lattner9eb158d2010-01-23 07:47:02 +0000150 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
151 ///
152 /// @param Symbol - The common symbol to emit.
153 /// @param Size - The size of the common symbol.
154 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size);
Jim Grosbach00545e12010-09-22 18:16:55 +0000155
Daniel Dunbar8751b942009-08-28 05:48:22 +0000156 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000157 unsigned Size = 0, unsigned ByteAlignment = 0);
Kevin Enderby71148242009-07-14 21:35:03 +0000158
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000159 virtual void EmitTBSSSymbol (const MCSection *Section, MCSymbol *Symbol,
160 uint64_t Size, unsigned ByteAlignment = 0);
Jim Grosbach00545e12010-09-22 18:16:55 +0000161
Chris Lattneraaec2052010-01-19 19:46:13 +0000162 virtual void EmitBytes(StringRef Data, unsigned AddrSpace);
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000163
Rafael Espindola89b93722010-12-10 07:39:47 +0000164 virtual void EmitValueImpl(const MCExpr *Value, unsigned Size,
165 bool isPCRel, unsigned AddrSpace);
Rafael Espindola2df042c2010-12-03 02:54:21 +0000166 virtual void EmitIntValue(uint64_t Value, unsigned Size,
167 unsigned AddrSpace = 0);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000168
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000169 virtual void EmitULEB128Value(const MCExpr *Value);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000170
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000171 virtual void EmitSLEB128Value(const MCExpr *Value);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000172
Chris Lattner718fb592010-01-25 21:28:50 +0000173 virtual void EmitGPRel32Value(const MCExpr *Value);
Jim Grosbach00545e12010-09-22 18:16:55 +0000174
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000175
Chris Lattneraaec2052010-01-19 19:46:13 +0000176 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue,
177 unsigned AddrSpace);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000178
Chris Lattner46a947d2009-08-17 04:17:34 +0000179 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
180 unsigned ValueSize = 1,
181 unsigned MaxBytesToEmit = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000182
Kevin Enderby6e720482010-02-23 18:26:34 +0000183 virtual void EmitCodeAlignment(unsigned ByteAlignment,
184 unsigned MaxBytesToEmit = 0);
185
Daniel Dunbar821e3332009-08-31 08:09:28 +0000186 virtual void EmitValueToOffset(const MCExpr *Offset,
Chris Lattner46a947d2009-08-17 04:17:34 +0000187 unsigned char Value = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000188
Chris Lattnera6594fc2010-01-25 18:58:59 +0000189 virtual void EmitFileDirective(StringRef Filename);
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000190 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Filename);
191 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
192 unsigned Column, unsigned Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +0000193 unsigned Isa, unsigned Discriminator,
194 StringRef FileName);
Chris Lattnera6594fc2010-01-25 18:58:59 +0000195
Rafael Espindola066c2f42011-04-12 23:59:07 +0000196 virtual void EmitCFIStartProc();
197 virtual void EmitCFIEndProc();
198 virtual void EmitCFIDefCfa(int64_t Register, int64_t Offset);
199 virtual void EmitCFIDefCfaOffset(int64_t Offset);
200 virtual void EmitCFIDefCfaRegister(int64_t Register);
201 virtual void EmitCFIOffset(int64_t Register, int64_t Offset);
202 virtual void EmitCFIPersonality(const MCSymbol *Sym, unsigned Encoding);
203 virtual void EmitCFILsda(const MCSymbol *Sym, unsigned Encoding);
204 virtual void EmitCFIRememberState();
205 virtual void EmitCFIRestoreState();
206 virtual void EmitCFISameValue(int64_t Register);
207 virtual void EmitCFIRelOffset(int64_t Register, int64_t Offset);
208 virtual void EmitCFIAdjustCfaOffset(int64_t Adjustment);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000209
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000210 virtual void EmitFnStart();
211 virtual void EmitFnEnd();
212 virtual void EmitCantUnwind();
213 virtual void EmitPersonality(const MCSymbol *Personality);
214 virtual void EmitHandlerData();
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000215 virtual void EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset = 0);
216 virtual void EmitPad(int64_t Offset);
217 virtual void EmitRegSave(const SmallVectorImpl<unsigned> &RegList, bool);
218
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000219
Chris Lattnera6594fc2010-01-25 18:58:59 +0000220 virtual void EmitInstruction(const MCInst &Inst);
Jim Grosbach00545e12010-09-22 18:16:55 +0000221
Jim Grosbachbd4ec842010-09-22 18:18:30 +0000222 /// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +0000223 /// the specified string in the output .s file. This capability is
224 /// indicated by the hasRawTextSupport() predicate.
225 virtual void EmitRawText(StringRef String);
Jim Grosbach00545e12010-09-22 18:16:55 +0000226
Chris Lattner46a947d2009-08-17 04:17:34 +0000227 virtual void Finish();
Jim Grosbach00545e12010-09-22 18:16:55 +0000228
Chris Lattner46a947d2009-08-17 04:17:34 +0000229 /// @}
230};
Daniel Dunbar84a29262009-06-24 19:25:34 +0000231
Chris Lattner46a947d2009-08-17 04:17:34 +0000232} // end anonymous namespace.
Daniel Dunbara11af532009-06-24 01:03:06 +0000233
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000234/// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner86e22112010-01-22 07:29:22 +0000235/// file if applicable as a QoI issue to make the output of the compiler
236/// more readable. This only affects the MCAsmStreamer, and only when
237/// verbose assembly output is enabled.
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000238void MCAsmStreamer::AddComment(const Twine &T) {
Chris Lattner86e22112010-01-22 07:29:22 +0000239 if (!IsVerboseAsm) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000240
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000241 // Make sure that CommentStream is flushed.
242 CommentStream.flush();
Jim Grosbach00545e12010-09-22 18:16:55 +0000243
Chris Lattner86e22112010-01-22 07:29:22 +0000244 T.toVector(CommentToEmit);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000245 // Each comment goes on its own line.
246 CommentToEmit.push_back('\n');
Jim Grosbach00545e12010-09-22 18:16:55 +0000247
Chris Lattner14ca1772010-01-22 21:16:10 +0000248 // Tell the comment stream that the vector changed underneath it.
249 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000250}
251
252void MCAsmStreamer::EmitCommentsAndEOL() {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000253 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) {
254 OS << '\n';
255 return;
256 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000257
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000258 CommentStream.flush();
Chris Lattner86e22112010-01-22 07:29:22 +0000259 StringRef Comments = CommentToEmit.str();
Jim Grosbach00545e12010-09-22 18:16:55 +0000260
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000261 assert(Comments.back() == '\n' &&
262 "Comment array not newline terminated");
263 do {
Chris Lattner86e22112010-01-22 07:29:22 +0000264 // Emit a line of comments.
265 OS.PadToColumn(MAI.getCommentColumn());
266 size_t Position = Comments.find('\n');
267 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
Jim Grosbach00545e12010-09-22 18:16:55 +0000268
Chris Lattner86e22112010-01-22 07:29:22 +0000269 Comments = Comments.substr(Position+1);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000270 } while (!Comments.empty());
Jim Grosbach00545e12010-09-22 18:16:55 +0000271
Chris Lattner14ca1772010-01-22 21:16:10 +0000272 CommentToEmit.clear();
273 // Tell the comment stream that the vector changed underneath it.
274 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000275}
276
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000277static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
278 assert(Bytes && "Invalid size!");
279 return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
280}
281
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000282void MCAsmStreamer::ChangeSection(const MCSection *Section) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000283 assert(Section && "Cannot switch to a null section!");
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000284 Section->PrintSwitchToSection(MAI, OS);
Daniel Dunbara11af532009-06-24 01:03:06 +0000285}
286
Rafael Espindola277abc82011-04-30 16:34:57 +0000287void MCAsmStreamer::EmitEHSymAttributes(const MCSymbol *Symbol,
288 MCSymbol *EHSymbol) {
289 if (UseCFI)
290 return;
291
292 unsigned Flags = FlagMap.lookup(Symbol);
293
294 if (Flags & EHGlobal)
295 EmitSymbolAttribute(EHSymbol, MCSA_Global);
296 if (Flags & EHWeakDefinition)
297 EmitSymbolAttribute(EHSymbol, MCSA_WeakDefinition);
298 if (Flags & EHPrivateExtern)
299 EmitSymbolAttribute(EHSymbol, MCSA_PrivateExtern);
300}
301
Daniel Dunbara11af532009-06-24 01:03:06 +0000302void MCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
Daniel Dunbar8906ff12009-08-22 07:22:36 +0000303 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Rafael Espindolaed708f92011-04-27 15:21:19 +0000304 MCStreamer::EmitLabel(Symbol);
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000305
Chris Lattnere07b75e2010-09-22 22:19:53 +0000306 OS << *Symbol << MAI.getLabelSuffix();
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000307 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000308}
309
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000310void MCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
Kevin Enderbyf96db462009-07-16 17:56:39 +0000311 switch (Flag) {
Daniel Dunbar011e4db2009-08-13 23:36:34 +0000312 default: assert(0 && "Invalid flag!");
Jason W Kimafd1cc22010-09-30 02:45:56 +0000313 case MCAF_SyntaxUnified: OS << "\t.syntax unified"; break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000314 case MCAF_SubsectionsViaSymbols: OS << ".subsections_via_symbols"; break;
Jim Grosbachce792992010-11-05 22:08:08 +0000315 case MCAF_Code16: OS << "\t.code\t16"; break;
Jim Grosbachba219572010-11-05 22:40:09 +0000316 case MCAF_Code32: OS << "\t.code\t32"; break;
Kevin Enderbyf96db462009-07-16 17:56:39 +0000317 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000318 EmitEOL();
Kevin Enderbya5c78322009-07-13 21:03:15 +0000319}
320
Jim Grosbachce792992010-11-05 22:08:08 +0000321void MCAsmStreamer::EmitThumbFunc(MCSymbol *Func) {
322 // This needs to emit to a temporary string to get properly quoted
323 // MCSymbols when they have spaces in them.
324 OS << "\t.thumb_func";
325 if (Func)
326 OS << '\t' << *Func;
327 EmitEOL();
328}
329
Daniel Dunbar821e3332009-08-31 08:09:28 +0000330void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000331 OS << *Symbol << " = " << *Value;
332 EmitEOL();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000333
334 // FIXME: Lift context changes into super class.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000335 Symbol->setVariableValue(Value);
Daniel Dunbara11af532009-06-24 01:03:06 +0000336}
337
Rafael Espindola484291c2010-11-01 14:28:48 +0000338void MCAsmStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
339 OS << ".weakref " << *Alias << ", " << *Symbol;
340 EmitEOL();
341}
342
Rafael Espindola32a006e2010-12-03 00:55:40 +0000343void MCAsmStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
344 const MCSymbol *LastLabel,
345 const MCSymbol *Label) {
Rafael Espindola89b93722010-12-10 07:39:47 +0000346 EmitDwarfSetLineAddr(LineDelta, Label,
347 getContext().getTargetAsmInfo().getPointerSize());
Rafael Espindola32a006e2010-12-03 00:55:40 +0000348}
349
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000350void MCAsmStreamer::EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
351 const MCSymbol *Label) {
352 EmitIntValue(dwarf::DW_CFA_advance_loc4, 1);
353 const MCExpr *AddrDelta = BuildSymbolDiff(getContext(), Label, LastLabel);
354 AddrDelta = ForceExpAbs(this, getContext(), AddrDelta);
355 EmitValue(AddrDelta, 4);
356}
357
358
Daniel Dunbarfffff912009-10-16 01:34:54 +0000359void MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000360 MCSymbolAttr Attribute) {
Daniel Dunbara11af532009-06-24 01:03:06 +0000361 switch (Attribute) {
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000362 case MCSA_Invalid: assert(0 && "Invalid symbol attribute");
Chris Lattnered0ab152010-01-25 18:30:45 +0000363 case MCSA_ELF_TypeFunction: /// .type _foo, STT_FUNC # aka @function
364 case MCSA_ELF_TypeIndFunction: /// .type _foo, STT_GNU_IFUNC
365 case MCSA_ELF_TypeObject: /// .type _foo, STT_OBJECT # aka @object
366 case MCSA_ELF_TypeTLS: /// .type _foo, STT_TLS # aka @tls_object
367 case MCSA_ELF_TypeCommon: /// .type _foo, STT_COMMON # aka @common
368 case MCSA_ELF_TypeNoType: /// .type _foo, STT_NOTYPE # aka @notype
Rafael Espindolae9c0ff22010-11-13 04:55:06 +0000369 case MCSA_ELF_TypeGnuUniqueObject: /// .type _foo, @gnu_unique_object
Chris Lattnered0ab152010-01-25 18:30:45 +0000370 assert(MAI.hasDotTypeDotSizeDirective() && "Symbol Attr not supported");
Dan Gohman523d70e2010-02-04 01:42:13 +0000371 OS << "\t.type\t" << *Symbol << ','
Chris Lattnered0ab152010-01-25 18:30:45 +0000372 << ((MAI.getCommentString()[0] != '@') ? '@' : '%');
373 switch (Attribute) {
374 default: assert(0 && "Unknown ELF .type");
375 case MCSA_ELF_TypeFunction: OS << "function"; break;
376 case MCSA_ELF_TypeIndFunction: OS << "gnu_indirect_function"; break;
377 case MCSA_ELF_TypeObject: OS << "object"; break;
378 case MCSA_ELF_TypeTLS: OS << "tls_object"; break;
379 case MCSA_ELF_TypeCommon: OS << "common"; break;
380 case MCSA_ELF_TypeNoType: OS << "no_type"; break;
Rafael Espindolae9c0ff22010-11-13 04:55:06 +0000381 case MCSA_ELF_TypeGnuUniqueObject: OS << "gnu_unique_object"; break;
Chris Lattnered0ab152010-01-25 18:30:45 +0000382 }
383 EmitEOL();
384 return;
385 case MCSA_Global: // .globl/.global
386 OS << MAI.getGlobalDirective();
Rafael Espindola277abc82011-04-30 16:34:57 +0000387 FlagMap[Symbol] |= EHGlobal;
Chris Lattnered0ab152010-01-25 18:30:45 +0000388 break;
Chris Lattner61abd7b2010-06-21 20:35:01 +0000389 case MCSA_Hidden: OS << "\t.hidden\t"; break;
390 case MCSA_IndirectSymbol: OS << "\t.indirect_symbol\t"; break;
391 case MCSA_Internal: OS << "\t.internal\t"; break;
392 case MCSA_LazyReference: OS << "\t.lazy_reference\t"; break;
393 case MCSA_Local: OS << "\t.local\t"; break;
394 case MCSA_NoDeadStrip: OS << "\t.no_dead_strip\t"; break;
Kevin Enderbye8e98d72010-11-19 18:39:33 +0000395 case MCSA_SymbolResolver: OS << "\t.symbol_resolver\t"; break;
Rafael Espindola277abc82011-04-30 16:34:57 +0000396 case MCSA_PrivateExtern:
397 OS << "\t.private_extern\t";
398 FlagMap[Symbol] |= EHPrivateExtern;
399 break;
Chris Lattner61abd7b2010-06-21 20:35:01 +0000400 case MCSA_Protected: OS << "\t.protected\t"; break;
401 case MCSA_Reference: OS << "\t.reference\t"; break;
402 case MCSA_Weak: OS << "\t.weak\t"; break;
Rafael Espindola277abc82011-04-30 16:34:57 +0000403 case MCSA_WeakDefinition:
404 OS << "\t.weak_definition\t";
405 FlagMap[Symbol] |= EHWeakDefinition;
406 break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000407 // .weak_reference
408 case MCSA_WeakReference: OS << MAI.getWeakRefDirective(); break;
Kevin Enderbyf59cac52010-07-08 17:22:42 +0000409 case MCSA_WeakDefAutoPrivate: OS << "\t.weak_def_can_be_hidden\t"; break;
Daniel Dunbara11af532009-06-24 01:03:06 +0000410 }
411
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000412 OS << *Symbol;
413 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000414}
415
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000416void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000417 OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
418 EmitEOL();
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000419}
420
Chris Lattnerb54b9dd2010-05-08 19:54:22 +0000421void MCAsmStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {
422 OS << "\t.def\t " << *Symbol << ';';
423 EmitEOL();
424}
425
426void MCAsmStreamer::EmitCOFFSymbolStorageClass (int StorageClass) {
427 OS << "\t.scl\t" << StorageClass << ';';
428 EmitEOL();
429}
430
431void MCAsmStreamer::EmitCOFFSymbolType (int Type) {
432 OS << "\t.type\t" << Type << ';';
433 EmitEOL();
434}
435
436void MCAsmStreamer::EndCOFFSymbolDef() {
437 OS << "\t.endef";
438 EmitEOL();
439}
440
Chris Lattner99328ad2010-01-25 07:52:13 +0000441void MCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
442 assert(MAI.hasDotTypeDotSizeDirective());
443 OS << "\t.size\t" << *Symbol << ", " << *Value << '\n';
444}
445
Chris Lattner9eb158d2010-01-23 07:47:02 +0000446void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000447 unsigned ByteAlignment) {
Chris Lattner9eb158d2010-01-23 07:47:02 +0000448 OS << "\t.comm\t" << *Symbol << ',' << Size;
Chris Lattner6559d762010-01-25 07:29:13 +0000449 if (ByteAlignment != 0) {
Rafael Espindola2e2563b2010-01-26 20:21:43 +0000450 if (MAI.getCOMMDirectiveAlignmentIsInBytes())
Chris Lattner4ed54382010-01-19 06:01:04 +0000451 OS << ',' << ByteAlignment;
452 else
453 OS << ',' << Log2_32(ByteAlignment);
454 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000455 EmitEOL();
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000456}
457
Chris Lattner9eb158d2010-01-23 07:47:02 +0000458/// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
459///
460/// @param Symbol - The common symbol to emit.
461/// @param Size - The size of the common symbol.
462void MCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size) {
463 assert(MAI.hasLCOMMDirective() && "Doesn't have .lcomm, can't emit it!");
464 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
465 EmitEOL();
466}
467
Daniel Dunbar8751b942009-08-28 05:48:22 +0000468void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000469 unsigned Size, unsigned ByteAlignment) {
Daniel Dunbar011e4db2009-08-13 23:36:34 +0000470 // Note: a .zerofill directive does not switch sections.
Chris Lattner93b6db32009-08-08 23:39:42 +0000471 OS << ".zerofill ";
Jim Grosbach00545e12010-09-22 18:16:55 +0000472
Chris Lattner93b6db32009-08-08 23:39:42 +0000473 // This is a mach-o specific directive.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000474 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
Daniel Dunbar12de0df2009-08-14 18:51:45 +0000475 OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
Jim Grosbach00545e12010-09-22 18:16:55 +0000476
Chris Lattner9be3fee2009-07-10 22:20:30 +0000477 if (Symbol != NULL) {
Chris Lattner10b318b2010-01-17 21:43:43 +0000478 OS << ',' << *Symbol << ',' << Size;
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000479 if (ByteAlignment != 0)
480 OS << ',' << Log2_32(ByteAlignment);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000481 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000482 EmitEOL();
Chris Lattner9be3fee2009-07-10 22:20:30 +0000483}
484
Eric Christopherd04d98d2010-05-17 02:13:02 +0000485// .tbss sym, size, align
486// This depends that the symbol has already been mangled from the original,
487// e.g. _a.
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000488void MCAsmStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
489 uint64_t Size, unsigned ByteAlignment) {
Eric Christopher482eba02010-05-14 01:50:28 +0000490 assert(Symbol != NULL && "Symbol shouldn't be NULL!");
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000491 // Instead of using the Section we'll just use the shortcut.
492 // This is a mach-o specific directive and section.
Eric Christopherd04d98d2010-05-17 02:13:02 +0000493 OS << ".tbss " << *Symbol << ", " << Size;
Jim Grosbach00545e12010-09-22 18:16:55 +0000494
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000495 // Output align if we have it. We default to 1 so don't bother printing
496 // that.
497 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
Jim Grosbach00545e12010-09-22 18:16:55 +0000498
Eric Christopher482eba02010-05-14 01:50:28 +0000499 EmitEOL();
500}
501
Chris Lattner12e555c2010-01-23 00:15:00 +0000502static inline char toOctal(int X) { return (X&7)+'0'; }
503
Chris Lattnera6594fc2010-01-25 18:58:59 +0000504static void PrintQuotedString(StringRef Data, raw_ostream &OS) {
505 OS << '"';
Jim Grosbach00545e12010-09-22 18:16:55 +0000506
Chris Lattnera6594fc2010-01-25 18:58:59 +0000507 for (unsigned i = 0, e = Data.size(); i != e; ++i) {
508 unsigned char C = Data[i];
509 if (C == '"' || C == '\\') {
510 OS << '\\' << (char)C;
511 continue;
512 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000513
Chris Lattnera6594fc2010-01-25 18:58:59 +0000514 if (isprint((unsigned char)C)) {
515 OS << (char)C;
516 continue;
517 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000518
Chris Lattnera6594fc2010-01-25 18:58:59 +0000519 switch (C) {
520 case '\b': OS << "\\b"; break;
521 case '\f': OS << "\\f"; break;
522 case '\n': OS << "\\n"; break;
523 case '\r': OS << "\\r"; break;
524 case '\t': OS << "\\t"; break;
525 default:
526 OS << '\\';
527 OS << toOctal(C >> 6);
528 OS << toOctal(C >> 3);
529 OS << toOctal(C >> 0);
530 break;
531 }
532 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000533
Chris Lattnera6594fc2010-01-25 18:58:59 +0000534 OS << '"';
535}
536
537
Chris Lattneraaec2052010-01-19 19:46:13 +0000538void MCAsmStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000539 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Chris Lattner12e555c2010-01-23 00:15:00 +0000540 if (Data.empty()) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000541
Chris Lattner12e555c2010-01-23 00:15:00 +0000542 if (Data.size() == 1) {
543 OS << MAI.getData8bitsDirective(AddrSpace);
544 OS << (unsigned)(unsigned char)Data[0];
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000545 EmitEOL();
Chris Lattner12e555c2010-01-23 00:15:00 +0000546 return;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000547 }
Chris Lattner12e555c2010-01-23 00:15:00 +0000548
549 // If the data ends with 0 and the target supports .asciz, use it, otherwise
550 // use .ascii
551 if (MAI.getAscizDirective() && Data.back() == 0) {
552 OS << MAI.getAscizDirective();
553 Data = Data.substr(0, Data.size()-1);
554 } else {
555 OS << MAI.getAsciiDirective();
556 }
557
Chris Lattnera6594fc2010-01-25 18:58:59 +0000558 OS << ' ';
559 PrintQuotedString(Data, OS);
Chris Lattner12e555c2010-01-23 00:15:00 +0000560 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000561}
562
Rafael Espindola2df042c2010-12-03 02:54:21 +0000563void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size,
564 unsigned AddrSpace) {
565 EmitValue(MCConstantExpr::Create(Value, getContext()), Size, AddrSpace);
566}
567
Rafael Espindola89b93722010-12-10 07:39:47 +0000568void MCAsmStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size,
569 bool isPCRel, unsigned AddrSpace) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000570 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Rafael Espindola89b93722010-12-10 07:39:47 +0000571 assert(!isPCRel && "Cannot emit pc relative relocations!");
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000572 const char *Directive = 0;
573 switch (Size) {
574 default: break;
575 case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
576 case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
577 case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000578 case 8:
579 Directive = MAI.getData64bitsDirective(AddrSpace);
580 // If the target doesn't support 64-bit data, emit as two 32-bit halves.
581 if (Directive) break;
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000582 int64_t IntValue;
583 if (!Value->EvaluateAsAbsolute(IntValue))
584 report_fatal_error("Don't know how to emit this value.");
Rafael Espindola89b93722010-12-10 07:39:47 +0000585 if (getContext().getTargetAsmInfo().isLittleEndian()) {
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000586 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
587 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000588 } else {
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000589 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
590 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000591 }
592 return;
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000593 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000594
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000595 assert(Directive && "Invalid size for machine code value!");
Chris Lattner718fb592010-01-25 21:28:50 +0000596 OS << Directive << *Value;
Chris Lattner86e22112010-01-22 07:29:22 +0000597 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000598}
599
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000600void MCAsmStreamer::EmitULEB128Value(const MCExpr *Value) {
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000601 int64_t IntValue;
602 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000603 EmitULEB128IntValue(IntValue);
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000604 return;
605 }
Rafael Espindola73873452010-11-04 18:17:08 +0000606 assert(MAI.hasLEB128() && "Cannot print a .uleb");
607 OS << ".uleb128 " << *Value;
Rafael Espindola3ff57092010-11-02 17:22:24 +0000608 EmitEOL();
609}
610
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000611void MCAsmStreamer::EmitSLEB128Value(const MCExpr *Value) {
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000612 int64_t IntValue;
613 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000614 EmitSLEB128IntValue(IntValue);
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000615 return;
616 }
Rafael Espindola73873452010-11-04 18:17:08 +0000617 assert(MAI.hasLEB128() && "Cannot print a .sleb");
618 OS << ".sleb128 " << *Value;
Rafael Espindola3ff57092010-11-02 17:22:24 +0000619 EmitEOL();
620}
621
Chris Lattner718fb592010-01-25 21:28:50 +0000622void MCAsmStreamer::EmitGPRel32Value(const MCExpr *Value) {
623 assert(MAI.getGPRel32Directive() != 0);
624 OS << MAI.getGPRel32Directive() << *Value;
625 EmitEOL();
626}
627
628
Chris Lattner6113b3d2010-01-19 18:52:28 +0000629/// EmitFill - Emit NumBytes bytes worth of the value specified by
630/// FillValue. This implements directives such as '.space'.
Chris Lattneraaec2052010-01-19 19:46:13 +0000631void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
632 unsigned AddrSpace) {
Chris Lattner8a6d7ac2010-01-19 18:58:52 +0000633 if (NumBytes == 0) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000634
Chris Lattneraaec2052010-01-19 19:46:13 +0000635 if (AddrSpace == 0)
636 if (const char *ZeroDirective = MAI.getZeroDirective()) {
637 OS << ZeroDirective << NumBytes;
638 if (FillValue != 0)
639 OS << ',' << (int)FillValue;
Chris Lattner86e22112010-01-22 07:29:22 +0000640 EmitEOL();
Chris Lattneraaec2052010-01-19 19:46:13 +0000641 return;
642 }
643
644 // Emit a byte at a time.
645 MCStreamer::EmitFill(NumBytes, FillValue, AddrSpace);
Chris Lattner6113b3d2010-01-19 18:52:28 +0000646}
647
Daniel Dunbar84a29262009-06-24 19:25:34 +0000648void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
649 unsigned ValueSize,
650 unsigned MaxBytesToEmit) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000651 // Some assemblers don't support non-power of two alignments, so we always
652 // emit alignments as a power of two if possible.
653 if (isPowerOf2_32(ByteAlignment)) {
Chris Lattner6e579c62009-08-19 06:35:36 +0000654 switch (ValueSize) {
655 default: llvm_unreachable("Invalid size for machine code value!");
Chris Lattner33adcfb2009-08-22 21:43:10 +0000656 case 1: OS << MAI.getAlignDirective(); break;
657 // FIXME: use MAI for this!
Chris Lattner6e579c62009-08-19 06:35:36 +0000658 case 2: OS << ".p2alignw "; break;
659 case 4: OS << ".p2alignl "; break;
660 case 8: llvm_unreachable("Unsupported alignment size!");
661 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000662
Chris Lattner33adcfb2009-08-22 21:43:10 +0000663 if (MAI.getAlignmentIsInBytes())
Chris Lattner663c2d22009-08-19 06:12:02 +0000664 OS << ByteAlignment;
665 else
666 OS << Log2_32(ByteAlignment);
Daniel Dunbar84a29262009-06-24 19:25:34 +0000667
Chris Lattner663c2d22009-08-19 06:12:02 +0000668 if (Value || MaxBytesToEmit) {
Chris Lattner579531c2009-09-03 04:01:10 +0000669 OS << ", 0x";
670 OS.write_hex(truncateToSize(Value, ValueSize));
Chris Lattner663c2d22009-08-19 06:12:02 +0000671
Jim Grosbach00545e12010-09-22 18:16:55 +0000672 if (MaxBytesToEmit)
Chris Lattner663c2d22009-08-19 06:12:02 +0000673 OS << ", " << MaxBytesToEmit;
674 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000675 EmitEOL();
Chris Lattner663c2d22009-08-19 06:12:02 +0000676 return;
677 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000678
Chris Lattner663c2d22009-08-19 06:12:02 +0000679 // Non-power of two alignment. This is not widely supported by assemblers.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000680 // FIXME: Parameterize this based on MAI.
Daniel Dunbar84a29262009-06-24 19:25:34 +0000681 switch (ValueSize) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000682 default: llvm_unreachable("Invalid size for machine code value!");
683 case 1: OS << ".balign"; break;
684 case 2: OS << ".balignw"; break;
685 case 4: OS << ".balignl"; break;
686 case 8: llvm_unreachable("Unsupported alignment size!");
Daniel Dunbar84a29262009-06-24 19:25:34 +0000687 }
688
Chris Lattner663c2d22009-08-19 06:12:02 +0000689 OS << ' ' << ByteAlignment;
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000690 OS << ", " << truncateToSize(Value, ValueSize);
Jim Grosbach00545e12010-09-22 18:16:55 +0000691 if (MaxBytesToEmit)
Daniel Dunbar84a29262009-06-24 19:25:34 +0000692 OS << ", " << MaxBytesToEmit;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000693 EmitEOL();
Daniel Dunbar84a29262009-06-24 19:25:34 +0000694}
695
Kevin Enderby6e720482010-02-23 18:26:34 +0000696void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
697 unsigned MaxBytesToEmit) {
Chris Lattnerec167fd2010-02-23 18:44:31 +0000698 // Emit with a text fill value.
699 EmitValueToAlignment(ByteAlignment, MAI.getTextAlignFillValue(),
700 1, MaxBytesToEmit);
Kevin Enderby6e720482010-02-23 18:26:34 +0000701}
702
Daniel Dunbar821e3332009-08-31 08:09:28 +0000703void MCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbar84a29262009-06-24 19:25:34 +0000704 unsigned char Value) {
705 // FIXME: Verify that Offset is associated with the current section.
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000706 OS << ".org " << *Offset << ", " << (unsigned) Value;
707 EmitEOL();
Daniel Dunbar84a29262009-06-24 19:25:34 +0000708}
709
Chris Lattnera6594fc2010-01-25 18:58:59 +0000710
711void MCAsmStreamer::EmitFileDirective(StringRef Filename) {
712 assert(MAI.hasSingleParameterDotFile());
713 OS << "\t.file\t";
714 PrintQuotedString(Filename, OS);
715 EmitEOL();
716}
717
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000718bool MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Filename){
Rafael Espindola89b93722010-12-10 07:39:47 +0000719 if (UseLoc) {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000720 OS << "\t.file\t" << FileNo << ' ';
721 PrintQuotedString(Filename, OS);
722 EmitEOL();
723 }
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000724 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Filename);
725}
726
727void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
728 unsigned Column, unsigned Flags,
729 unsigned Isa,
Devang Patel3f3bf932011-04-18 20:26:49 +0000730 unsigned Discriminator,
731 StringRef FileName) {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000732 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +0000733 Isa, Discriminator, FileName);
Rafael Espindola89b93722010-12-10 07:39:47 +0000734 if (!UseLoc)
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000735 return;
736
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000737 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
738 if (Flags & DWARF2_FLAG_BASIC_BLOCK)
739 OS << " basic_block";
740 if (Flags & DWARF2_FLAG_PROLOGUE_END)
741 OS << " prologue_end";
742 if (Flags & DWARF2_FLAG_EPILOGUE_BEGIN)
743 OS << " epilogue_begin";
744
745 unsigned OldFlags = getContext().getCurrentDwarfLoc().getFlags();
746 if ((Flags & DWARF2_FLAG_IS_STMT) != (OldFlags & DWARF2_FLAG_IS_STMT)) {
747 OS << " is_stmt ";
748
749 if (Flags & DWARF2_FLAG_IS_STMT)
750 OS << "1";
751 else
752 OS << "0";
753 }
754
755 if (Isa)
756 OS << "isa " << Isa;
757 if (Discriminator)
758 OS << "discriminator " << Discriminator;
Devang Patel3f3bf932011-04-18 20:26:49 +0000759
760 if (IsVerboseAsm) {
761 OS.PadToColumn(MAI.getCommentColumn());
762 OS << MAI.getCommentString() << ' ' << FileName << ':'
763 << Line << ':' << Column;
764 }
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000765 EmitEOL();
Chris Lattnera6594fc2010-01-25 18:58:59 +0000766}
767
Rafael Espindola066c2f42011-04-12 23:59:07 +0000768void MCAsmStreamer::EmitCFIStartProc() {
769 MCStreamer::EmitCFIStartProc();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000770
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000771 if (!UseCFI)
772 return;
773
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000774 OS << "\t.cfi_startproc";
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000775 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000776}
777
Rafael Espindola066c2f42011-04-12 23:59:07 +0000778void MCAsmStreamer::EmitCFIEndProc() {
779 MCStreamer::EmitCFIEndProc();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000780
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000781 if (!UseCFI)
782 return;
783
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000784 OS << "\t.cfi_endproc";
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000785 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000786}
787
Rafael Espindola066c2f42011-04-12 23:59:07 +0000788void MCAsmStreamer::EmitCFIDefCfa(int64_t Register, int64_t Offset) {
Rafael Espindola7f46b082011-04-29 21:41:06 +0000789 MCStreamer::EmitCFIDefCfa(Register, Offset);
790
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000791 if (!UseCFI)
792 return;
793
Rafael Espindola7f46b082011-04-29 21:41:06 +0000794 OS << ".cfi_def_cfa " << Register << ", " << Offset;
795 EmitEOL();
Rafael Espindola066c2f42011-04-12 23:59:07 +0000796}
797
798void MCAsmStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
799 MCStreamer::EmitCFIDefCfaOffset(Offset);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000800
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000801 if (!UseCFI)
802 return;
803
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000804 OS << "\t.cfi_def_cfa_offset " << Offset;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000805 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000806}
807
Rafael Espindola066c2f42011-04-12 23:59:07 +0000808void MCAsmStreamer::EmitCFIDefCfaRegister(int64_t Register) {
809 MCStreamer::EmitCFIDefCfaRegister(Register);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000810
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000811 if (!UseCFI)
812 return;
813
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000814 OS << "\t.cfi_def_cfa_register " << Register;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000815 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000816}
817
Rafael Espindola066c2f42011-04-12 23:59:07 +0000818void MCAsmStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
819 this->MCStreamer::EmitCFIOffset(Register, Offset);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000820
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000821 if (!UseCFI)
822 return;
823
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000824 OS << "\t.cfi_offset " << Register << ", " << Offset;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000825 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000826}
827
Rafael Espindola066c2f42011-04-12 23:59:07 +0000828void MCAsmStreamer::EmitCFIPersonality(const MCSymbol *Sym,
Rafael Espindola3a83c402010-12-27 00:36:05 +0000829 unsigned Encoding) {
Rafael Espindola066c2f42011-04-12 23:59:07 +0000830 MCStreamer::EmitCFIPersonality(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000831
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000832 if (!UseCFI)
833 return;
834
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000835 OS << "\t.cfi_personality " << Encoding << ", " << *Sym;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000836 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000837}
838
Rafael Espindola066c2f42011-04-12 23:59:07 +0000839void MCAsmStreamer::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) {
840 MCStreamer::EmitCFILsda(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000841
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000842 if (!UseCFI)
843 return;
844
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000845 OS << "\t.cfi_lsda " << Encoding << ", " << *Sym;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000846 EmitEOL();
Rafael Espindola066c2f42011-04-12 23:59:07 +0000847}
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000848
Rafael Espindola066c2f42011-04-12 23:59:07 +0000849void MCAsmStreamer::EmitCFIRememberState() {
850 MCStreamer::EmitCFIRememberState();
851
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000852 if (!UseCFI)
853 return;
854
Rafael Espindola066c2f42011-04-12 23:59:07 +0000855 OS << "\t.cfi_remember_state";
856 EmitEOL();
857}
858
859void MCAsmStreamer::EmitCFIRestoreState() {
860 MCStreamer::EmitCFIRestoreState();
861
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000862 if (!UseCFI)
863 return;
864
Rafael Espindola066c2f42011-04-12 23:59:07 +0000865 OS << "\t.cfi_restore_state";
866 EmitEOL();
867}
868
869void MCAsmStreamer::EmitCFISameValue(int64_t Register) {
870 MCStreamer::EmitCFISameValue(Register);
871
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000872 if (!UseCFI)
873 return;
874
Rafael Espindola066c2f42011-04-12 23:59:07 +0000875 OS << "\t.cfi_same_value " << Register;
876 EmitEOL();
877}
878
879void MCAsmStreamer::EmitCFIRelOffset(int64_t Register, int64_t Offset) {
880 MCStreamer::EmitCFIRelOffset(Register, Offset);
881
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000882 if (!UseCFI)
883 return;
884
Rafael Espindola066c2f42011-04-12 23:59:07 +0000885 OS << "\t.cfi_rel_offset " << Register << ", " << Offset;
886 EmitEOL();
887}
888
889void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) {
890 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
891
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000892 if (!UseCFI)
893 return;
894
Rafael Espindola066c2f42011-04-12 23:59:07 +0000895 OS << "\t.cfi_adjust_cfa_offset " << Adjustment;
896 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000897}
898
Daniel Dunbar6b716532010-02-09 23:00:14 +0000899void MCAsmStreamer::AddEncodingComment(const MCInst &Inst) {
900 raw_ostream &OS = GetCommentOS();
901 SmallString<256> Code;
902 SmallVector<MCFixup, 4> Fixups;
903 raw_svector_ostream VecOS(Code);
904 Emitter->EncodeInstruction(Inst, VecOS, Fixups);
905 VecOS.flush();
Chris Lattnera6594fc2010-01-25 18:58:59 +0000906
Daniel Dunbar6b716532010-02-09 23:00:14 +0000907 // If we are showing fixups, create symbolic markers in the encoded
908 // representation. We do this by making a per-bit map to the fixup item index,
909 // then trying to display it as nicely as possible.
Daniel Dunbar5532cf42010-02-10 01:41:14 +0000910 SmallVector<uint8_t, 64> FixupMap;
911 FixupMap.resize(Code.size() * 8);
Daniel Dunbar6b716532010-02-09 23:00:14 +0000912 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
913 FixupMap[i] = 0;
914
915 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
916 MCFixup &F = Fixups[i];
Daniel Dunbar2761fc42010-12-16 03:20:06 +0000917 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar6b716532010-02-09 23:00:14 +0000918 for (unsigned j = 0; j != Info.TargetSize; ++j) {
919 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j;
920 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
921 FixupMap[Index] = 1 + i;
922 }
923 }
924
Evan Cheng8fbbd1c2011-01-13 23:27:39 +0000925 // FIXME: Node the fixup comments for Thumb2 are completely bogus since the
926 // high order halfword of a 32-bit Thumb2 instruction is emitted first.
Daniel Dunbar6b716532010-02-09 23:00:14 +0000927 OS << "encoding: [";
928 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
929 if (i)
930 OS << ',';
931
932 // See if all bits are the same map entry.
933 uint8_t MapEntry = FixupMap[i * 8 + 0];
934 for (unsigned j = 1; j != 8; ++j) {
935 if (FixupMap[i * 8 + j] == MapEntry)
936 continue;
937
938 MapEntry = uint8_t(~0U);
939 break;
940 }
941
942 if (MapEntry != uint8_t(~0U)) {
943 if (MapEntry == 0) {
944 OS << format("0x%02x", uint8_t(Code[i]));
945 } else {
Evan Cheng82caf1a2011-01-13 21:45:26 +0000946 if (Code[i]) {
Evan Cheng8fbbd1c2011-01-13 23:27:39 +0000947 // FIXME: Some of the 8 bits require fix up.
Evan Cheng82caf1a2011-01-13 21:45:26 +0000948 OS << format("0x%02x", uint8_t(Code[i])) << '\''
949 << char('A' + MapEntry - 1) << '\'';
950 } else
951 OS << char('A' + MapEntry - 1);
Daniel Dunbar6b716532010-02-09 23:00:14 +0000952 }
953 } else {
954 // Otherwise, write out in binary.
955 OS << "0b";
956 for (unsigned j = 8; j--;) {
957 unsigned Bit = (Code[i] >> j) & 1;
NAKAMURA Takumid6451512011-03-27 01:44:40 +0000958
Chris Lattner3170a3b2010-11-15 05:56:19 +0000959 unsigned FixupBit;
Rafael Espindola89b93722010-12-10 07:39:47 +0000960 if (getContext().getTargetAsmInfo().isLittleEndian())
Chris Lattner3170a3b2010-11-15 05:56:19 +0000961 FixupBit = i * 8 + j;
962 else
963 FixupBit = i * 8 + (7-j);
NAKAMURA Takumid6451512011-03-27 01:44:40 +0000964
Chris Lattner3170a3b2010-11-15 05:56:19 +0000965 if (uint8_t MapEntry = FixupMap[FixupBit]) {
Daniel Dunbar6b716532010-02-09 23:00:14 +0000966 assert(Bit == 0 && "Encoder wrote into fixed up bit!");
967 OS << char('A' + MapEntry - 1);
968 } else
969 OS << Bit;
970 }
971 }
972 }
973 OS << "]\n";
974
975 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
976 MCFixup &F = Fixups[i];
Daniel Dunbar2761fc42010-12-16 03:20:06 +0000977 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar6b716532010-02-09 23:00:14 +0000978 OS << " fixup " << char('A' + i) << " - " << "offset: " << F.getOffset()
Daniel Dunbar5d5a1e12010-02-10 04:47:08 +0000979 << ", value: " << *F.getValue() << ", kind: " << Info.Name << "\n";
Daniel Dunbar6b716532010-02-09 23:00:14 +0000980 }
981}
982
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000983void MCAsmStreamer::EmitFnStart() {
984 OS << "\t.fnstart";
985 EmitEOL();
986}
987
988void MCAsmStreamer::EmitFnEnd() {
989 OS << "\t.fnend";
990 EmitEOL();
991}
992
993void MCAsmStreamer::EmitCantUnwind() {
994 OS << "\t.cantunwind";
995 EmitEOL();
996}
997
998void MCAsmStreamer::EmitHandlerData() {
999 OS << "\t.handlerdata";
1000 EmitEOL();
1001}
1002
1003void MCAsmStreamer::EmitPersonality(const MCSymbol *Personality) {
1004 OS << "\t.personality " << Personality->getName();
1005 EmitEOL();
1006}
1007
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001008void MCAsmStreamer::EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset) {
1009 OS << "\t.setfp\t" << InstPrinter->getRegName(FpReg)
1010 << ", " << InstPrinter->getRegName(SpReg);
1011 if (Offset)
1012 OS << ", #" << Offset;
1013 EmitEOL();
1014}
1015
1016void MCAsmStreamer::EmitPad(int64_t Offset) {
1017 OS << "\t.pad\t#" << Offset;
1018 EmitEOL();
1019}
1020
1021void MCAsmStreamer::EmitRegSave(const SmallVectorImpl<unsigned> &RegList,
1022 bool isVector) {
1023 assert(RegList.size() && "RegList should not be empty");
1024 if (isVector)
1025 OS << "\t.vsave\t{";
1026 else
1027 OS << "\t.save\t{";
1028
1029 OS << InstPrinter->getRegName(RegList[0]);
1030
1031 for (unsigned i = 1, e = RegList.size(); i != e; ++i)
1032 OS << ", " << InstPrinter->getRegName(RegList[i]);
1033
1034 OS << "}";
1035 EmitEOL();
1036}
1037
Daniel Dunbar6b716532010-02-09 23:00:14 +00001038void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +00001039 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Daniel Dunbar6b716532010-02-09 23:00:14 +00001040
1041 // Show the encoding in a comment if we have a code emitter.
1042 if (Emitter)
1043 AddEncodingComment(Inst);
1044
Chris Lattner30d9a642010-02-09 00:54:51 +00001045 // Show the MCInst if enabled.
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +00001046 if (ShowInst) {
Daniel Dunbar67c076c2010-03-22 21:49:34 +00001047 Inst.dump_pretty(GetCommentOS(), &MAI, InstPrinter.get(), "\n ");
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +00001048 GetCommentOS() << "\n";
1049 }
1050
Daniel Dunbar67c076c2010-03-22 21:49:34 +00001051 // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001052 if (InstPrinter)
Chris Lattnerd3740872010-04-04 05:04:31 +00001053 InstPrinter->printInst(&Inst, OS);
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001054 else
1055 Inst.print(OS, &MAI);
Chris Lattner7d1e49c2010-01-22 07:36:39 +00001056 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +00001057}
1058
Jim Grosbachbd4ec842010-09-22 18:18:30 +00001059/// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +00001060/// the specified string in the output .s file. This capability is
1061/// indicated by the hasRawTextSupport() predicate.
1062void MCAsmStreamer::EmitRawText(StringRef String) {
Chris Lattnerd5928dc2010-04-03 22:06:56 +00001063 if (!String.empty() && String.back() == '\n')
1064 String = String.substr(0, String.size()-1);
Chris Lattner91bead72010-04-03 21:35:55 +00001065 OS << String;
Chris Lattnerd5928dc2010-04-03 22:06:56 +00001066 EmitEOL();
Chris Lattner91bead72010-04-03 21:35:55 +00001067}
1068
Daniel Dunbara11af532009-06-24 01:03:06 +00001069void MCAsmStreamer::Finish() {
Rafael Espindola195a0ce2010-11-19 02:26:16 +00001070 // Dump out the dwarf file & directory tables and line tables.
Rafael Espindola89b93722010-12-10 07:39:47 +00001071 if (getContext().hasDwarfFiles() && !UseLoc)
1072 MCDwarfFileTable::Emit(this);
Daniel Dunbara11af532009-06-24 01:03:06 +00001073}
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001074
Chris Lattner86e22112010-01-22 07:29:22 +00001075MCStreamer *llvm::createAsmStreamer(MCContext &Context,
1076 formatted_raw_ostream &OS,
Rafael Espindola89b93722010-12-10 07:39:47 +00001077 bool isVerboseAsm, bool useLoc,
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001078 bool useCFI,
Daniel Dunbar745dacc2010-12-16 03:05:59 +00001079 MCInstPrinter *IP, MCCodeEmitter *CE,
1080 TargetAsmBackend *TAB, bool ShowInst) {
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001081 return new MCAsmStreamer(Context, OS, isVerboseAsm, useLoc, useCFI,
Daniel Dunbar745dacc2010-12-16 03:05:59 +00001082 IP, CE, TAB, ShowInst);
Daniel Dunbara11af532009-06-24 01:03:06 +00001083}