blob: 32dee5eba93a18760e383291d1f2828e70e135f4 [file] [log] [blame]
Daniel Dunbara11af532009-06-24 01:03:06 +00001//===- lib/MC/MCAsmStreamer.cpp - Text Assembly Output --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/MC/MCStreamer.h"
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +000011#include "llvm/MC/MCAsmInfo.h"
Daniel Dunbar4a0abd82009-08-27 00:51:57 +000012#include "llvm/MC/MCCodeEmitter.h"
Daniel Dunbara11af532009-06-24 01:03:06 +000013#include "llvm/MC/MCContext.h"
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +000014#include "llvm/MC/MCExpr.h"
Daniel Dunbar2761fc42010-12-16 03:20:06 +000015#include "llvm/MC/MCFixupKindInfo.h"
Daniel Dunbarabde2982009-07-01 06:35:03 +000016#include "llvm/MC/MCInst.h"
Chris Lattner90edac02009-09-14 03:02:37 +000017#include "llvm/MC/MCInstPrinter.h"
Evan Chengbfe36862011-07-26 20:57:44 +000018#include "llvm/MC/MCObjectFileInfo.h"
Evan Cheng0e6a0522011-07-18 20:57:22 +000019#include "llvm/MC/MCRegisterInfo.h"
Evan Chenge76a33b2011-07-20 05:58:47 +000020#include "llvm/MC/MCSectionCOFF.h"
Chris Lattnerf9bdedd2009-08-10 18:15:01 +000021#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbara11af532009-06-24 01:03:06 +000022#include "llvm/MC/MCSymbol.h"
Evan Cheng78c10ee2011-07-25 23:24:55 +000023#include "llvm/MC/MCAsmBackend.h"
Chris Lattner4c42a6d2010-03-19 05:48:53 +000024#include "llvm/ADT/OwningPtr.h"
Chris Lattner86e22112010-01-22 07:29:22 +000025#include "llvm/ADT/SmallString.h"
Bill Wendling916a94b2011-06-17 20:35:21 +000026#include "llvm/ADT/StringExtras.h"
Chris Lattner86e22112010-01-22 07:29:22 +000027#include "llvm/ADT/Twine.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000028#include "llvm/Support/ErrorHandling.h"
Chris Lattner663c2d22009-08-19 06:12:02 +000029#include "llvm/Support/MathExtras.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"
Nick Lewycky44d798d2011-10-17 23:05:28 +000032#include "llvm/Support/PathV2.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;
Chris Lattner33adcfb2009-08-22 21:43:10 +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)
Chris Lattnerfdab14b2010-03-12 18:28:53 +000074 : MCStreamer(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
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000127 virtual void ChangeSection(const MCSection *Section);
Daniel Dunbara11af532009-06-24 01:03:06 +0000128
Rafael Espindolad80781b2010-09-15 21:48:40 +0000129 virtual void InitSections() {
130 // FIXME, this is MachO specific, but the testsuite
131 // expects this.
132 SwitchSection(getContext().getMachOSection("__TEXT", "__text",
133 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
134 0, SectionKind::getText()));
135 }
136
Chris Lattner46a947d2009-08-17 04:17:34 +0000137 virtual void EmitLabel(MCSymbol *Symbol);
Rafael Espindola277abc82011-04-30 16:34:57 +0000138 virtual void EmitEHSymAttributes(const MCSymbol *Symbol,
139 MCSymbol *EHSymbol);
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000140 virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
Jim Grosbach3e965312012-05-18 19:12:01 +0000141 virtual void EmitDataRegion(MCDataRegionType Kind);
Jim Grosbachce792992010-11-05 22:08:08 +0000142 virtual void EmitThumbFunc(MCSymbol *Func);
Daniel Dunbara11af532009-06-24 01:03:06 +0000143
Daniel Dunbar821e3332009-08-31 08:09:28 +0000144 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
Rafael Espindola484291c2010-11-01 14:28:48 +0000145 virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
Rafael Espindola32a006e2010-12-03 00:55:40 +0000146 virtual void EmitDwarfAdvanceLineAddr(int64_t LineDelta,
147 const MCSymbol *LastLabel,
Evan Cheng672b93a2011-07-14 05:43:07 +0000148 const MCSymbol *Label,
149 unsigned PointerSize);
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000150 virtual void EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
151 const MCSymbol *Label);
Daniel Dunbara11af532009-06-24 01:03:06 +0000152
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000153 virtual void EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
Kevin Enderbya5c78322009-07-13 21:03:15 +0000154
Chris Lattner46a947d2009-08-17 04:17:34 +0000155 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
Chris Lattnerb54b9dd2010-05-08 19:54:22 +0000156 virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol);
157 virtual void EmitCOFFSymbolStorageClass(int StorageClass);
158 virtual void EmitCOFFSymbolType(int Type);
159 virtual void EndCOFFSymbolDef();
Rafael Espindola8f7d12c2011-12-17 01:14:52 +0000160 virtual void EmitCOFFSecRel32(MCSymbol const *Symbol);
Chris Lattner99328ad2010-01-25 07:52:13 +0000161 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
Chris Lattner9eb158d2010-01-23 07:47:02 +0000162 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000163 unsigned ByteAlignment);
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000164
Chris Lattner9eb158d2010-01-23 07:47:02 +0000165 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
166 ///
167 /// @param Symbol - The common symbol to emit.
168 /// @param Size - The size of the common symbol.
Dmitri Gribenkoa00b80b2012-08-23 16:54:08 +0000169 /// @param ByteAlignment - The alignment of the common symbol in bytes.
Benjamin Kramer36a16012011-09-01 23:04:27 +0000170 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
171 unsigned ByteAlignment);
Jim Grosbach00545e12010-09-22 18:16:55 +0000172
Daniel Dunbar8751b942009-08-28 05:48:22 +0000173 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
Evan Chengc90a1fc2012-06-22 20:14:46 +0000174 uint64_t Size = 0, unsigned ByteAlignment = 0);
Kevin Enderby71148242009-07-14 21:35:03 +0000175
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000176 virtual void EmitTBSSSymbol (const MCSection *Section, MCSymbol *Symbol,
177 uint64_t Size, unsigned ByteAlignment = 0);
Jim Grosbach00545e12010-09-22 18:16:55 +0000178
Chris Lattneraaec2052010-01-19 19:46:13 +0000179 virtual void EmitBytes(StringRef Data, unsigned AddrSpace);
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000180
Rafael Espindola89b93722010-12-10 07:39:47 +0000181 virtual void EmitValueImpl(const MCExpr *Value, unsigned Size,
Rafael Espindoladebd7e42011-05-01 03:50:49 +0000182 unsigned AddrSpace);
Rafael Espindola2df042c2010-12-03 02:54:21 +0000183 virtual void EmitIntValue(uint64_t Value, unsigned Size,
184 unsigned AddrSpace = 0);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000185
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000186 virtual void EmitULEB128Value(const MCExpr *Value);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000187
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000188 virtual void EmitSLEB128Value(const MCExpr *Value);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000189
Akira Hatanaka6c2cf8b2012-02-03 04:33:00 +0000190 virtual void EmitGPRel64Value(const MCExpr *Value);
191
Chris Lattner718fb592010-01-25 21:28:50 +0000192 virtual void EmitGPRel32Value(const MCExpr *Value);
Jim Grosbach00545e12010-09-22 18:16:55 +0000193
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000194
Chris Lattneraaec2052010-01-19 19:46:13 +0000195 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue,
196 unsigned AddrSpace);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000197
Chris Lattner46a947d2009-08-17 04:17:34 +0000198 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
199 unsigned ValueSize = 1,
200 unsigned MaxBytesToEmit = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000201
Kevin Enderby6e720482010-02-23 18:26:34 +0000202 virtual void EmitCodeAlignment(unsigned ByteAlignment,
203 unsigned MaxBytesToEmit = 0);
204
Jim Grosbachebd4c052012-01-27 00:37:08 +0000205 virtual bool EmitValueToOffset(const MCExpr *Offset,
Chris Lattner46a947d2009-08-17 04:17:34 +0000206 unsigned char Value = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000207
Chris Lattnera6594fc2010-01-25 18:58:59 +0000208 virtual void EmitFileDirective(StringRef Filename);
Nick Lewycky44d798d2011-10-17 23:05:28 +0000209 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
210 StringRef Filename);
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000211 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
212 unsigned Column, unsigned Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +0000213 unsigned Isa, unsigned Discriminator,
214 StringRef FileName);
Chris Lattnera6594fc2010-01-25 18:58:59 +0000215
Rafael Espindola713c4bf2011-05-10 13:39:48 +0000216 virtual void EmitCFISections(bool EH, bool Debug);
Rafael Espindola066c2f42011-04-12 23:59:07 +0000217 virtual void EmitCFIDefCfa(int64_t Register, int64_t Offset);
218 virtual void EmitCFIDefCfaOffset(int64_t Offset);
219 virtual void EmitCFIDefCfaRegister(int64_t Register);
220 virtual void EmitCFIOffset(int64_t Register, int64_t Offset);
221 virtual void EmitCFIPersonality(const MCSymbol *Sym, unsigned Encoding);
222 virtual void EmitCFILsda(const MCSymbol *Sym, unsigned Encoding);
223 virtual void EmitCFIRememberState();
224 virtual void EmitCFIRestoreState();
225 virtual void EmitCFISameValue(int64_t Register);
226 virtual void EmitCFIRelOffset(int64_t Register, int64_t Offset);
227 virtual void EmitCFIAdjustCfaOffset(int64_t Adjustment);
Rafael Espindola16d7d432012-01-23 21:51:52 +0000228 virtual void EmitCFISignalFrame();
Rafael Espindolac8fec7e2012-11-23 16:59:41 +0000229 virtual void EmitCFIUndefined(int64_t Register);
Rafael Espindolaf4f14f62012-11-25 15:14:49 +0000230 virtual void EmitCFIRegister(int64_t Register1, int64_t Register2);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000231
Charles Davisfbc539f2011-05-22 21:12:15 +0000232 virtual void EmitWin64EHStartProc(const MCSymbol *Symbol);
Charles Davis0e30f022011-05-18 04:58:05 +0000233 virtual void EmitWin64EHEndProc();
Charles Davisf0709012011-05-18 20:54:10 +0000234 virtual void EmitWin64EHStartChained();
235 virtual void EmitWin64EHEndChained();
Charles Davis440596f2011-05-19 17:46:39 +0000236 virtual void EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
237 bool Except);
238 virtual void EmitWin64EHHandlerData();
Charles Davisc3b16282011-05-19 19:35:55 +0000239 virtual void EmitWin64EHPushReg(unsigned Register);
240 virtual void EmitWin64EHSetFrame(unsigned Register, unsigned Offset);
241 virtual void EmitWin64EHAllocStack(unsigned Size);
242 virtual void EmitWin64EHSaveReg(unsigned Register, unsigned Offset);
243 virtual void EmitWin64EHSaveXMM(unsigned Register, unsigned Offset);
Charles Davis0e30f022011-05-18 04:58:05 +0000244 virtual void EmitWin64EHPushFrame(bool Code);
245 virtual void EmitWin64EHEndProlog();
246
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000247 virtual void EmitFnStart();
248 virtual void EmitFnEnd();
249 virtual void EmitCantUnwind();
250 virtual void EmitPersonality(const MCSymbol *Personality);
251 virtual void EmitHandlerData();
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000252 virtual void EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset = 0);
253 virtual void EmitPad(int64_t Offset);
254 virtual void EmitRegSave(const SmallVectorImpl<unsigned> &RegList, bool);
255
Adhemerval Zanellaf35c62b2012-10-15 15:43:14 +0000256 virtual void EmitTCEntry(const MCSymbol &S);
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000257
Chris Lattnera6594fc2010-01-25 18:58:59 +0000258 virtual void EmitInstruction(const MCInst &Inst);
Jim Grosbach00545e12010-09-22 18:16:55 +0000259
Jim Grosbachbd4ec842010-09-22 18:18:30 +0000260 /// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +0000261 /// the specified string in the output .s file. This capability is
262 /// indicated by the hasRawTextSupport() predicate.
263 virtual void EmitRawText(StringRef String);
Jim Grosbach00545e12010-09-22 18:16:55 +0000264
Rafael Espindola99b42372012-01-07 03:13:18 +0000265 virtual void FinishImpl();
Jim Grosbach00545e12010-09-22 18:16:55 +0000266
Chris Lattner46a947d2009-08-17 04:17:34 +0000267 /// @}
268};
Daniel Dunbar84a29262009-06-24 19:25:34 +0000269
Chris Lattner46a947d2009-08-17 04:17:34 +0000270} // end anonymous namespace.
Daniel Dunbara11af532009-06-24 01:03:06 +0000271
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000272/// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner86e22112010-01-22 07:29:22 +0000273/// file if applicable as a QoI issue to make the output of the compiler
274/// more readable. This only affects the MCAsmStreamer, and only when
275/// verbose assembly output is enabled.
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000276void MCAsmStreamer::AddComment(const Twine &T) {
Chris Lattner86e22112010-01-22 07:29:22 +0000277 if (!IsVerboseAsm) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000278
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000279 // Make sure that CommentStream is flushed.
280 CommentStream.flush();
Jim Grosbach00545e12010-09-22 18:16:55 +0000281
Chris Lattner86e22112010-01-22 07:29:22 +0000282 T.toVector(CommentToEmit);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000283 // Each comment goes on its own line.
284 CommentToEmit.push_back('\n');
Jim Grosbach00545e12010-09-22 18:16:55 +0000285
Chris Lattner14ca1772010-01-22 21:16:10 +0000286 // Tell the comment stream that the vector changed underneath it.
287 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000288}
289
290void MCAsmStreamer::EmitCommentsAndEOL() {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000291 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) {
292 OS << '\n';
293 return;
294 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000295
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000296 CommentStream.flush();
Chris Lattner86e22112010-01-22 07:29:22 +0000297 StringRef Comments = CommentToEmit.str();
Jim Grosbach00545e12010-09-22 18:16:55 +0000298
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000299 assert(Comments.back() == '\n' &&
300 "Comment array not newline terminated");
301 do {
Chris Lattner86e22112010-01-22 07:29:22 +0000302 // Emit a line of comments.
303 OS.PadToColumn(MAI.getCommentColumn());
304 size_t Position = Comments.find('\n');
305 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
Jim Grosbach00545e12010-09-22 18:16:55 +0000306
Chris Lattner86e22112010-01-22 07:29:22 +0000307 Comments = Comments.substr(Position+1);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000308 } while (!Comments.empty());
Jim Grosbach00545e12010-09-22 18:16:55 +0000309
Chris Lattner14ca1772010-01-22 21:16:10 +0000310 CommentToEmit.clear();
311 // Tell the comment stream that the vector changed underneath it.
312 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000313}
314
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000315static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
316 assert(Bytes && "Invalid size!");
317 return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
318}
319
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000320void MCAsmStreamer::ChangeSection(const MCSection *Section) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000321 assert(Section && "Cannot switch to a null section!");
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000322 Section->PrintSwitchToSection(MAI, OS);
Daniel Dunbara11af532009-06-24 01:03:06 +0000323}
324
Rafael Espindola277abc82011-04-30 16:34:57 +0000325void MCAsmStreamer::EmitEHSymAttributes(const MCSymbol *Symbol,
326 MCSymbol *EHSymbol) {
327 if (UseCFI)
328 return;
329
330 unsigned Flags = FlagMap.lookup(Symbol);
331
332 if (Flags & EHGlobal)
333 EmitSymbolAttribute(EHSymbol, MCSA_Global);
334 if (Flags & EHWeakDefinition)
335 EmitSymbolAttribute(EHSymbol, MCSA_WeakDefinition);
336 if (Flags & EHPrivateExtern)
337 EmitSymbolAttribute(EHSymbol, MCSA_PrivateExtern);
338}
339
Daniel Dunbara11af532009-06-24 01:03:06 +0000340void MCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
Daniel Dunbar8906ff12009-08-22 07:22:36 +0000341 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Rafael Espindolaed708f92011-04-27 15:21:19 +0000342 MCStreamer::EmitLabel(Symbol);
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000343
Chris Lattnere07b75e2010-09-22 22:19:53 +0000344 OS << *Symbol << MAI.getLabelSuffix();
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000345 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000346}
347
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000348void MCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
Kevin Enderbyf96db462009-07-16 17:56:39 +0000349 switch (Flag) {
Jason W Kimafd1cc22010-09-30 02:45:56 +0000350 case MCAF_SyntaxUnified: OS << "\t.syntax unified"; break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000351 case MCAF_SubsectionsViaSymbols: OS << ".subsections_via_symbols"; break;
Evan Chengbd27f5a2011-07-27 00:38:12 +0000352 case MCAF_Code16: OS << '\t'<< MAI.getCode16Directive(); break;
353 case MCAF_Code32: OS << '\t'<< MAI.getCode32Directive(); break;
354 case MCAF_Code64: OS << '\t'<< MAI.getCode64Directive(); break;
Kevin Enderbyf96db462009-07-16 17:56:39 +0000355 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000356 EmitEOL();
Kevin Enderbya5c78322009-07-13 21:03:15 +0000357}
358
Jim Grosbach3e965312012-05-18 19:12:01 +0000359void MCAsmStreamer::EmitDataRegion(MCDataRegionType Kind) {
360 MCContext &Ctx = getContext();
361 const MCAsmInfo &MAI = Ctx.getAsmInfo();
362 if (!MAI.doesSupportDataRegionDirectives())
363 return;
364 switch (Kind) {
365 case MCDR_DataRegion: OS << "\t.data_region"; break;
366 case MCDR_DataRegionJT8: OS << "\t.data_region jt8"; break;
367 case MCDR_DataRegionJT16: OS << "\t.data_region jt16"; break;
368 case MCDR_DataRegionJT32: OS << "\t.data_region jt32"; break;
369 case MCDR_DataRegionEnd: OS << "\t.end_data_region"; break;
370 }
371 EmitEOL();
372}
373
Jim Grosbachce792992010-11-05 22:08:08 +0000374void MCAsmStreamer::EmitThumbFunc(MCSymbol *Func) {
375 // This needs to emit to a temporary string to get properly quoted
376 // MCSymbols when they have spaces in them.
377 OS << "\t.thumb_func";
Rafael Espindola64695402011-05-16 16:17:21 +0000378 // Only Mach-O hasSubsectionsViaSymbols()
379 if (MAI.hasSubsectionsViaSymbols())
Jim Grosbachce792992010-11-05 22:08:08 +0000380 OS << '\t' << *Func;
381 EmitEOL();
382}
383
Daniel Dunbar821e3332009-08-31 08:09:28 +0000384void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000385 OS << *Symbol << " = " << *Value;
386 EmitEOL();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000387
388 // FIXME: Lift context changes into super class.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000389 Symbol->setVariableValue(Value);
Daniel Dunbara11af532009-06-24 01:03:06 +0000390}
391
Rafael Espindola484291c2010-11-01 14:28:48 +0000392void MCAsmStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
393 OS << ".weakref " << *Alias << ", " << *Symbol;
394 EmitEOL();
395}
396
Rafael Espindola32a006e2010-12-03 00:55:40 +0000397void MCAsmStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
398 const MCSymbol *LastLabel,
Evan Cheng672b93a2011-07-14 05:43:07 +0000399 const MCSymbol *Label,
400 unsigned PointerSize) {
401 EmitDwarfSetLineAddr(LineDelta, Label, PointerSize);
Rafael Espindola32a006e2010-12-03 00:55:40 +0000402}
403
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000404void MCAsmStreamer::EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
405 const MCSymbol *Label) {
406 EmitIntValue(dwarf::DW_CFA_advance_loc4, 1);
407 const MCExpr *AddrDelta = BuildSymbolDiff(getContext(), Label, LastLabel);
Rafael Espindolaa6f26782011-05-19 21:40:34 +0000408 AddrDelta = ForceExpAbs(AddrDelta);
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000409 EmitValue(AddrDelta, 4);
410}
411
412
Daniel Dunbarfffff912009-10-16 01:34:54 +0000413void MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000414 MCSymbolAttr Attribute) {
Daniel Dunbara11af532009-06-24 01:03:06 +0000415 switch (Attribute) {
Craig Topper85814382012-02-07 05:05:23 +0000416 case MCSA_Invalid: llvm_unreachable("Invalid symbol attribute");
Chris Lattnered0ab152010-01-25 18:30:45 +0000417 case MCSA_ELF_TypeFunction: /// .type _foo, STT_FUNC # aka @function
418 case MCSA_ELF_TypeIndFunction: /// .type _foo, STT_GNU_IFUNC
419 case MCSA_ELF_TypeObject: /// .type _foo, STT_OBJECT # aka @object
420 case MCSA_ELF_TypeTLS: /// .type _foo, STT_TLS # aka @tls_object
421 case MCSA_ELF_TypeCommon: /// .type _foo, STT_COMMON # aka @common
422 case MCSA_ELF_TypeNoType: /// .type _foo, STT_NOTYPE # aka @notype
Rafael Espindolae9c0ff22010-11-13 04:55:06 +0000423 case MCSA_ELF_TypeGnuUniqueObject: /// .type _foo, @gnu_unique_object
Chris Lattnered0ab152010-01-25 18:30:45 +0000424 assert(MAI.hasDotTypeDotSizeDirective() && "Symbol Attr not supported");
Dan Gohman523d70e2010-02-04 01:42:13 +0000425 OS << "\t.type\t" << *Symbol << ','
Chris Lattnered0ab152010-01-25 18:30:45 +0000426 << ((MAI.getCommentString()[0] != '@') ? '@' : '%');
427 switch (Attribute) {
Craig Topper85814382012-02-07 05:05:23 +0000428 default: llvm_unreachable("Unknown ELF .type");
Chris Lattnered0ab152010-01-25 18:30:45 +0000429 case MCSA_ELF_TypeFunction: OS << "function"; break;
430 case MCSA_ELF_TypeIndFunction: OS << "gnu_indirect_function"; break;
431 case MCSA_ELF_TypeObject: OS << "object"; break;
432 case MCSA_ELF_TypeTLS: OS << "tls_object"; break;
433 case MCSA_ELF_TypeCommon: OS << "common"; break;
434 case MCSA_ELF_TypeNoType: OS << "no_type"; break;
Rafael Espindolae9c0ff22010-11-13 04:55:06 +0000435 case MCSA_ELF_TypeGnuUniqueObject: OS << "gnu_unique_object"; break;
Chris Lattnered0ab152010-01-25 18:30:45 +0000436 }
437 EmitEOL();
438 return;
439 case MCSA_Global: // .globl/.global
440 OS << MAI.getGlobalDirective();
Rafael Espindola277abc82011-04-30 16:34:57 +0000441 FlagMap[Symbol] |= EHGlobal;
Chris Lattnered0ab152010-01-25 18:30:45 +0000442 break;
Chris Lattner61abd7b2010-06-21 20:35:01 +0000443 case MCSA_Hidden: OS << "\t.hidden\t"; break;
444 case MCSA_IndirectSymbol: OS << "\t.indirect_symbol\t"; break;
445 case MCSA_Internal: OS << "\t.internal\t"; break;
446 case MCSA_LazyReference: OS << "\t.lazy_reference\t"; break;
447 case MCSA_Local: OS << "\t.local\t"; break;
448 case MCSA_NoDeadStrip: OS << "\t.no_dead_strip\t"; break;
Kevin Enderbye8e98d72010-11-19 18:39:33 +0000449 case MCSA_SymbolResolver: OS << "\t.symbol_resolver\t"; break;
Rafael Espindola277abc82011-04-30 16:34:57 +0000450 case MCSA_PrivateExtern:
451 OS << "\t.private_extern\t";
452 FlagMap[Symbol] |= EHPrivateExtern;
453 break;
Chris Lattner61abd7b2010-06-21 20:35:01 +0000454 case MCSA_Protected: OS << "\t.protected\t"; break;
455 case MCSA_Reference: OS << "\t.reference\t"; break;
456 case MCSA_Weak: OS << "\t.weak\t"; break;
Rafael Espindola277abc82011-04-30 16:34:57 +0000457 case MCSA_WeakDefinition:
458 OS << "\t.weak_definition\t";
459 FlagMap[Symbol] |= EHWeakDefinition;
460 break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000461 // .weak_reference
462 case MCSA_WeakReference: OS << MAI.getWeakRefDirective(); break;
Kevin Enderbyf59cac52010-07-08 17:22:42 +0000463 case MCSA_WeakDefAutoPrivate: OS << "\t.weak_def_can_be_hidden\t"; break;
Daniel Dunbara11af532009-06-24 01:03:06 +0000464 }
465
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000466 OS << *Symbol;
467 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000468}
469
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000470void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000471 OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
472 EmitEOL();
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000473}
474
Chris Lattnerb54b9dd2010-05-08 19:54:22 +0000475void MCAsmStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {
476 OS << "\t.def\t " << *Symbol << ';';
477 EmitEOL();
478}
479
480void MCAsmStreamer::EmitCOFFSymbolStorageClass (int StorageClass) {
481 OS << "\t.scl\t" << StorageClass << ';';
482 EmitEOL();
483}
484
485void MCAsmStreamer::EmitCOFFSymbolType (int Type) {
486 OS << "\t.type\t" << Type << ';';
487 EmitEOL();
488}
489
490void MCAsmStreamer::EndCOFFSymbolDef() {
491 OS << "\t.endef";
492 EmitEOL();
493}
494
Rafael Espindola8f7d12c2011-12-17 01:14:52 +0000495void MCAsmStreamer::EmitCOFFSecRel32(MCSymbol const *Symbol) {
496 OS << "\t.secrel32\t" << *Symbol << '\n';
497 EmitEOL();
498}
499
Chris Lattner99328ad2010-01-25 07:52:13 +0000500void MCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
501 assert(MAI.hasDotTypeDotSizeDirective());
502 OS << "\t.size\t" << *Symbol << ", " << *Value << '\n';
503}
504
Chris Lattner9eb158d2010-01-23 07:47:02 +0000505void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000506 unsigned ByteAlignment) {
Chris Lattner9eb158d2010-01-23 07:47:02 +0000507 OS << "\t.comm\t" << *Symbol << ',' << Size;
Chris Lattner6559d762010-01-25 07:29:13 +0000508 if (ByteAlignment != 0) {
Rafael Espindola2e2563b2010-01-26 20:21:43 +0000509 if (MAI.getCOMMDirectiveAlignmentIsInBytes())
Chris Lattner4ed54382010-01-19 06:01:04 +0000510 OS << ',' << ByteAlignment;
511 else
512 OS << ',' << Log2_32(ByteAlignment);
513 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000514 EmitEOL();
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000515}
516
Chris Lattner9eb158d2010-01-23 07:47:02 +0000517/// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
518///
519/// @param Symbol - The common symbol to emit.
520/// @param Size - The size of the common symbol.
Benjamin Kramer36a16012011-09-01 23:04:27 +0000521void MCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
522 unsigned ByteAlign) {
Chris Lattner9eb158d2010-01-23 07:47:02 +0000523 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
Benjamin Kramer36a16012011-09-01 23:04:27 +0000524 if (ByteAlign > 1) {
Benjamin Kramera9e37c52012-09-07 21:08:01 +0000525 switch (MAI.getLCOMMDirectiveAlignmentType()) {
526 case LCOMM::NoAlignment:
527 llvm_unreachable("alignment not supported on .lcomm!");
528 case LCOMM::ByteAlignment:
Benjamin Kramer39646d92012-09-07 17:25:13 +0000529 OS << ',' << ByteAlign;
Benjamin Kramera9e37c52012-09-07 21:08:01 +0000530 break;
531 case LCOMM::Log2Alignment:
Benjamin Kramer39646d92012-09-07 17:25:13 +0000532 assert(isPowerOf2_32(ByteAlign) && "alignment must be a power of 2");
533 OS << ',' << Log2_32(ByteAlign);
Benjamin Kramera9e37c52012-09-07 21:08:01 +0000534 break;
Benjamin Kramer39646d92012-09-07 17:25:13 +0000535 }
Benjamin Kramer36a16012011-09-01 23:04:27 +0000536 }
Chris Lattner9eb158d2010-01-23 07:47:02 +0000537 EmitEOL();
538}
539
Daniel Dunbar8751b942009-08-28 05:48:22 +0000540void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Evan Chengc90a1fc2012-06-22 20:14:46 +0000541 uint64_t Size, unsigned ByteAlignment) {
Daniel Dunbar011e4db2009-08-13 23:36:34 +0000542 // Note: a .zerofill directive does not switch sections.
Chris Lattner93b6db32009-08-08 23:39:42 +0000543 OS << ".zerofill ";
Jim Grosbach00545e12010-09-22 18:16:55 +0000544
Chris Lattner93b6db32009-08-08 23:39:42 +0000545 // This is a mach-o specific directive.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000546 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
Daniel Dunbar12de0df2009-08-14 18:51:45 +0000547 OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
Jim Grosbach00545e12010-09-22 18:16:55 +0000548
Chris Lattner9be3fee2009-07-10 22:20:30 +0000549 if (Symbol != NULL) {
Chris Lattner10b318b2010-01-17 21:43:43 +0000550 OS << ',' << *Symbol << ',' << Size;
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000551 if (ByteAlignment != 0)
552 OS << ',' << Log2_32(ByteAlignment);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000553 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000554 EmitEOL();
Chris Lattner9be3fee2009-07-10 22:20:30 +0000555}
556
Eric Christopherd04d98d2010-05-17 02:13:02 +0000557// .tbss sym, size, align
558// This depends that the symbol has already been mangled from the original,
559// e.g. _a.
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000560void MCAsmStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
561 uint64_t Size, unsigned ByteAlignment) {
Eric Christopher482eba02010-05-14 01:50:28 +0000562 assert(Symbol != NULL && "Symbol shouldn't be NULL!");
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000563 // Instead of using the Section we'll just use the shortcut.
564 // This is a mach-o specific directive and section.
Eric Christopherd04d98d2010-05-17 02:13:02 +0000565 OS << ".tbss " << *Symbol << ", " << Size;
Jim Grosbach00545e12010-09-22 18:16:55 +0000566
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000567 // Output align if we have it. We default to 1 so don't bother printing
568 // that.
569 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
Jim Grosbach00545e12010-09-22 18:16:55 +0000570
Eric Christopher482eba02010-05-14 01:50:28 +0000571 EmitEOL();
572}
573
Chris Lattner12e555c2010-01-23 00:15:00 +0000574static inline char toOctal(int X) { return (X&7)+'0'; }
575
Chris Lattnera6594fc2010-01-25 18:58:59 +0000576static void PrintQuotedString(StringRef Data, raw_ostream &OS) {
577 OS << '"';
Jim Grosbach00545e12010-09-22 18:16:55 +0000578
Chris Lattnera6594fc2010-01-25 18:58:59 +0000579 for (unsigned i = 0, e = Data.size(); i != e; ++i) {
580 unsigned char C = Data[i];
581 if (C == '"' || C == '\\') {
582 OS << '\\' << (char)C;
583 continue;
584 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000585
Chris Lattnera6594fc2010-01-25 18:58:59 +0000586 if (isprint((unsigned char)C)) {
587 OS << (char)C;
588 continue;
589 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000590
Chris Lattnera6594fc2010-01-25 18:58:59 +0000591 switch (C) {
592 case '\b': OS << "\\b"; break;
593 case '\f': OS << "\\f"; break;
594 case '\n': OS << "\\n"; break;
595 case '\r': OS << "\\r"; break;
596 case '\t': OS << "\\t"; break;
597 default:
598 OS << '\\';
599 OS << toOctal(C >> 6);
600 OS << toOctal(C >> 3);
601 OS << toOctal(C >> 0);
602 break;
603 }
604 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000605
Chris Lattnera6594fc2010-01-25 18:58:59 +0000606 OS << '"';
607}
608
609
Chris Lattneraaec2052010-01-19 19:46:13 +0000610void MCAsmStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000611 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Chris Lattner12e555c2010-01-23 00:15:00 +0000612 if (Data.empty()) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000613
Chris Lattner12e555c2010-01-23 00:15:00 +0000614 if (Data.size() == 1) {
615 OS << MAI.getData8bitsDirective(AddrSpace);
616 OS << (unsigned)(unsigned char)Data[0];
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000617 EmitEOL();
Chris Lattner12e555c2010-01-23 00:15:00 +0000618 return;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000619 }
Chris Lattner12e555c2010-01-23 00:15:00 +0000620
621 // If the data ends with 0 and the target supports .asciz, use it, otherwise
622 // use .ascii
623 if (MAI.getAscizDirective() && Data.back() == 0) {
624 OS << MAI.getAscizDirective();
625 Data = Data.substr(0, Data.size()-1);
626 } else {
627 OS << MAI.getAsciiDirective();
628 }
629
Chris Lattnera6594fc2010-01-25 18:58:59 +0000630 OS << ' ';
631 PrintQuotedString(Data, OS);
Chris Lattner12e555c2010-01-23 00:15:00 +0000632 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000633}
634
Rafael Espindola2df042c2010-12-03 02:54:21 +0000635void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size,
636 unsigned AddrSpace) {
637 EmitValue(MCConstantExpr::Create(Value, getContext()), Size, AddrSpace);
638}
639
Rafael Espindola89b93722010-12-10 07:39:47 +0000640void MCAsmStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size,
Rafael Espindoladebd7e42011-05-01 03:50:49 +0000641 unsigned AddrSpace) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000642 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000643 const char *Directive = 0;
644 switch (Size) {
645 default: break;
646 case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
647 case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
648 case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000649 case 8:
650 Directive = MAI.getData64bitsDirective(AddrSpace);
651 // If the target doesn't support 64-bit data, emit as two 32-bit halves.
652 if (Directive) break;
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000653 int64_t IntValue;
654 if (!Value->EvaluateAsAbsolute(IntValue))
655 report_fatal_error("Don't know how to emit this value.");
Evan Cheng1be0e272011-07-15 02:09:41 +0000656 if (getContext().getAsmInfo().isLittleEndian()) {
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000657 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
658 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000659 } else {
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000660 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
661 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000662 }
663 return;
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000664 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000665
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000666 assert(Directive && "Invalid size for machine code value!");
Chris Lattner718fb592010-01-25 21:28:50 +0000667 OS << Directive << *Value;
Chris Lattner86e22112010-01-22 07:29:22 +0000668 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000669}
670
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000671void MCAsmStreamer::EmitULEB128Value(const MCExpr *Value) {
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000672 int64_t IntValue;
673 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000674 EmitULEB128IntValue(IntValue);
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000675 return;
676 }
Rafael Espindola73873452010-11-04 18:17:08 +0000677 assert(MAI.hasLEB128() && "Cannot print a .uleb");
678 OS << ".uleb128 " << *Value;
Rafael Espindola3ff57092010-11-02 17:22:24 +0000679 EmitEOL();
680}
681
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000682void MCAsmStreamer::EmitSLEB128Value(const MCExpr *Value) {
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000683 int64_t IntValue;
684 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000685 EmitSLEB128IntValue(IntValue);
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000686 return;
687 }
Rafael Espindola73873452010-11-04 18:17:08 +0000688 assert(MAI.hasLEB128() && "Cannot print a .sleb");
689 OS << ".sleb128 " << *Value;
Rafael Espindola3ff57092010-11-02 17:22:24 +0000690 EmitEOL();
691}
692
Akira Hatanaka6c2cf8b2012-02-03 04:33:00 +0000693void MCAsmStreamer::EmitGPRel64Value(const MCExpr *Value) {
694 assert(MAI.getGPRel64Directive() != 0);
695 OS << MAI.getGPRel64Directive() << *Value;
696 EmitEOL();
697}
698
Chris Lattner718fb592010-01-25 21:28:50 +0000699void MCAsmStreamer::EmitGPRel32Value(const MCExpr *Value) {
700 assert(MAI.getGPRel32Directive() != 0);
701 OS << MAI.getGPRel32Directive() << *Value;
702 EmitEOL();
703}
704
705
Chris Lattner6113b3d2010-01-19 18:52:28 +0000706/// EmitFill - Emit NumBytes bytes worth of the value specified by
707/// FillValue. This implements directives such as '.space'.
Chris Lattneraaec2052010-01-19 19:46:13 +0000708void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
709 unsigned AddrSpace) {
Chris Lattner8a6d7ac2010-01-19 18:58:52 +0000710 if (NumBytes == 0) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000711
Chris Lattneraaec2052010-01-19 19:46:13 +0000712 if (AddrSpace == 0)
713 if (const char *ZeroDirective = MAI.getZeroDirective()) {
714 OS << ZeroDirective << NumBytes;
715 if (FillValue != 0)
716 OS << ',' << (int)FillValue;
Chris Lattner86e22112010-01-22 07:29:22 +0000717 EmitEOL();
Chris Lattneraaec2052010-01-19 19:46:13 +0000718 return;
719 }
720
721 // Emit a byte at a time.
722 MCStreamer::EmitFill(NumBytes, FillValue, AddrSpace);
Chris Lattner6113b3d2010-01-19 18:52:28 +0000723}
724
Daniel Dunbar84a29262009-06-24 19:25:34 +0000725void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
726 unsigned ValueSize,
727 unsigned MaxBytesToEmit) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000728 // Some assemblers don't support non-power of two alignments, so we always
729 // emit alignments as a power of two if possible.
730 if (isPowerOf2_32(ByteAlignment)) {
Chris Lattner6e579c62009-08-19 06:35:36 +0000731 switch (ValueSize) {
732 default: llvm_unreachable("Invalid size for machine code value!");
Chris Lattner33adcfb2009-08-22 21:43:10 +0000733 case 1: OS << MAI.getAlignDirective(); break;
734 // FIXME: use MAI for this!
Chris Lattner6e579c62009-08-19 06:35:36 +0000735 case 2: OS << ".p2alignw "; break;
736 case 4: OS << ".p2alignl "; break;
737 case 8: llvm_unreachable("Unsupported alignment size!");
738 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000739
Chris Lattner33adcfb2009-08-22 21:43:10 +0000740 if (MAI.getAlignmentIsInBytes())
Chris Lattner663c2d22009-08-19 06:12:02 +0000741 OS << ByteAlignment;
742 else
743 OS << Log2_32(ByteAlignment);
Daniel Dunbar84a29262009-06-24 19:25:34 +0000744
Chris Lattner663c2d22009-08-19 06:12:02 +0000745 if (Value || MaxBytesToEmit) {
Chris Lattner579531c2009-09-03 04:01:10 +0000746 OS << ", 0x";
747 OS.write_hex(truncateToSize(Value, ValueSize));
Chris Lattner663c2d22009-08-19 06:12:02 +0000748
Jim Grosbach00545e12010-09-22 18:16:55 +0000749 if (MaxBytesToEmit)
Chris Lattner663c2d22009-08-19 06:12:02 +0000750 OS << ", " << MaxBytesToEmit;
751 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000752 EmitEOL();
Chris Lattner663c2d22009-08-19 06:12:02 +0000753 return;
754 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000755
Chris Lattner663c2d22009-08-19 06:12:02 +0000756 // Non-power of two alignment. This is not widely supported by assemblers.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000757 // FIXME: Parameterize this based on MAI.
Daniel Dunbar84a29262009-06-24 19:25:34 +0000758 switch (ValueSize) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000759 default: llvm_unreachable("Invalid size for machine code value!");
760 case 1: OS << ".balign"; break;
761 case 2: OS << ".balignw"; break;
762 case 4: OS << ".balignl"; break;
763 case 8: llvm_unreachable("Unsupported alignment size!");
Daniel Dunbar84a29262009-06-24 19:25:34 +0000764 }
765
Chris Lattner663c2d22009-08-19 06:12:02 +0000766 OS << ' ' << ByteAlignment;
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000767 OS << ", " << truncateToSize(Value, ValueSize);
Jim Grosbach00545e12010-09-22 18:16:55 +0000768 if (MaxBytesToEmit)
Daniel Dunbar84a29262009-06-24 19:25:34 +0000769 OS << ", " << MaxBytesToEmit;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000770 EmitEOL();
Daniel Dunbar84a29262009-06-24 19:25:34 +0000771}
772
Kevin Enderby6e720482010-02-23 18:26:34 +0000773void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
774 unsigned MaxBytesToEmit) {
Chris Lattnerec167fd2010-02-23 18:44:31 +0000775 // Emit with a text fill value.
776 EmitValueToAlignment(ByteAlignment, MAI.getTextAlignFillValue(),
777 1, MaxBytesToEmit);
Kevin Enderby6e720482010-02-23 18:26:34 +0000778}
779
Jim Grosbachebd4c052012-01-27 00:37:08 +0000780bool MCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbar84a29262009-06-24 19:25:34 +0000781 unsigned char Value) {
782 // FIXME: Verify that Offset is associated with the current section.
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000783 OS << ".org " << *Offset << ", " << (unsigned) Value;
784 EmitEOL();
Jim Grosbachebd4c052012-01-27 00:37:08 +0000785 return false;
Daniel Dunbar84a29262009-06-24 19:25:34 +0000786}
787
Chris Lattnera6594fc2010-01-25 18:58:59 +0000788
789void MCAsmStreamer::EmitFileDirective(StringRef Filename) {
790 assert(MAI.hasSingleParameterDotFile());
791 OS << "\t.file\t";
792 PrintQuotedString(Filename, OS);
793 EmitEOL();
794}
795
Nick Lewycky44d798d2011-10-17 23:05:28 +0000796bool MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
797 StringRef Filename) {
798 if (!UseDwarfDirectory && !Directory.empty()) {
799 if (sys::path::is_absolute(Filename))
800 return EmitDwarfFileDirective(FileNo, "", Filename);
801
802 SmallString<128> FullPathName = Directory;
803 sys::path::append(FullPathName, Filename);
804 return EmitDwarfFileDirective(FileNo, "", FullPathName);
805 }
806
Rafael Espindola89b93722010-12-10 07:39:47 +0000807 if (UseLoc) {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000808 OS << "\t.file\t" << FileNo << ' ';
Nick Lewycky44d798d2011-10-17 23:05:28 +0000809 if (!Directory.empty()) {
810 PrintQuotedString(Directory, OS);
811 OS << ' ';
812 }
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000813 PrintQuotedString(Filename, OS);
814 EmitEOL();
815 }
Nick Lewycky44d798d2011-10-17 23:05:28 +0000816 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Directory, Filename);
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000817}
818
819void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
820 unsigned Column, unsigned Flags,
821 unsigned Isa,
Devang Patel3f3bf932011-04-18 20:26:49 +0000822 unsigned Discriminator,
823 StringRef FileName) {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000824 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +0000825 Isa, Discriminator, FileName);
Rafael Espindola89b93722010-12-10 07:39:47 +0000826 if (!UseLoc)
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000827 return;
828
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000829 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
830 if (Flags & DWARF2_FLAG_BASIC_BLOCK)
831 OS << " basic_block";
832 if (Flags & DWARF2_FLAG_PROLOGUE_END)
833 OS << " prologue_end";
834 if (Flags & DWARF2_FLAG_EPILOGUE_BEGIN)
835 OS << " epilogue_begin";
836
837 unsigned OldFlags = getContext().getCurrentDwarfLoc().getFlags();
838 if ((Flags & DWARF2_FLAG_IS_STMT) != (OldFlags & DWARF2_FLAG_IS_STMT)) {
839 OS << " is_stmt ";
840
841 if (Flags & DWARF2_FLAG_IS_STMT)
842 OS << "1";
843 else
844 OS << "0";
845 }
846
847 if (Isa)
848 OS << "isa " << Isa;
849 if (Discriminator)
850 OS << "discriminator " << Discriminator;
Devang Patel3f3bf932011-04-18 20:26:49 +0000851
852 if (IsVerboseAsm) {
853 OS.PadToColumn(MAI.getCommentColumn());
Jim Grosbach2684d9e2012-05-11 01:41:30 +0000854 OS << MAI.getCommentString() << ' ' << FileName << ':'
Devang Patel3f3bf932011-04-18 20:26:49 +0000855 << Line << ':' << Column;
856 }
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000857 EmitEOL();
Chris Lattnera6594fc2010-01-25 18:58:59 +0000858}
859
Rafael Espindola713c4bf2011-05-10 13:39:48 +0000860void MCAsmStreamer::EmitCFISections(bool EH, bool Debug) {
861 MCStreamer::EmitCFISections(EH, Debug);
862
863 if (!UseCFI)
864 return;
865
866 OS << "\t.cfi_sections ";
867 if (EH) {
868 OS << ".eh_frame";
869 if (Debug)
870 OS << ", .debug_frame";
871 } else if (Debug) {
872 OS << ".debug_frame";
873 }
874
875 EmitEOL();
876}
877
Rafael Espindola547be262012-01-07 22:42:19 +0000878void MCAsmStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) {
879 if (!UseCFI) {
880 RecordProcStart(Frame);
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000881 return;
Rafael Espindola547be262012-01-07 22:42:19 +0000882 }
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000883
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000884 OS << "\t.cfi_startproc";
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000885 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000886}
887
Rafael Espindola1fe97372012-01-09 00:17:29 +0000888void MCAsmStreamer::EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) {
889 if (!UseCFI) {
890 RecordProcEnd(Frame);
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000891 return;
Rafael Espindola1fe97372012-01-09 00:17:29 +0000892 }
893
894 // Put a dummy non-null value in Frame.End to mark that this frame has been
895 // closed.
896 Frame.End = (MCSymbol *) 1;
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000897
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000898 OS << "\t.cfi_endproc";
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000899 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000900}
901
Rafael Espindola6e032942011-05-30 20:20:15 +0000902void MCAsmStreamer::EmitRegisterName(int64_t Register) {
Akira Hatanaka3014b2f2011-07-07 20:30:33 +0000903 if (InstPrinter && !MAI.useDwarfRegNumForCFI()) {
Evan Cheng0e6a0522011-07-18 20:57:22 +0000904 const MCRegisterInfo &MRI = getContext().getRegisterInfo();
905 unsigned LLVMRegister = MRI.getLLVMRegNum(Register, true);
Rafael Espindolacde4ce42011-06-02 02:34:55 +0000906 InstPrinter->printRegName(OS, LLVMRegister);
Rafael Espindola6e032942011-05-30 20:20:15 +0000907 } else {
908 OS << Register;
909 }
910}
911
Rafael Espindola066c2f42011-04-12 23:59:07 +0000912void MCAsmStreamer::EmitCFIDefCfa(int64_t Register, int64_t Offset) {
Rafael Espindola7f46b082011-04-29 21:41:06 +0000913 MCStreamer::EmitCFIDefCfa(Register, Offset);
914
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000915 if (!UseCFI)
916 return;
917
Rafael Espindola6e032942011-05-30 20:20:15 +0000918 OS << "\t.cfi_def_cfa ";
919 EmitRegisterName(Register);
920 OS << ", " << Offset;
Rafael Espindola7f46b082011-04-29 21:41:06 +0000921 EmitEOL();
Rafael Espindola066c2f42011-04-12 23:59:07 +0000922}
923
924void MCAsmStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
925 MCStreamer::EmitCFIDefCfaOffset(Offset);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000926
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000927 if (!UseCFI)
928 return;
929
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000930 OS << "\t.cfi_def_cfa_offset " << Offset;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000931 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000932}
933
Rafael Espindola066c2f42011-04-12 23:59:07 +0000934void MCAsmStreamer::EmitCFIDefCfaRegister(int64_t Register) {
935 MCStreamer::EmitCFIDefCfaRegister(Register);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000936
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000937 if (!UseCFI)
938 return;
939
Rafael Espindola6e032942011-05-30 20:20:15 +0000940 OS << "\t.cfi_def_cfa_register ";
941 EmitRegisterName(Register);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000942 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000943}
944
Rafael Espindola066c2f42011-04-12 23:59:07 +0000945void MCAsmStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
946 this->MCStreamer::EmitCFIOffset(Register, Offset);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000947
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000948 if (!UseCFI)
949 return;
950
Rafael Espindola6e032942011-05-30 20:20:15 +0000951 OS << "\t.cfi_offset ";
952 EmitRegisterName(Register);
953 OS << ", " << Offset;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000954 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000955}
956
Rafael Espindola066c2f42011-04-12 23:59:07 +0000957void MCAsmStreamer::EmitCFIPersonality(const MCSymbol *Sym,
Rafael Espindola3a83c402010-12-27 00:36:05 +0000958 unsigned Encoding) {
Rafael Espindola066c2f42011-04-12 23:59:07 +0000959 MCStreamer::EmitCFIPersonality(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000960
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000961 if (!UseCFI)
962 return;
963
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000964 OS << "\t.cfi_personality " << Encoding << ", " << *Sym;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000965 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000966}
967
Rafael Espindola066c2f42011-04-12 23:59:07 +0000968void MCAsmStreamer::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) {
969 MCStreamer::EmitCFILsda(Sym, Encoding);
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_lsda " << Encoding << ", " << *Sym;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000975 EmitEOL();
Rafael Espindola066c2f42011-04-12 23:59:07 +0000976}
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000977
Rafael Espindola066c2f42011-04-12 23:59:07 +0000978void MCAsmStreamer::EmitCFIRememberState() {
979 MCStreamer::EmitCFIRememberState();
980
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000981 if (!UseCFI)
982 return;
983
Rafael Espindola066c2f42011-04-12 23:59:07 +0000984 OS << "\t.cfi_remember_state";
985 EmitEOL();
986}
987
988void MCAsmStreamer::EmitCFIRestoreState() {
989 MCStreamer::EmitCFIRestoreState();
990
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000991 if (!UseCFI)
992 return;
993
Rafael Espindola066c2f42011-04-12 23:59:07 +0000994 OS << "\t.cfi_restore_state";
995 EmitEOL();
996}
997
998void MCAsmStreamer::EmitCFISameValue(int64_t Register) {
999 MCStreamer::EmitCFISameValue(Register);
1000
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001001 if (!UseCFI)
1002 return;
1003
Rafael Espindola6e032942011-05-30 20:20:15 +00001004 OS << "\t.cfi_same_value ";
1005 EmitRegisterName(Register);
Rafael Espindola066c2f42011-04-12 23:59:07 +00001006 EmitEOL();
1007}
1008
1009void MCAsmStreamer::EmitCFIRelOffset(int64_t Register, int64_t Offset) {
1010 MCStreamer::EmitCFIRelOffset(Register, Offset);
1011
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001012 if (!UseCFI)
1013 return;
1014
Rafael Espindola6e032942011-05-30 20:20:15 +00001015 OS << "\t.cfi_rel_offset ";
1016 EmitRegisterName(Register);
1017 OS << ", " << Offset;
Rafael Espindola066c2f42011-04-12 23:59:07 +00001018 EmitEOL();
1019}
1020
1021void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) {
1022 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
1023
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001024 if (!UseCFI)
1025 return;
1026
Rafael Espindola066c2f42011-04-12 23:59:07 +00001027 OS << "\t.cfi_adjust_cfa_offset " << Adjustment;
1028 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +00001029}
1030
Rafael Espindola16d7d432012-01-23 21:51:52 +00001031void MCAsmStreamer::EmitCFISignalFrame() {
1032 MCStreamer::EmitCFISignalFrame();
1033
1034 if (!UseCFI)
1035 return;
1036
Eric Christopherfeba1932012-05-31 00:53:18 +00001037 OS << "\t.cfi_signal_frame";
Rafael Espindola16d7d432012-01-23 21:51:52 +00001038 EmitEOL();
1039}
1040
Rafael Espindolac8fec7e2012-11-23 16:59:41 +00001041void MCAsmStreamer::EmitCFIUndefined(int64_t Register) {
1042 MCStreamer::EmitCFIUndefined(Register);
1043
1044 if (!UseCFI)
1045 return;
1046
1047 OS << "\t.cfi_undefined " << Register;
1048 EmitEOL();
1049}
1050
Rafael Espindolaf4f14f62012-11-25 15:14:49 +00001051void MCAsmStreamer::EmitCFIRegister(int64_t Register1, int64_t Register2) {
1052 MCStreamer::EmitCFIRegister(Register1, Register2);
1053
1054 if (!UseCFI)
1055 return;
1056
1057 OS << "\t.cfi_register " << Register1 << ", " << Register2;
1058 EmitEOL();
1059}
1060
Charles Davisfbc539f2011-05-22 21:12:15 +00001061void MCAsmStreamer::EmitWin64EHStartProc(const MCSymbol *Symbol) {
Charles Daviscde87e22011-05-20 18:19:22 +00001062 MCStreamer::EmitWin64EHStartProc(Symbol);
1063
Charles Davis440596f2011-05-19 17:46:39 +00001064 OS << ".seh_proc " << *Symbol;
Charles Davis0e30f022011-05-18 04:58:05 +00001065 EmitEOL();
1066}
1067
Charles Davis8b3e5e52011-05-18 22:13:51 +00001068void MCAsmStreamer::EmitWin64EHEndProc() {
Charles Daviscde87e22011-05-20 18:19:22 +00001069 MCStreamer::EmitWin64EHEndProc();
1070
Charles Davis440596f2011-05-19 17:46:39 +00001071 OS << "\t.seh_endproc";
Charles Davis0e30f022011-05-18 04:58:05 +00001072 EmitEOL();
1073}
1074
Charles Davis8b3e5e52011-05-18 22:13:51 +00001075void MCAsmStreamer::EmitWin64EHStartChained() {
Charles Daviscde87e22011-05-20 18:19:22 +00001076 MCStreamer::EmitWin64EHStartChained();
1077
Charles Davis440596f2011-05-19 17:46:39 +00001078 OS << "\t.seh_startchained";
Charles Davisf0709012011-05-18 20:54:10 +00001079 EmitEOL();
1080}
1081
Charles Davis8b3e5e52011-05-18 22:13:51 +00001082void MCAsmStreamer::EmitWin64EHEndChained() {
Charles Daviscde87e22011-05-20 18:19:22 +00001083 MCStreamer::EmitWin64EHEndChained();
1084
Charles Davis440596f2011-05-19 17:46:39 +00001085 OS << "\t.seh_endchained";
Charles Davisf0709012011-05-18 20:54:10 +00001086 EmitEOL();
1087}
1088
Charles Davis440596f2011-05-19 17:46:39 +00001089void MCAsmStreamer::EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
1090 bool Except) {
Charles Daviscde87e22011-05-20 18:19:22 +00001091 MCStreamer::EmitWin64EHHandler(Sym, Unwind, Except);
1092
Charles Davis440596f2011-05-19 17:46:39 +00001093 OS << "\t.seh_handler " << *Sym;
1094 if (Unwind)
1095 OS << ", @unwind";
1096 if (Except)
1097 OS << ", @except";
Charles Davisf0709012011-05-18 20:54:10 +00001098 EmitEOL();
1099}
1100
Evan Chenge76a33b2011-07-20 05:58:47 +00001101static const MCSection *getWin64EHTableSection(StringRef suffix,
1102 MCContext &context) {
1103 // FIXME: This doesn't belong in MCObjectFileInfo. However,
1104 /// this duplicate code in MCWin64EH.cpp.
1105 if (suffix == "")
1106 return context.getObjectFileInfo()->getXDataSection();
1107 return context.getCOFFSection((".xdata"+suffix).str(),
1108 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
1109 COFF::IMAGE_SCN_MEM_READ |
1110 COFF::IMAGE_SCN_MEM_WRITE,
1111 SectionKind::getDataRel());
1112}
1113
Charles Davis440596f2011-05-19 17:46:39 +00001114void MCAsmStreamer::EmitWin64EHHandlerData() {
Charles Daviscde87e22011-05-20 18:19:22 +00001115 MCStreamer::EmitWin64EHHandlerData();
1116
Charles Davis410ef2b2011-05-25 21:43:45 +00001117 // Switch sections. Don't call SwitchSection directly, because that will
1118 // cause the section switch to be visible in the emitted assembly.
1119 // We only do this so the section switch that terminates the handler
1120 // data block is visible.
Charles Davis7b06b732011-05-27 19:09:24 +00001121 MCWin64EHUnwindInfo *CurFrame = getCurrentW64UnwindInfo();
1122 StringRef suffix=MCWin64EHUnwindEmitter::GetSectionSuffix(CurFrame->Function);
Evan Chenge76a33b2011-07-20 05:58:47 +00001123 const MCSection *xdataSect = getWin64EHTableSection(suffix, getContext());
Charles Davis410ef2b2011-05-25 21:43:45 +00001124 if (xdataSect)
1125 SwitchSectionNoChange(xdataSect);
1126
Charles Davis440596f2011-05-19 17:46:39 +00001127 OS << "\t.seh_handlerdata";
Charles Davisf0709012011-05-18 20:54:10 +00001128 EmitEOL();
1129}
1130
Charles Davisc3b16282011-05-19 19:35:55 +00001131void MCAsmStreamer::EmitWin64EHPushReg(unsigned Register) {
Charles Daviscde87e22011-05-20 18:19:22 +00001132 MCStreamer::EmitWin64EHPushReg(Register);
1133
Charles Davis440596f2011-05-19 17:46:39 +00001134 OS << "\t.seh_pushreg " << Register;
Charles Davis0e30f022011-05-18 04:58:05 +00001135 EmitEOL();
1136}
1137
Charles Davisc3b16282011-05-19 19:35:55 +00001138void MCAsmStreamer::EmitWin64EHSetFrame(unsigned Register, unsigned Offset) {
Charles Daviscde87e22011-05-20 18:19:22 +00001139 MCStreamer::EmitWin64EHSetFrame(Register, Offset);
1140
Charles Davis440596f2011-05-19 17:46:39 +00001141 OS << "\t.seh_setframe " << Register << ", " << Offset;
Charles Davis0e30f022011-05-18 04:58:05 +00001142 EmitEOL();
1143}
1144
Charles Davisc3b16282011-05-19 19:35:55 +00001145void MCAsmStreamer::EmitWin64EHAllocStack(unsigned Size) {
Charles Daviscde87e22011-05-20 18:19:22 +00001146 MCStreamer::EmitWin64EHAllocStack(Size);
1147
Charles Davis440596f2011-05-19 17:46:39 +00001148 OS << "\t.seh_stackalloc " << Size;
Charles Davis0e30f022011-05-18 04:58:05 +00001149 EmitEOL();
1150}
1151
Charles Davisc3b16282011-05-19 19:35:55 +00001152void MCAsmStreamer::EmitWin64EHSaveReg(unsigned Register, unsigned Offset) {
Charles Daviscde87e22011-05-20 18:19:22 +00001153 MCStreamer::EmitWin64EHSaveReg(Register, Offset);
1154
Charles Davis440596f2011-05-19 17:46:39 +00001155 OS << "\t.seh_savereg " << Register << ", " << Offset;
1156 EmitEOL();
1157}
1158
Charles Davisc3b16282011-05-19 19:35:55 +00001159void MCAsmStreamer::EmitWin64EHSaveXMM(unsigned Register, unsigned Offset) {
Charles Daviscde87e22011-05-20 18:19:22 +00001160 MCStreamer::EmitWin64EHSaveXMM(Register, Offset);
1161
Charles Davis440596f2011-05-19 17:46:39 +00001162 OS << "\t.seh_savexmm " << Register << ", " << Offset;
Charles Davis0e30f022011-05-18 04:58:05 +00001163 EmitEOL();
1164}
1165
Charles Davis8b3e5e52011-05-18 22:13:51 +00001166void MCAsmStreamer::EmitWin64EHPushFrame(bool Code) {
Charles Daviscde87e22011-05-20 18:19:22 +00001167 MCStreamer::EmitWin64EHPushFrame(Code);
1168
Charles Davis440596f2011-05-19 17:46:39 +00001169 OS << "\t.seh_pushframe";
Charles Davis0e30f022011-05-18 04:58:05 +00001170 if (Code)
Charles Davis440596f2011-05-19 17:46:39 +00001171 OS << " @code";
Charles Davis0e30f022011-05-18 04:58:05 +00001172 EmitEOL();
1173}
1174
Charles Davis8b3e5e52011-05-18 22:13:51 +00001175void MCAsmStreamer::EmitWin64EHEndProlog(void) {
Charles Daviscde87e22011-05-20 18:19:22 +00001176 MCStreamer::EmitWin64EHEndProlog();
1177
Charles Davis440596f2011-05-19 17:46:39 +00001178 OS << "\t.seh_endprologue";
Charles Davis0e30f022011-05-18 04:58:05 +00001179 EmitEOL();
1180}
1181
Daniel Dunbar6b716532010-02-09 23:00:14 +00001182void MCAsmStreamer::AddEncodingComment(const MCInst &Inst) {
1183 raw_ostream &OS = GetCommentOS();
1184 SmallString<256> Code;
1185 SmallVector<MCFixup, 4> Fixups;
1186 raw_svector_ostream VecOS(Code);
1187 Emitter->EncodeInstruction(Inst, VecOS, Fixups);
1188 VecOS.flush();
Chris Lattnera6594fc2010-01-25 18:58:59 +00001189
Daniel Dunbar6b716532010-02-09 23:00:14 +00001190 // If we are showing fixups, create symbolic markers in the encoded
1191 // representation. We do this by making a per-bit map to the fixup item index,
1192 // then trying to display it as nicely as possible.
Daniel Dunbar5532cf42010-02-10 01:41:14 +00001193 SmallVector<uint8_t, 64> FixupMap;
1194 FixupMap.resize(Code.size() * 8);
Daniel Dunbar6b716532010-02-09 23:00:14 +00001195 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
1196 FixupMap[i] = 0;
1197
1198 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1199 MCFixup &F = Fixups[i];
Daniel Dunbar2761fc42010-12-16 03:20:06 +00001200 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar6b716532010-02-09 23:00:14 +00001201 for (unsigned j = 0; j != Info.TargetSize; ++j) {
1202 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j;
1203 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
1204 FixupMap[Index] = 1 + i;
1205 }
1206 }
1207
Evan Cheng5c2eef62011-07-08 22:49:42 +00001208 // FIXME: Note the fixup comments for Thumb2 are completely bogus since the
Evan Cheng8fbbd1c2011-01-13 23:27:39 +00001209 // high order halfword of a 32-bit Thumb2 instruction is emitted first.
Daniel Dunbar6b716532010-02-09 23:00:14 +00001210 OS << "encoding: [";
1211 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
1212 if (i)
1213 OS << ',';
1214
1215 // See if all bits are the same map entry.
1216 uint8_t MapEntry = FixupMap[i * 8 + 0];
1217 for (unsigned j = 1; j != 8; ++j) {
1218 if (FixupMap[i * 8 + j] == MapEntry)
1219 continue;
1220
1221 MapEntry = uint8_t(~0U);
1222 break;
1223 }
1224
1225 if (MapEntry != uint8_t(~0U)) {
1226 if (MapEntry == 0) {
1227 OS << format("0x%02x", uint8_t(Code[i]));
1228 } else {
Evan Cheng82caf1a2011-01-13 21:45:26 +00001229 if (Code[i]) {
Evan Cheng8fbbd1c2011-01-13 23:27:39 +00001230 // FIXME: Some of the 8 bits require fix up.
Evan Cheng82caf1a2011-01-13 21:45:26 +00001231 OS << format("0x%02x", uint8_t(Code[i])) << '\''
1232 << char('A' + MapEntry - 1) << '\'';
1233 } else
1234 OS << char('A' + MapEntry - 1);
Daniel Dunbar6b716532010-02-09 23:00:14 +00001235 }
1236 } else {
1237 // Otherwise, write out in binary.
1238 OS << "0b";
Jay Foad95c3e482011-06-23 09:09:15 +00001239 for (unsigned j = 8; j--;) {
Daniel Dunbar6b716532010-02-09 23:00:14 +00001240 unsigned Bit = (Code[i] >> j) & 1;
NAKAMURA Takumid6451512011-03-27 01:44:40 +00001241
Chris Lattner3170a3b2010-11-15 05:56:19 +00001242 unsigned FixupBit;
Evan Cheng1be0e272011-07-15 02:09:41 +00001243 if (getContext().getAsmInfo().isLittleEndian())
Chris Lattner3170a3b2010-11-15 05:56:19 +00001244 FixupBit = i * 8 + j;
1245 else
1246 FixupBit = i * 8 + (7-j);
NAKAMURA Takumid6451512011-03-27 01:44:40 +00001247
Jay Foad95c3e482011-06-23 09:09:15 +00001248 if (uint8_t MapEntry = FixupMap[FixupBit]) {
1249 assert(Bit == 0 && "Encoder wrote into fixed up bit!");
1250 OS << char('A' + MapEntry - 1);
Daniel Dunbar6b716532010-02-09 23:00:14 +00001251 } else
1252 OS << Bit;
1253 }
1254 }
1255 }
1256 OS << "]\n";
1257
1258 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1259 MCFixup &F = Fixups[i];
Daniel Dunbar2761fc42010-12-16 03:20:06 +00001260 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar6b716532010-02-09 23:00:14 +00001261 OS << " fixup " << char('A' + i) << " - " << "offset: " << F.getOffset()
Daniel Dunbar5d5a1e12010-02-10 04:47:08 +00001262 << ", value: " << *F.getValue() << ", kind: " << Info.Name << "\n";
Daniel Dunbar6b716532010-02-09 23:00:14 +00001263 }
1264}
1265
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +00001266void MCAsmStreamer::EmitFnStart() {
1267 OS << "\t.fnstart";
1268 EmitEOL();
1269}
1270
1271void MCAsmStreamer::EmitFnEnd() {
1272 OS << "\t.fnend";
1273 EmitEOL();
1274}
1275
1276void MCAsmStreamer::EmitCantUnwind() {
1277 OS << "\t.cantunwind";
1278 EmitEOL();
1279}
1280
1281void MCAsmStreamer::EmitHandlerData() {
1282 OS << "\t.handlerdata";
1283 EmitEOL();
1284}
1285
1286void MCAsmStreamer::EmitPersonality(const MCSymbol *Personality) {
1287 OS << "\t.personality " << Personality->getName();
1288 EmitEOL();
1289}
1290
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001291void MCAsmStreamer::EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset) {
Rafael Espindolacde4ce42011-06-02 02:34:55 +00001292 OS << "\t.setfp\t";
1293 InstPrinter->printRegName(OS, FpReg);
1294 OS << ", ";
1295 InstPrinter->printRegName(OS, SpReg);
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001296 if (Offset)
1297 OS << ", #" << Offset;
1298 EmitEOL();
1299}
1300
1301void MCAsmStreamer::EmitPad(int64_t Offset) {
1302 OS << "\t.pad\t#" << Offset;
1303 EmitEOL();
1304}
1305
1306void MCAsmStreamer::EmitRegSave(const SmallVectorImpl<unsigned> &RegList,
1307 bool isVector) {
1308 assert(RegList.size() && "RegList should not be empty");
1309 if (isVector)
1310 OS << "\t.vsave\t{";
1311 else
1312 OS << "\t.save\t{";
1313
Rafael Espindolacde4ce42011-06-02 02:34:55 +00001314 InstPrinter->printRegName(OS, RegList[0]);
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001315
Rafael Espindolacde4ce42011-06-02 02:34:55 +00001316 for (unsigned i = 1, e = RegList.size(); i != e; ++i) {
1317 OS << ", ";
1318 InstPrinter->printRegName(OS, RegList[i]);
1319 }
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001320
1321 OS << "}";
1322 EmitEOL();
1323}
1324
Adhemerval Zanellaf35c62b2012-10-15 15:43:14 +00001325void MCAsmStreamer::EmitTCEntry(const MCSymbol &S) {
1326 OS << "\t.tc ";
1327 OS << S.getName();
1328 OS << "[TC],";
1329 OS << S.getName();
1330 EmitEOL();
1331}
1332
Daniel Dunbar6b716532010-02-09 23:00:14 +00001333void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +00001334 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Daniel Dunbar6b716532010-02-09 23:00:14 +00001335
1336 // Show the encoding in a comment if we have a code emitter.
1337 if (Emitter)
1338 AddEncodingComment(Inst);
1339
Chris Lattner30d9a642010-02-09 00:54:51 +00001340 // Show the MCInst if enabled.
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +00001341 if (ShowInst) {
Daniel Dunbar67c076c2010-03-22 21:49:34 +00001342 Inst.dump_pretty(GetCommentOS(), &MAI, InstPrinter.get(), "\n ");
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +00001343 GetCommentOS() << "\n";
1344 }
1345
Daniel Dunbar67c076c2010-03-22 21:49:34 +00001346 // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001347 if (InstPrinter)
Owen Anderson98c5dda2011-09-15 23:38:46 +00001348 InstPrinter->printInst(&Inst, OS, "");
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001349 else
1350 Inst.print(OS, &MAI);
Chris Lattner7d1e49c2010-01-22 07:36:39 +00001351 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +00001352}
1353
Jim Grosbachbd4ec842010-09-22 18:18:30 +00001354/// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +00001355/// the specified string in the output .s file. This capability is
1356/// indicated by the hasRawTextSupport() predicate.
1357void MCAsmStreamer::EmitRawText(StringRef String) {
Chris Lattnerd5928dc2010-04-03 22:06:56 +00001358 if (!String.empty() && String.back() == '\n')
1359 String = String.substr(0, String.size()-1);
Chris Lattner91bead72010-04-03 21:35:55 +00001360 OS << String;
Chris Lattnerd5928dc2010-04-03 22:06:56 +00001361 EmitEOL();
Chris Lattner91bead72010-04-03 21:35:55 +00001362}
1363
Rafael Espindola99b42372012-01-07 03:13:18 +00001364void MCAsmStreamer::FinishImpl() {
Rafael Espindola489d6792012-02-28 21:13:05 +00001365 // FIXME: This header is duplicated with MCObjectStreamer
Rafael Espindola195a0ce2010-11-19 02:26:16 +00001366 // Dump out the dwarf file & directory tables and line tables.
Rafael Espindolae6ec02e2012-03-03 14:24:15 +00001367 const MCSymbol *LineSectionSymbol = NULL;
Rafael Espindola89b93722010-12-10 07:39:47 +00001368 if (getContext().hasDwarfFiles() && !UseLoc)
Rafael Espindola489d6792012-02-28 21:13:05 +00001369 LineSectionSymbol = MCDwarfFileTable::Emit(this);
Rafael Espindola5426a9e2011-05-01 04:49:54 +00001370
Kevin Enderby94c2e852011-12-09 18:09:40 +00001371 // If we are generating dwarf for assembly source files dump out the sections.
1372 if (getContext().getGenDwarfForAssembly())
Rafael Espindola489d6792012-02-28 21:13:05 +00001373 MCGenDwarfInfo::Emit(this, LineSectionSymbol);
Kevin Enderby94c2e852011-12-09 18:09:40 +00001374
Rafael Espindolac25dad82011-05-10 03:14:15 +00001375 if (!UseCFI)
1376 EmitFrames(false);
Daniel Dunbara11af532009-06-24 01:03:06 +00001377}
Chris Lattner86e22112010-01-22 07:29:22 +00001378MCStreamer *llvm::createAsmStreamer(MCContext &Context,
1379 formatted_raw_ostream &OS,
Rafael Espindola89b93722010-12-10 07:39:47 +00001380 bool isVerboseAsm, bool useLoc,
Nick Lewycky44d798d2011-10-17 23:05:28 +00001381 bool useCFI, bool useDwarfDirectory,
1382 MCInstPrinter *IP, MCCodeEmitter *CE,
1383 MCAsmBackend *MAB, bool ShowInst) {
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001384 return new MCAsmStreamer(Context, OS, isVerboseAsm, useLoc, useCFI,
Nick Lewycky44d798d2011-10-17 23:05:28 +00001385 useDwarfDirectory, IP, CE, MAB, ShowInst);
Daniel Dunbara11af532009-06-24 01:03:06 +00001386}