blob: 0f9a327a48f19c933d5c3b2b80800bd132aa6d42 [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"
Rafael Espindola5e195a42013-10-05 16:42:21 +000028#include "llvm/Support/CommandLine.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000029#include "llvm/Support/ErrorHandling.h"
Daniel Dunbar4a0abd82009-08-27 00:51:57 +000030#include "llvm/Support/Format.h"
Chris Lattner86e22112010-01-22 07:29:22 +000031#include "llvm/Support/FormattedStream.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000032#include "llvm/Support/MathExtras.h"
Rafael Espindolaa11c3e22013-06-11 22:21:28 +000033#include "llvm/Support/Path.h"
Nick Lewycky476b2422010-12-19 20:43:38 +000034#include <cctype>
Daniel Dunbara11af532009-06-24 01:03:06 +000035using namespace llvm;
36
Rafael Espindola5e195a42013-10-05 16:42:21 +000037static cl::opt<bool> PrintHackDirectives("print-hack-directives",
38 cl::init(false), cl::Hidden);
39
Daniel Dunbara11af532009-06-24 01:03:06 +000040namespace {
41
Chris Lattner46a947d2009-08-17 04:17:34 +000042class MCAsmStreamer : public MCStreamer {
Bill Wendling916a94b2011-06-17 20:35:21 +000043protected:
Chris Lattner86e22112010-01-22 07:29:22 +000044 formatted_raw_ostream &OS;
Bill Wendling99cb6222013-06-18 07:20:20 +000045 const MCAsmInfo *MAI;
Bill Wendling916a94b2011-06-17 20:35:21 +000046private:
Chris Lattner4c42a6d2010-03-19 05:48:53 +000047 OwningPtr<MCInstPrinter> InstPrinter;
Benjamin Kramer1abcd062010-07-29 17:48:06 +000048 OwningPtr<MCCodeEmitter> Emitter;
Evan Cheng78c10ee2011-07-25 23:24:55 +000049 OwningPtr<MCAsmBackend> AsmBackend;
Jim Grosbach00545e12010-09-22 18:16:55 +000050
Chris Lattner86e22112010-01-22 07:29:22 +000051 SmallString<128> CommentToEmit;
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000052 raw_svector_ostream CommentStream;
Daniel Dunbar9dee8e32010-02-03 18:18:30 +000053
Daniel Dunbar9dee8e32010-02-03 18:18:30 +000054 unsigned IsVerboseAsm : 1;
55 unsigned ShowInst : 1;
Rafael Espindola89b93722010-12-10 07:39:47 +000056 unsigned UseLoc : 1;
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +000057 unsigned UseCFI : 1;
Nick Lewycky44d798d2011-10-17 23:05:28 +000058 unsigned UseDwarfDirectory : 1;
Daniel Dunbar9dee8e32010-02-03 18:18:30 +000059
Rafael Espindola277abc82011-04-30 16:34:57 +000060 enum EHSymbolFlags { EHGlobal = 1,
61 EHWeakDefinition = 1 << 1,
62 EHPrivateExtern = 1 << 2 };
63 DenseMap<const MCSymbol*, unsigned> FlagMap;
64
Rafael Espindola5d4918d2010-12-04 03:21:47 +000065 bool needsSet(const MCExpr *Value);
66
Rafael Espindola6e032942011-05-30 20:20:15 +000067 void EmitRegisterName(int64_t Register);
Rafael Espindola547be262012-01-07 22:42:19 +000068 virtual void EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame);
Rafael Espindola1fe97372012-01-09 00:17:29 +000069 virtual void EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame);
Rafael Espindola6e032942011-05-30 20:20:15 +000070
Chris Lattner46a947d2009-08-17 04:17:34 +000071public:
Chris Lattner86e22112010-01-22 07:29:22 +000072 MCAsmStreamer(MCContext &Context, formatted_raw_ostream &os,
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +000073 bool isVerboseAsm, bool useLoc, bool useCFI,
Nick Lewycky44d798d2011-10-17 23:05:28 +000074 bool useDwarfDirectory,
Daniel Dunbar745dacc2010-12-16 03:05:59 +000075 MCInstPrinter *printer, MCCodeEmitter *emitter,
Evan Cheng78c10ee2011-07-25 23:24:55 +000076 MCAsmBackend *asmbackend,
Daniel Dunbar745dacc2010-12-16 03:05:59 +000077 bool showInst)
Rafael Espindola5e195a42013-10-05 16:42:21 +000078 : MCStreamer(Context), OS(os), MAI(Context.getAsmInfo()),
Daniel Dunbar745dacc2010-12-16 03:05:59 +000079 InstPrinter(printer), Emitter(emitter), AsmBackend(asmbackend),
80 CommentStream(CommentToEmit), IsVerboseAsm(isVerboseAsm),
Nick Lewycky44d798d2011-10-17 23:05:28 +000081 ShowInst(showInst), UseLoc(useLoc), UseCFI(useCFI),
82 UseDwarfDirectory(useDwarfDirectory) {
Chris Lattner5d672cf2010-02-10 00:10:18 +000083 if (InstPrinter && IsVerboseAsm)
84 InstPrinter->setCommentStream(CommentStream);
85 }
Chris Lattner46a947d2009-08-17 04:17:34 +000086 ~MCAsmStreamer() {}
Daniel Dunbara11af532009-06-24 01:03:06 +000087
Chris Lattner86e22112010-01-22 07:29:22 +000088 inline void EmitEOL() {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000089 // If we don't have any comments, just emit a \n.
90 if (!IsVerboseAsm) {
Chris Lattner86e22112010-01-22 07:29:22 +000091 OS << '\n';
92 return;
93 }
94 EmitCommentsAndEOL();
95 }
96 void EmitCommentsAndEOL();
Chris Lattner56591ab2010-02-02 23:37:42 +000097
98 /// isVerboseAsm - Return true if this streamer supports verbose assembly at
99 /// all.
100 virtual bool isVerboseAsm() const { return IsVerboseAsm; }
Jim Grosbach00545e12010-09-22 18:16:55 +0000101
Chris Lattner91bead72010-04-03 21:35:55 +0000102 /// hasRawTextSupport - We support EmitRawText.
103 virtual bool hasRawTextSupport() const { return true; }
Daniel Dunbar6b716532010-02-09 23:00:14 +0000104
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000105 /// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner86e22112010-01-22 07:29:22 +0000106 /// file if applicable as a QoI issue to make the output of the compiler
107 /// more readable. This only affects the MCAsmStreamer, and only when
108 /// verbose assembly output is enabled.
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000109 virtual void AddComment(const Twine &T);
Daniel Dunbar6b716532010-02-09 23:00:14 +0000110
111 /// AddEncodingComment - Add a comment showing the encoding of an instruction.
112 virtual void AddEncodingComment(const MCInst &Inst);
113
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000114 /// GetCommentOS - Return a raw_ostream that comments can be written to.
115 /// Unlike AddComment, you are required to terminate comments with \n if you
116 /// use this method.
117 virtual raw_ostream &GetCommentOS() {
118 if (!IsVerboseAsm)
119 return nulls(); // Discard comments unless in verbose asm mode.
120 return CommentStream;
121 }
Daniel Dunbar6b716532010-02-09 23:00:14 +0000122
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000123 /// AddBlankLine - Emit a blank line to a .s file to pretty it up.
124 virtual void AddBlankLine() {
125 EmitEOL();
126 }
Daniel Dunbar6b716532010-02-09 23:00:14 +0000127
Chris Lattner46a947d2009-08-17 04:17:34 +0000128 /// @name MCStreamer Interface
129 /// @{
Daniel Dunbara11af532009-06-24 01:03:06 +0000130
Peter Collingbournedf39be62013-04-17 21:18:16 +0000131 virtual void ChangeSection(const MCSection *Section,
132 const MCExpr *Subsection);
Daniel Dunbara11af532009-06-24 01:03:06 +0000133
Rafael Espindolad80781b2010-09-15 21:48:40 +0000134 virtual void InitSections() {
Eli Bendersky030f63a2013-01-14 19:04:57 +0000135 InitToTextSection();
136 }
137
138 virtual void InitToTextSection() {
Nico Rieckef1762b2013-04-14 21:18:36 +0000139 SwitchSection(getContext().getObjectFileInfo()->getTextSection());
Rafael Espindolad80781b2010-09-15 21:48:40 +0000140 }
141
Chris Lattner46a947d2009-08-17 04:17:34 +0000142 virtual void EmitLabel(MCSymbol *Symbol);
Reed Kotler2c3a4642012-12-16 04:00:45 +0000143 virtual void EmitDebugLabel(MCSymbol *Symbol);
144
Rafael Espindola277abc82011-04-30 16:34:57 +0000145 virtual void EmitEHSymAttributes(const MCSymbol *Symbol,
146 MCSymbol *EHSymbol);
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000147 virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
Daniel Dunbarcddd2362013-01-18 01:25:48 +0000148 virtual void EmitLinkerOptions(ArrayRef<std::string> Options);
Jim Grosbach3e965312012-05-18 19:12:01 +0000149 virtual void EmitDataRegion(MCDataRegionType Kind);
Jim Grosbachce792992010-11-05 22:08:08 +0000150 virtual void EmitThumbFunc(MCSymbol *Func);
Daniel Dunbara11af532009-06-24 01:03:06 +0000151
Daniel Dunbar821e3332009-08-31 08:09:28 +0000152 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
Rafael Espindola484291c2010-11-01 14:28:48 +0000153 virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
Rafael Espindola32a006e2010-12-03 00:55:40 +0000154 virtual void EmitDwarfAdvanceLineAddr(int64_t LineDelta,
155 const MCSymbol *LastLabel,
Evan Cheng672b93a2011-07-14 05:43:07 +0000156 const MCSymbol *Label,
157 unsigned PointerSize);
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000158 virtual void EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
159 const MCSymbol *Label);
Daniel Dunbara11af532009-06-24 01:03:06 +0000160
Saleem Abdulrasool1c9cd022013-08-09 01:52:03 +0000161 virtual bool EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
Kevin Enderbya5c78322009-07-13 21:03:15 +0000162
Chris Lattner46a947d2009-08-17 04:17:34 +0000163 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
Chris Lattnerb54b9dd2010-05-08 19:54:22 +0000164 virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol);
165 virtual void EmitCOFFSymbolStorageClass(int StorageClass);
166 virtual void EmitCOFFSymbolType(int Type);
167 virtual void EndCOFFSymbolDef();
Rafael Espindola8f7d12c2011-12-17 01:14:52 +0000168 virtual void EmitCOFFSecRel32(MCSymbol const *Symbol);
Chris Lattner99328ad2010-01-25 07:52:13 +0000169 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
Chris Lattner9eb158d2010-01-23 07:47:02 +0000170 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000171 unsigned ByteAlignment);
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000172
Chris Lattner9eb158d2010-01-23 07:47:02 +0000173 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
174 ///
175 /// @param Symbol - The common symbol to emit.
176 /// @param Size - The size of the common symbol.
Dmitri Gribenkoa00b80b2012-08-23 16:54:08 +0000177 /// @param ByteAlignment - The alignment of the common symbol in bytes.
Benjamin Kramer36a16012011-09-01 23:04:27 +0000178 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
179 unsigned ByteAlignment);
Jim Grosbach00545e12010-09-22 18:16:55 +0000180
Daniel Dunbar8751b942009-08-28 05:48:22 +0000181 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
Evan Chengc90a1fc2012-06-22 20:14:46 +0000182 uint64_t Size = 0, unsigned ByteAlignment = 0);
Kevin Enderby71148242009-07-14 21:35:03 +0000183
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000184 virtual void EmitTBSSSymbol (const MCSection *Section, MCSymbol *Symbol,
185 uint64_t Size, unsigned ByteAlignment = 0);
Jim Grosbach00545e12010-09-22 18:16:55 +0000186
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000187 virtual void EmitBytes(StringRef Data);
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000188
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000189 virtual void EmitValueImpl(const MCExpr *Value, unsigned Size);
190 virtual void EmitIntValue(uint64_t Value, unsigned Size);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000191
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000192 virtual void EmitULEB128Value(const MCExpr *Value);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000193
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000194 virtual void EmitSLEB128Value(const MCExpr *Value);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000195
Akira Hatanaka6c2cf8b2012-02-03 04:33:00 +0000196 virtual void EmitGPRel64Value(const MCExpr *Value);
197
Chris Lattner718fb592010-01-25 21:28:50 +0000198 virtual void EmitGPRel32Value(const MCExpr *Value);
Jim Grosbach00545e12010-09-22 18:16:55 +0000199
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000200
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000201 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000202
Chris Lattner46a947d2009-08-17 04:17:34 +0000203 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
204 unsigned ValueSize = 1,
205 unsigned MaxBytesToEmit = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000206
Kevin Enderby6e720482010-02-23 18:26:34 +0000207 virtual void EmitCodeAlignment(unsigned ByteAlignment,
208 unsigned MaxBytesToEmit = 0);
209
Jim Grosbachebd4c052012-01-27 00:37:08 +0000210 virtual bool EmitValueToOffset(const MCExpr *Offset,
Chris Lattner46a947d2009-08-17 04:17:34 +0000211 unsigned char Value = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000212
Chris Lattnera6594fc2010-01-25 18:58:59 +0000213 virtual void EmitFileDirective(StringRef Filename);
Nick Lewycky44d798d2011-10-17 23:05:28 +0000214 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
Manman Ren3de61b42013-03-07 01:42:00 +0000215 StringRef Filename, unsigned CUID = 0);
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000216 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
217 unsigned Column, unsigned Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +0000218 unsigned Isa, unsigned Discriminator,
219 StringRef FileName);
Chris Lattnera6594fc2010-01-25 18:58:59 +0000220
Rafael Espindola713c4bf2011-05-10 13:39:48 +0000221 virtual void EmitCFISections(bool EH, bool Debug);
Rafael Espindola066c2f42011-04-12 23:59:07 +0000222 virtual void EmitCFIDefCfa(int64_t Register, int64_t Offset);
223 virtual void EmitCFIDefCfaOffset(int64_t Offset);
224 virtual void EmitCFIDefCfaRegister(int64_t Register);
225 virtual void EmitCFIOffset(int64_t Register, int64_t Offset);
226 virtual void EmitCFIPersonality(const MCSymbol *Sym, unsigned Encoding);
227 virtual void EmitCFILsda(const MCSymbol *Sym, unsigned Encoding);
228 virtual void EmitCFIRememberState();
229 virtual void EmitCFIRestoreState();
230 virtual void EmitCFISameValue(int64_t Register);
231 virtual void EmitCFIRelOffset(int64_t Register, int64_t Offset);
232 virtual void EmitCFIAdjustCfaOffset(int64_t Adjustment);
Rafael Espindola16d7d432012-01-23 21:51:52 +0000233 virtual void EmitCFISignalFrame();
Rafael Espindolac8fec7e2012-11-23 16:59:41 +0000234 virtual void EmitCFIUndefined(int64_t Register);
Rafael Espindolaf4f14f62012-11-25 15:14:49 +0000235 virtual void EmitCFIRegister(int64_t Register1, int64_t Register2);
Venkatraman Govindaraju83ba58e2013-09-26 14:49:40 +0000236 virtual void EmitCFIWindowSave();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000237
Charles Davisfbc539f2011-05-22 21:12:15 +0000238 virtual void EmitWin64EHStartProc(const MCSymbol *Symbol);
Charles Davis0e30f022011-05-18 04:58:05 +0000239 virtual void EmitWin64EHEndProc();
Charles Davisf0709012011-05-18 20:54:10 +0000240 virtual void EmitWin64EHStartChained();
241 virtual void EmitWin64EHEndChained();
Charles Davis440596f2011-05-19 17:46:39 +0000242 virtual void EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
243 bool Except);
244 virtual void EmitWin64EHHandlerData();
Charles Davisc3b16282011-05-19 19:35:55 +0000245 virtual void EmitWin64EHPushReg(unsigned Register);
246 virtual void EmitWin64EHSetFrame(unsigned Register, unsigned Offset);
247 virtual void EmitWin64EHAllocStack(unsigned Size);
248 virtual void EmitWin64EHSaveReg(unsigned Register, unsigned Offset);
249 virtual void EmitWin64EHSaveXMM(unsigned Register, unsigned Offset);
Charles Davis0e30f022011-05-18 04:58:05 +0000250 virtual void EmitWin64EHPushFrame(bool Code);
251 virtual void EmitWin64EHEndProlog();
252
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000253 virtual void EmitFnStart();
254 virtual void EmitFnEnd();
255 virtual void EmitCantUnwind();
256 virtual void EmitPersonality(const MCSymbol *Personality);
257 virtual void EmitHandlerData();
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000258 virtual void EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset = 0);
259 virtual void EmitPad(int64_t Offset);
260 virtual void EmitRegSave(const SmallVectorImpl<unsigned> &RegList, bool);
261
Rafael Espindola5e195a42013-10-05 16:42:21 +0000262 /// Mips-related methods.
263 virtual void emitMipsHackELFFlags(unsigned Flags);
264 virtual void emitMipsHackSTOCG(MCSymbol *Sym, unsigned Val);
265
266
Adhemerval Zanellaf35c62b2012-10-15 15:43:14 +0000267 virtual void EmitTCEntry(const MCSymbol &S);
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000268
Chris Lattnera6594fc2010-01-25 18:58:59 +0000269 virtual void EmitInstruction(const MCInst &Inst);
Jim Grosbach00545e12010-09-22 18:16:55 +0000270
Eli Bendersky4766ef42012-12-20 19:05:53 +0000271 virtual void EmitBundleAlignMode(unsigned AlignPow2);
Eli Bendersky6c1d4972013-01-07 21:51:08 +0000272 virtual void EmitBundleLock(bool AlignToEnd);
Eli Bendersky4766ef42012-12-20 19:05:53 +0000273 virtual void EmitBundleUnlock();
274
Jim Grosbachbd4ec842010-09-22 18:18:30 +0000275 /// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +0000276 /// the specified string in the output .s file. This capability is
277 /// indicated by the hasRawTextSupport() predicate.
278 virtual void EmitRawText(StringRef String);
Jim Grosbach00545e12010-09-22 18:16:55 +0000279
Rafael Espindola99b42372012-01-07 03:13:18 +0000280 virtual void FinishImpl();
Chris Lattner46a947d2009-08-17 04:17:34 +0000281};
Daniel Dunbar84a29262009-06-24 19:25:34 +0000282
Chris Lattner46a947d2009-08-17 04:17:34 +0000283} // end anonymous namespace.
Daniel Dunbara11af532009-06-24 01:03:06 +0000284
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000285/// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner86e22112010-01-22 07:29:22 +0000286/// file if applicable as a QoI issue to make the output of the compiler
287/// more readable. This only affects the MCAsmStreamer, and only when
288/// verbose assembly output is enabled.
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000289void MCAsmStreamer::AddComment(const Twine &T) {
Chris Lattner86e22112010-01-22 07:29:22 +0000290 if (!IsVerboseAsm) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000291
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000292 // Make sure that CommentStream is flushed.
293 CommentStream.flush();
Jim Grosbach00545e12010-09-22 18:16:55 +0000294
Chris Lattner86e22112010-01-22 07:29:22 +0000295 T.toVector(CommentToEmit);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000296 // Each comment goes on its own line.
297 CommentToEmit.push_back('\n');
Jim Grosbach00545e12010-09-22 18:16:55 +0000298
Chris Lattner14ca1772010-01-22 21:16:10 +0000299 // Tell the comment stream that the vector changed underneath it.
300 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000301}
302
303void MCAsmStreamer::EmitCommentsAndEOL() {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000304 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) {
305 OS << '\n';
306 return;
307 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000308
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000309 CommentStream.flush();
Chris Lattner86e22112010-01-22 07:29:22 +0000310 StringRef Comments = CommentToEmit.str();
Jim Grosbach00545e12010-09-22 18:16:55 +0000311
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000312 assert(Comments.back() == '\n' &&
313 "Comment array not newline terminated");
314 do {
Chris Lattner86e22112010-01-22 07:29:22 +0000315 // Emit a line of comments.
Bill Wendling99cb6222013-06-18 07:20:20 +0000316 OS.PadToColumn(MAI->getCommentColumn());
Chris Lattner86e22112010-01-22 07:29:22 +0000317 size_t Position = Comments.find('\n');
Bill Wendling99cb6222013-06-18 07:20:20 +0000318 OS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) <<'\n';
Jim Grosbach00545e12010-09-22 18:16:55 +0000319
Chris Lattner86e22112010-01-22 07:29:22 +0000320 Comments = Comments.substr(Position+1);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000321 } while (!Comments.empty());
Jim Grosbach00545e12010-09-22 18:16:55 +0000322
Chris Lattner14ca1772010-01-22 21:16:10 +0000323 CommentToEmit.clear();
324 // Tell the comment stream that the vector changed underneath it.
325 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000326}
327
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000328static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
329 assert(Bytes && "Invalid size!");
330 return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
331}
332
Peter Collingbournedf39be62013-04-17 21:18:16 +0000333void MCAsmStreamer::ChangeSection(const MCSection *Section,
334 const MCExpr *Subsection) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000335 assert(Section && "Cannot switch to a null section!");
Bill Wendling99cb6222013-06-18 07:20:20 +0000336 Section->PrintSwitchToSection(*MAI, OS, Subsection);
Daniel Dunbara11af532009-06-24 01:03:06 +0000337}
338
Rafael Espindola277abc82011-04-30 16:34:57 +0000339void MCAsmStreamer::EmitEHSymAttributes(const MCSymbol *Symbol,
340 MCSymbol *EHSymbol) {
341 if (UseCFI)
342 return;
343
344 unsigned Flags = FlagMap.lookup(Symbol);
345
346 if (Flags & EHGlobal)
347 EmitSymbolAttribute(EHSymbol, MCSA_Global);
348 if (Flags & EHWeakDefinition)
349 EmitSymbolAttribute(EHSymbol, MCSA_WeakDefinition);
350 if (Flags & EHPrivateExtern)
351 EmitSymbolAttribute(EHSymbol, MCSA_PrivateExtern);
352}
353
Daniel Dunbara11af532009-06-24 01:03:06 +0000354void MCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
Daniel Dunbar8906ff12009-08-22 07:22:36 +0000355 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Rafael Espindolaed708f92011-04-27 15:21:19 +0000356 MCStreamer::EmitLabel(Symbol);
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000357
Bill Wendling99cb6222013-06-18 07:20:20 +0000358 OS << *Symbol << MAI->getLabelSuffix();
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000359 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000360}
361
Reed Kotler2c3a4642012-12-16 04:00:45 +0000362void MCAsmStreamer::EmitDebugLabel(MCSymbol *Symbol) {
363 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
364 MCStreamer::EmitDebugLabel(Symbol);
365
Bill Wendling99cb6222013-06-18 07:20:20 +0000366 OS << *Symbol << MAI->getDebugLabelSuffix();
Reed Kotler2c3a4642012-12-16 04:00:45 +0000367 EmitEOL();
368}
369
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000370void MCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
Kevin Enderbyf96db462009-07-16 17:56:39 +0000371 switch (Flag) {
Jason W Kimafd1cc22010-09-30 02:45:56 +0000372 case MCAF_SyntaxUnified: OS << "\t.syntax unified"; break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000373 case MCAF_SubsectionsViaSymbols: OS << ".subsections_via_symbols"; break;
Bill Wendling99cb6222013-06-18 07:20:20 +0000374 case MCAF_Code16: OS << '\t'<< MAI->getCode16Directive();break;
375 case MCAF_Code32: OS << '\t'<< MAI->getCode32Directive();break;
376 case MCAF_Code64: OS << '\t'<< MAI->getCode64Directive();break;
Kevin Enderbyf96db462009-07-16 17:56:39 +0000377 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000378 EmitEOL();
Kevin Enderbya5c78322009-07-13 21:03:15 +0000379}
380
Daniel Dunbarcddd2362013-01-18 01:25:48 +0000381void MCAsmStreamer::EmitLinkerOptions(ArrayRef<std::string> Options) {
382 assert(!Options.empty() && "At least one option is required!");
383 OS << "\t.linker_option \"" << Options[0] << '"';
384 for (ArrayRef<std::string>::iterator it = Options.begin() + 1,
385 ie = Options.end(); it != ie; ++it) {
386 OS << ", " << '"' << *it << '"';
387 }
Daniel Dunbar6d49b682013-01-18 19:37:00 +0000388 OS << "\n";
Daniel Dunbarcddd2362013-01-18 01:25:48 +0000389}
390
Jim Grosbach3e965312012-05-18 19:12:01 +0000391void MCAsmStreamer::EmitDataRegion(MCDataRegionType Kind) {
Bill Wendling99cb6222013-06-18 07:20:20 +0000392 if (!MAI->doesSupportDataRegionDirectives())
Jim Grosbach3e965312012-05-18 19:12:01 +0000393 return;
394 switch (Kind) {
395 case MCDR_DataRegion: OS << "\t.data_region"; break;
396 case MCDR_DataRegionJT8: OS << "\t.data_region jt8"; break;
397 case MCDR_DataRegionJT16: OS << "\t.data_region jt16"; break;
398 case MCDR_DataRegionJT32: OS << "\t.data_region jt32"; break;
399 case MCDR_DataRegionEnd: OS << "\t.end_data_region"; break;
400 }
401 EmitEOL();
402}
403
Jim Grosbachce792992010-11-05 22:08:08 +0000404void MCAsmStreamer::EmitThumbFunc(MCSymbol *Func) {
405 // This needs to emit to a temporary string to get properly quoted
406 // MCSymbols when they have spaces in them.
407 OS << "\t.thumb_func";
Rafael Espindola64695402011-05-16 16:17:21 +0000408 // Only Mach-O hasSubsectionsViaSymbols()
Bill Wendling99cb6222013-06-18 07:20:20 +0000409 if (MAI->hasSubsectionsViaSymbols())
Jim Grosbachce792992010-11-05 22:08:08 +0000410 OS << '\t' << *Func;
411 EmitEOL();
412}
413
Daniel Dunbar821e3332009-08-31 08:09:28 +0000414void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000415 OS << *Symbol << " = " << *Value;
416 EmitEOL();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000417
418 // FIXME: Lift context changes into super class.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000419 Symbol->setVariableValue(Value);
Daniel Dunbara11af532009-06-24 01:03:06 +0000420}
421
Rafael Espindola484291c2010-11-01 14:28:48 +0000422void MCAsmStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
423 OS << ".weakref " << *Alias << ", " << *Symbol;
424 EmitEOL();
425}
426
Rafael Espindola32a006e2010-12-03 00:55:40 +0000427void MCAsmStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
428 const MCSymbol *LastLabel,
Evan Cheng672b93a2011-07-14 05:43:07 +0000429 const MCSymbol *Label,
430 unsigned PointerSize) {
431 EmitDwarfSetLineAddr(LineDelta, Label, PointerSize);
Rafael Espindola32a006e2010-12-03 00:55:40 +0000432}
433
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000434void MCAsmStreamer::EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
435 const MCSymbol *Label) {
436 EmitIntValue(dwarf::DW_CFA_advance_loc4, 1);
437 const MCExpr *AddrDelta = BuildSymbolDiff(getContext(), Label, LastLabel);
Rafael Espindolaa6f26782011-05-19 21:40:34 +0000438 AddrDelta = ForceExpAbs(AddrDelta);
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000439 EmitValue(AddrDelta, 4);
440}
441
442
Saleem Abdulrasool1c9cd022013-08-09 01:52:03 +0000443bool MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000444 MCSymbolAttr Attribute) {
Daniel Dunbara11af532009-06-24 01:03:06 +0000445 switch (Attribute) {
Craig Topper85814382012-02-07 05:05:23 +0000446 case MCSA_Invalid: llvm_unreachable("Invalid symbol attribute");
Chris Lattnered0ab152010-01-25 18:30:45 +0000447 case MCSA_ELF_TypeFunction: /// .type _foo, STT_FUNC # aka @function
448 case MCSA_ELF_TypeIndFunction: /// .type _foo, STT_GNU_IFUNC
449 case MCSA_ELF_TypeObject: /// .type _foo, STT_OBJECT # aka @object
450 case MCSA_ELF_TypeTLS: /// .type _foo, STT_TLS # aka @tls_object
451 case MCSA_ELF_TypeCommon: /// .type _foo, STT_COMMON # aka @common
452 case MCSA_ELF_TypeNoType: /// .type _foo, STT_NOTYPE # aka @notype
Rafael Espindolae9c0ff22010-11-13 04:55:06 +0000453 case MCSA_ELF_TypeGnuUniqueObject: /// .type _foo, @gnu_unique_object
Saleem Abdulrasool1c9cd022013-08-09 01:52:03 +0000454 if (!MAI->hasDotTypeDotSizeDirective())
455 return false; // Symbol attribute not supported
Dan Gohman523d70e2010-02-04 01:42:13 +0000456 OS << "\t.type\t" << *Symbol << ','
Bill Wendling99cb6222013-06-18 07:20:20 +0000457 << ((MAI->getCommentString()[0] != '@') ? '@' : '%');
Chris Lattnered0ab152010-01-25 18:30:45 +0000458 switch (Attribute) {
Saleem Abdulrasool1c9cd022013-08-09 01:52:03 +0000459 default: return false;
Chris Lattnered0ab152010-01-25 18:30:45 +0000460 case MCSA_ELF_TypeFunction: OS << "function"; break;
461 case MCSA_ELF_TypeIndFunction: OS << "gnu_indirect_function"; break;
462 case MCSA_ELF_TypeObject: OS << "object"; break;
463 case MCSA_ELF_TypeTLS: OS << "tls_object"; break;
464 case MCSA_ELF_TypeCommon: OS << "common"; break;
465 case MCSA_ELF_TypeNoType: OS << "no_type"; break;
Rafael Espindolae9c0ff22010-11-13 04:55:06 +0000466 case MCSA_ELF_TypeGnuUniqueObject: OS << "gnu_unique_object"; break;
Chris Lattnered0ab152010-01-25 18:30:45 +0000467 }
468 EmitEOL();
Saleem Abdulrasool1c9cd022013-08-09 01:52:03 +0000469 return true;
Chris Lattnered0ab152010-01-25 18:30:45 +0000470 case MCSA_Global: // .globl/.global
Bill Wendling99cb6222013-06-18 07:20:20 +0000471 OS << MAI->getGlobalDirective();
Rafael Espindola277abc82011-04-30 16:34:57 +0000472 FlagMap[Symbol] |= EHGlobal;
Chris Lattnered0ab152010-01-25 18:30:45 +0000473 break;
Chris Lattner61abd7b2010-06-21 20:35:01 +0000474 case MCSA_Hidden: OS << "\t.hidden\t"; break;
475 case MCSA_IndirectSymbol: OS << "\t.indirect_symbol\t"; break;
476 case MCSA_Internal: OS << "\t.internal\t"; break;
477 case MCSA_LazyReference: OS << "\t.lazy_reference\t"; break;
478 case MCSA_Local: OS << "\t.local\t"; break;
479 case MCSA_NoDeadStrip: OS << "\t.no_dead_strip\t"; break;
Kevin Enderbye8e98d72010-11-19 18:39:33 +0000480 case MCSA_SymbolResolver: OS << "\t.symbol_resolver\t"; break;
Rafael Espindola277abc82011-04-30 16:34:57 +0000481 case MCSA_PrivateExtern:
482 OS << "\t.private_extern\t";
483 FlagMap[Symbol] |= EHPrivateExtern;
484 break;
Chris Lattner61abd7b2010-06-21 20:35:01 +0000485 case MCSA_Protected: OS << "\t.protected\t"; break;
486 case MCSA_Reference: OS << "\t.reference\t"; break;
487 case MCSA_Weak: OS << "\t.weak\t"; break;
Rafael Espindola277abc82011-04-30 16:34:57 +0000488 case MCSA_WeakDefinition:
489 OS << "\t.weak_definition\t";
490 FlagMap[Symbol] |= EHWeakDefinition;
491 break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000492 // .weak_reference
Bill Wendling99cb6222013-06-18 07:20:20 +0000493 case MCSA_WeakReference: OS << MAI->getWeakRefDirective(); break;
Kevin Enderbyf59cac52010-07-08 17:22:42 +0000494 case MCSA_WeakDefAutoPrivate: OS << "\t.weak_def_can_be_hidden\t"; break;
Daniel Dunbara11af532009-06-24 01:03:06 +0000495 }
496
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000497 OS << *Symbol;
498 EmitEOL();
Saleem Abdulrasool1c9cd022013-08-09 01:52:03 +0000499
500 return true;
Daniel Dunbara11af532009-06-24 01:03:06 +0000501}
502
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000503void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000504 OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
505 EmitEOL();
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000506}
507
Chris Lattnerb54b9dd2010-05-08 19:54:22 +0000508void MCAsmStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {
509 OS << "\t.def\t " << *Symbol << ';';
510 EmitEOL();
511}
512
513void MCAsmStreamer::EmitCOFFSymbolStorageClass (int StorageClass) {
514 OS << "\t.scl\t" << StorageClass << ';';
515 EmitEOL();
516}
517
518void MCAsmStreamer::EmitCOFFSymbolType (int Type) {
519 OS << "\t.type\t" << Type << ';';
520 EmitEOL();
521}
522
523void MCAsmStreamer::EndCOFFSymbolDef() {
524 OS << "\t.endef";
525 EmitEOL();
526}
527
Rafael Espindola8f7d12c2011-12-17 01:14:52 +0000528void MCAsmStreamer::EmitCOFFSecRel32(MCSymbol const *Symbol) {
529 OS << "\t.secrel32\t" << *Symbol << '\n';
530 EmitEOL();
531}
532
Chris Lattner99328ad2010-01-25 07:52:13 +0000533void MCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
Bill Wendling99cb6222013-06-18 07:20:20 +0000534 assert(MAI->hasDotTypeDotSizeDirective());
Chris Lattner99328ad2010-01-25 07:52:13 +0000535 OS << "\t.size\t" << *Symbol << ", " << *Value << '\n';
536}
537
Chris Lattner9eb158d2010-01-23 07:47:02 +0000538void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000539 unsigned ByteAlignment) {
Richard Mittoneb46def2013-09-23 17:56:20 +0000540 // Common symbols do not belong to any actual section.
541 AssignSection(Symbol, NULL);
Richard Mitton5cc319a2013-09-19 23:21:01 +0000542
Chris Lattner9eb158d2010-01-23 07:47:02 +0000543 OS << "\t.comm\t" << *Symbol << ',' << Size;
Chris Lattner6559d762010-01-25 07:29:13 +0000544 if (ByteAlignment != 0) {
Bill Wendling99cb6222013-06-18 07:20:20 +0000545 if (MAI->getCOMMDirectiveAlignmentIsInBytes())
Chris Lattner4ed54382010-01-19 06:01:04 +0000546 OS << ',' << ByteAlignment;
547 else
548 OS << ',' << Log2_32(ByteAlignment);
549 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000550 EmitEOL();
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000551}
552
Chris Lattner9eb158d2010-01-23 07:47:02 +0000553/// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
554///
555/// @param Symbol - The common symbol to emit.
556/// @param Size - The size of the common symbol.
Benjamin Kramer36a16012011-09-01 23:04:27 +0000557void MCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
558 unsigned ByteAlign) {
Richard Mittoneb46def2013-09-23 17:56:20 +0000559 // Common symbols do not belong to any actual section.
560 AssignSection(Symbol, NULL);
Richard Mitton5cc319a2013-09-19 23:21:01 +0000561
Chris Lattner9eb158d2010-01-23 07:47:02 +0000562 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
Benjamin Kramer36a16012011-09-01 23:04:27 +0000563 if (ByteAlign > 1) {
Bill Wendling99cb6222013-06-18 07:20:20 +0000564 switch (MAI->getLCOMMDirectiveAlignmentType()) {
Benjamin Kramera9e37c52012-09-07 21:08:01 +0000565 case LCOMM::NoAlignment:
566 llvm_unreachable("alignment not supported on .lcomm!");
567 case LCOMM::ByteAlignment:
Benjamin Kramer39646d92012-09-07 17:25:13 +0000568 OS << ',' << ByteAlign;
Benjamin Kramera9e37c52012-09-07 21:08:01 +0000569 break;
570 case LCOMM::Log2Alignment:
Benjamin Kramer39646d92012-09-07 17:25:13 +0000571 assert(isPowerOf2_32(ByteAlign) && "alignment must be a power of 2");
572 OS << ',' << Log2_32(ByteAlign);
Benjamin Kramera9e37c52012-09-07 21:08:01 +0000573 break;
Benjamin Kramer39646d92012-09-07 17:25:13 +0000574 }
Benjamin Kramer36a16012011-09-01 23:04:27 +0000575 }
Chris Lattner9eb158d2010-01-23 07:47:02 +0000576 EmitEOL();
577}
578
Daniel Dunbar8751b942009-08-28 05:48:22 +0000579void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Evan Chengc90a1fc2012-06-22 20:14:46 +0000580 uint64_t Size, unsigned ByteAlignment) {
Richard Mitton5cc319a2013-09-19 23:21:01 +0000581 if (Symbol)
582 AssignSection(Symbol, Section);
583
Daniel Dunbar011e4db2009-08-13 23:36:34 +0000584 // Note: a .zerofill directive does not switch sections.
Chris Lattner93b6db32009-08-08 23:39:42 +0000585 OS << ".zerofill ";
Jim Grosbach00545e12010-09-22 18:16:55 +0000586
Chris Lattner93b6db32009-08-08 23:39:42 +0000587 // This is a mach-o specific directive.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000588 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
Daniel Dunbar12de0df2009-08-14 18:51:45 +0000589 OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
Jim Grosbach00545e12010-09-22 18:16:55 +0000590
Chris Lattner9be3fee2009-07-10 22:20:30 +0000591 if (Symbol != NULL) {
Chris Lattner10b318b2010-01-17 21:43:43 +0000592 OS << ',' << *Symbol << ',' << Size;
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000593 if (ByteAlignment != 0)
594 OS << ',' << Log2_32(ByteAlignment);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000595 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000596 EmitEOL();
Chris Lattner9be3fee2009-07-10 22:20:30 +0000597}
598
Eric Christopherd04d98d2010-05-17 02:13:02 +0000599// .tbss sym, size, align
600// This depends that the symbol has already been mangled from the original,
601// e.g. _a.
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000602void MCAsmStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
603 uint64_t Size, unsigned ByteAlignment) {
Richard Mitton5cc319a2013-09-19 23:21:01 +0000604 AssignSection(Symbol, Section);
605
Eric Christopher482eba02010-05-14 01:50:28 +0000606 assert(Symbol != NULL && "Symbol shouldn't be NULL!");
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000607 // Instead of using the Section we'll just use the shortcut.
608 // This is a mach-o specific directive and section.
Eric Christopherd04d98d2010-05-17 02:13:02 +0000609 OS << ".tbss " << *Symbol << ", " << Size;
Jim Grosbach00545e12010-09-22 18:16:55 +0000610
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000611 // Output align if we have it. We default to 1 so don't bother printing
612 // that.
613 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
Jim Grosbach00545e12010-09-22 18:16:55 +0000614
Eric Christopher482eba02010-05-14 01:50:28 +0000615 EmitEOL();
616}
617
Chris Lattner12e555c2010-01-23 00:15:00 +0000618static inline char toOctal(int X) { return (X&7)+'0'; }
619
Chris Lattnera6594fc2010-01-25 18:58:59 +0000620static void PrintQuotedString(StringRef Data, raw_ostream &OS) {
621 OS << '"';
Jim Grosbach00545e12010-09-22 18:16:55 +0000622
Chris Lattnera6594fc2010-01-25 18:58:59 +0000623 for (unsigned i = 0, e = Data.size(); i != e; ++i) {
624 unsigned char C = Data[i];
625 if (C == '"' || C == '\\') {
626 OS << '\\' << (char)C;
627 continue;
628 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000629
Chris Lattnera6594fc2010-01-25 18:58:59 +0000630 if (isprint((unsigned char)C)) {
631 OS << (char)C;
632 continue;
633 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000634
Chris Lattnera6594fc2010-01-25 18:58:59 +0000635 switch (C) {
636 case '\b': OS << "\\b"; break;
637 case '\f': OS << "\\f"; break;
638 case '\n': OS << "\\n"; break;
639 case '\r': OS << "\\r"; break;
640 case '\t': OS << "\\t"; break;
641 default:
642 OS << '\\';
643 OS << toOctal(C >> 6);
644 OS << toOctal(C >> 3);
645 OS << toOctal(C >> 0);
646 break;
647 }
648 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000649
Chris Lattnera6594fc2010-01-25 18:58:59 +0000650 OS << '"';
651}
652
653
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000654void MCAsmStreamer::EmitBytes(StringRef Data) {
Peter Collingbournedf39be62013-04-17 21:18:16 +0000655 assert(getCurrentSection().first &&
656 "Cannot emit contents before setting section!");
Chris Lattner12e555c2010-01-23 00:15:00 +0000657 if (Data.empty()) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000658
Chris Lattner12e555c2010-01-23 00:15:00 +0000659 if (Data.size() == 1) {
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000660 OS << MAI->getData8bitsDirective();
Chris Lattner12e555c2010-01-23 00:15:00 +0000661 OS << (unsigned)(unsigned char)Data[0];
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000662 EmitEOL();
Chris Lattner12e555c2010-01-23 00:15:00 +0000663 return;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000664 }
Chris Lattner12e555c2010-01-23 00:15:00 +0000665
666 // If the data ends with 0 and the target supports .asciz, use it, otherwise
667 // use .ascii
Bill Wendling99cb6222013-06-18 07:20:20 +0000668 if (MAI->getAscizDirective() && Data.back() == 0) {
669 OS << MAI->getAscizDirective();
Chris Lattner12e555c2010-01-23 00:15:00 +0000670 Data = Data.substr(0, Data.size()-1);
671 } else {
Bill Wendling99cb6222013-06-18 07:20:20 +0000672 OS << MAI->getAsciiDirective();
Chris Lattner12e555c2010-01-23 00:15:00 +0000673 }
674
Chris Lattnera6594fc2010-01-25 18:58:59 +0000675 PrintQuotedString(Data, OS);
Chris Lattner12e555c2010-01-23 00:15:00 +0000676 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000677}
678
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000679void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size) {
680 EmitValue(MCConstantExpr::Create(Value, getContext()), Size);
Rafael Espindola2df042c2010-12-03 02:54:21 +0000681}
682
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000683void MCAsmStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size) {
Peter Collingbournedf39be62013-04-17 21:18:16 +0000684 assert(getCurrentSection().first &&
685 "Cannot emit contents before setting section!");
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000686 const char *Directive = 0;
687 switch (Size) {
688 default: break;
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000689 case 1: Directive = MAI->getData8bitsDirective(); break;
690 case 2: Directive = MAI->getData16bitsDirective(); break;
691 case 4: Directive = MAI->getData32bitsDirective(); break;
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000692 case 8:
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000693 Directive = MAI->getData64bitsDirective();
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000694 // If the target doesn't support 64-bit data, emit as two 32-bit halves.
695 if (Directive) break;
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000696 int64_t IntValue;
697 if (!Value->EvaluateAsAbsolute(IntValue))
698 report_fatal_error("Don't know how to emit this value.");
Bill Wendling99cb6222013-06-18 07:20:20 +0000699 if (MAI->isLittleEndian()) {
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000700 EmitIntValue((uint32_t)(IntValue >> 0 ), 4);
701 EmitIntValue((uint32_t)(IntValue >> 32), 4);
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000702 } else {
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000703 EmitIntValue((uint32_t)(IntValue >> 32), 4);
704 EmitIntValue((uint32_t)(IntValue >> 0 ), 4);
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000705 }
706 return;
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000707 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000708
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000709 assert(Directive && "Invalid size for machine code value!");
Chris Lattner718fb592010-01-25 21:28:50 +0000710 OS << Directive << *Value;
Chris Lattner86e22112010-01-22 07:29:22 +0000711 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000712}
713
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000714void MCAsmStreamer::EmitULEB128Value(const MCExpr *Value) {
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000715 int64_t IntValue;
716 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000717 EmitULEB128IntValue(IntValue);
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000718 return;
719 }
Bill Wendling99cb6222013-06-18 07:20:20 +0000720 assert(MAI->hasLEB128() && "Cannot print a .uleb");
Rafael Espindola73873452010-11-04 18:17:08 +0000721 OS << ".uleb128 " << *Value;
Rafael Espindola3ff57092010-11-02 17:22:24 +0000722 EmitEOL();
723}
724
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000725void MCAsmStreamer::EmitSLEB128Value(const MCExpr *Value) {
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000726 int64_t IntValue;
727 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000728 EmitSLEB128IntValue(IntValue);
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000729 return;
730 }
Bill Wendling99cb6222013-06-18 07:20:20 +0000731 assert(MAI->hasLEB128() && "Cannot print a .sleb");
Rafael Espindola73873452010-11-04 18:17:08 +0000732 OS << ".sleb128 " << *Value;
Rafael Espindola3ff57092010-11-02 17:22:24 +0000733 EmitEOL();
734}
735
Akira Hatanaka6c2cf8b2012-02-03 04:33:00 +0000736void MCAsmStreamer::EmitGPRel64Value(const MCExpr *Value) {
Bill Wendling99cb6222013-06-18 07:20:20 +0000737 assert(MAI->getGPRel64Directive() != 0);
738 OS << MAI->getGPRel64Directive() << *Value;
Akira Hatanaka6c2cf8b2012-02-03 04:33:00 +0000739 EmitEOL();
740}
741
Chris Lattner718fb592010-01-25 21:28:50 +0000742void MCAsmStreamer::EmitGPRel32Value(const MCExpr *Value) {
Bill Wendling99cb6222013-06-18 07:20:20 +0000743 assert(MAI->getGPRel32Directive() != 0);
744 OS << MAI->getGPRel32Directive() << *Value;
Chris Lattner718fb592010-01-25 21:28:50 +0000745 EmitEOL();
746}
747
748
Chris Lattner6113b3d2010-01-19 18:52:28 +0000749/// EmitFill - Emit NumBytes bytes worth of the value specified by
750/// FillValue. This implements directives such as '.space'.
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000751void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue) {
Chris Lattner8a6d7ac2010-01-19 18:58:52 +0000752 if (NumBytes == 0) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000753
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000754 if (const char *ZeroDirective = MAI->getZeroDirective()) {
755 OS << ZeroDirective << NumBytes;
756 if (FillValue != 0)
757 OS << ',' << (int)FillValue;
758 EmitEOL();
759 return;
760 }
Chris Lattneraaec2052010-01-19 19:46:13 +0000761
762 // Emit a byte at a time.
Rafael Espindolaa3863ea2013-07-02 15:49:13 +0000763 MCStreamer::EmitFill(NumBytes, FillValue);
Chris Lattner6113b3d2010-01-19 18:52:28 +0000764}
765
Daniel Dunbar84a29262009-06-24 19:25:34 +0000766void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
767 unsigned ValueSize,
768 unsigned MaxBytesToEmit) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000769 // Some assemblers don't support non-power of two alignments, so we always
770 // emit alignments as a power of two if possible.
771 if (isPowerOf2_32(ByteAlignment)) {
Chris Lattner6e579c62009-08-19 06:35:36 +0000772 switch (ValueSize) {
773 default: llvm_unreachable("Invalid size for machine code value!");
Bill Wendling99cb6222013-06-18 07:20:20 +0000774 case 1: OS << MAI->getAlignDirective(); break;
Chris Lattner33adcfb2009-08-22 21:43:10 +0000775 // FIXME: use MAI for this!
Chris Lattner6e579c62009-08-19 06:35:36 +0000776 case 2: OS << ".p2alignw "; break;
777 case 4: OS << ".p2alignl "; break;
778 case 8: llvm_unreachable("Unsupported alignment size!");
779 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000780
Bill Wendling99cb6222013-06-18 07:20:20 +0000781 if (MAI->getAlignmentIsInBytes())
Chris Lattner663c2d22009-08-19 06:12:02 +0000782 OS << ByteAlignment;
783 else
784 OS << Log2_32(ByteAlignment);
Daniel Dunbar84a29262009-06-24 19:25:34 +0000785
Chris Lattner663c2d22009-08-19 06:12:02 +0000786 if (Value || MaxBytesToEmit) {
Chris Lattner579531c2009-09-03 04:01:10 +0000787 OS << ", 0x";
788 OS.write_hex(truncateToSize(Value, ValueSize));
Chris Lattner663c2d22009-08-19 06:12:02 +0000789
Jim Grosbach00545e12010-09-22 18:16:55 +0000790 if (MaxBytesToEmit)
Chris Lattner663c2d22009-08-19 06:12:02 +0000791 OS << ", " << MaxBytesToEmit;
792 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000793 EmitEOL();
Chris Lattner663c2d22009-08-19 06:12:02 +0000794 return;
795 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000796
Chris Lattner663c2d22009-08-19 06:12:02 +0000797 // Non-power of two alignment. This is not widely supported by assemblers.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000798 // FIXME: Parameterize this based on MAI.
Daniel Dunbar84a29262009-06-24 19:25:34 +0000799 switch (ValueSize) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000800 default: llvm_unreachable("Invalid size for machine code value!");
801 case 1: OS << ".balign"; break;
802 case 2: OS << ".balignw"; break;
803 case 4: OS << ".balignl"; break;
804 case 8: llvm_unreachable("Unsupported alignment size!");
Daniel Dunbar84a29262009-06-24 19:25:34 +0000805 }
806
Chris Lattner663c2d22009-08-19 06:12:02 +0000807 OS << ' ' << ByteAlignment;
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000808 OS << ", " << truncateToSize(Value, ValueSize);
Jim Grosbach00545e12010-09-22 18:16:55 +0000809 if (MaxBytesToEmit)
Daniel Dunbar84a29262009-06-24 19:25:34 +0000810 OS << ", " << MaxBytesToEmit;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000811 EmitEOL();
Daniel Dunbar84a29262009-06-24 19:25:34 +0000812}
813
Kevin Enderby6e720482010-02-23 18:26:34 +0000814void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
815 unsigned MaxBytesToEmit) {
Chris Lattnerec167fd2010-02-23 18:44:31 +0000816 // Emit with a text fill value.
Bill Wendling99cb6222013-06-18 07:20:20 +0000817 EmitValueToAlignment(ByteAlignment, MAI->getTextAlignFillValue(),
Chris Lattnerec167fd2010-02-23 18:44:31 +0000818 1, MaxBytesToEmit);
Kevin Enderby6e720482010-02-23 18:26:34 +0000819}
820
Jim Grosbachebd4c052012-01-27 00:37:08 +0000821bool MCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbar84a29262009-06-24 19:25:34 +0000822 unsigned char Value) {
823 // FIXME: Verify that Offset is associated with the current section.
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000824 OS << ".org " << *Offset << ", " << (unsigned) Value;
825 EmitEOL();
Jim Grosbachebd4c052012-01-27 00:37:08 +0000826 return false;
Daniel Dunbar84a29262009-06-24 19:25:34 +0000827}
828
Chris Lattnera6594fc2010-01-25 18:58:59 +0000829
830void MCAsmStreamer::EmitFileDirective(StringRef Filename) {
Bill Wendling99cb6222013-06-18 07:20:20 +0000831 assert(MAI->hasSingleParameterDotFile());
Chris Lattnera6594fc2010-01-25 18:58:59 +0000832 OS << "\t.file\t";
833 PrintQuotedString(Filename, OS);
834 EmitEOL();
835}
836
Nick Lewycky44d798d2011-10-17 23:05:28 +0000837bool MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
Manman Ren3de61b42013-03-07 01:42:00 +0000838 StringRef Filename, unsigned CUID) {
Nick Lewycky44d798d2011-10-17 23:05:28 +0000839 if (!UseDwarfDirectory && !Directory.empty()) {
840 if (sys::path::is_absolute(Filename))
Manman Ren3de61b42013-03-07 01:42:00 +0000841 return EmitDwarfFileDirective(FileNo, "", Filename, CUID);
Nick Lewycky44d798d2011-10-17 23:05:28 +0000842
843 SmallString<128> FullPathName = Directory;
844 sys::path::append(FullPathName, Filename);
Manman Ren3de61b42013-03-07 01:42:00 +0000845 return EmitDwarfFileDirective(FileNo, "", FullPathName, CUID);
Nick Lewycky44d798d2011-10-17 23:05:28 +0000846 }
847
Rafael Espindola89b93722010-12-10 07:39:47 +0000848 if (UseLoc) {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000849 OS << "\t.file\t" << FileNo << ' ';
Nick Lewycky44d798d2011-10-17 23:05:28 +0000850 if (!Directory.empty()) {
851 PrintQuotedString(Directory, OS);
852 OS << ' ';
853 }
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000854 PrintQuotedString(Filename, OS);
855 EmitEOL();
Manman Ren3de61b42013-03-07 01:42:00 +0000856 // All .file will belong to a single CUID.
857 CUID = 0;
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000858 }
Manman Ren3de61b42013-03-07 01:42:00 +0000859 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Directory, Filename,
860 CUID);
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000861}
862
863void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
864 unsigned Column, unsigned Flags,
865 unsigned Isa,
Devang Patel3f3bf932011-04-18 20:26:49 +0000866 unsigned Discriminator,
867 StringRef FileName) {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000868 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +0000869 Isa, Discriminator, FileName);
Rafael Espindola89b93722010-12-10 07:39:47 +0000870 if (!UseLoc)
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000871 return;
872
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000873 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
874 if (Flags & DWARF2_FLAG_BASIC_BLOCK)
875 OS << " basic_block";
876 if (Flags & DWARF2_FLAG_PROLOGUE_END)
877 OS << " prologue_end";
878 if (Flags & DWARF2_FLAG_EPILOGUE_BEGIN)
879 OS << " epilogue_begin";
880
881 unsigned OldFlags = getContext().getCurrentDwarfLoc().getFlags();
882 if ((Flags & DWARF2_FLAG_IS_STMT) != (OldFlags & DWARF2_FLAG_IS_STMT)) {
883 OS << " is_stmt ";
884
885 if (Flags & DWARF2_FLAG_IS_STMT)
886 OS << "1";
887 else
888 OS << "0";
889 }
890
891 if (Isa)
892 OS << "isa " << Isa;
893 if (Discriminator)
894 OS << "discriminator " << Discriminator;
Devang Patel3f3bf932011-04-18 20:26:49 +0000895
896 if (IsVerboseAsm) {
Bill Wendling99cb6222013-06-18 07:20:20 +0000897 OS.PadToColumn(MAI->getCommentColumn());
898 OS << MAI->getCommentString() << ' ' << FileName << ':'
Devang Patel3f3bf932011-04-18 20:26:49 +0000899 << Line << ':' << Column;
900 }
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000901 EmitEOL();
Chris Lattnera6594fc2010-01-25 18:58:59 +0000902}
903
Rafael Espindola713c4bf2011-05-10 13:39:48 +0000904void MCAsmStreamer::EmitCFISections(bool EH, bool Debug) {
905 MCStreamer::EmitCFISections(EH, Debug);
906
907 if (!UseCFI)
908 return;
909
910 OS << "\t.cfi_sections ";
911 if (EH) {
912 OS << ".eh_frame";
913 if (Debug)
914 OS << ", .debug_frame";
915 } else if (Debug) {
916 OS << ".debug_frame";
917 }
918
919 EmitEOL();
920}
921
Rafael Espindola547be262012-01-07 22:42:19 +0000922void MCAsmStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) {
923 if (!UseCFI) {
924 RecordProcStart(Frame);
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000925 return;
Rafael Espindola547be262012-01-07 22:42:19 +0000926 }
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000927
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000928 OS << "\t.cfi_startproc";
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000929 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000930}
931
Rafael Espindola1fe97372012-01-09 00:17:29 +0000932void MCAsmStreamer::EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) {
933 if (!UseCFI) {
934 RecordProcEnd(Frame);
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000935 return;
Rafael Espindola1fe97372012-01-09 00:17:29 +0000936 }
937
938 // Put a dummy non-null value in Frame.End to mark that this frame has been
939 // closed.
940 Frame.End = (MCSymbol *) 1;
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000941
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000942 OS << "\t.cfi_endproc";
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000943 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000944}
945
Rafael Espindola6e032942011-05-30 20:20:15 +0000946void MCAsmStreamer::EmitRegisterName(int64_t Register) {
Bill Wendling99cb6222013-06-18 07:20:20 +0000947 if (InstPrinter && !MAI->useDwarfRegNumForCFI()) {
948 const MCRegisterInfo *MRI = getContext().getRegisterInfo();
949 unsigned LLVMRegister = MRI->getLLVMRegNum(Register, true);
Rafael Espindolacde4ce42011-06-02 02:34:55 +0000950 InstPrinter->printRegName(OS, LLVMRegister);
Rafael Espindola6e032942011-05-30 20:20:15 +0000951 } else {
952 OS << Register;
953 }
954}
955
Rafael Espindola066c2f42011-04-12 23:59:07 +0000956void MCAsmStreamer::EmitCFIDefCfa(int64_t Register, int64_t Offset) {
Rafael Espindola7f46b082011-04-29 21:41:06 +0000957 MCStreamer::EmitCFIDefCfa(Register, Offset);
958
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000959 if (!UseCFI)
960 return;
961
Rafael Espindola6e032942011-05-30 20:20:15 +0000962 OS << "\t.cfi_def_cfa ";
963 EmitRegisterName(Register);
964 OS << ", " << Offset;
Rafael Espindola7f46b082011-04-29 21:41:06 +0000965 EmitEOL();
Rafael Espindola066c2f42011-04-12 23:59:07 +0000966}
967
968void MCAsmStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
969 MCStreamer::EmitCFIDefCfaOffset(Offset);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000970
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000971 if (!UseCFI)
972 return;
973
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000974 OS << "\t.cfi_def_cfa_offset " << Offset;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000975 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000976}
977
Rafael Espindola066c2f42011-04-12 23:59:07 +0000978void MCAsmStreamer::EmitCFIDefCfaRegister(int64_t Register) {
979 MCStreamer::EmitCFIDefCfaRegister(Register);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000980
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000981 if (!UseCFI)
982 return;
983
Rafael Espindola6e032942011-05-30 20:20:15 +0000984 OS << "\t.cfi_def_cfa_register ";
985 EmitRegisterName(Register);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000986 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000987}
988
Rafael Espindola066c2f42011-04-12 23:59:07 +0000989void MCAsmStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
990 this->MCStreamer::EmitCFIOffset(Register, Offset);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000991
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000992 if (!UseCFI)
993 return;
994
Rafael Espindola6e032942011-05-30 20:20:15 +0000995 OS << "\t.cfi_offset ";
996 EmitRegisterName(Register);
997 OS << ", " << Offset;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000998 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000999}
1000
Rafael Espindola066c2f42011-04-12 23:59:07 +00001001void MCAsmStreamer::EmitCFIPersonality(const MCSymbol *Sym,
Rafael Espindola3a83c402010-12-27 00:36:05 +00001002 unsigned Encoding) {
Rafael Espindola066c2f42011-04-12 23:59:07 +00001003 MCStreamer::EmitCFIPersonality(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +00001004
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001005 if (!UseCFI)
1006 return;
1007
Anton Korobeynikovc6585202011-01-14 21:57:39 +00001008 OS << "\t.cfi_personality " << Encoding << ", " << *Sym;
Rafael Espindolacdfecc82010-11-22 14:27:24 +00001009 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +00001010}
1011
Rafael Espindola066c2f42011-04-12 23:59:07 +00001012void MCAsmStreamer::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) {
1013 MCStreamer::EmitCFILsda(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +00001014
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001015 if (!UseCFI)
1016 return;
1017
Anton Korobeynikovc6585202011-01-14 21:57:39 +00001018 OS << "\t.cfi_lsda " << Encoding << ", " << *Sym;
Rafael Espindolacdfecc82010-11-22 14:27:24 +00001019 EmitEOL();
Rafael Espindola066c2f42011-04-12 23:59:07 +00001020}
Rafael Espindolacdfecc82010-11-22 14:27:24 +00001021
Rafael Espindola066c2f42011-04-12 23:59:07 +00001022void MCAsmStreamer::EmitCFIRememberState() {
1023 MCStreamer::EmitCFIRememberState();
1024
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001025 if (!UseCFI)
1026 return;
1027
Rafael Espindola066c2f42011-04-12 23:59:07 +00001028 OS << "\t.cfi_remember_state";
1029 EmitEOL();
1030}
1031
1032void MCAsmStreamer::EmitCFIRestoreState() {
1033 MCStreamer::EmitCFIRestoreState();
1034
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001035 if (!UseCFI)
1036 return;
1037
Rafael Espindola066c2f42011-04-12 23:59:07 +00001038 OS << "\t.cfi_restore_state";
1039 EmitEOL();
1040}
1041
1042void MCAsmStreamer::EmitCFISameValue(int64_t Register) {
1043 MCStreamer::EmitCFISameValue(Register);
1044
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001045 if (!UseCFI)
1046 return;
1047
Rafael Espindola6e032942011-05-30 20:20:15 +00001048 OS << "\t.cfi_same_value ";
1049 EmitRegisterName(Register);
Rafael Espindola066c2f42011-04-12 23:59:07 +00001050 EmitEOL();
1051}
1052
1053void MCAsmStreamer::EmitCFIRelOffset(int64_t Register, int64_t Offset) {
1054 MCStreamer::EmitCFIRelOffset(Register, Offset);
1055
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001056 if (!UseCFI)
1057 return;
1058
Rafael Espindola6e032942011-05-30 20:20:15 +00001059 OS << "\t.cfi_rel_offset ";
1060 EmitRegisterName(Register);
1061 OS << ", " << Offset;
Rafael Espindola066c2f42011-04-12 23:59:07 +00001062 EmitEOL();
1063}
1064
1065void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) {
1066 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
1067
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001068 if (!UseCFI)
1069 return;
1070
Rafael Espindola066c2f42011-04-12 23:59:07 +00001071 OS << "\t.cfi_adjust_cfa_offset " << Adjustment;
1072 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +00001073}
1074
Rafael Espindola16d7d432012-01-23 21:51:52 +00001075void MCAsmStreamer::EmitCFISignalFrame() {
1076 MCStreamer::EmitCFISignalFrame();
1077
1078 if (!UseCFI)
1079 return;
1080
Eric Christopherfeba1932012-05-31 00:53:18 +00001081 OS << "\t.cfi_signal_frame";
Rafael Espindola16d7d432012-01-23 21:51:52 +00001082 EmitEOL();
1083}
1084
Rafael Espindolac8fec7e2012-11-23 16:59:41 +00001085void MCAsmStreamer::EmitCFIUndefined(int64_t Register) {
1086 MCStreamer::EmitCFIUndefined(Register);
1087
1088 if (!UseCFI)
1089 return;
1090
1091 OS << "\t.cfi_undefined " << Register;
1092 EmitEOL();
1093}
1094
Rafael Espindolaf4f14f62012-11-25 15:14:49 +00001095void MCAsmStreamer::EmitCFIRegister(int64_t Register1, int64_t Register2) {
1096 MCStreamer::EmitCFIRegister(Register1, Register2);
1097
1098 if (!UseCFI)
1099 return;
1100
1101 OS << "\t.cfi_register " << Register1 << ", " << Register2;
1102 EmitEOL();
1103}
1104
Venkatraman Govindaraju83ba58e2013-09-26 14:49:40 +00001105void MCAsmStreamer::EmitCFIWindowSave() {
1106 MCStreamer::EmitCFIWindowSave();
1107
1108 if (!UseCFI)
1109 return;
1110
1111 OS << "\t.cfi_window_save";
1112 EmitEOL();
1113}
1114
Charles Davisfbc539f2011-05-22 21:12:15 +00001115void MCAsmStreamer::EmitWin64EHStartProc(const MCSymbol *Symbol) {
Charles Daviscde87e22011-05-20 18:19:22 +00001116 MCStreamer::EmitWin64EHStartProc(Symbol);
1117
Charles Davis440596f2011-05-19 17:46:39 +00001118 OS << ".seh_proc " << *Symbol;
Charles Davis0e30f022011-05-18 04:58:05 +00001119 EmitEOL();
1120}
1121
Charles Davis8b3e5e52011-05-18 22:13:51 +00001122void MCAsmStreamer::EmitWin64EHEndProc() {
Charles Daviscde87e22011-05-20 18:19:22 +00001123 MCStreamer::EmitWin64EHEndProc();
1124
Charles Davis440596f2011-05-19 17:46:39 +00001125 OS << "\t.seh_endproc";
Charles Davis0e30f022011-05-18 04:58:05 +00001126 EmitEOL();
1127}
1128
Charles Davis8b3e5e52011-05-18 22:13:51 +00001129void MCAsmStreamer::EmitWin64EHStartChained() {
Charles Daviscde87e22011-05-20 18:19:22 +00001130 MCStreamer::EmitWin64EHStartChained();
1131
Charles Davis440596f2011-05-19 17:46:39 +00001132 OS << "\t.seh_startchained";
Charles Davisf0709012011-05-18 20:54:10 +00001133 EmitEOL();
1134}
1135
Charles Davis8b3e5e52011-05-18 22:13:51 +00001136void MCAsmStreamer::EmitWin64EHEndChained() {
Charles Daviscde87e22011-05-20 18:19:22 +00001137 MCStreamer::EmitWin64EHEndChained();
1138
Charles Davis440596f2011-05-19 17:46:39 +00001139 OS << "\t.seh_endchained";
Charles Davisf0709012011-05-18 20:54:10 +00001140 EmitEOL();
1141}
1142
Charles Davis440596f2011-05-19 17:46:39 +00001143void MCAsmStreamer::EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
1144 bool Except) {
Charles Daviscde87e22011-05-20 18:19:22 +00001145 MCStreamer::EmitWin64EHHandler(Sym, Unwind, Except);
1146
Charles Davis440596f2011-05-19 17:46:39 +00001147 OS << "\t.seh_handler " << *Sym;
1148 if (Unwind)
1149 OS << ", @unwind";
1150 if (Except)
1151 OS << ", @except";
Charles Davisf0709012011-05-18 20:54:10 +00001152 EmitEOL();
1153}
1154
Evan Chenge76a33b2011-07-20 05:58:47 +00001155static const MCSection *getWin64EHTableSection(StringRef suffix,
1156 MCContext &context) {
1157 // FIXME: This doesn't belong in MCObjectFileInfo. However,
1158 /// this duplicate code in MCWin64EH.cpp.
1159 if (suffix == "")
1160 return context.getObjectFileInfo()->getXDataSection();
1161 return context.getCOFFSection((".xdata"+suffix).str(),
1162 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
1163 COFF::IMAGE_SCN_MEM_READ |
1164 COFF::IMAGE_SCN_MEM_WRITE,
1165 SectionKind::getDataRel());
1166}
1167
Charles Davis440596f2011-05-19 17:46:39 +00001168void MCAsmStreamer::EmitWin64EHHandlerData() {
Charles Daviscde87e22011-05-20 18:19:22 +00001169 MCStreamer::EmitWin64EHHandlerData();
1170
Charles Davis410ef2b2011-05-25 21:43:45 +00001171 // Switch sections. Don't call SwitchSection directly, because that will
1172 // cause the section switch to be visible in the emitted assembly.
1173 // We only do this so the section switch that terminates the handler
1174 // data block is visible.
Charles Davis7b06b732011-05-27 19:09:24 +00001175 MCWin64EHUnwindInfo *CurFrame = getCurrentW64UnwindInfo();
1176 StringRef suffix=MCWin64EHUnwindEmitter::GetSectionSuffix(CurFrame->Function);
Evan Chenge76a33b2011-07-20 05:58:47 +00001177 const MCSection *xdataSect = getWin64EHTableSection(suffix, getContext());
Charles Davis410ef2b2011-05-25 21:43:45 +00001178 if (xdataSect)
1179 SwitchSectionNoChange(xdataSect);
1180
Charles Davis440596f2011-05-19 17:46:39 +00001181 OS << "\t.seh_handlerdata";
Charles Davisf0709012011-05-18 20:54:10 +00001182 EmitEOL();
1183}
1184
Charles Davisc3b16282011-05-19 19:35:55 +00001185void MCAsmStreamer::EmitWin64EHPushReg(unsigned Register) {
Charles Daviscde87e22011-05-20 18:19:22 +00001186 MCStreamer::EmitWin64EHPushReg(Register);
1187
Charles Davis440596f2011-05-19 17:46:39 +00001188 OS << "\t.seh_pushreg " << Register;
Charles Davis0e30f022011-05-18 04:58:05 +00001189 EmitEOL();
1190}
1191
Charles Davisc3b16282011-05-19 19:35:55 +00001192void MCAsmStreamer::EmitWin64EHSetFrame(unsigned Register, unsigned Offset) {
Charles Daviscde87e22011-05-20 18:19:22 +00001193 MCStreamer::EmitWin64EHSetFrame(Register, Offset);
1194
Charles Davis440596f2011-05-19 17:46:39 +00001195 OS << "\t.seh_setframe " << Register << ", " << Offset;
Charles Davis0e30f022011-05-18 04:58:05 +00001196 EmitEOL();
1197}
1198
Charles Davisc3b16282011-05-19 19:35:55 +00001199void MCAsmStreamer::EmitWin64EHAllocStack(unsigned Size) {
Charles Daviscde87e22011-05-20 18:19:22 +00001200 MCStreamer::EmitWin64EHAllocStack(Size);
1201
Charles Davis440596f2011-05-19 17:46:39 +00001202 OS << "\t.seh_stackalloc " << Size;
Charles Davis0e30f022011-05-18 04:58:05 +00001203 EmitEOL();
1204}
1205
Charles Davisc3b16282011-05-19 19:35:55 +00001206void MCAsmStreamer::EmitWin64EHSaveReg(unsigned Register, unsigned Offset) {
Charles Daviscde87e22011-05-20 18:19:22 +00001207 MCStreamer::EmitWin64EHSaveReg(Register, Offset);
1208
Charles Davis440596f2011-05-19 17:46:39 +00001209 OS << "\t.seh_savereg " << Register << ", " << Offset;
1210 EmitEOL();
1211}
1212
Charles Davisc3b16282011-05-19 19:35:55 +00001213void MCAsmStreamer::EmitWin64EHSaveXMM(unsigned Register, unsigned Offset) {
Charles Daviscde87e22011-05-20 18:19:22 +00001214 MCStreamer::EmitWin64EHSaveXMM(Register, Offset);
1215
Charles Davis440596f2011-05-19 17:46:39 +00001216 OS << "\t.seh_savexmm " << Register << ", " << Offset;
Charles Davis0e30f022011-05-18 04:58:05 +00001217 EmitEOL();
1218}
1219
Charles Davis8b3e5e52011-05-18 22:13:51 +00001220void MCAsmStreamer::EmitWin64EHPushFrame(bool Code) {
Charles Daviscde87e22011-05-20 18:19:22 +00001221 MCStreamer::EmitWin64EHPushFrame(Code);
1222
Charles Davis440596f2011-05-19 17:46:39 +00001223 OS << "\t.seh_pushframe";
Charles Davis0e30f022011-05-18 04:58:05 +00001224 if (Code)
Charles Davis440596f2011-05-19 17:46:39 +00001225 OS << " @code";
Charles Davis0e30f022011-05-18 04:58:05 +00001226 EmitEOL();
1227}
1228
Charles Davis8b3e5e52011-05-18 22:13:51 +00001229void MCAsmStreamer::EmitWin64EHEndProlog(void) {
Charles Daviscde87e22011-05-20 18:19:22 +00001230 MCStreamer::EmitWin64EHEndProlog();
1231
Charles Davis440596f2011-05-19 17:46:39 +00001232 OS << "\t.seh_endprologue";
Charles Davis0e30f022011-05-18 04:58:05 +00001233 EmitEOL();
1234}
1235
Daniel Dunbar6b716532010-02-09 23:00:14 +00001236void MCAsmStreamer::AddEncodingComment(const MCInst &Inst) {
1237 raw_ostream &OS = GetCommentOS();
1238 SmallString<256> Code;
1239 SmallVector<MCFixup, 4> Fixups;
1240 raw_svector_ostream VecOS(Code);
1241 Emitter->EncodeInstruction(Inst, VecOS, Fixups);
1242 VecOS.flush();
Chris Lattnera6594fc2010-01-25 18:58:59 +00001243
Daniel Dunbar6b716532010-02-09 23:00:14 +00001244 // If we are showing fixups, create symbolic markers in the encoded
1245 // representation. We do this by making a per-bit map to the fixup item index,
1246 // then trying to display it as nicely as possible.
Daniel Dunbar5532cf42010-02-10 01:41:14 +00001247 SmallVector<uint8_t, 64> FixupMap;
1248 FixupMap.resize(Code.size() * 8);
Daniel Dunbar6b716532010-02-09 23:00:14 +00001249 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
1250 FixupMap[i] = 0;
1251
1252 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1253 MCFixup &F = Fixups[i];
Daniel Dunbar2761fc42010-12-16 03:20:06 +00001254 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar6b716532010-02-09 23:00:14 +00001255 for (unsigned j = 0; j != Info.TargetSize; ++j) {
1256 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j;
1257 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
1258 FixupMap[Index] = 1 + i;
1259 }
1260 }
1261
Evan Cheng5c2eef62011-07-08 22:49:42 +00001262 // FIXME: Note the fixup comments for Thumb2 are completely bogus since the
Evan Cheng8fbbd1c2011-01-13 23:27:39 +00001263 // high order halfword of a 32-bit Thumb2 instruction is emitted first.
Daniel Dunbar6b716532010-02-09 23:00:14 +00001264 OS << "encoding: [";
1265 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
1266 if (i)
1267 OS << ',';
1268
1269 // See if all bits are the same map entry.
1270 uint8_t MapEntry = FixupMap[i * 8 + 0];
1271 for (unsigned j = 1; j != 8; ++j) {
1272 if (FixupMap[i * 8 + j] == MapEntry)
1273 continue;
1274
1275 MapEntry = uint8_t(~0U);
1276 break;
1277 }
1278
1279 if (MapEntry != uint8_t(~0U)) {
1280 if (MapEntry == 0) {
1281 OS << format("0x%02x", uint8_t(Code[i]));
1282 } else {
Evan Cheng82caf1a2011-01-13 21:45:26 +00001283 if (Code[i]) {
Evan Cheng8fbbd1c2011-01-13 23:27:39 +00001284 // FIXME: Some of the 8 bits require fix up.
Evan Cheng82caf1a2011-01-13 21:45:26 +00001285 OS << format("0x%02x", uint8_t(Code[i])) << '\''
1286 << char('A' + MapEntry - 1) << '\'';
1287 } else
1288 OS << char('A' + MapEntry - 1);
Daniel Dunbar6b716532010-02-09 23:00:14 +00001289 }
1290 } else {
1291 // Otherwise, write out in binary.
1292 OS << "0b";
Jay Foad95c3e482011-06-23 09:09:15 +00001293 for (unsigned j = 8; j--;) {
Daniel Dunbar6b716532010-02-09 23:00:14 +00001294 unsigned Bit = (Code[i] >> j) & 1;
NAKAMURA Takumid6451512011-03-27 01:44:40 +00001295
Chris Lattner3170a3b2010-11-15 05:56:19 +00001296 unsigned FixupBit;
Bill Wendling99cb6222013-06-18 07:20:20 +00001297 if (MAI->isLittleEndian())
Chris Lattner3170a3b2010-11-15 05:56:19 +00001298 FixupBit = i * 8 + j;
1299 else
1300 FixupBit = i * 8 + (7-j);
NAKAMURA Takumid6451512011-03-27 01:44:40 +00001301
Jay Foad95c3e482011-06-23 09:09:15 +00001302 if (uint8_t MapEntry = FixupMap[FixupBit]) {
1303 assert(Bit == 0 && "Encoder wrote into fixed up bit!");
1304 OS << char('A' + MapEntry - 1);
Daniel Dunbar6b716532010-02-09 23:00:14 +00001305 } else
1306 OS << Bit;
1307 }
1308 }
1309 }
1310 OS << "]\n";
1311
1312 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1313 MCFixup &F = Fixups[i];
Daniel Dunbar2761fc42010-12-16 03:20:06 +00001314 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar6b716532010-02-09 23:00:14 +00001315 OS << " fixup " << char('A' + i) << " - " << "offset: " << F.getOffset()
Daniel Dunbar5d5a1e12010-02-10 04:47:08 +00001316 << ", value: " << *F.getValue() << ", kind: " << Info.Name << "\n";
Daniel Dunbar6b716532010-02-09 23:00:14 +00001317 }
1318}
1319
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +00001320void MCAsmStreamer::EmitFnStart() {
1321 OS << "\t.fnstart";
1322 EmitEOL();
1323}
1324
1325void MCAsmStreamer::EmitFnEnd() {
1326 OS << "\t.fnend";
1327 EmitEOL();
1328}
1329
1330void MCAsmStreamer::EmitCantUnwind() {
1331 OS << "\t.cantunwind";
1332 EmitEOL();
1333}
1334
1335void MCAsmStreamer::EmitHandlerData() {
1336 OS << "\t.handlerdata";
1337 EmitEOL();
1338}
1339
1340void MCAsmStreamer::EmitPersonality(const MCSymbol *Personality) {
1341 OS << "\t.personality " << Personality->getName();
1342 EmitEOL();
1343}
1344
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001345void MCAsmStreamer::EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset) {
Rafael Espindolacde4ce42011-06-02 02:34:55 +00001346 OS << "\t.setfp\t";
1347 InstPrinter->printRegName(OS, FpReg);
1348 OS << ", ";
1349 InstPrinter->printRegName(OS, SpReg);
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001350 if (Offset)
1351 OS << ", #" << Offset;
1352 EmitEOL();
1353}
1354
1355void MCAsmStreamer::EmitPad(int64_t Offset) {
1356 OS << "\t.pad\t#" << Offset;
1357 EmitEOL();
1358}
1359
1360void MCAsmStreamer::EmitRegSave(const SmallVectorImpl<unsigned> &RegList,
1361 bool isVector) {
1362 assert(RegList.size() && "RegList should not be empty");
1363 if (isVector)
1364 OS << "\t.vsave\t{";
1365 else
1366 OS << "\t.save\t{";
1367
Rafael Espindolacde4ce42011-06-02 02:34:55 +00001368 InstPrinter->printRegName(OS, RegList[0]);
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001369
Rafael Espindolacde4ce42011-06-02 02:34:55 +00001370 for (unsigned i = 1, e = RegList.size(); i != e; ++i) {
1371 OS << ", ";
1372 InstPrinter->printRegName(OS, RegList[i]);
1373 }
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001374
1375 OS << "}";
1376 EmitEOL();
1377}
1378
Rafael Espindola5e195a42013-10-05 16:42:21 +00001379void MCAsmStreamer::emitMipsHackSTOCG(MCSymbol *Sym, unsigned Val) {
1380 if (!PrintHackDirectives)
1381 return;
1382
1383 OS << "\t.mips_hack_stocg ";
1384 OS << Sym->getName();
1385 OS << ", ";
1386 OS << Val;
1387 EmitEOL();
1388}
1389
1390void MCAsmStreamer::emitMipsHackELFFlags(unsigned Flags) {
1391 if (!PrintHackDirectives)
1392 return;
1393
1394 OS << "\t.mips_hack_elf_flags 0x";
1395 OS.write_hex(Flags);
1396 EmitEOL();
1397}
1398
Adhemerval Zanellaf35c62b2012-10-15 15:43:14 +00001399void MCAsmStreamer::EmitTCEntry(const MCSymbol &S) {
1400 OS << "\t.tc ";
1401 OS << S.getName();
1402 OS << "[TC],";
1403 OS << S.getName();
1404 EmitEOL();
1405}
1406
Daniel Dunbar6b716532010-02-09 23:00:14 +00001407void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
Peter Collingbournedf39be62013-04-17 21:18:16 +00001408 assert(getCurrentSection().first &&
1409 "Cannot emit contents before setting section!");
Daniel Dunbar6b716532010-02-09 23:00:14 +00001410
1411 // Show the encoding in a comment if we have a code emitter.
1412 if (Emitter)
1413 AddEncodingComment(Inst);
1414
Chris Lattner30d9a642010-02-09 00:54:51 +00001415 // Show the MCInst if enabled.
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +00001416 if (ShowInst) {
Bill Wendling99cb6222013-06-18 07:20:20 +00001417 Inst.dump_pretty(GetCommentOS(), MAI, InstPrinter.get(), "\n ");
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +00001418 GetCommentOS() << "\n";
1419 }
1420
Daniel Dunbar67c076c2010-03-22 21:49:34 +00001421 // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001422 if (InstPrinter)
Owen Anderson98c5dda2011-09-15 23:38:46 +00001423 InstPrinter->printInst(&Inst, OS, "");
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001424 else
Bill Wendling99cb6222013-06-18 07:20:20 +00001425 Inst.print(OS, MAI);
Chris Lattner7d1e49c2010-01-22 07:36:39 +00001426 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +00001427}
1428
Eli Bendersky4766ef42012-12-20 19:05:53 +00001429void MCAsmStreamer::EmitBundleAlignMode(unsigned AlignPow2) {
1430 OS << "\t.bundle_align_mode " << AlignPow2;
1431 EmitEOL();
1432}
1433
Eli Bendersky6c1d4972013-01-07 21:51:08 +00001434void MCAsmStreamer::EmitBundleLock(bool AlignToEnd) {
Eli Bendersky4766ef42012-12-20 19:05:53 +00001435 OS << "\t.bundle_lock";
Eli Bendersky6c1d4972013-01-07 21:51:08 +00001436 if (AlignToEnd)
1437 OS << " align_to_end";
Eli Bendersky4766ef42012-12-20 19:05:53 +00001438 EmitEOL();
1439}
1440
1441void MCAsmStreamer::EmitBundleUnlock() {
1442 OS << "\t.bundle_unlock";
1443 EmitEOL();
1444}
1445
Jim Grosbachbd4ec842010-09-22 18:18:30 +00001446/// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +00001447/// the specified string in the output .s file. This capability is
1448/// indicated by the hasRawTextSupport() predicate.
1449void MCAsmStreamer::EmitRawText(StringRef String) {
Chris Lattnerd5928dc2010-04-03 22:06:56 +00001450 if (!String.empty() && String.back() == '\n')
1451 String = String.substr(0, String.size()-1);
Chris Lattner91bead72010-04-03 21:35:55 +00001452 OS << String;
Chris Lattnerd5928dc2010-04-03 22:06:56 +00001453 EmitEOL();
Chris Lattner91bead72010-04-03 21:35:55 +00001454}
1455
Rafael Espindola99b42372012-01-07 03:13:18 +00001456void MCAsmStreamer::FinishImpl() {
Rafael Espindola489d6792012-02-28 21:13:05 +00001457 // FIXME: This header is duplicated with MCObjectStreamer
Rafael Espindola195a0ce2010-11-19 02:26:16 +00001458 // Dump out the dwarf file & directory tables and line tables.
Rafael Espindolae6ec02e2012-03-03 14:24:15 +00001459 const MCSymbol *LineSectionSymbol = NULL;
Rafael Espindola89b93722010-12-10 07:39:47 +00001460 if (getContext().hasDwarfFiles() && !UseLoc)
Rafael Espindola489d6792012-02-28 21:13:05 +00001461 LineSectionSymbol = MCDwarfFileTable::Emit(this);
Rafael Espindola5426a9e2011-05-01 04:49:54 +00001462
Kevin Enderby94c2e852011-12-09 18:09:40 +00001463 // If we are generating dwarf for assembly source files dump out the sections.
1464 if (getContext().getGenDwarfForAssembly())
Rafael Espindola489d6792012-02-28 21:13:05 +00001465 MCGenDwarfInfo::Emit(this, LineSectionSymbol);
Kevin Enderby94c2e852011-12-09 18:09:40 +00001466
Rafael Espindolac25dad82011-05-10 03:14:15 +00001467 if (!UseCFI)
Bill Wendlingda11df02013-09-09 19:48:37 +00001468 EmitFrames(AsmBackend.get(), false);
Daniel Dunbara11af532009-06-24 01:03:06 +00001469}
Bill Wendlingda11df02013-09-09 19:48:37 +00001470
Chris Lattner86e22112010-01-22 07:29:22 +00001471MCStreamer *llvm::createAsmStreamer(MCContext &Context,
1472 formatted_raw_ostream &OS,
Rafael Espindola89b93722010-12-10 07:39:47 +00001473 bool isVerboseAsm, bool useLoc,
Nick Lewycky44d798d2011-10-17 23:05:28 +00001474 bool useCFI, bool useDwarfDirectory,
1475 MCInstPrinter *IP, MCCodeEmitter *CE,
1476 MCAsmBackend *MAB, bool ShowInst) {
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001477 return new MCAsmStreamer(Context, OS, isVerboseAsm, useLoc, useCFI,
Nick Lewycky44d798d2011-10-17 23:05:28 +00001478 useDwarfDirectory, IP, CE, MAB, ShowInst);
Daniel Dunbara11af532009-06-24 01:03:06 +00001479}