blob: cf3c9e949af97447e5d46734cb30904850c5a072 [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"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000011#include "llvm/ADT/OwningPtr.h"
12#include "llvm/ADT/SmallString.h"
13#include "llvm/ADT/StringExtras.h"
14#include "llvm/ADT/Twine.h"
15#include "llvm/MC/MCAsmBackend.h"
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +000016#include "llvm/MC/MCAsmInfo.h"
Daniel Dunbar4a0abd82009-08-27 00:51:57 +000017#include "llvm/MC/MCCodeEmitter.h"
Daniel Dunbara11af532009-06-24 01:03:06 +000018#include "llvm/MC/MCContext.h"
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +000019#include "llvm/MC/MCExpr.h"
Daniel Dunbar2761fc42010-12-16 03:20:06 +000020#include "llvm/MC/MCFixupKindInfo.h"
Daniel Dunbarabde2982009-07-01 06:35:03 +000021#include "llvm/MC/MCInst.h"
Chris Lattner90edac02009-09-14 03:02:37 +000022#include "llvm/MC/MCInstPrinter.h"
Evan Chengbfe36862011-07-26 20:57:44 +000023#include "llvm/MC/MCObjectFileInfo.h"
Evan Cheng0e6a0522011-07-18 20:57:22 +000024#include "llvm/MC/MCRegisterInfo.h"
Evan Chenge76a33b2011-07-20 05:58:47 +000025#include "llvm/MC/MCSectionCOFF.h"
Chris Lattnerf9bdedd2009-08-10 18:15:01 +000026#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbara11af532009-06-24 01:03:06 +000027#include "llvm/MC/MCSymbol.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000028#include "llvm/Support/ErrorHandling.h"
Daniel Dunbar4a0abd82009-08-27 00:51:57 +000029#include "llvm/Support/Format.h"
Chris Lattner86e22112010-01-22 07:29:22 +000030#include "llvm/Support/FormattedStream.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000031#include "llvm/Support/MathExtras.h"
Rafael Espindolaa11c3e22013-06-11 22:21:28 +000032#include "llvm/Support/Path.h"
Nick Lewycky476b2422010-12-19 20:43:38 +000033#include <cctype>
Daniel Dunbara11af532009-06-24 01:03:06 +000034using namespace llvm;
35
36namespace {
37
Chris Lattner46a947d2009-08-17 04:17:34 +000038class MCAsmStreamer : public MCStreamer {
Bill Wendling916a94b2011-06-17 20:35:21 +000039protected:
Chris Lattner86e22112010-01-22 07:29:22 +000040 formatted_raw_ostream &OS;
Bill Wendling99cb6222013-06-18 07:20:20 +000041 const MCAsmInfo *MAI;
Bill Wendling916a94b2011-06-17 20:35:21 +000042private:
Chris Lattner4c42a6d2010-03-19 05:48:53 +000043 OwningPtr<MCInstPrinter> InstPrinter;
Benjamin Kramer1abcd062010-07-29 17:48:06 +000044 OwningPtr<MCCodeEmitter> Emitter;
Evan Cheng78c10ee2011-07-25 23:24:55 +000045 OwningPtr<MCAsmBackend> AsmBackend;
Jim Grosbach00545e12010-09-22 18:16:55 +000046
Chris Lattner86e22112010-01-22 07:29:22 +000047 SmallString<128> CommentToEmit;
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000048 raw_svector_ostream CommentStream;
Daniel Dunbar9dee8e32010-02-03 18:18:30 +000049
Daniel Dunbar9dee8e32010-02-03 18:18:30 +000050 unsigned IsVerboseAsm : 1;
51 unsigned ShowInst : 1;
Rafael Espindola89b93722010-12-10 07:39:47 +000052 unsigned UseLoc : 1;
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +000053 unsigned UseCFI : 1;
Nick Lewycky44d798d2011-10-17 23:05:28 +000054 unsigned UseDwarfDirectory : 1;
Daniel Dunbar9dee8e32010-02-03 18:18:30 +000055
Rafael Espindola277abc82011-04-30 16:34:57 +000056 enum EHSymbolFlags { EHGlobal = 1,
57 EHWeakDefinition = 1 << 1,
58 EHPrivateExtern = 1 << 2 };
59 DenseMap<const MCSymbol*, unsigned> FlagMap;
60
Rafael Espindola5d4918d2010-12-04 03:21:47 +000061 bool needsSet(const MCExpr *Value);
62
Rafael Espindola6e032942011-05-30 20:20:15 +000063 void EmitRegisterName(int64_t Register);
Rafael Espindola547be262012-01-07 22:42:19 +000064 virtual void EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame);
Rafael Espindola1fe97372012-01-09 00:17:29 +000065 virtual void EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame);
Rafael Espindola6e032942011-05-30 20:20:15 +000066
Chris Lattner46a947d2009-08-17 04:17:34 +000067public:
Chris Lattner86e22112010-01-22 07:29:22 +000068 MCAsmStreamer(MCContext &Context, formatted_raw_ostream &os,
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +000069 bool isVerboseAsm, bool useLoc, bool useCFI,
Nick Lewycky44d798d2011-10-17 23:05:28 +000070 bool useDwarfDirectory,
Daniel Dunbar745dacc2010-12-16 03:05:59 +000071 MCInstPrinter *printer, MCCodeEmitter *emitter,
Evan Cheng78c10ee2011-07-25 23:24:55 +000072 MCAsmBackend *asmbackend,
Daniel Dunbar745dacc2010-12-16 03:05:59 +000073 bool showInst)
Chandler Carruth5da36652013-01-31 23:29:57 +000074 : MCStreamer(SK_AsmStreamer, Context), OS(os), MAI(Context.getAsmInfo()),
Daniel Dunbar745dacc2010-12-16 03:05:59 +000075 InstPrinter(printer), Emitter(emitter), AsmBackend(asmbackend),
76 CommentStream(CommentToEmit), IsVerboseAsm(isVerboseAsm),
Nick Lewycky44d798d2011-10-17 23:05:28 +000077 ShowInst(showInst), UseLoc(useLoc), UseCFI(useCFI),
78 UseDwarfDirectory(useDwarfDirectory) {
Chris Lattner5d672cf2010-02-10 00:10:18 +000079 if (InstPrinter && IsVerboseAsm)
80 InstPrinter->setCommentStream(CommentStream);
81 }
Chris Lattner46a947d2009-08-17 04:17:34 +000082 ~MCAsmStreamer() {}
Daniel Dunbara11af532009-06-24 01:03:06 +000083
Chris Lattner86e22112010-01-22 07:29:22 +000084 inline void EmitEOL() {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000085 // If we don't have any comments, just emit a \n.
86 if (!IsVerboseAsm) {
Chris Lattner86e22112010-01-22 07:29:22 +000087 OS << '\n';
88 return;
89 }
90 EmitCommentsAndEOL();
91 }
92 void EmitCommentsAndEOL();
Chris Lattner56591ab2010-02-02 23:37:42 +000093
94 /// isVerboseAsm - Return true if this streamer supports verbose assembly at
95 /// all.
96 virtual bool isVerboseAsm() const { return IsVerboseAsm; }
Jim Grosbach00545e12010-09-22 18:16:55 +000097
Chris Lattner91bead72010-04-03 21:35:55 +000098 /// hasRawTextSupport - We support EmitRawText.
99 virtual bool hasRawTextSupport() const { return true; }
Daniel Dunbar6b716532010-02-09 23:00:14 +0000100
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000101 /// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner86e22112010-01-22 07:29:22 +0000102 /// file if applicable as a QoI issue to make the output of the compiler
103 /// more readable. This only affects the MCAsmStreamer, and only when
104 /// verbose assembly output is enabled.
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000105 virtual void AddComment(const Twine &T);
Daniel Dunbar6b716532010-02-09 23:00:14 +0000106
107 /// AddEncodingComment - Add a comment showing the encoding of an instruction.
108 virtual void AddEncodingComment(const MCInst &Inst);
109
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000110 /// GetCommentOS - Return a raw_ostream that comments can be written to.
111 /// Unlike AddComment, you are required to terminate comments with \n if you
112 /// use this method.
113 virtual raw_ostream &GetCommentOS() {
114 if (!IsVerboseAsm)
115 return nulls(); // Discard comments unless in verbose asm mode.
116 return CommentStream;
117 }
Daniel Dunbar6b716532010-02-09 23:00:14 +0000118
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000119 /// AddBlankLine - Emit a blank line to a .s file to pretty it up.
120 virtual void AddBlankLine() {
121 EmitEOL();
122 }
Daniel Dunbar6b716532010-02-09 23:00:14 +0000123
Chris Lattner46a947d2009-08-17 04:17:34 +0000124 /// @name MCStreamer Interface
125 /// @{
Daniel Dunbara11af532009-06-24 01:03:06 +0000126
Peter Collingbournedf39be62013-04-17 21:18:16 +0000127 virtual void ChangeSection(const MCSection *Section,
128 const MCExpr *Subsection);
Daniel Dunbara11af532009-06-24 01:03:06 +0000129
Rafael Espindolad80781b2010-09-15 21:48:40 +0000130 virtual void InitSections() {
Eli Bendersky030f63a2013-01-14 19:04:57 +0000131 InitToTextSection();
132 }
133
134 virtual void InitToTextSection() {
Nico Rieckef1762b2013-04-14 21:18:36 +0000135 SwitchSection(getContext().getObjectFileInfo()->getTextSection());
Rafael Espindolad80781b2010-09-15 21:48:40 +0000136 }
137
Chris Lattner46a947d2009-08-17 04:17:34 +0000138 virtual void EmitLabel(MCSymbol *Symbol);
Reed Kotler2c3a4642012-12-16 04:00:45 +0000139 virtual void EmitDebugLabel(MCSymbol *Symbol);
140
Rafael Espindola277abc82011-04-30 16:34:57 +0000141 virtual void EmitEHSymAttributes(const MCSymbol *Symbol,
142 MCSymbol *EHSymbol);
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000143 virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
Daniel Dunbarcddd2362013-01-18 01:25:48 +0000144 virtual void EmitLinkerOptions(ArrayRef<std::string> Options);
Jim Grosbach3e965312012-05-18 19:12:01 +0000145 virtual void EmitDataRegion(MCDataRegionType Kind);
Jim Grosbachce792992010-11-05 22:08:08 +0000146 virtual void EmitThumbFunc(MCSymbol *Func);
Daniel Dunbara11af532009-06-24 01:03:06 +0000147
Daniel Dunbar821e3332009-08-31 08:09:28 +0000148 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
Rafael Espindola484291c2010-11-01 14:28:48 +0000149 virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
Rafael Espindola32a006e2010-12-03 00:55:40 +0000150 virtual void EmitDwarfAdvanceLineAddr(int64_t LineDelta,
151 const MCSymbol *LastLabel,
Evan Cheng672b93a2011-07-14 05:43:07 +0000152 const MCSymbol *Label,
153 unsigned PointerSize);
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000154 virtual void EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
155 const MCSymbol *Label);
Daniel Dunbara11af532009-06-24 01:03:06 +0000156
Saleem Abdulrasool1c9cd022013-08-09 01:52:03 +0000157 virtual bool EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
Kevin Enderbya5c78322009-07-13 21:03:15 +0000158
Chris Lattner46a947d2009-08-17 04:17:34 +0000159 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
Chris Lattnerb54b9dd2010-05-08 19:54:22 +0000160 virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol);
161 virtual void EmitCOFFSymbolStorageClass(int StorageClass);
162 virtual void EmitCOFFSymbolType(int Type);
163 virtual void EndCOFFSymbolDef();
Rafael Espindola8f7d12c2011-12-17 01:14:52 +0000164 virtual void EmitCOFFSecRel32(MCSymbol const *Symbol);
Chris Lattner99328ad2010-01-25 07:52:13 +0000165 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
Chris Lattner9eb158d2010-01-23 07:47:02 +0000166 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000167 unsigned ByteAlignment);
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000168
Chris Lattner9eb158d2010-01-23 07:47:02 +0000169 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
170 ///
171 /// @param Symbol - The common symbol to emit.
172 /// @param Size - The size of the common symbol.
Dmitri Gribenkoa00b80b2012-08-23 16:54:08 +0000173 /// @param ByteAlignment - The alignment of the common symbol in bytes.
Benjamin Kramer36a16012011-09-01 23:04:27 +0000174 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
175 unsigned ByteAlignment);
Jim Grosbach00545e12010-09-22 18:16:55 +0000176
Daniel Dunbar8751b942009-08-28 05:48:22 +0000177 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
Evan Chengc90a1fc2012-06-22 20:14:46 +0000178 uint64_t Size = 0, unsigned ByteAlignment = 0);
Kevin Enderby71148242009-07-14 21:35:03 +0000179
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000180 virtual void EmitTBSSSymbol (const MCSection *Section, MCSymbol *Symbol,
181 uint64_t Size, unsigned ByteAlignment = 0);
Jim Grosbach00545e12010-09-22 18:16:55 +0000182
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000183 virtual void EmitBytes(StringRef Data);
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000184
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000185 virtual void EmitValueImpl(const MCExpr *Value, unsigned Size);
186 virtual void EmitIntValue(uint64_t Value, unsigned Size);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000187
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000188 virtual void EmitULEB128Value(const MCExpr *Value);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000189
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000190 virtual void EmitSLEB128Value(const MCExpr *Value);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000191
Akira Hatanaka6c2cf8b2012-02-03 04:33:00 +0000192 virtual void EmitGPRel64Value(const MCExpr *Value);
193
Chris Lattner718fb592010-01-25 21:28:50 +0000194 virtual void EmitGPRel32Value(const MCExpr *Value);
Jim Grosbach00545e12010-09-22 18:16:55 +0000195
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000196
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000197 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000198
Chris Lattner46a947d2009-08-17 04:17:34 +0000199 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
200 unsigned ValueSize = 1,
201 unsigned MaxBytesToEmit = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000202
Kevin Enderby6e720482010-02-23 18:26:34 +0000203 virtual void EmitCodeAlignment(unsigned ByteAlignment,
204 unsigned MaxBytesToEmit = 0);
205
Jim Grosbachebd4c052012-01-27 00:37:08 +0000206 virtual bool EmitValueToOffset(const MCExpr *Offset,
Chris Lattner46a947d2009-08-17 04:17:34 +0000207 unsigned char Value = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000208
Chris Lattnera6594fc2010-01-25 18:58:59 +0000209 virtual void EmitFileDirective(StringRef Filename);
Nick Lewycky44d798d2011-10-17 23:05:28 +0000210 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
Manman Ren3de61b42013-03-07 01:42:00 +0000211 StringRef Filename, unsigned CUID = 0);
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000212 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
213 unsigned Column, unsigned Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +0000214 unsigned Isa, unsigned Discriminator,
215 StringRef FileName);
Chris Lattnera6594fc2010-01-25 18:58:59 +0000216
Rafael Espindola713c4bf2011-05-10 13:39:48 +0000217 virtual void EmitCFISections(bool EH, bool Debug);
Rafael Espindola066c2f42011-04-12 23:59:07 +0000218 virtual void EmitCFIDefCfa(int64_t Register, int64_t Offset);
219 virtual void EmitCFIDefCfaOffset(int64_t Offset);
220 virtual void EmitCFIDefCfaRegister(int64_t Register);
221 virtual void EmitCFIOffset(int64_t Register, int64_t Offset);
222 virtual void EmitCFIPersonality(const MCSymbol *Sym, unsigned Encoding);
223 virtual void EmitCFILsda(const MCSymbol *Sym, unsigned Encoding);
224 virtual void EmitCFIRememberState();
225 virtual void EmitCFIRestoreState();
226 virtual void EmitCFISameValue(int64_t Register);
227 virtual void EmitCFIRelOffset(int64_t Register, int64_t Offset);
228 virtual void EmitCFIAdjustCfaOffset(int64_t Adjustment);
Rafael Espindola16d7d432012-01-23 21:51:52 +0000229 virtual void EmitCFISignalFrame();
Rafael Espindolac8fec7e2012-11-23 16:59:41 +0000230 virtual void EmitCFIUndefined(int64_t Register);
Rafael Espindolaf4f14f62012-11-25 15:14:49 +0000231 virtual void EmitCFIRegister(int64_t Register1, int64_t Register2);
Venkatraman Govindaraju83ba58e2013-09-26 14:49:40 +0000232 virtual void EmitCFIWindowSave();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000233
Charles Davisfbc539f2011-05-22 21:12:15 +0000234 virtual void EmitWin64EHStartProc(const MCSymbol *Symbol);
Charles Davis0e30f022011-05-18 04:58:05 +0000235 virtual void EmitWin64EHEndProc();
Charles Davisf0709012011-05-18 20:54:10 +0000236 virtual void EmitWin64EHStartChained();
237 virtual void EmitWin64EHEndChained();
Charles Davis440596f2011-05-19 17:46:39 +0000238 virtual void EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
239 bool Except);
240 virtual void EmitWin64EHHandlerData();
Charles Davisc3b16282011-05-19 19:35:55 +0000241 virtual void EmitWin64EHPushReg(unsigned Register);
242 virtual void EmitWin64EHSetFrame(unsigned Register, unsigned Offset);
243 virtual void EmitWin64EHAllocStack(unsigned Size);
244 virtual void EmitWin64EHSaveReg(unsigned Register, unsigned Offset);
245 virtual void EmitWin64EHSaveXMM(unsigned Register, unsigned Offset);
Charles Davis0e30f022011-05-18 04:58:05 +0000246 virtual void EmitWin64EHPushFrame(bool Code);
247 virtual void EmitWin64EHEndProlog();
248
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000249 virtual void EmitFnStart();
250 virtual void EmitFnEnd();
251 virtual void EmitCantUnwind();
252 virtual void EmitPersonality(const MCSymbol *Personality);
253 virtual void EmitHandlerData();
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000254 virtual void EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset = 0);
255 virtual void EmitPad(int64_t Offset);
256 virtual void EmitRegSave(const SmallVectorImpl<unsigned> &RegList, bool);
257
Adhemerval Zanellaf35c62b2012-10-15 15:43:14 +0000258 virtual void EmitTCEntry(const MCSymbol &S);
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000259
Chris Lattnera6594fc2010-01-25 18:58:59 +0000260 virtual void EmitInstruction(const MCInst &Inst);
Jim Grosbach00545e12010-09-22 18:16:55 +0000261
Eli Bendersky4766ef42012-12-20 19:05:53 +0000262 virtual void EmitBundleAlignMode(unsigned AlignPow2);
Eli Bendersky6c1d4972013-01-07 21:51:08 +0000263 virtual void EmitBundleLock(bool AlignToEnd);
Eli Bendersky4766ef42012-12-20 19:05:53 +0000264 virtual void EmitBundleUnlock();
265
Jim Grosbachbd4ec842010-09-22 18:18:30 +0000266 /// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +0000267 /// the specified string in the output .s file. This capability is
268 /// indicated by the hasRawTextSupport() predicate.
269 virtual void EmitRawText(StringRef String);
Jim Grosbach00545e12010-09-22 18:16:55 +0000270
Rafael Espindola99b42372012-01-07 03:13:18 +0000271 virtual void FinishImpl();
Jim Grosbach00545e12010-09-22 18:16:55 +0000272
Chris Lattner46a947d2009-08-17 04:17:34 +0000273 /// @}
Chandler Carruth5da36652013-01-31 23:29:57 +0000274
275 static bool classof(const MCStreamer *S) {
Chandler Carruth3529d1a2013-02-01 00:04:33 +0000276 return S->getKind() == SK_AsmStreamer;
Chandler Carruth5da36652013-01-31 23:29:57 +0000277 }
Chris Lattner46a947d2009-08-17 04:17:34 +0000278};
Daniel Dunbar84a29262009-06-24 19:25:34 +0000279
Chris Lattner46a947d2009-08-17 04:17:34 +0000280} // end anonymous namespace.
Daniel Dunbara11af532009-06-24 01:03:06 +0000281
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000282/// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner86e22112010-01-22 07:29:22 +0000283/// file if applicable as a QoI issue to make the output of the compiler
284/// more readable. This only affects the MCAsmStreamer, and only when
285/// verbose assembly output is enabled.
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000286void MCAsmStreamer::AddComment(const Twine &T) {
Chris Lattner86e22112010-01-22 07:29:22 +0000287 if (!IsVerboseAsm) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000288
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000289 // Make sure that CommentStream is flushed.
290 CommentStream.flush();
Jim Grosbach00545e12010-09-22 18:16:55 +0000291
Chris Lattner86e22112010-01-22 07:29:22 +0000292 T.toVector(CommentToEmit);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000293 // Each comment goes on its own line.
294 CommentToEmit.push_back('\n');
Jim Grosbach00545e12010-09-22 18:16:55 +0000295
Chris Lattner14ca1772010-01-22 21:16:10 +0000296 // Tell the comment stream that the vector changed underneath it.
297 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000298}
299
300void MCAsmStreamer::EmitCommentsAndEOL() {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000301 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) {
302 OS << '\n';
303 return;
304 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000305
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000306 CommentStream.flush();
Chris Lattner86e22112010-01-22 07:29:22 +0000307 StringRef Comments = CommentToEmit.str();
Jim Grosbach00545e12010-09-22 18:16:55 +0000308
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000309 assert(Comments.back() == '\n' &&
310 "Comment array not newline terminated");
311 do {
Chris Lattner86e22112010-01-22 07:29:22 +0000312 // Emit a line of comments.
Bill Wendling99cb6222013-06-18 07:20:20 +0000313 OS.PadToColumn(MAI->getCommentColumn());
Chris Lattner86e22112010-01-22 07:29:22 +0000314 size_t Position = Comments.find('\n');
Bill Wendling99cb6222013-06-18 07:20:20 +0000315 OS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) <<'\n';
Jim Grosbach00545e12010-09-22 18:16:55 +0000316
Chris Lattner86e22112010-01-22 07:29:22 +0000317 Comments = Comments.substr(Position+1);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000318 } while (!Comments.empty());
Jim Grosbach00545e12010-09-22 18:16:55 +0000319
Chris Lattner14ca1772010-01-22 21:16:10 +0000320 CommentToEmit.clear();
321 // Tell the comment stream that the vector changed underneath it.
322 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000323}
324
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000325static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
326 assert(Bytes && "Invalid size!");
327 return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
328}
329
Peter Collingbournedf39be62013-04-17 21:18:16 +0000330void MCAsmStreamer::ChangeSection(const MCSection *Section,
331 const MCExpr *Subsection) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000332 assert(Section && "Cannot switch to a null section!");
Bill Wendling99cb6222013-06-18 07:20:20 +0000333 Section->PrintSwitchToSection(*MAI, OS, Subsection);
Daniel Dunbara11af532009-06-24 01:03:06 +0000334}
335
Rafael Espindola277abc82011-04-30 16:34:57 +0000336void MCAsmStreamer::EmitEHSymAttributes(const MCSymbol *Symbol,
337 MCSymbol *EHSymbol) {
338 if (UseCFI)
339 return;
340
341 unsigned Flags = FlagMap.lookup(Symbol);
342
343 if (Flags & EHGlobal)
344 EmitSymbolAttribute(EHSymbol, MCSA_Global);
345 if (Flags & EHWeakDefinition)
346 EmitSymbolAttribute(EHSymbol, MCSA_WeakDefinition);
347 if (Flags & EHPrivateExtern)
348 EmitSymbolAttribute(EHSymbol, MCSA_PrivateExtern);
349}
350
Daniel Dunbara11af532009-06-24 01:03:06 +0000351void MCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
Daniel Dunbar8906ff12009-08-22 07:22:36 +0000352 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Rafael Espindolaed708f92011-04-27 15:21:19 +0000353 MCStreamer::EmitLabel(Symbol);
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000354
Bill Wendling99cb6222013-06-18 07:20:20 +0000355 OS << *Symbol << MAI->getLabelSuffix();
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000356 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000357}
358
Reed Kotler2c3a4642012-12-16 04:00:45 +0000359void MCAsmStreamer::EmitDebugLabel(MCSymbol *Symbol) {
360 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
361 MCStreamer::EmitDebugLabel(Symbol);
362
Bill Wendling99cb6222013-06-18 07:20:20 +0000363 OS << *Symbol << MAI->getDebugLabelSuffix();
Reed Kotler2c3a4642012-12-16 04:00:45 +0000364 EmitEOL();
365}
366
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000367void MCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
Kevin Enderbyf96db462009-07-16 17:56:39 +0000368 switch (Flag) {
Jason W Kimafd1cc22010-09-30 02:45:56 +0000369 case MCAF_SyntaxUnified: OS << "\t.syntax unified"; break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000370 case MCAF_SubsectionsViaSymbols: OS << ".subsections_via_symbols"; break;
Bill Wendling99cb6222013-06-18 07:20:20 +0000371 case MCAF_Code16: OS << '\t'<< MAI->getCode16Directive();break;
372 case MCAF_Code32: OS << '\t'<< MAI->getCode32Directive();break;
373 case MCAF_Code64: OS << '\t'<< MAI->getCode64Directive();break;
Kevin Enderbyf96db462009-07-16 17:56:39 +0000374 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000375 EmitEOL();
Kevin Enderbya5c78322009-07-13 21:03:15 +0000376}
377
Daniel Dunbarcddd2362013-01-18 01:25:48 +0000378void MCAsmStreamer::EmitLinkerOptions(ArrayRef<std::string> Options) {
379 assert(!Options.empty() && "At least one option is required!");
380 OS << "\t.linker_option \"" << Options[0] << '"';
381 for (ArrayRef<std::string>::iterator it = Options.begin() + 1,
382 ie = Options.end(); it != ie; ++it) {
383 OS << ", " << '"' << *it << '"';
384 }
Daniel Dunbar6d49b682013-01-18 19:37:00 +0000385 OS << "\n";
Daniel Dunbarcddd2362013-01-18 01:25:48 +0000386}
387
Jim Grosbach3e965312012-05-18 19:12:01 +0000388void MCAsmStreamer::EmitDataRegion(MCDataRegionType Kind) {
Bill Wendling99cb6222013-06-18 07:20:20 +0000389 if (!MAI->doesSupportDataRegionDirectives())
Jim Grosbach3e965312012-05-18 19:12:01 +0000390 return;
391 switch (Kind) {
392 case MCDR_DataRegion: OS << "\t.data_region"; break;
393 case MCDR_DataRegionJT8: OS << "\t.data_region jt8"; break;
394 case MCDR_DataRegionJT16: OS << "\t.data_region jt16"; break;
395 case MCDR_DataRegionJT32: OS << "\t.data_region jt32"; break;
396 case MCDR_DataRegionEnd: OS << "\t.end_data_region"; break;
397 }
398 EmitEOL();
399}
400
Jim Grosbachce792992010-11-05 22:08:08 +0000401void MCAsmStreamer::EmitThumbFunc(MCSymbol *Func) {
402 // This needs to emit to a temporary string to get properly quoted
403 // MCSymbols when they have spaces in them.
404 OS << "\t.thumb_func";
Rafael Espindola64695402011-05-16 16:17:21 +0000405 // Only Mach-O hasSubsectionsViaSymbols()
Bill Wendling99cb6222013-06-18 07:20:20 +0000406 if (MAI->hasSubsectionsViaSymbols())
Jim Grosbachce792992010-11-05 22:08:08 +0000407 OS << '\t' << *Func;
408 EmitEOL();
409}
410
Daniel Dunbar821e3332009-08-31 08:09:28 +0000411void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000412 OS << *Symbol << " = " << *Value;
413 EmitEOL();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000414
415 // FIXME: Lift context changes into super class.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000416 Symbol->setVariableValue(Value);
Daniel Dunbara11af532009-06-24 01:03:06 +0000417}
418
Rafael Espindola484291c2010-11-01 14:28:48 +0000419void MCAsmStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
420 OS << ".weakref " << *Alias << ", " << *Symbol;
421 EmitEOL();
422}
423
Rafael Espindola32a006e2010-12-03 00:55:40 +0000424void MCAsmStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
425 const MCSymbol *LastLabel,
Evan Cheng672b93a2011-07-14 05:43:07 +0000426 const MCSymbol *Label,
427 unsigned PointerSize) {
428 EmitDwarfSetLineAddr(LineDelta, Label, PointerSize);
Rafael Espindola32a006e2010-12-03 00:55:40 +0000429}
430
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000431void MCAsmStreamer::EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
432 const MCSymbol *Label) {
433 EmitIntValue(dwarf::DW_CFA_advance_loc4, 1);
434 const MCExpr *AddrDelta = BuildSymbolDiff(getContext(), Label, LastLabel);
Rafael Espindolaa6f26782011-05-19 21:40:34 +0000435 AddrDelta = ForceExpAbs(AddrDelta);
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000436 EmitValue(AddrDelta, 4);
437}
438
439
Saleem Abdulrasool1c9cd022013-08-09 01:52:03 +0000440bool MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000441 MCSymbolAttr Attribute) {
Daniel Dunbara11af532009-06-24 01:03:06 +0000442 switch (Attribute) {
Craig Topper85814382012-02-07 05:05:23 +0000443 case MCSA_Invalid: llvm_unreachable("Invalid symbol attribute");
Chris Lattnered0ab152010-01-25 18:30:45 +0000444 case MCSA_ELF_TypeFunction: /// .type _foo, STT_FUNC # aka @function
445 case MCSA_ELF_TypeIndFunction: /// .type _foo, STT_GNU_IFUNC
446 case MCSA_ELF_TypeObject: /// .type _foo, STT_OBJECT # aka @object
447 case MCSA_ELF_TypeTLS: /// .type _foo, STT_TLS # aka @tls_object
448 case MCSA_ELF_TypeCommon: /// .type _foo, STT_COMMON # aka @common
449 case MCSA_ELF_TypeNoType: /// .type _foo, STT_NOTYPE # aka @notype
Rafael Espindolae9c0ff22010-11-13 04:55:06 +0000450 case MCSA_ELF_TypeGnuUniqueObject: /// .type _foo, @gnu_unique_object
Saleem Abdulrasool1c9cd022013-08-09 01:52:03 +0000451 if (!MAI->hasDotTypeDotSizeDirective())
452 return false; // Symbol attribute not supported
Dan Gohman523d70e2010-02-04 01:42:13 +0000453 OS << "\t.type\t" << *Symbol << ','
Bill Wendling99cb6222013-06-18 07:20:20 +0000454 << ((MAI->getCommentString()[0] != '@') ? '@' : '%');
Chris Lattnered0ab152010-01-25 18:30:45 +0000455 switch (Attribute) {
Saleem Abdulrasool1c9cd022013-08-09 01:52:03 +0000456 default: return false;
Chris Lattnered0ab152010-01-25 18:30:45 +0000457 case MCSA_ELF_TypeFunction: OS << "function"; break;
458 case MCSA_ELF_TypeIndFunction: OS << "gnu_indirect_function"; break;
459 case MCSA_ELF_TypeObject: OS << "object"; break;
460 case MCSA_ELF_TypeTLS: OS << "tls_object"; break;
461 case MCSA_ELF_TypeCommon: OS << "common"; break;
462 case MCSA_ELF_TypeNoType: OS << "no_type"; break;
Rafael Espindolae9c0ff22010-11-13 04:55:06 +0000463 case MCSA_ELF_TypeGnuUniqueObject: OS << "gnu_unique_object"; break;
Chris Lattnered0ab152010-01-25 18:30:45 +0000464 }
465 EmitEOL();
Saleem Abdulrasool1c9cd022013-08-09 01:52:03 +0000466 return true;
Chris Lattnered0ab152010-01-25 18:30:45 +0000467 case MCSA_Global: // .globl/.global
Bill Wendling99cb6222013-06-18 07:20:20 +0000468 OS << MAI->getGlobalDirective();
Rafael Espindola277abc82011-04-30 16:34:57 +0000469 FlagMap[Symbol] |= EHGlobal;
Chris Lattnered0ab152010-01-25 18:30:45 +0000470 break;
Chris Lattner61abd7b2010-06-21 20:35:01 +0000471 case MCSA_Hidden: OS << "\t.hidden\t"; break;
472 case MCSA_IndirectSymbol: OS << "\t.indirect_symbol\t"; break;
473 case MCSA_Internal: OS << "\t.internal\t"; break;
474 case MCSA_LazyReference: OS << "\t.lazy_reference\t"; break;
475 case MCSA_Local: OS << "\t.local\t"; break;
476 case MCSA_NoDeadStrip: OS << "\t.no_dead_strip\t"; break;
Kevin Enderbye8e98d72010-11-19 18:39:33 +0000477 case MCSA_SymbolResolver: OS << "\t.symbol_resolver\t"; break;
Rafael Espindola277abc82011-04-30 16:34:57 +0000478 case MCSA_PrivateExtern:
479 OS << "\t.private_extern\t";
480 FlagMap[Symbol] |= EHPrivateExtern;
481 break;
Chris Lattner61abd7b2010-06-21 20:35:01 +0000482 case MCSA_Protected: OS << "\t.protected\t"; break;
483 case MCSA_Reference: OS << "\t.reference\t"; break;
484 case MCSA_Weak: OS << "\t.weak\t"; break;
Rafael Espindola277abc82011-04-30 16:34:57 +0000485 case MCSA_WeakDefinition:
486 OS << "\t.weak_definition\t";
487 FlagMap[Symbol] |= EHWeakDefinition;
488 break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000489 // .weak_reference
Bill Wendling99cb6222013-06-18 07:20:20 +0000490 case MCSA_WeakReference: OS << MAI->getWeakRefDirective(); break;
Kevin Enderbyf59cac52010-07-08 17:22:42 +0000491 case MCSA_WeakDefAutoPrivate: OS << "\t.weak_def_can_be_hidden\t"; break;
Daniel Dunbara11af532009-06-24 01:03:06 +0000492 }
493
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000494 OS << *Symbol;
495 EmitEOL();
Saleem Abdulrasool1c9cd022013-08-09 01:52:03 +0000496
497 return true;
Daniel Dunbara11af532009-06-24 01:03:06 +0000498}
499
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000500void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000501 OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
502 EmitEOL();
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000503}
504
Chris Lattnerb54b9dd2010-05-08 19:54:22 +0000505void MCAsmStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {
506 OS << "\t.def\t " << *Symbol << ';';
507 EmitEOL();
508}
509
510void MCAsmStreamer::EmitCOFFSymbolStorageClass (int StorageClass) {
511 OS << "\t.scl\t" << StorageClass << ';';
512 EmitEOL();
513}
514
515void MCAsmStreamer::EmitCOFFSymbolType (int Type) {
516 OS << "\t.type\t" << Type << ';';
517 EmitEOL();
518}
519
520void MCAsmStreamer::EndCOFFSymbolDef() {
521 OS << "\t.endef";
522 EmitEOL();
523}
524
Rafael Espindola8f7d12c2011-12-17 01:14:52 +0000525void MCAsmStreamer::EmitCOFFSecRel32(MCSymbol const *Symbol) {
526 OS << "\t.secrel32\t" << *Symbol << '\n';
527 EmitEOL();
528}
529
Chris Lattner99328ad2010-01-25 07:52:13 +0000530void MCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
Bill Wendling99cb6222013-06-18 07:20:20 +0000531 assert(MAI->hasDotTypeDotSizeDirective());
Chris Lattner99328ad2010-01-25 07:52:13 +0000532 OS << "\t.size\t" << *Symbol << ", " << *Value << '\n';
533}
534
Chris Lattner9eb158d2010-01-23 07:47:02 +0000535void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000536 unsigned ByteAlignment) {
Richard Mittoneb46def2013-09-23 17:56:20 +0000537 // Common symbols do not belong to any actual section.
538 AssignSection(Symbol, NULL);
Richard Mitton5cc319a2013-09-19 23:21:01 +0000539
Chris Lattner9eb158d2010-01-23 07:47:02 +0000540 OS << "\t.comm\t" << *Symbol << ',' << Size;
Chris Lattner6559d762010-01-25 07:29:13 +0000541 if (ByteAlignment != 0) {
Bill Wendling99cb6222013-06-18 07:20:20 +0000542 if (MAI->getCOMMDirectiveAlignmentIsInBytes())
Chris Lattner4ed54382010-01-19 06:01:04 +0000543 OS << ',' << ByteAlignment;
544 else
545 OS << ',' << Log2_32(ByteAlignment);
546 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000547 EmitEOL();
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000548}
549
Chris Lattner9eb158d2010-01-23 07:47:02 +0000550/// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
551///
552/// @param Symbol - The common symbol to emit.
553/// @param Size - The size of the common symbol.
Benjamin Kramer36a16012011-09-01 23:04:27 +0000554void MCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
555 unsigned ByteAlign) {
Richard Mittoneb46def2013-09-23 17:56:20 +0000556 // Common symbols do not belong to any actual section.
557 AssignSection(Symbol, NULL);
Richard Mitton5cc319a2013-09-19 23:21:01 +0000558
Chris Lattner9eb158d2010-01-23 07:47:02 +0000559 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
Benjamin Kramer36a16012011-09-01 23:04:27 +0000560 if (ByteAlign > 1) {
Bill Wendling99cb6222013-06-18 07:20:20 +0000561 switch (MAI->getLCOMMDirectiveAlignmentType()) {
Benjamin Kramera9e37c52012-09-07 21:08:01 +0000562 case LCOMM::NoAlignment:
563 llvm_unreachable("alignment not supported on .lcomm!");
564 case LCOMM::ByteAlignment:
Benjamin Kramer39646d92012-09-07 17:25:13 +0000565 OS << ',' << ByteAlign;
Benjamin Kramera9e37c52012-09-07 21:08:01 +0000566 break;
567 case LCOMM::Log2Alignment:
Benjamin Kramer39646d92012-09-07 17:25:13 +0000568 assert(isPowerOf2_32(ByteAlign) && "alignment must be a power of 2");
569 OS << ',' << Log2_32(ByteAlign);
Benjamin Kramera9e37c52012-09-07 21:08:01 +0000570 break;
Benjamin Kramer39646d92012-09-07 17:25:13 +0000571 }
Benjamin Kramer36a16012011-09-01 23:04:27 +0000572 }
Chris Lattner9eb158d2010-01-23 07:47:02 +0000573 EmitEOL();
574}
575
Daniel Dunbar8751b942009-08-28 05:48:22 +0000576void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Evan Chengc90a1fc2012-06-22 20:14:46 +0000577 uint64_t Size, unsigned ByteAlignment) {
Richard Mitton5cc319a2013-09-19 23:21:01 +0000578 if (Symbol)
579 AssignSection(Symbol, Section);
580
Daniel Dunbar011e4db2009-08-13 23:36:34 +0000581 // Note: a .zerofill directive does not switch sections.
Chris Lattner93b6db32009-08-08 23:39:42 +0000582 OS << ".zerofill ";
Jim Grosbach00545e12010-09-22 18:16:55 +0000583
Chris Lattner93b6db32009-08-08 23:39:42 +0000584 // This is a mach-o specific directive.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000585 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
Daniel Dunbar12de0df2009-08-14 18:51:45 +0000586 OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
Jim Grosbach00545e12010-09-22 18:16:55 +0000587
Chris Lattner9be3fee2009-07-10 22:20:30 +0000588 if (Symbol != NULL) {
Chris Lattner10b318b2010-01-17 21:43:43 +0000589 OS << ',' << *Symbol << ',' << Size;
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000590 if (ByteAlignment != 0)
591 OS << ',' << Log2_32(ByteAlignment);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000592 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000593 EmitEOL();
Chris Lattner9be3fee2009-07-10 22:20:30 +0000594}
595
Eric Christopherd04d98d2010-05-17 02:13:02 +0000596// .tbss sym, size, align
597// This depends that the symbol has already been mangled from the original,
598// e.g. _a.
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000599void MCAsmStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
600 uint64_t Size, unsigned ByteAlignment) {
Richard Mitton5cc319a2013-09-19 23:21:01 +0000601 AssignSection(Symbol, Section);
602
Eric Christopher482eba02010-05-14 01:50:28 +0000603 assert(Symbol != NULL && "Symbol shouldn't be NULL!");
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000604 // Instead of using the Section we'll just use the shortcut.
605 // This is a mach-o specific directive and section.
Eric Christopherd04d98d2010-05-17 02:13:02 +0000606 OS << ".tbss " << *Symbol << ", " << Size;
Jim Grosbach00545e12010-09-22 18:16:55 +0000607
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000608 // Output align if we have it. We default to 1 so don't bother printing
609 // that.
610 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
Jim Grosbach00545e12010-09-22 18:16:55 +0000611
Eric Christopher482eba02010-05-14 01:50:28 +0000612 EmitEOL();
613}
614
Chris Lattner12e555c2010-01-23 00:15:00 +0000615static inline char toOctal(int X) { return (X&7)+'0'; }
616
Chris Lattnera6594fc2010-01-25 18:58:59 +0000617static void PrintQuotedString(StringRef Data, raw_ostream &OS) {
618 OS << '"';
Jim Grosbach00545e12010-09-22 18:16:55 +0000619
Chris Lattnera6594fc2010-01-25 18:58:59 +0000620 for (unsigned i = 0, e = Data.size(); i != e; ++i) {
621 unsigned char C = Data[i];
622 if (C == '"' || C == '\\') {
623 OS << '\\' << (char)C;
624 continue;
625 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000626
Chris Lattnera6594fc2010-01-25 18:58:59 +0000627 if (isprint((unsigned char)C)) {
628 OS << (char)C;
629 continue;
630 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000631
Chris Lattnera6594fc2010-01-25 18:58:59 +0000632 switch (C) {
633 case '\b': OS << "\\b"; break;
634 case '\f': OS << "\\f"; break;
635 case '\n': OS << "\\n"; break;
636 case '\r': OS << "\\r"; break;
637 case '\t': OS << "\\t"; break;
638 default:
639 OS << '\\';
640 OS << toOctal(C >> 6);
641 OS << toOctal(C >> 3);
642 OS << toOctal(C >> 0);
643 break;
644 }
645 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000646
Chris Lattnera6594fc2010-01-25 18:58:59 +0000647 OS << '"';
648}
649
650
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000651void MCAsmStreamer::EmitBytes(StringRef Data) {
Peter Collingbournedf39be62013-04-17 21:18:16 +0000652 assert(getCurrentSection().first &&
653 "Cannot emit contents before setting section!");
Chris Lattner12e555c2010-01-23 00:15:00 +0000654 if (Data.empty()) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000655
Chris Lattner12e555c2010-01-23 00:15:00 +0000656 if (Data.size() == 1) {
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000657 OS << MAI->getData8bitsDirective();
Chris Lattner12e555c2010-01-23 00:15:00 +0000658 OS << (unsigned)(unsigned char)Data[0];
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000659 EmitEOL();
Chris Lattner12e555c2010-01-23 00:15:00 +0000660 return;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000661 }
Chris Lattner12e555c2010-01-23 00:15:00 +0000662
663 // If the data ends with 0 and the target supports .asciz, use it, otherwise
664 // use .ascii
Bill Wendling99cb6222013-06-18 07:20:20 +0000665 if (MAI->getAscizDirective() && Data.back() == 0) {
666 OS << MAI->getAscizDirective();
Chris Lattner12e555c2010-01-23 00:15:00 +0000667 Data = Data.substr(0, Data.size()-1);
668 } else {
Bill Wendling99cb6222013-06-18 07:20:20 +0000669 OS << MAI->getAsciiDirective();
Chris Lattner12e555c2010-01-23 00:15:00 +0000670 }
671
Chris Lattnera6594fc2010-01-25 18:58:59 +0000672 PrintQuotedString(Data, OS);
Chris Lattner12e555c2010-01-23 00:15:00 +0000673 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000674}
675
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000676void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size) {
677 EmitValue(MCConstantExpr::Create(Value, getContext()), Size);
Rafael Espindola2df042c2010-12-03 02:54:21 +0000678}
679
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000680void MCAsmStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size) {
Peter Collingbournedf39be62013-04-17 21:18:16 +0000681 assert(getCurrentSection().first &&
682 "Cannot emit contents before setting section!");
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000683 const char *Directive = 0;
684 switch (Size) {
685 default: break;
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000686 case 1: Directive = MAI->getData8bitsDirective(); break;
687 case 2: Directive = MAI->getData16bitsDirective(); break;
688 case 4: Directive = MAI->getData32bitsDirective(); break;
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000689 case 8:
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000690 Directive = MAI->getData64bitsDirective();
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000691 // If the target doesn't support 64-bit data, emit as two 32-bit halves.
692 if (Directive) break;
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000693 int64_t IntValue;
694 if (!Value->EvaluateAsAbsolute(IntValue))
695 report_fatal_error("Don't know how to emit this value.");
Bill Wendling99cb6222013-06-18 07:20:20 +0000696 if (MAI->isLittleEndian()) {
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000697 EmitIntValue((uint32_t)(IntValue >> 0 ), 4);
698 EmitIntValue((uint32_t)(IntValue >> 32), 4);
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000699 } else {
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000700 EmitIntValue((uint32_t)(IntValue >> 32), 4);
701 EmitIntValue((uint32_t)(IntValue >> 0 ), 4);
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000702 }
703 return;
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000704 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000705
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000706 assert(Directive && "Invalid size for machine code value!");
Chris Lattner718fb592010-01-25 21:28:50 +0000707 OS << Directive << *Value;
Chris Lattner86e22112010-01-22 07:29:22 +0000708 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000709}
710
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000711void MCAsmStreamer::EmitULEB128Value(const MCExpr *Value) {
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000712 int64_t IntValue;
713 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000714 EmitULEB128IntValue(IntValue);
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000715 return;
716 }
Bill Wendling99cb6222013-06-18 07:20:20 +0000717 assert(MAI->hasLEB128() && "Cannot print a .uleb");
Rafael Espindola73873452010-11-04 18:17:08 +0000718 OS << ".uleb128 " << *Value;
Rafael Espindola3ff57092010-11-02 17:22:24 +0000719 EmitEOL();
720}
721
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000722void MCAsmStreamer::EmitSLEB128Value(const MCExpr *Value) {
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000723 int64_t IntValue;
724 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000725 EmitSLEB128IntValue(IntValue);
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000726 return;
727 }
Bill Wendling99cb6222013-06-18 07:20:20 +0000728 assert(MAI->hasLEB128() && "Cannot print a .sleb");
Rafael Espindola73873452010-11-04 18:17:08 +0000729 OS << ".sleb128 " << *Value;
Rafael Espindola3ff57092010-11-02 17:22:24 +0000730 EmitEOL();
731}
732
Akira Hatanaka6c2cf8b2012-02-03 04:33:00 +0000733void MCAsmStreamer::EmitGPRel64Value(const MCExpr *Value) {
Bill Wendling99cb6222013-06-18 07:20:20 +0000734 assert(MAI->getGPRel64Directive() != 0);
735 OS << MAI->getGPRel64Directive() << *Value;
Akira Hatanaka6c2cf8b2012-02-03 04:33:00 +0000736 EmitEOL();
737}
738
Chris Lattner718fb592010-01-25 21:28:50 +0000739void MCAsmStreamer::EmitGPRel32Value(const MCExpr *Value) {
Bill Wendling99cb6222013-06-18 07:20:20 +0000740 assert(MAI->getGPRel32Directive() != 0);
741 OS << MAI->getGPRel32Directive() << *Value;
Chris Lattner718fb592010-01-25 21:28:50 +0000742 EmitEOL();
743}
744
745
Chris Lattner6113b3d2010-01-19 18:52:28 +0000746/// EmitFill - Emit NumBytes bytes worth of the value specified by
747/// FillValue. This implements directives such as '.space'.
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000748void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue) {
Chris Lattner8a6d7ac2010-01-19 18:58:52 +0000749 if (NumBytes == 0) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000750
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000751 if (const char *ZeroDirective = MAI->getZeroDirective()) {
752 OS << ZeroDirective << NumBytes;
753 if (FillValue != 0)
754 OS << ',' << (int)FillValue;
755 EmitEOL();
756 return;
757 }
Chris Lattneraaec2052010-01-19 19:46:13 +0000758
759 // Emit a byte at a time.
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000760 MCStreamer::EmitFill(NumBytes, FillValue);
Chris Lattner6113b3d2010-01-19 18:52:28 +0000761}
762
Daniel Dunbar84a29262009-06-24 19:25:34 +0000763void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
764 unsigned ValueSize,
765 unsigned MaxBytesToEmit) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000766 // Some assemblers don't support non-power of two alignments, so we always
767 // emit alignments as a power of two if possible.
768 if (isPowerOf2_32(ByteAlignment)) {
Chris Lattner6e579c62009-08-19 06:35:36 +0000769 switch (ValueSize) {
770 default: llvm_unreachable("Invalid size for machine code value!");
Bill Wendling99cb6222013-06-18 07:20:20 +0000771 case 1: OS << MAI->getAlignDirective(); break;
Chris Lattner33adcfb2009-08-22 21:43:10 +0000772 // FIXME: use MAI for this!
Chris Lattner6e579c62009-08-19 06:35:36 +0000773 case 2: OS << ".p2alignw "; break;
774 case 4: OS << ".p2alignl "; break;
775 case 8: llvm_unreachable("Unsupported alignment size!");
776 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000777
Bill Wendling99cb6222013-06-18 07:20:20 +0000778 if (MAI->getAlignmentIsInBytes())
Chris Lattner663c2d22009-08-19 06:12:02 +0000779 OS << ByteAlignment;
780 else
781 OS << Log2_32(ByteAlignment);
Daniel Dunbar84a29262009-06-24 19:25:34 +0000782
Chris Lattner663c2d22009-08-19 06:12:02 +0000783 if (Value || MaxBytesToEmit) {
Chris Lattner579531c2009-09-03 04:01:10 +0000784 OS << ", 0x";
785 OS.write_hex(truncateToSize(Value, ValueSize));
Chris Lattner663c2d22009-08-19 06:12:02 +0000786
Jim Grosbach00545e12010-09-22 18:16:55 +0000787 if (MaxBytesToEmit)
Chris Lattner663c2d22009-08-19 06:12:02 +0000788 OS << ", " << MaxBytesToEmit;
789 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000790 EmitEOL();
Chris Lattner663c2d22009-08-19 06:12:02 +0000791 return;
792 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000793
Chris Lattner663c2d22009-08-19 06:12:02 +0000794 // Non-power of two alignment. This is not widely supported by assemblers.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000795 // FIXME: Parameterize this based on MAI.
Daniel Dunbar84a29262009-06-24 19:25:34 +0000796 switch (ValueSize) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000797 default: llvm_unreachable("Invalid size for machine code value!");
798 case 1: OS << ".balign"; break;
799 case 2: OS << ".balignw"; break;
800 case 4: OS << ".balignl"; break;
801 case 8: llvm_unreachable("Unsupported alignment size!");
Daniel Dunbar84a29262009-06-24 19:25:34 +0000802 }
803
Chris Lattner663c2d22009-08-19 06:12:02 +0000804 OS << ' ' << ByteAlignment;
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000805 OS << ", " << truncateToSize(Value, ValueSize);
Jim Grosbach00545e12010-09-22 18:16:55 +0000806 if (MaxBytesToEmit)
Daniel Dunbar84a29262009-06-24 19:25:34 +0000807 OS << ", " << MaxBytesToEmit;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000808 EmitEOL();
Daniel Dunbar84a29262009-06-24 19:25:34 +0000809}
810
Kevin Enderby6e720482010-02-23 18:26:34 +0000811void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
812 unsigned MaxBytesToEmit) {
Chris Lattnerec167fd2010-02-23 18:44:31 +0000813 // Emit with a text fill value.
Bill Wendling99cb6222013-06-18 07:20:20 +0000814 EmitValueToAlignment(ByteAlignment, MAI->getTextAlignFillValue(),
Chris Lattnerec167fd2010-02-23 18:44:31 +0000815 1, MaxBytesToEmit);
Kevin Enderby6e720482010-02-23 18:26:34 +0000816}
817
Jim Grosbachebd4c052012-01-27 00:37:08 +0000818bool MCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbar84a29262009-06-24 19:25:34 +0000819 unsigned char Value) {
820 // FIXME: Verify that Offset is associated with the current section.
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000821 OS << ".org " << *Offset << ", " << (unsigned) Value;
822 EmitEOL();
Jim Grosbachebd4c052012-01-27 00:37:08 +0000823 return false;
Daniel Dunbar84a29262009-06-24 19:25:34 +0000824}
825
Chris Lattnera6594fc2010-01-25 18:58:59 +0000826
827void MCAsmStreamer::EmitFileDirective(StringRef Filename) {
Bill Wendling99cb6222013-06-18 07:20:20 +0000828 assert(MAI->hasSingleParameterDotFile());
Chris Lattnera6594fc2010-01-25 18:58:59 +0000829 OS << "\t.file\t";
830 PrintQuotedString(Filename, OS);
831 EmitEOL();
832}
833
Nick Lewycky44d798d2011-10-17 23:05:28 +0000834bool MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
Manman Ren3de61b42013-03-07 01:42:00 +0000835 StringRef Filename, unsigned CUID) {
Nick Lewycky44d798d2011-10-17 23:05:28 +0000836 if (!UseDwarfDirectory && !Directory.empty()) {
837 if (sys::path::is_absolute(Filename))
Manman Ren3de61b42013-03-07 01:42:00 +0000838 return EmitDwarfFileDirective(FileNo, "", Filename, CUID);
Nick Lewycky44d798d2011-10-17 23:05:28 +0000839
840 SmallString<128> FullPathName = Directory;
841 sys::path::append(FullPathName, Filename);
Manman Ren3de61b42013-03-07 01:42:00 +0000842 return EmitDwarfFileDirective(FileNo, "", FullPathName, CUID);
Nick Lewycky44d798d2011-10-17 23:05:28 +0000843 }
844
Rafael Espindola89b93722010-12-10 07:39:47 +0000845 if (UseLoc) {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000846 OS << "\t.file\t" << FileNo << ' ';
Nick Lewycky44d798d2011-10-17 23:05:28 +0000847 if (!Directory.empty()) {
848 PrintQuotedString(Directory, OS);
849 OS << ' ';
850 }
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000851 PrintQuotedString(Filename, OS);
852 EmitEOL();
Manman Ren3de61b42013-03-07 01:42:00 +0000853 // All .file will belong to a single CUID.
854 CUID = 0;
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000855 }
Manman Ren3de61b42013-03-07 01:42:00 +0000856 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Directory, Filename,
857 CUID);
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000858}
859
860void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
861 unsigned Column, unsigned Flags,
862 unsigned Isa,
Devang Patel3f3bf932011-04-18 20:26:49 +0000863 unsigned Discriminator,
864 StringRef FileName) {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000865 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +0000866 Isa, Discriminator, FileName);
Rafael Espindola89b93722010-12-10 07:39:47 +0000867 if (!UseLoc)
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000868 return;
869
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000870 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
871 if (Flags & DWARF2_FLAG_BASIC_BLOCK)
872 OS << " basic_block";
873 if (Flags & DWARF2_FLAG_PROLOGUE_END)
874 OS << " prologue_end";
875 if (Flags & DWARF2_FLAG_EPILOGUE_BEGIN)
876 OS << " epilogue_begin";
877
878 unsigned OldFlags = getContext().getCurrentDwarfLoc().getFlags();
879 if ((Flags & DWARF2_FLAG_IS_STMT) != (OldFlags & DWARF2_FLAG_IS_STMT)) {
880 OS << " is_stmt ";
881
882 if (Flags & DWARF2_FLAG_IS_STMT)
883 OS << "1";
884 else
885 OS << "0";
886 }
887
888 if (Isa)
889 OS << "isa " << Isa;
890 if (Discriminator)
891 OS << "discriminator " << Discriminator;
Devang Patel3f3bf932011-04-18 20:26:49 +0000892
893 if (IsVerboseAsm) {
Bill Wendling99cb6222013-06-18 07:20:20 +0000894 OS.PadToColumn(MAI->getCommentColumn());
895 OS << MAI->getCommentString() << ' ' << FileName << ':'
Devang Patel3f3bf932011-04-18 20:26:49 +0000896 << Line << ':' << Column;
897 }
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000898 EmitEOL();
Chris Lattnera6594fc2010-01-25 18:58:59 +0000899}
900
Rafael Espindola713c4bf2011-05-10 13:39:48 +0000901void MCAsmStreamer::EmitCFISections(bool EH, bool Debug) {
902 MCStreamer::EmitCFISections(EH, Debug);
903
904 if (!UseCFI)
905 return;
906
907 OS << "\t.cfi_sections ";
908 if (EH) {
909 OS << ".eh_frame";
910 if (Debug)
911 OS << ", .debug_frame";
912 } else if (Debug) {
913 OS << ".debug_frame";
914 }
915
916 EmitEOL();
917}
918
Rafael Espindola547be262012-01-07 22:42:19 +0000919void MCAsmStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) {
920 if (!UseCFI) {
921 RecordProcStart(Frame);
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000922 return;
Rafael Espindola547be262012-01-07 22:42:19 +0000923 }
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000924
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000925 OS << "\t.cfi_startproc";
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000926 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000927}
928
Rafael Espindola1fe97372012-01-09 00:17:29 +0000929void MCAsmStreamer::EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) {
930 if (!UseCFI) {
931 RecordProcEnd(Frame);
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000932 return;
Rafael Espindola1fe97372012-01-09 00:17:29 +0000933 }
934
935 // Put a dummy non-null value in Frame.End to mark that this frame has been
936 // closed.
937 Frame.End = (MCSymbol *) 1;
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000938
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000939 OS << "\t.cfi_endproc";
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000940 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000941}
942
Rafael Espindola6e032942011-05-30 20:20:15 +0000943void MCAsmStreamer::EmitRegisterName(int64_t Register) {
Bill Wendling99cb6222013-06-18 07:20:20 +0000944 if (InstPrinter && !MAI->useDwarfRegNumForCFI()) {
945 const MCRegisterInfo *MRI = getContext().getRegisterInfo();
946 unsigned LLVMRegister = MRI->getLLVMRegNum(Register, true);
Rafael Espindolacde4ce42011-06-02 02:34:55 +0000947 InstPrinter->printRegName(OS, LLVMRegister);
Rafael Espindola6e032942011-05-30 20:20:15 +0000948 } else {
949 OS << Register;
950 }
951}
952
Rafael Espindola066c2f42011-04-12 23:59:07 +0000953void MCAsmStreamer::EmitCFIDefCfa(int64_t Register, int64_t Offset) {
Rafael Espindola7f46b082011-04-29 21:41:06 +0000954 MCStreamer::EmitCFIDefCfa(Register, Offset);
955
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000956 if (!UseCFI)
957 return;
958
Rafael Espindola6e032942011-05-30 20:20:15 +0000959 OS << "\t.cfi_def_cfa ";
960 EmitRegisterName(Register);
961 OS << ", " << Offset;
Rafael Espindola7f46b082011-04-29 21:41:06 +0000962 EmitEOL();
Rafael Espindola066c2f42011-04-12 23:59:07 +0000963}
964
965void MCAsmStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
966 MCStreamer::EmitCFIDefCfaOffset(Offset);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000967
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000968 if (!UseCFI)
969 return;
970
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000971 OS << "\t.cfi_def_cfa_offset " << Offset;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000972 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000973}
974
Rafael Espindola066c2f42011-04-12 23:59:07 +0000975void MCAsmStreamer::EmitCFIDefCfaRegister(int64_t Register) {
976 MCStreamer::EmitCFIDefCfaRegister(Register);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000977
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000978 if (!UseCFI)
979 return;
980
Rafael Espindola6e032942011-05-30 20:20:15 +0000981 OS << "\t.cfi_def_cfa_register ";
982 EmitRegisterName(Register);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000983 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000984}
985
Rafael Espindola066c2f42011-04-12 23:59:07 +0000986void MCAsmStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
987 this->MCStreamer::EmitCFIOffset(Register, Offset);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000988
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000989 if (!UseCFI)
990 return;
991
Rafael Espindola6e032942011-05-30 20:20:15 +0000992 OS << "\t.cfi_offset ";
993 EmitRegisterName(Register);
994 OS << ", " << Offset;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000995 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000996}
997
Rafael Espindola066c2f42011-04-12 23:59:07 +0000998void MCAsmStreamer::EmitCFIPersonality(const MCSymbol *Sym,
Rafael Espindola3a83c402010-12-27 00:36:05 +0000999 unsigned Encoding) {
Rafael Espindola066c2f42011-04-12 23:59:07 +00001000 MCStreamer::EmitCFIPersonality(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +00001001
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001002 if (!UseCFI)
1003 return;
1004
Anton Korobeynikovc6585202011-01-14 21:57:39 +00001005 OS << "\t.cfi_personality " << Encoding << ", " << *Sym;
Rafael Espindolacdfecc82010-11-22 14:27:24 +00001006 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +00001007}
1008
Rafael Espindola066c2f42011-04-12 23:59:07 +00001009void MCAsmStreamer::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) {
1010 MCStreamer::EmitCFILsda(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +00001011
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001012 if (!UseCFI)
1013 return;
1014
Anton Korobeynikovc6585202011-01-14 21:57:39 +00001015 OS << "\t.cfi_lsda " << Encoding << ", " << *Sym;
Rafael Espindolacdfecc82010-11-22 14:27:24 +00001016 EmitEOL();
Rafael Espindola066c2f42011-04-12 23:59:07 +00001017}
Rafael Espindolacdfecc82010-11-22 14:27:24 +00001018
Rafael Espindola066c2f42011-04-12 23:59:07 +00001019void MCAsmStreamer::EmitCFIRememberState() {
1020 MCStreamer::EmitCFIRememberState();
1021
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001022 if (!UseCFI)
1023 return;
1024
Rafael Espindola066c2f42011-04-12 23:59:07 +00001025 OS << "\t.cfi_remember_state";
1026 EmitEOL();
1027}
1028
1029void MCAsmStreamer::EmitCFIRestoreState() {
1030 MCStreamer::EmitCFIRestoreState();
1031
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001032 if (!UseCFI)
1033 return;
1034
Rafael Espindola066c2f42011-04-12 23:59:07 +00001035 OS << "\t.cfi_restore_state";
1036 EmitEOL();
1037}
1038
1039void MCAsmStreamer::EmitCFISameValue(int64_t Register) {
1040 MCStreamer::EmitCFISameValue(Register);
1041
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001042 if (!UseCFI)
1043 return;
1044
Rafael Espindola6e032942011-05-30 20:20:15 +00001045 OS << "\t.cfi_same_value ";
1046 EmitRegisterName(Register);
Rafael Espindola066c2f42011-04-12 23:59:07 +00001047 EmitEOL();
1048}
1049
1050void MCAsmStreamer::EmitCFIRelOffset(int64_t Register, int64_t Offset) {
1051 MCStreamer::EmitCFIRelOffset(Register, Offset);
1052
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001053 if (!UseCFI)
1054 return;
1055
Rafael Espindola6e032942011-05-30 20:20:15 +00001056 OS << "\t.cfi_rel_offset ";
1057 EmitRegisterName(Register);
1058 OS << ", " << Offset;
Rafael Espindola066c2f42011-04-12 23:59:07 +00001059 EmitEOL();
1060}
1061
1062void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) {
1063 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
1064
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001065 if (!UseCFI)
1066 return;
1067
Rafael Espindola066c2f42011-04-12 23:59:07 +00001068 OS << "\t.cfi_adjust_cfa_offset " << Adjustment;
1069 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +00001070}
1071
Rafael Espindola16d7d432012-01-23 21:51:52 +00001072void MCAsmStreamer::EmitCFISignalFrame() {
1073 MCStreamer::EmitCFISignalFrame();
1074
1075 if (!UseCFI)
1076 return;
1077
Eric Christopherfeba1932012-05-31 00:53:18 +00001078 OS << "\t.cfi_signal_frame";
Rafael Espindola16d7d432012-01-23 21:51:52 +00001079 EmitEOL();
1080}
1081
Rafael Espindolac8fec7e2012-11-23 16:59:41 +00001082void MCAsmStreamer::EmitCFIUndefined(int64_t Register) {
1083 MCStreamer::EmitCFIUndefined(Register);
1084
1085 if (!UseCFI)
1086 return;
1087
1088 OS << "\t.cfi_undefined " << Register;
1089 EmitEOL();
1090}
1091
Rafael Espindolaf4f14f62012-11-25 15:14:49 +00001092void MCAsmStreamer::EmitCFIRegister(int64_t Register1, int64_t Register2) {
1093 MCStreamer::EmitCFIRegister(Register1, Register2);
1094
1095 if (!UseCFI)
1096 return;
1097
1098 OS << "\t.cfi_register " << Register1 << ", " << Register2;
1099 EmitEOL();
1100}
1101
Venkatraman Govindaraju83ba58e2013-09-26 14:49:40 +00001102void MCAsmStreamer::EmitCFIWindowSave() {
1103 MCStreamer::EmitCFIWindowSave();
1104
1105 if (!UseCFI)
1106 return;
1107
1108 OS << "\t.cfi_window_save";
1109 EmitEOL();
1110}
1111
Charles Davisfbc539f2011-05-22 21:12:15 +00001112void MCAsmStreamer::EmitWin64EHStartProc(const MCSymbol *Symbol) {
Charles Daviscde87e22011-05-20 18:19:22 +00001113 MCStreamer::EmitWin64EHStartProc(Symbol);
1114
Charles Davis440596f2011-05-19 17:46:39 +00001115 OS << ".seh_proc " << *Symbol;
Charles Davis0e30f022011-05-18 04:58:05 +00001116 EmitEOL();
1117}
1118
Charles Davis8b3e5e52011-05-18 22:13:51 +00001119void MCAsmStreamer::EmitWin64EHEndProc() {
Charles Daviscde87e22011-05-20 18:19:22 +00001120 MCStreamer::EmitWin64EHEndProc();
1121
Charles Davis440596f2011-05-19 17:46:39 +00001122 OS << "\t.seh_endproc";
Charles Davis0e30f022011-05-18 04:58:05 +00001123 EmitEOL();
1124}
1125
Charles Davis8b3e5e52011-05-18 22:13:51 +00001126void MCAsmStreamer::EmitWin64EHStartChained() {
Charles Daviscde87e22011-05-20 18:19:22 +00001127 MCStreamer::EmitWin64EHStartChained();
1128
Charles Davis440596f2011-05-19 17:46:39 +00001129 OS << "\t.seh_startchained";
Charles Davisf0709012011-05-18 20:54:10 +00001130 EmitEOL();
1131}
1132
Charles Davis8b3e5e52011-05-18 22:13:51 +00001133void MCAsmStreamer::EmitWin64EHEndChained() {
Charles Daviscde87e22011-05-20 18:19:22 +00001134 MCStreamer::EmitWin64EHEndChained();
1135
Charles Davis440596f2011-05-19 17:46:39 +00001136 OS << "\t.seh_endchained";
Charles Davisf0709012011-05-18 20:54:10 +00001137 EmitEOL();
1138}
1139
Charles Davis440596f2011-05-19 17:46:39 +00001140void MCAsmStreamer::EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
1141 bool Except) {
Charles Daviscde87e22011-05-20 18:19:22 +00001142 MCStreamer::EmitWin64EHHandler(Sym, Unwind, Except);
1143
Charles Davis440596f2011-05-19 17:46:39 +00001144 OS << "\t.seh_handler " << *Sym;
1145 if (Unwind)
1146 OS << ", @unwind";
1147 if (Except)
1148 OS << ", @except";
Charles Davisf0709012011-05-18 20:54:10 +00001149 EmitEOL();
1150}
1151
Evan Chenge76a33b2011-07-20 05:58:47 +00001152static const MCSection *getWin64EHTableSection(StringRef suffix,
1153 MCContext &context) {
1154 // FIXME: This doesn't belong in MCObjectFileInfo. However,
1155 /// this duplicate code in MCWin64EH.cpp.
1156 if (suffix == "")
1157 return context.getObjectFileInfo()->getXDataSection();
1158 return context.getCOFFSection((".xdata"+suffix).str(),
1159 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
1160 COFF::IMAGE_SCN_MEM_READ |
1161 COFF::IMAGE_SCN_MEM_WRITE,
1162 SectionKind::getDataRel());
1163}
1164
Charles Davis440596f2011-05-19 17:46:39 +00001165void MCAsmStreamer::EmitWin64EHHandlerData() {
Charles Daviscde87e22011-05-20 18:19:22 +00001166 MCStreamer::EmitWin64EHHandlerData();
1167
Charles Davis410ef2b2011-05-25 21:43:45 +00001168 // Switch sections. Don't call SwitchSection directly, because that will
1169 // cause the section switch to be visible in the emitted assembly.
1170 // We only do this so the section switch that terminates the handler
1171 // data block is visible.
Charles Davis7b06b732011-05-27 19:09:24 +00001172 MCWin64EHUnwindInfo *CurFrame = getCurrentW64UnwindInfo();
1173 StringRef suffix=MCWin64EHUnwindEmitter::GetSectionSuffix(CurFrame->Function);
Evan Chenge76a33b2011-07-20 05:58:47 +00001174 const MCSection *xdataSect = getWin64EHTableSection(suffix, getContext());
Charles Davis410ef2b2011-05-25 21:43:45 +00001175 if (xdataSect)
1176 SwitchSectionNoChange(xdataSect);
1177
Charles Davis440596f2011-05-19 17:46:39 +00001178 OS << "\t.seh_handlerdata";
Charles Davisf0709012011-05-18 20:54:10 +00001179 EmitEOL();
1180}
1181
Charles Davisc3b16282011-05-19 19:35:55 +00001182void MCAsmStreamer::EmitWin64EHPushReg(unsigned Register) {
Charles Daviscde87e22011-05-20 18:19:22 +00001183 MCStreamer::EmitWin64EHPushReg(Register);
1184
Charles Davis440596f2011-05-19 17:46:39 +00001185 OS << "\t.seh_pushreg " << Register;
Charles Davis0e30f022011-05-18 04:58:05 +00001186 EmitEOL();
1187}
1188
Charles Davisc3b16282011-05-19 19:35:55 +00001189void MCAsmStreamer::EmitWin64EHSetFrame(unsigned Register, unsigned Offset) {
Charles Daviscde87e22011-05-20 18:19:22 +00001190 MCStreamer::EmitWin64EHSetFrame(Register, Offset);
1191
Charles Davis440596f2011-05-19 17:46:39 +00001192 OS << "\t.seh_setframe " << Register << ", " << Offset;
Charles Davis0e30f022011-05-18 04:58:05 +00001193 EmitEOL();
1194}
1195
Charles Davisc3b16282011-05-19 19:35:55 +00001196void MCAsmStreamer::EmitWin64EHAllocStack(unsigned Size) {
Charles Daviscde87e22011-05-20 18:19:22 +00001197 MCStreamer::EmitWin64EHAllocStack(Size);
1198
Charles Davis440596f2011-05-19 17:46:39 +00001199 OS << "\t.seh_stackalloc " << Size;
Charles Davis0e30f022011-05-18 04:58:05 +00001200 EmitEOL();
1201}
1202
Charles Davisc3b16282011-05-19 19:35:55 +00001203void MCAsmStreamer::EmitWin64EHSaveReg(unsigned Register, unsigned Offset) {
Charles Daviscde87e22011-05-20 18:19:22 +00001204 MCStreamer::EmitWin64EHSaveReg(Register, Offset);
1205
Charles Davis440596f2011-05-19 17:46:39 +00001206 OS << "\t.seh_savereg " << Register << ", " << Offset;
1207 EmitEOL();
1208}
1209
Charles Davisc3b16282011-05-19 19:35:55 +00001210void MCAsmStreamer::EmitWin64EHSaveXMM(unsigned Register, unsigned Offset) {
Charles Daviscde87e22011-05-20 18:19:22 +00001211 MCStreamer::EmitWin64EHSaveXMM(Register, Offset);
1212
Charles Davis440596f2011-05-19 17:46:39 +00001213 OS << "\t.seh_savexmm " << Register << ", " << Offset;
Charles Davis0e30f022011-05-18 04:58:05 +00001214 EmitEOL();
1215}
1216
Charles Davis8b3e5e52011-05-18 22:13:51 +00001217void MCAsmStreamer::EmitWin64EHPushFrame(bool Code) {
Charles Daviscde87e22011-05-20 18:19:22 +00001218 MCStreamer::EmitWin64EHPushFrame(Code);
1219
Charles Davis440596f2011-05-19 17:46:39 +00001220 OS << "\t.seh_pushframe";
Charles Davis0e30f022011-05-18 04:58:05 +00001221 if (Code)
Charles Davis440596f2011-05-19 17:46:39 +00001222 OS << " @code";
Charles Davis0e30f022011-05-18 04:58:05 +00001223 EmitEOL();
1224}
1225
Charles Davis8b3e5e52011-05-18 22:13:51 +00001226void MCAsmStreamer::EmitWin64EHEndProlog(void) {
Charles Daviscde87e22011-05-20 18:19:22 +00001227 MCStreamer::EmitWin64EHEndProlog();
1228
Charles Davis440596f2011-05-19 17:46:39 +00001229 OS << "\t.seh_endprologue";
Charles Davis0e30f022011-05-18 04:58:05 +00001230 EmitEOL();
1231}
1232
Daniel Dunbar6b716532010-02-09 23:00:14 +00001233void MCAsmStreamer::AddEncodingComment(const MCInst &Inst) {
1234 raw_ostream &OS = GetCommentOS();
1235 SmallString<256> Code;
1236 SmallVector<MCFixup, 4> Fixups;
1237 raw_svector_ostream VecOS(Code);
1238 Emitter->EncodeInstruction(Inst, VecOS, Fixups);
1239 VecOS.flush();
Chris Lattnera6594fc2010-01-25 18:58:59 +00001240
Daniel Dunbar6b716532010-02-09 23:00:14 +00001241 // If we are showing fixups, create symbolic markers in the encoded
1242 // representation. We do this by making a per-bit map to the fixup item index,
1243 // then trying to display it as nicely as possible.
Daniel Dunbar5532cf42010-02-10 01:41:14 +00001244 SmallVector<uint8_t, 64> FixupMap;
1245 FixupMap.resize(Code.size() * 8);
Daniel Dunbar6b716532010-02-09 23:00:14 +00001246 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
1247 FixupMap[i] = 0;
1248
1249 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1250 MCFixup &F = Fixups[i];
Daniel Dunbar2761fc42010-12-16 03:20:06 +00001251 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar6b716532010-02-09 23:00:14 +00001252 for (unsigned j = 0; j != Info.TargetSize; ++j) {
1253 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j;
1254 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
1255 FixupMap[Index] = 1 + i;
1256 }
1257 }
1258
Evan Cheng5c2eef62011-07-08 22:49:42 +00001259 // FIXME: Note the fixup comments for Thumb2 are completely bogus since the
Evan Cheng8fbbd1c2011-01-13 23:27:39 +00001260 // high order halfword of a 32-bit Thumb2 instruction is emitted first.
Daniel Dunbar6b716532010-02-09 23:00:14 +00001261 OS << "encoding: [";
1262 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
1263 if (i)
1264 OS << ',';
1265
1266 // See if all bits are the same map entry.
1267 uint8_t MapEntry = FixupMap[i * 8 + 0];
1268 for (unsigned j = 1; j != 8; ++j) {
1269 if (FixupMap[i * 8 + j] == MapEntry)
1270 continue;
1271
1272 MapEntry = uint8_t(~0U);
1273 break;
1274 }
1275
1276 if (MapEntry != uint8_t(~0U)) {
1277 if (MapEntry == 0) {
1278 OS << format("0x%02x", uint8_t(Code[i]));
1279 } else {
Evan Cheng82caf1a2011-01-13 21:45:26 +00001280 if (Code[i]) {
Evan Cheng8fbbd1c2011-01-13 23:27:39 +00001281 // FIXME: Some of the 8 bits require fix up.
Evan Cheng82caf1a2011-01-13 21:45:26 +00001282 OS << format("0x%02x", uint8_t(Code[i])) << '\''
1283 << char('A' + MapEntry - 1) << '\'';
1284 } else
1285 OS << char('A' + MapEntry - 1);
Daniel Dunbar6b716532010-02-09 23:00:14 +00001286 }
1287 } else {
1288 // Otherwise, write out in binary.
1289 OS << "0b";
Jay Foad95c3e482011-06-23 09:09:15 +00001290 for (unsigned j = 8; j--;) {
Daniel Dunbar6b716532010-02-09 23:00:14 +00001291 unsigned Bit = (Code[i] >> j) & 1;
NAKAMURA Takumid6451512011-03-27 01:44:40 +00001292
Chris Lattner3170a3b2010-11-15 05:56:19 +00001293 unsigned FixupBit;
Bill Wendling99cb6222013-06-18 07:20:20 +00001294 if (MAI->isLittleEndian())
Chris Lattner3170a3b2010-11-15 05:56:19 +00001295 FixupBit = i * 8 + j;
1296 else
1297 FixupBit = i * 8 + (7-j);
NAKAMURA Takumid6451512011-03-27 01:44:40 +00001298
Jay Foad95c3e482011-06-23 09:09:15 +00001299 if (uint8_t MapEntry = FixupMap[FixupBit]) {
1300 assert(Bit == 0 && "Encoder wrote into fixed up bit!");
1301 OS << char('A' + MapEntry - 1);
Daniel Dunbar6b716532010-02-09 23:00:14 +00001302 } else
1303 OS << Bit;
1304 }
1305 }
1306 }
1307 OS << "]\n";
1308
1309 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1310 MCFixup &F = Fixups[i];
Daniel Dunbar2761fc42010-12-16 03:20:06 +00001311 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar6b716532010-02-09 23:00:14 +00001312 OS << " fixup " << char('A' + i) << " - " << "offset: " << F.getOffset()
Daniel Dunbar5d5a1e12010-02-10 04:47:08 +00001313 << ", value: " << *F.getValue() << ", kind: " << Info.Name << "\n";
Daniel Dunbar6b716532010-02-09 23:00:14 +00001314 }
1315}
1316
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +00001317void MCAsmStreamer::EmitFnStart() {
1318 OS << "\t.fnstart";
1319 EmitEOL();
1320}
1321
1322void MCAsmStreamer::EmitFnEnd() {
1323 OS << "\t.fnend";
1324 EmitEOL();
1325}
1326
1327void MCAsmStreamer::EmitCantUnwind() {
1328 OS << "\t.cantunwind";
1329 EmitEOL();
1330}
1331
1332void MCAsmStreamer::EmitHandlerData() {
1333 OS << "\t.handlerdata";
1334 EmitEOL();
1335}
1336
1337void MCAsmStreamer::EmitPersonality(const MCSymbol *Personality) {
1338 OS << "\t.personality " << Personality->getName();
1339 EmitEOL();
1340}
1341
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001342void MCAsmStreamer::EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset) {
Rafael Espindolacde4ce42011-06-02 02:34:55 +00001343 OS << "\t.setfp\t";
1344 InstPrinter->printRegName(OS, FpReg);
1345 OS << ", ";
1346 InstPrinter->printRegName(OS, SpReg);
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001347 if (Offset)
1348 OS << ", #" << Offset;
1349 EmitEOL();
1350}
1351
1352void MCAsmStreamer::EmitPad(int64_t Offset) {
1353 OS << "\t.pad\t#" << Offset;
1354 EmitEOL();
1355}
1356
1357void MCAsmStreamer::EmitRegSave(const SmallVectorImpl<unsigned> &RegList,
1358 bool isVector) {
1359 assert(RegList.size() && "RegList should not be empty");
1360 if (isVector)
1361 OS << "\t.vsave\t{";
1362 else
1363 OS << "\t.save\t{";
1364
Rafael Espindolacde4ce42011-06-02 02:34:55 +00001365 InstPrinter->printRegName(OS, RegList[0]);
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001366
Rafael Espindolacde4ce42011-06-02 02:34:55 +00001367 for (unsigned i = 1, e = RegList.size(); i != e; ++i) {
1368 OS << ", ";
1369 InstPrinter->printRegName(OS, RegList[i]);
1370 }
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001371
1372 OS << "}";
1373 EmitEOL();
1374}
1375
Adhemerval Zanellaf35c62b2012-10-15 15:43:14 +00001376void MCAsmStreamer::EmitTCEntry(const MCSymbol &S) {
1377 OS << "\t.tc ";
1378 OS << S.getName();
1379 OS << "[TC],";
1380 OS << S.getName();
1381 EmitEOL();
1382}
1383
Daniel Dunbar6b716532010-02-09 23:00:14 +00001384void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
Peter Collingbournedf39be62013-04-17 21:18:16 +00001385 assert(getCurrentSection().first &&
1386 "Cannot emit contents before setting section!");
Daniel Dunbar6b716532010-02-09 23:00:14 +00001387
1388 // Show the encoding in a comment if we have a code emitter.
1389 if (Emitter)
1390 AddEncodingComment(Inst);
1391
Chris Lattner30d9a642010-02-09 00:54:51 +00001392 // Show the MCInst if enabled.
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +00001393 if (ShowInst) {
Bill Wendling99cb6222013-06-18 07:20:20 +00001394 Inst.dump_pretty(GetCommentOS(), MAI, InstPrinter.get(), "\n ");
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +00001395 GetCommentOS() << "\n";
1396 }
1397
Daniel Dunbar67c076c2010-03-22 21:49:34 +00001398 // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001399 if (InstPrinter)
Owen Anderson98c5dda2011-09-15 23:38:46 +00001400 InstPrinter->printInst(&Inst, OS, "");
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001401 else
Bill Wendling99cb6222013-06-18 07:20:20 +00001402 Inst.print(OS, MAI);
Chris Lattner7d1e49c2010-01-22 07:36:39 +00001403 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +00001404}
1405
Eli Bendersky4766ef42012-12-20 19:05:53 +00001406void MCAsmStreamer::EmitBundleAlignMode(unsigned AlignPow2) {
1407 OS << "\t.bundle_align_mode " << AlignPow2;
1408 EmitEOL();
1409}
1410
Eli Bendersky6c1d4972013-01-07 21:51:08 +00001411void MCAsmStreamer::EmitBundleLock(bool AlignToEnd) {
Eli Bendersky4766ef42012-12-20 19:05:53 +00001412 OS << "\t.bundle_lock";
Eli Bendersky6c1d4972013-01-07 21:51:08 +00001413 if (AlignToEnd)
1414 OS << " align_to_end";
Eli Bendersky4766ef42012-12-20 19:05:53 +00001415 EmitEOL();
1416}
1417
1418void MCAsmStreamer::EmitBundleUnlock() {
1419 OS << "\t.bundle_unlock";
1420 EmitEOL();
1421}
1422
Jim Grosbachbd4ec842010-09-22 18:18:30 +00001423/// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +00001424/// the specified string in the output .s file. This capability is
1425/// indicated by the hasRawTextSupport() predicate.
1426void MCAsmStreamer::EmitRawText(StringRef String) {
Chris Lattnerd5928dc2010-04-03 22:06:56 +00001427 if (!String.empty() && String.back() == '\n')
1428 String = String.substr(0, String.size()-1);
Chris Lattner91bead72010-04-03 21:35:55 +00001429 OS << String;
Chris Lattnerd5928dc2010-04-03 22:06:56 +00001430 EmitEOL();
Chris Lattner91bead72010-04-03 21:35:55 +00001431}
1432
Rafael Espindola99b42372012-01-07 03:13:18 +00001433void MCAsmStreamer::FinishImpl() {
Rafael Espindola489d6792012-02-28 21:13:05 +00001434 // FIXME: This header is duplicated with MCObjectStreamer
Rafael Espindola195a0ce2010-11-19 02:26:16 +00001435 // Dump out the dwarf file & directory tables and line tables.
Rafael Espindolae6ec02e2012-03-03 14:24:15 +00001436 const MCSymbol *LineSectionSymbol = NULL;
Rafael Espindola89b93722010-12-10 07:39:47 +00001437 if (getContext().hasDwarfFiles() && !UseLoc)
Rafael Espindola489d6792012-02-28 21:13:05 +00001438 LineSectionSymbol = MCDwarfFileTable::Emit(this);
Rafael Espindola5426a9e2011-05-01 04:49:54 +00001439
Kevin Enderby94c2e852011-12-09 18:09:40 +00001440 // If we are generating dwarf for assembly source files dump out the sections.
1441 if (getContext().getGenDwarfForAssembly())
Rafael Espindola489d6792012-02-28 21:13:05 +00001442 MCGenDwarfInfo::Emit(this, LineSectionSymbol);
Kevin Enderby94c2e852011-12-09 18:09:40 +00001443
Rafael Espindolac25dad82011-05-10 03:14:15 +00001444 if (!UseCFI)
Bill Wendlingda11df02013-09-09 19:48:37 +00001445 EmitFrames(AsmBackend.get(), false);
Daniel Dunbara11af532009-06-24 01:03:06 +00001446}
Bill Wendlingda11df02013-09-09 19:48:37 +00001447
Chris Lattner86e22112010-01-22 07:29:22 +00001448MCStreamer *llvm::createAsmStreamer(MCContext &Context,
1449 formatted_raw_ostream &OS,
Rafael Espindola89b93722010-12-10 07:39:47 +00001450 bool isVerboseAsm, bool useLoc,
Nick Lewycky44d798d2011-10-17 23:05:28 +00001451 bool useCFI, bool useDwarfDirectory,
1452 MCInstPrinter *IP, MCCodeEmitter *CE,
1453 MCAsmBackend *MAB, bool ShowInst) {
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001454 return new MCAsmStreamer(Context, OS, isVerboseAsm, useLoc, useCFI,
Nick Lewycky44d798d2011-10-17 23:05:28 +00001455 useDwarfDirectory, IP, CE, MAB, ShowInst);
Daniel Dunbara11af532009-06-24 01:03:06 +00001456}