blob: ba6dee7cc2ddbf6891a76b53724ae8efd69c9ef6 [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 Grosbachce792992010-11-05 22:08:08 +0000141 virtual void EmitThumbFunc(MCSymbol *Func);
Daniel Dunbara11af532009-06-24 01:03:06 +0000142
Daniel Dunbar821e3332009-08-31 08:09:28 +0000143 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
Rafael Espindola484291c2010-11-01 14:28:48 +0000144 virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
Rafael Espindola32a006e2010-12-03 00:55:40 +0000145 virtual void EmitDwarfAdvanceLineAddr(int64_t LineDelta,
146 const MCSymbol *LastLabel,
Evan Cheng672b93a2011-07-14 05:43:07 +0000147 const MCSymbol *Label,
148 unsigned PointerSize);
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000149 virtual void EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
150 const MCSymbol *Label);
Daniel Dunbara11af532009-06-24 01:03:06 +0000151
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000152 virtual void EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
Kevin Enderbya5c78322009-07-13 21:03:15 +0000153
Chris Lattner46a947d2009-08-17 04:17:34 +0000154 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
Chris Lattnerb54b9dd2010-05-08 19:54:22 +0000155 virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol);
156 virtual void EmitCOFFSymbolStorageClass(int StorageClass);
157 virtual void EmitCOFFSymbolType(int Type);
158 virtual void EndCOFFSymbolDef();
Rafael Espindola8f7d12c2011-12-17 01:14:52 +0000159 virtual void EmitCOFFSecRel32(MCSymbol const *Symbol);
Chris Lattner99328ad2010-01-25 07:52:13 +0000160 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
Chris Lattner9eb158d2010-01-23 07:47:02 +0000161 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000162 unsigned ByteAlignment);
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000163
Chris Lattner9eb158d2010-01-23 07:47:02 +0000164 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
165 ///
166 /// @param Symbol - The common symbol to emit.
167 /// @param Size - The size of the common symbol.
Benjamin Kramer36a16012011-09-01 23:04:27 +0000168 /// @param Size - The alignment of the common symbol in bytes.
169 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
170 unsigned ByteAlignment);
Jim Grosbach00545e12010-09-22 18:16:55 +0000171
Daniel Dunbar8751b942009-08-28 05:48:22 +0000172 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000173 unsigned Size = 0, unsigned ByteAlignment = 0);
Kevin Enderby71148242009-07-14 21:35:03 +0000174
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000175 virtual void EmitTBSSSymbol (const MCSection *Section, MCSymbol *Symbol,
176 uint64_t Size, unsigned ByteAlignment = 0);
Jim Grosbach00545e12010-09-22 18:16:55 +0000177
Chris Lattneraaec2052010-01-19 19:46:13 +0000178 virtual void EmitBytes(StringRef Data, unsigned AddrSpace);
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000179
Rafael Espindola89b93722010-12-10 07:39:47 +0000180 virtual void EmitValueImpl(const MCExpr *Value, unsigned Size,
Rafael Espindoladebd7e42011-05-01 03:50:49 +0000181 unsigned AddrSpace);
Rafael Espindola2df042c2010-12-03 02:54:21 +0000182 virtual void EmitIntValue(uint64_t Value, unsigned Size,
183 unsigned AddrSpace = 0);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000184
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000185 virtual void EmitULEB128Value(const MCExpr *Value);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000186
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000187 virtual void EmitSLEB128Value(const MCExpr *Value);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000188
Akira Hatanaka6c2cf8b2012-02-03 04:33:00 +0000189 virtual void EmitGPRel64Value(const MCExpr *Value);
190
Chris Lattner718fb592010-01-25 21:28:50 +0000191 virtual void EmitGPRel32Value(const MCExpr *Value);
Jim Grosbach00545e12010-09-22 18:16:55 +0000192
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000193
Chris Lattneraaec2052010-01-19 19:46:13 +0000194 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue,
195 unsigned AddrSpace);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000196
Chris Lattner46a947d2009-08-17 04:17:34 +0000197 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
198 unsigned ValueSize = 1,
199 unsigned MaxBytesToEmit = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000200
Kevin Enderby6e720482010-02-23 18:26:34 +0000201 virtual void EmitCodeAlignment(unsigned ByteAlignment,
202 unsigned MaxBytesToEmit = 0);
203
Jim Grosbachebd4c052012-01-27 00:37:08 +0000204 virtual bool EmitValueToOffset(const MCExpr *Offset,
Chris Lattner46a947d2009-08-17 04:17:34 +0000205 unsigned char Value = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000206
Chris Lattnera6594fc2010-01-25 18:58:59 +0000207 virtual void EmitFileDirective(StringRef Filename);
Nick Lewycky44d798d2011-10-17 23:05:28 +0000208 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
209 StringRef Filename);
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000210 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
211 unsigned Column, unsigned Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +0000212 unsigned Isa, unsigned Discriminator,
213 StringRef FileName);
Chris Lattnera6594fc2010-01-25 18:58:59 +0000214
Rafael Espindola713c4bf2011-05-10 13:39:48 +0000215 virtual void EmitCFISections(bool EH, bool Debug);
Rafael Espindola066c2f42011-04-12 23:59:07 +0000216 virtual void EmitCFIDefCfa(int64_t Register, int64_t Offset);
217 virtual void EmitCFIDefCfaOffset(int64_t Offset);
218 virtual void EmitCFIDefCfaRegister(int64_t Register);
219 virtual void EmitCFIOffset(int64_t Register, int64_t Offset);
220 virtual void EmitCFIPersonality(const MCSymbol *Sym, unsigned Encoding);
221 virtual void EmitCFILsda(const MCSymbol *Sym, unsigned Encoding);
222 virtual void EmitCFIRememberState();
223 virtual void EmitCFIRestoreState();
224 virtual void EmitCFISameValue(int64_t Register);
225 virtual void EmitCFIRelOffset(int64_t Register, int64_t Offset);
226 virtual void EmitCFIAdjustCfaOffset(int64_t Adjustment);
Rafael Espindola16d7d432012-01-23 21:51:52 +0000227 virtual void EmitCFISignalFrame();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000228
Charles Davisfbc539f2011-05-22 21:12:15 +0000229 virtual void EmitWin64EHStartProc(const MCSymbol *Symbol);
Charles Davis0e30f022011-05-18 04:58:05 +0000230 virtual void EmitWin64EHEndProc();
Charles Davisf0709012011-05-18 20:54:10 +0000231 virtual void EmitWin64EHStartChained();
232 virtual void EmitWin64EHEndChained();
Charles Davis440596f2011-05-19 17:46:39 +0000233 virtual void EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
234 bool Except);
235 virtual void EmitWin64EHHandlerData();
Charles Davisc3b16282011-05-19 19:35:55 +0000236 virtual void EmitWin64EHPushReg(unsigned Register);
237 virtual void EmitWin64EHSetFrame(unsigned Register, unsigned Offset);
238 virtual void EmitWin64EHAllocStack(unsigned Size);
239 virtual void EmitWin64EHSaveReg(unsigned Register, unsigned Offset);
240 virtual void EmitWin64EHSaveXMM(unsigned Register, unsigned Offset);
Charles Davis0e30f022011-05-18 04:58:05 +0000241 virtual void EmitWin64EHPushFrame(bool Code);
242 virtual void EmitWin64EHEndProlog();
243
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000244 virtual void EmitFnStart();
245 virtual void EmitFnEnd();
246 virtual void EmitCantUnwind();
247 virtual void EmitPersonality(const MCSymbol *Personality);
248 virtual void EmitHandlerData();
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000249 virtual void EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset = 0);
250 virtual void EmitPad(int64_t Offset);
251 virtual void EmitRegSave(const SmallVectorImpl<unsigned> &RegList, bool);
252
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000253
Chris Lattnera6594fc2010-01-25 18:58:59 +0000254 virtual void EmitInstruction(const MCInst &Inst);
Jim Grosbach00545e12010-09-22 18:16:55 +0000255
Jim Grosbachbd4ec842010-09-22 18:18:30 +0000256 /// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +0000257 /// the specified string in the output .s file. This capability is
258 /// indicated by the hasRawTextSupport() predicate.
259 virtual void EmitRawText(StringRef String);
Jim Grosbach00545e12010-09-22 18:16:55 +0000260
Rafael Espindola99b42372012-01-07 03:13:18 +0000261 virtual void FinishImpl();
Jim Grosbach00545e12010-09-22 18:16:55 +0000262
Chris Lattner46a947d2009-08-17 04:17:34 +0000263 /// @}
264};
Daniel Dunbar84a29262009-06-24 19:25:34 +0000265
Chris Lattner46a947d2009-08-17 04:17:34 +0000266} // end anonymous namespace.
Daniel Dunbara11af532009-06-24 01:03:06 +0000267
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000268/// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner86e22112010-01-22 07:29:22 +0000269/// file if applicable as a QoI issue to make the output of the compiler
270/// more readable. This only affects the MCAsmStreamer, and only when
271/// verbose assembly output is enabled.
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000272void MCAsmStreamer::AddComment(const Twine &T) {
Chris Lattner86e22112010-01-22 07:29:22 +0000273 if (!IsVerboseAsm) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000274
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000275 // Make sure that CommentStream is flushed.
276 CommentStream.flush();
Jim Grosbach00545e12010-09-22 18:16:55 +0000277
Chris Lattner86e22112010-01-22 07:29:22 +0000278 T.toVector(CommentToEmit);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000279 // Each comment goes on its own line.
280 CommentToEmit.push_back('\n');
Jim Grosbach00545e12010-09-22 18:16:55 +0000281
Chris Lattner14ca1772010-01-22 21:16:10 +0000282 // Tell the comment stream that the vector changed underneath it.
283 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000284}
285
286void MCAsmStreamer::EmitCommentsAndEOL() {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000287 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) {
288 OS << '\n';
289 return;
290 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000291
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000292 CommentStream.flush();
Chris Lattner86e22112010-01-22 07:29:22 +0000293 StringRef Comments = CommentToEmit.str();
Jim Grosbach00545e12010-09-22 18:16:55 +0000294
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000295 assert(Comments.back() == '\n' &&
296 "Comment array not newline terminated");
297 do {
Chris Lattner86e22112010-01-22 07:29:22 +0000298 // Emit a line of comments.
299 OS.PadToColumn(MAI.getCommentColumn());
300 size_t Position = Comments.find('\n');
301 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
Jim Grosbach00545e12010-09-22 18:16:55 +0000302
Chris Lattner86e22112010-01-22 07:29:22 +0000303 Comments = Comments.substr(Position+1);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000304 } while (!Comments.empty());
Jim Grosbach00545e12010-09-22 18:16:55 +0000305
Chris Lattner14ca1772010-01-22 21:16:10 +0000306 CommentToEmit.clear();
307 // Tell the comment stream that the vector changed underneath it.
308 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000309}
310
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000311static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
312 assert(Bytes && "Invalid size!");
313 return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
314}
315
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000316void MCAsmStreamer::ChangeSection(const MCSection *Section) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000317 assert(Section && "Cannot switch to a null section!");
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000318 Section->PrintSwitchToSection(MAI, OS);
Daniel Dunbara11af532009-06-24 01:03:06 +0000319}
320
Rafael Espindola277abc82011-04-30 16:34:57 +0000321void MCAsmStreamer::EmitEHSymAttributes(const MCSymbol *Symbol,
322 MCSymbol *EHSymbol) {
323 if (UseCFI)
324 return;
325
326 unsigned Flags = FlagMap.lookup(Symbol);
327
328 if (Flags & EHGlobal)
329 EmitSymbolAttribute(EHSymbol, MCSA_Global);
330 if (Flags & EHWeakDefinition)
331 EmitSymbolAttribute(EHSymbol, MCSA_WeakDefinition);
332 if (Flags & EHPrivateExtern)
333 EmitSymbolAttribute(EHSymbol, MCSA_PrivateExtern);
334}
335
Daniel Dunbara11af532009-06-24 01:03:06 +0000336void MCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
Daniel Dunbar8906ff12009-08-22 07:22:36 +0000337 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Rafael Espindolaed708f92011-04-27 15:21:19 +0000338 MCStreamer::EmitLabel(Symbol);
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000339
Chris Lattnere07b75e2010-09-22 22:19:53 +0000340 OS << *Symbol << MAI.getLabelSuffix();
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000341 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000342}
343
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000344void MCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
Kevin Enderbyf96db462009-07-16 17:56:39 +0000345 switch (Flag) {
Jason W Kimafd1cc22010-09-30 02:45:56 +0000346 case MCAF_SyntaxUnified: OS << "\t.syntax unified"; break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000347 case MCAF_SubsectionsViaSymbols: OS << ".subsections_via_symbols"; break;
Evan Chengbd27f5a2011-07-27 00:38:12 +0000348 case MCAF_Code16: OS << '\t'<< MAI.getCode16Directive(); break;
349 case MCAF_Code32: OS << '\t'<< MAI.getCode32Directive(); break;
350 case MCAF_Code64: OS << '\t'<< MAI.getCode64Directive(); break;
Kevin Enderbyf96db462009-07-16 17:56:39 +0000351 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000352 EmitEOL();
Kevin Enderbya5c78322009-07-13 21:03:15 +0000353}
354
Jim Grosbachce792992010-11-05 22:08:08 +0000355void MCAsmStreamer::EmitThumbFunc(MCSymbol *Func) {
356 // This needs to emit to a temporary string to get properly quoted
357 // MCSymbols when they have spaces in them.
358 OS << "\t.thumb_func";
Rafael Espindola64695402011-05-16 16:17:21 +0000359 // Only Mach-O hasSubsectionsViaSymbols()
360 if (MAI.hasSubsectionsViaSymbols())
Jim Grosbachce792992010-11-05 22:08:08 +0000361 OS << '\t' << *Func;
362 EmitEOL();
363}
364
Daniel Dunbar821e3332009-08-31 08:09:28 +0000365void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000366 OS << *Symbol << " = " << *Value;
367 EmitEOL();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000368
369 // FIXME: Lift context changes into super class.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000370 Symbol->setVariableValue(Value);
Daniel Dunbara11af532009-06-24 01:03:06 +0000371}
372
Rafael Espindola484291c2010-11-01 14:28:48 +0000373void MCAsmStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
374 OS << ".weakref " << *Alias << ", " << *Symbol;
375 EmitEOL();
376}
377
Rafael Espindola32a006e2010-12-03 00:55:40 +0000378void MCAsmStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
379 const MCSymbol *LastLabel,
Evan Cheng672b93a2011-07-14 05:43:07 +0000380 const MCSymbol *Label,
381 unsigned PointerSize) {
382 EmitDwarfSetLineAddr(LineDelta, Label, PointerSize);
Rafael Espindola32a006e2010-12-03 00:55:40 +0000383}
384
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000385void MCAsmStreamer::EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
386 const MCSymbol *Label) {
387 EmitIntValue(dwarf::DW_CFA_advance_loc4, 1);
388 const MCExpr *AddrDelta = BuildSymbolDiff(getContext(), Label, LastLabel);
Rafael Espindolaa6f26782011-05-19 21:40:34 +0000389 AddrDelta = ForceExpAbs(AddrDelta);
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000390 EmitValue(AddrDelta, 4);
391}
392
393
Daniel Dunbarfffff912009-10-16 01:34:54 +0000394void MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000395 MCSymbolAttr Attribute) {
Daniel Dunbara11af532009-06-24 01:03:06 +0000396 switch (Attribute) {
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000397 case MCSA_Invalid: assert(0 && "Invalid symbol attribute");
Chris Lattnered0ab152010-01-25 18:30:45 +0000398 case MCSA_ELF_TypeFunction: /// .type _foo, STT_FUNC # aka @function
399 case MCSA_ELF_TypeIndFunction: /// .type _foo, STT_GNU_IFUNC
400 case MCSA_ELF_TypeObject: /// .type _foo, STT_OBJECT # aka @object
401 case MCSA_ELF_TypeTLS: /// .type _foo, STT_TLS # aka @tls_object
402 case MCSA_ELF_TypeCommon: /// .type _foo, STT_COMMON # aka @common
403 case MCSA_ELF_TypeNoType: /// .type _foo, STT_NOTYPE # aka @notype
Rafael Espindolae9c0ff22010-11-13 04:55:06 +0000404 case MCSA_ELF_TypeGnuUniqueObject: /// .type _foo, @gnu_unique_object
Chris Lattnered0ab152010-01-25 18:30:45 +0000405 assert(MAI.hasDotTypeDotSizeDirective() && "Symbol Attr not supported");
Dan Gohman523d70e2010-02-04 01:42:13 +0000406 OS << "\t.type\t" << *Symbol << ','
Chris Lattnered0ab152010-01-25 18:30:45 +0000407 << ((MAI.getCommentString()[0] != '@') ? '@' : '%');
408 switch (Attribute) {
409 default: assert(0 && "Unknown ELF .type");
410 case MCSA_ELF_TypeFunction: OS << "function"; break;
411 case MCSA_ELF_TypeIndFunction: OS << "gnu_indirect_function"; break;
412 case MCSA_ELF_TypeObject: OS << "object"; break;
413 case MCSA_ELF_TypeTLS: OS << "tls_object"; break;
414 case MCSA_ELF_TypeCommon: OS << "common"; break;
415 case MCSA_ELF_TypeNoType: OS << "no_type"; break;
Rafael Espindolae9c0ff22010-11-13 04:55:06 +0000416 case MCSA_ELF_TypeGnuUniqueObject: OS << "gnu_unique_object"; break;
Chris Lattnered0ab152010-01-25 18:30:45 +0000417 }
418 EmitEOL();
419 return;
420 case MCSA_Global: // .globl/.global
421 OS << MAI.getGlobalDirective();
Rafael Espindola277abc82011-04-30 16:34:57 +0000422 FlagMap[Symbol] |= EHGlobal;
Chris Lattnered0ab152010-01-25 18:30:45 +0000423 break;
Chris Lattner61abd7b2010-06-21 20:35:01 +0000424 case MCSA_Hidden: OS << "\t.hidden\t"; break;
425 case MCSA_IndirectSymbol: OS << "\t.indirect_symbol\t"; break;
426 case MCSA_Internal: OS << "\t.internal\t"; break;
427 case MCSA_LazyReference: OS << "\t.lazy_reference\t"; break;
428 case MCSA_Local: OS << "\t.local\t"; break;
429 case MCSA_NoDeadStrip: OS << "\t.no_dead_strip\t"; break;
Kevin Enderbye8e98d72010-11-19 18:39:33 +0000430 case MCSA_SymbolResolver: OS << "\t.symbol_resolver\t"; break;
Rafael Espindola277abc82011-04-30 16:34:57 +0000431 case MCSA_PrivateExtern:
432 OS << "\t.private_extern\t";
433 FlagMap[Symbol] |= EHPrivateExtern;
434 break;
Chris Lattner61abd7b2010-06-21 20:35:01 +0000435 case MCSA_Protected: OS << "\t.protected\t"; break;
436 case MCSA_Reference: OS << "\t.reference\t"; break;
437 case MCSA_Weak: OS << "\t.weak\t"; break;
Rafael Espindola277abc82011-04-30 16:34:57 +0000438 case MCSA_WeakDefinition:
439 OS << "\t.weak_definition\t";
440 FlagMap[Symbol] |= EHWeakDefinition;
441 break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000442 // .weak_reference
443 case MCSA_WeakReference: OS << MAI.getWeakRefDirective(); break;
Kevin Enderbyf59cac52010-07-08 17:22:42 +0000444 case MCSA_WeakDefAutoPrivate: OS << "\t.weak_def_can_be_hidden\t"; break;
Daniel Dunbara11af532009-06-24 01:03:06 +0000445 }
446
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000447 OS << *Symbol;
448 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000449}
450
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000451void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000452 OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
453 EmitEOL();
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000454}
455
Chris Lattnerb54b9dd2010-05-08 19:54:22 +0000456void MCAsmStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {
457 OS << "\t.def\t " << *Symbol << ';';
458 EmitEOL();
459}
460
461void MCAsmStreamer::EmitCOFFSymbolStorageClass (int StorageClass) {
462 OS << "\t.scl\t" << StorageClass << ';';
463 EmitEOL();
464}
465
466void MCAsmStreamer::EmitCOFFSymbolType (int Type) {
467 OS << "\t.type\t" << Type << ';';
468 EmitEOL();
469}
470
471void MCAsmStreamer::EndCOFFSymbolDef() {
472 OS << "\t.endef";
473 EmitEOL();
474}
475
Rafael Espindola8f7d12c2011-12-17 01:14:52 +0000476void MCAsmStreamer::EmitCOFFSecRel32(MCSymbol const *Symbol) {
477 OS << "\t.secrel32\t" << *Symbol << '\n';
478 EmitEOL();
479}
480
Chris Lattner99328ad2010-01-25 07:52:13 +0000481void MCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
482 assert(MAI.hasDotTypeDotSizeDirective());
483 OS << "\t.size\t" << *Symbol << ", " << *Value << '\n';
484}
485
Chris Lattner9eb158d2010-01-23 07:47:02 +0000486void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000487 unsigned ByteAlignment) {
Chris Lattner9eb158d2010-01-23 07:47:02 +0000488 OS << "\t.comm\t" << *Symbol << ',' << Size;
Chris Lattner6559d762010-01-25 07:29:13 +0000489 if (ByteAlignment != 0) {
Rafael Espindola2e2563b2010-01-26 20:21:43 +0000490 if (MAI.getCOMMDirectiveAlignmentIsInBytes())
Chris Lattner4ed54382010-01-19 06:01:04 +0000491 OS << ',' << ByteAlignment;
492 else
493 OS << ',' << Log2_32(ByteAlignment);
494 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000495 EmitEOL();
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000496}
497
Chris Lattner9eb158d2010-01-23 07:47:02 +0000498/// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
499///
500/// @param Symbol - The common symbol to emit.
501/// @param Size - The size of the common symbol.
Benjamin Kramer36a16012011-09-01 23:04:27 +0000502void MCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
503 unsigned ByteAlign) {
504 assert(MAI.getLCOMMDirectiveType() != LCOMM::None &&
505 "Doesn't have .lcomm, can't emit it!");
Chris Lattner9eb158d2010-01-23 07:47:02 +0000506 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
Benjamin Kramer36a16012011-09-01 23:04:27 +0000507 if (ByteAlign > 1) {
508 assert(MAI.getLCOMMDirectiveType() == LCOMM::ByteAlignment &&
509 "Alignment not supported on .lcomm!");
510 OS << ',' << ByteAlign;
511 }
Chris Lattner9eb158d2010-01-23 07:47:02 +0000512 EmitEOL();
513}
514
Daniel Dunbar8751b942009-08-28 05:48:22 +0000515void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000516 unsigned Size, unsigned ByteAlignment) {
Daniel Dunbar011e4db2009-08-13 23:36:34 +0000517 // Note: a .zerofill directive does not switch sections.
Chris Lattner93b6db32009-08-08 23:39:42 +0000518 OS << ".zerofill ";
Jim Grosbach00545e12010-09-22 18:16:55 +0000519
Chris Lattner93b6db32009-08-08 23:39:42 +0000520 // This is a mach-o specific directive.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000521 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
Daniel Dunbar12de0df2009-08-14 18:51:45 +0000522 OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
Jim Grosbach00545e12010-09-22 18:16:55 +0000523
Chris Lattner9be3fee2009-07-10 22:20:30 +0000524 if (Symbol != NULL) {
Chris Lattner10b318b2010-01-17 21:43:43 +0000525 OS << ',' << *Symbol << ',' << Size;
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000526 if (ByteAlignment != 0)
527 OS << ',' << Log2_32(ByteAlignment);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000528 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000529 EmitEOL();
Chris Lattner9be3fee2009-07-10 22:20:30 +0000530}
531
Eric Christopherd04d98d2010-05-17 02:13:02 +0000532// .tbss sym, size, align
533// This depends that the symbol has already been mangled from the original,
534// e.g. _a.
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000535void MCAsmStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
536 uint64_t Size, unsigned ByteAlignment) {
Eric Christopher482eba02010-05-14 01:50:28 +0000537 assert(Symbol != NULL && "Symbol shouldn't be NULL!");
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000538 // Instead of using the Section we'll just use the shortcut.
539 // This is a mach-o specific directive and section.
Eric Christopherd04d98d2010-05-17 02:13:02 +0000540 OS << ".tbss " << *Symbol << ", " << Size;
Jim Grosbach00545e12010-09-22 18:16:55 +0000541
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000542 // Output align if we have it. We default to 1 so don't bother printing
543 // that.
544 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
Jim Grosbach00545e12010-09-22 18:16:55 +0000545
Eric Christopher482eba02010-05-14 01:50:28 +0000546 EmitEOL();
547}
548
Chris Lattner12e555c2010-01-23 00:15:00 +0000549static inline char toOctal(int X) { return (X&7)+'0'; }
550
Chris Lattnera6594fc2010-01-25 18:58:59 +0000551static void PrintQuotedString(StringRef Data, raw_ostream &OS) {
552 OS << '"';
Jim Grosbach00545e12010-09-22 18:16:55 +0000553
Chris Lattnera6594fc2010-01-25 18:58:59 +0000554 for (unsigned i = 0, e = Data.size(); i != e; ++i) {
555 unsigned char C = Data[i];
556 if (C == '"' || C == '\\') {
557 OS << '\\' << (char)C;
558 continue;
559 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000560
Chris Lattnera6594fc2010-01-25 18:58:59 +0000561 if (isprint((unsigned char)C)) {
562 OS << (char)C;
563 continue;
564 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000565
Chris Lattnera6594fc2010-01-25 18:58:59 +0000566 switch (C) {
567 case '\b': OS << "\\b"; break;
568 case '\f': OS << "\\f"; break;
569 case '\n': OS << "\\n"; break;
570 case '\r': OS << "\\r"; break;
571 case '\t': OS << "\\t"; break;
572 default:
573 OS << '\\';
574 OS << toOctal(C >> 6);
575 OS << toOctal(C >> 3);
576 OS << toOctal(C >> 0);
577 break;
578 }
579 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000580
Chris Lattnera6594fc2010-01-25 18:58:59 +0000581 OS << '"';
582}
583
584
Chris Lattneraaec2052010-01-19 19:46:13 +0000585void MCAsmStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000586 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Chris Lattner12e555c2010-01-23 00:15:00 +0000587 if (Data.empty()) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000588
Chris Lattner12e555c2010-01-23 00:15:00 +0000589 if (Data.size() == 1) {
590 OS << MAI.getData8bitsDirective(AddrSpace);
591 OS << (unsigned)(unsigned char)Data[0];
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000592 EmitEOL();
Chris Lattner12e555c2010-01-23 00:15:00 +0000593 return;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000594 }
Chris Lattner12e555c2010-01-23 00:15:00 +0000595
596 // If the data ends with 0 and the target supports .asciz, use it, otherwise
597 // use .ascii
598 if (MAI.getAscizDirective() && Data.back() == 0) {
599 OS << MAI.getAscizDirective();
600 Data = Data.substr(0, Data.size()-1);
601 } else {
602 OS << MAI.getAsciiDirective();
603 }
604
Chris Lattnera6594fc2010-01-25 18:58:59 +0000605 OS << ' ';
606 PrintQuotedString(Data, OS);
Chris Lattner12e555c2010-01-23 00:15:00 +0000607 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000608}
609
Rafael Espindola2df042c2010-12-03 02:54:21 +0000610void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size,
611 unsigned AddrSpace) {
612 EmitValue(MCConstantExpr::Create(Value, getContext()), Size, AddrSpace);
613}
614
Rafael Espindola89b93722010-12-10 07:39:47 +0000615void MCAsmStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size,
Rafael Espindoladebd7e42011-05-01 03:50:49 +0000616 unsigned AddrSpace) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000617 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000618 const char *Directive = 0;
619 switch (Size) {
620 default: break;
621 case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
622 case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
623 case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000624 case 8:
625 Directive = MAI.getData64bitsDirective(AddrSpace);
626 // If the target doesn't support 64-bit data, emit as two 32-bit halves.
627 if (Directive) break;
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000628 int64_t IntValue;
629 if (!Value->EvaluateAsAbsolute(IntValue))
630 report_fatal_error("Don't know how to emit this value.");
Evan Cheng1be0e272011-07-15 02:09:41 +0000631 if (getContext().getAsmInfo().isLittleEndian()) {
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000632 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
633 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000634 } else {
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000635 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
636 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000637 }
638 return;
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000639 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000640
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000641 assert(Directive && "Invalid size for machine code value!");
Chris Lattner718fb592010-01-25 21:28:50 +0000642 OS << Directive << *Value;
Chris Lattner86e22112010-01-22 07:29:22 +0000643 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000644}
645
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000646void MCAsmStreamer::EmitULEB128Value(const MCExpr *Value) {
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000647 int64_t IntValue;
648 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000649 EmitULEB128IntValue(IntValue);
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000650 return;
651 }
Rafael Espindola73873452010-11-04 18:17:08 +0000652 assert(MAI.hasLEB128() && "Cannot print a .uleb");
653 OS << ".uleb128 " << *Value;
Rafael Espindola3ff57092010-11-02 17:22:24 +0000654 EmitEOL();
655}
656
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000657void MCAsmStreamer::EmitSLEB128Value(const MCExpr *Value) {
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000658 int64_t IntValue;
659 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000660 EmitSLEB128IntValue(IntValue);
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000661 return;
662 }
Rafael Espindola73873452010-11-04 18:17:08 +0000663 assert(MAI.hasLEB128() && "Cannot print a .sleb");
664 OS << ".sleb128 " << *Value;
Rafael Espindola3ff57092010-11-02 17:22:24 +0000665 EmitEOL();
666}
667
Akira Hatanaka6c2cf8b2012-02-03 04:33:00 +0000668void MCAsmStreamer::EmitGPRel64Value(const MCExpr *Value) {
669 assert(MAI.getGPRel64Directive() != 0);
670 OS << MAI.getGPRel64Directive() << *Value;
671 EmitEOL();
672}
673
Chris Lattner718fb592010-01-25 21:28:50 +0000674void MCAsmStreamer::EmitGPRel32Value(const MCExpr *Value) {
675 assert(MAI.getGPRel32Directive() != 0);
676 OS << MAI.getGPRel32Directive() << *Value;
677 EmitEOL();
678}
679
680
Chris Lattner6113b3d2010-01-19 18:52:28 +0000681/// EmitFill - Emit NumBytes bytes worth of the value specified by
682/// FillValue. This implements directives such as '.space'.
Chris Lattneraaec2052010-01-19 19:46:13 +0000683void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
684 unsigned AddrSpace) {
Chris Lattner8a6d7ac2010-01-19 18:58:52 +0000685 if (NumBytes == 0) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000686
Chris Lattneraaec2052010-01-19 19:46:13 +0000687 if (AddrSpace == 0)
688 if (const char *ZeroDirective = MAI.getZeroDirective()) {
689 OS << ZeroDirective << NumBytes;
690 if (FillValue != 0)
691 OS << ',' << (int)FillValue;
Chris Lattner86e22112010-01-22 07:29:22 +0000692 EmitEOL();
Chris Lattneraaec2052010-01-19 19:46:13 +0000693 return;
694 }
695
696 // Emit a byte at a time.
697 MCStreamer::EmitFill(NumBytes, FillValue, AddrSpace);
Chris Lattner6113b3d2010-01-19 18:52:28 +0000698}
699
Daniel Dunbar84a29262009-06-24 19:25:34 +0000700void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
701 unsigned ValueSize,
702 unsigned MaxBytesToEmit) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000703 // Some assemblers don't support non-power of two alignments, so we always
704 // emit alignments as a power of two if possible.
705 if (isPowerOf2_32(ByteAlignment)) {
Chris Lattner6e579c62009-08-19 06:35:36 +0000706 switch (ValueSize) {
707 default: llvm_unreachable("Invalid size for machine code value!");
Chris Lattner33adcfb2009-08-22 21:43:10 +0000708 case 1: OS << MAI.getAlignDirective(); break;
709 // FIXME: use MAI for this!
Chris Lattner6e579c62009-08-19 06:35:36 +0000710 case 2: OS << ".p2alignw "; break;
711 case 4: OS << ".p2alignl "; break;
712 case 8: llvm_unreachable("Unsupported alignment size!");
713 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000714
Chris Lattner33adcfb2009-08-22 21:43:10 +0000715 if (MAI.getAlignmentIsInBytes())
Chris Lattner663c2d22009-08-19 06:12:02 +0000716 OS << ByteAlignment;
717 else
718 OS << Log2_32(ByteAlignment);
Daniel Dunbar84a29262009-06-24 19:25:34 +0000719
Chris Lattner663c2d22009-08-19 06:12:02 +0000720 if (Value || MaxBytesToEmit) {
Chris Lattner579531c2009-09-03 04:01:10 +0000721 OS << ", 0x";
722 OS.write_hex(truncateToSize(Value, ValueSize));
Chris Lattner663c2d22009-08-19 06:12:02 +0000723
Jim Grosbach00545e12010-09-22 18:16:55 +0000724 if (MaxBytesToEmit)
Chris Lattner663c2d22009-08-19 06:12:02 +0000725 OS << ", " << MaxBytesToEmit;
726 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000727 EmitEOL();
Chris Lattner663c2d22009-08-19 06:12:02 +0000728 return;
729 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000730
Chris Lattner663c2d22009-08-19 06:12:02 +0000731 // Non-power of two alignment. This is not widely supported by assemblers.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000732 // FIXME: Parameterize this based on MAI.
Daniel Dunbar84a29262009-06-24 19:25:34 +0000733 switch (ValueSize) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000734 default: llvm_unreachable("Invalid size for machine code value!");
735 case 1: OS << ".balign"; break;
736 case 2: OS << ".balignw"; break;
737 case 4: OS << ".balignl"; break;
738 case 8: llvm_unreachable("Unsupported alignment size!");
Daniel Dunbar84a29262009-06-24 19:25:34 +0000739 }
740
Chris Lattner663c2d22009-08-19 06:12:02 +0000741 OS << ' ' << ByteAlignment;
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000742 OS << ", " << truncateToSize(Value, ValueSize);
Jim Grosbach00545e12010-09-22 18:16:55 +0000743 if (MaxBytesToEmit)
Daniel Dunbar84a29262009-06-24 19:25:34 +0000744 OS << ", " << MaxBytesToEmit;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000745 EmitEOL();
Daniel Dunbar84a29262009-06-24 19:25:34 +0000746}
747
Kevin Enderby6e720482010-02-23 18:26:34 +0000748void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
749 unsigned MaxBytesToEmit) {
Chris Lattnerec167fd2010-02-23 18:44:31 +0000750 // Emit with a text fill value.
751 EmitValueToAlignment(ByteAlignment, MAI.getTextAlignFillValue(),
752 1, MaxBytesToEmit);
Kevin Enderby6e720482010-02-23 18:26:34 +0000753}
754
Jim Grosbachebd4c052012-01-27 00:37:08 +0000755bool MCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbar84a29262009-06-24 19:25:34 +0000756 unsigned char Value) {
757 // FIXME: Verify that Offset is associated with the current section.
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000758 OS << ".org " << *Offset << ", " << (unsigned) Value;
759 EmitEOL();
Jim Grosbachebd4c052012-01-27 00:37:08 +0000760 return false;
Daniel Dunbar84a29262009-06-24 19:25:34 +0000761}
762
Chris Lattnera6594fc2010-01-25 18:58:59 +0000763
764void MCAsmStreamer::EmitFileDirective(StringRef Filename) {
765 assert(MAI.hasSingleParameterDotFile());
766 OS << "\t.file\t";
767 PrintQuotedString(Filename, OS);
768 EmitEOL();
769}
770
Nick Lewycky44d798d2011-10-17 23:05:28 +0000771bool MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
772 StringRef Filename) {
773 if (!UseDwarfDirectory && !Directory.empty()) {
774 if (sys::path::is_absolute(Filename))
775 return EmitDwarfFileDirective(FileNo, "", Filename);
776
777 SmallString<128> FullPathName = Directory;
778 sys::path::append(FullPathName, Filename);
779 return EmitDwarfFileDirective(FileNo, "", FullPathName);
780 }
781
Rafael Espindola89b93722010-12-10 07:39:47 +0000782 if (UseLoc) {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000783 OS << "\t.file\t" << FileNo << ' ';
Nick Lewycky44d798d2011-10-17 23:05:28 +0000784 if (!Directory.empty()) {
785 PrintQuotedString(Directory, OS);
786 OS << ' ';
787 }
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000788 PrintQuotedString(Filename, OS);
789 EmitEOL();
790 }
Nick Lewycky44d798d2011-10-17 23:05:28 +0000791 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Directory, Filename);
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000792}
793
794void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
795 unsigned Column, unsigned Flags,
796 unsigned Isa,
Devang Patel3f3bf932011-04-18 20:26:49 +0000797 unsigned Discriminator,
798 StringRef FileName) {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000799 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +0000800 Isa, Discriminator, FileName);
Rafael Espindola89b93722010-12-10 07:39:47 +0000801 if (!UseLoc)
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000802 return;
803
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000804 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
805 if (Flags & DWARF2_FLAG_BASIC_BLOCK)
806 OS << " basic_block";
807 if (Flags & DWARF2_FLAG_PROLOGUE_END)
808 OS << " prologue_end";
809 if (Flags & DWARF2_FLAG_EPILOGUE_BEGIN)
810 OS << " epilogue_begin";
811
812 unsigned OldFlags = getContext().getCurrentDwarfLoc().getFlags();
813 if ((Flags & DWARF2_FLAG_IS_STMT) != (OldFlags & DWARF2_FLAG_IS_STMT)) {
814 OS << " is_stmt ";
815
816 if (Flags & DWARF2_FLAG_IS_STMT)
817 OS << "1";
818 else
819 OS << "0";
820 }
821
822 if (Isa)
823 OS << "isa " << Isa;
824 if (Discriminator)
825 OS << "discriminator " << Discriminator;
Devang Patel3f3bf932011-04-18 20:26:49 +0000826
827 if (IsVerboseAsm) {
828 OS.PadToColumn(MAI.getCommentColumn());
829 OS << MAI.getCommentString() << ' ' << FileName << ':'
830 << Line << ':' << Column;
831 }
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000832 EmitEOL();
Chris Lattnera6594fc2010-01-25 18:58:59 +0000833}
834
Rafael Espindola713c4bf2011-05-10 13:39:48 +0000835void MCAsmStreamer::EmitCFISections(bool EH, bool Debug) {
836 MCStreamer::EmitCFISections(EH, Debug);
837
838 if (!UseCFI)
839 return;
840
841 OS << "\t.cfi_sections ";
842 if (EH) {
843 OS << ".eh_frame";
844 if (Debug)
845 OS << ", .debug_frame";
846 } else if (Debug) {
847 OS << ".debug_frame";
848 }
849
850 EmitEOL();
851}
852
Rafael Espindola547be262012-01-07 22:42:19 +0000853void MCAsmStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) {
854 if (!UseCFI) {
855 RecordProcStart(Frame);
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000856 return;
Rafael Espindola547be262012-01-07 22:42:19 +0000857 }
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000858
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000859 OS << "\t.cfi_startproc";
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000860 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000861}
862
Rafael Espindola1fe97372012-01-09 00:17:29 +0000863void MCAsmStreamer::EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) {
864 if (!UseCFI) {
865 RecordProcEnd(Frame);
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000866 return;
Rafael Espindola1fe97372012-01-09 00:17:29 +0000867 }
868
869 // Put a dummy non-null value in Frame.End to mark that this frame has been
870 // closed.
871 Frame.End = (MCSymbol *) 1;
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000872
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000873 OS << "\t.cfi_endproc";
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000874 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000875}
876
Rafael Espindola6e032942011-05-30 20:20:15 +0000877void MCAsmStreamer::EmitRegisterName(int64_t Register) {
Akira Hatanaka3014b2f2011-07-07 20:30:33 +0000878 if (InstPrinter && !MAI.useDwarfRegNumForCFI()) {
Evan Cheng0e6a0522011-07-18 20:57:22 +0000879 const MCRegisterInfo &MRI = getContext().getRegisterInfo();
880 unsigned LLVMRegister = MRI.getLLVMRegNum(Register, true);
Rafael Espindolacde4ce42011-06-02 02:34:55 +0000881 InstPrinter->printRegName(OS, LLVMRegister);
Rafael Espindola6e032942011-05-30 20:20:15 +0000882 } else {
883 OS << Register;
884 }
885}
886
Rafael Espindola066c2f42011-04-12 23:59:07 +0000887void MCAsmStreamer::EmitCFIDefCfa(int64_t Register, int64_t Offset) {
Rafael Espindola7f46b082011-04-29 21:41:06 +0000888 MCStreamer::EmitCFIDefCfa(Register, Offset);
889
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000890 if (!UseCFI)
891 return;
892
Rafael Espindola6e032942011-05-30 20:20:15 +0000893 OS << "\t.cfi_def_cfa ";
894 EmitRegisterName(Register);
895 OS << ", " << Offset;
Rafael Espindola7f46b082011-04-29 21:41:06 +0000896 EmitEOL();
Rafael Espindola066c2f42011-04-12 23:59:07 +0000897}
898
899void MCAsmStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
900 MCStreamer::EmitCFIDefCfaOffset(Offset);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000901
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000902 if (!UseCFI)
903 return;
904
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000905 OS << "\t.cfi_def_cfa_offset " << Offset;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000906 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000907}
908
Rafael Espindola066c2f42011-04-12 23:59:07 +0000909void MCAsmStreamer::EmitCFIDefCfaRegister(int64_t Register) {
910 MCStreamer::EmitCFIDefCfaRegister(Register);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000911
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000912 if (!UseCFI)
913 return;
914
Rafael Espindola6e032942011-05-30 20:20:15 +0000915 OS << "\t.cfi_def_cfa_register ";
916 EmitRegisterName(Register);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000917 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000918}
919
Rafael Espindola066c2f42011-04-12 23:59:07 +0000920void MCAsmStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
921 this->MCStreamer::EmitCFIOffset(Register, Offset);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000922
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000923 if (!UseCFI)
924 return;
925
Rafael Espindola6e032942011-05-30 20:20:15 +0000926 OS << "\t.cfi_offset ";
927 EmitRegisterName(Register);
928 OS << ", " << Offset;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000929 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000930}
931
Rafael Espindola066c2f42011-04-12 23:59:07 +0000932void MCAsmStreamer::EmitCFIPersonality(const MCSymbol *Sym,
Rafael Espindola3a83c402010-12-27 00:36:05 +0000933 unsigned Encoding) {
Rafael Espindola066c2f42011-04-12 23:59:07 +0000934 MCStreamer::EmitCFIPersonality(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000935
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000936 if (!UseCFI)
937 return;
938
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000939 OS << "\t.cfi_personality " << Encoding << ", " << *Sym;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000940 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000941}
942
Rafael Espindola066c2f42011-04-12 23:59:07 +0000943void MCAsmStreamer::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) {
944 MCStreamer::EmitCFILsda(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000945
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000946 if (!UseCFI)
947 return;
948
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000949 OS << "\t.cfi_lsda " << Encoding << ", " << *Sym;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000950 EmitEOL();
Rafael Espindola066c2f42011-04-12 23:59:07 +0000951}
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000952
Rafael Espindola066c2f42011-04-12 23:59:07 +0000953void MCAsmStreamer::EmitCFIRememberState() {
954 MCStreamer::EmitCFIRememberState();
955
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000956 if (!UseCFI)
957 return;
958
Rafael Espindola066c2f42011-04-12 23:59:07 +0000959 OS << "\t.cfi_remember_state";
960 EmitEOL();
961}
962
963void MCAsmStreamer::EmitCFIRestoreState() {
964 MCStreamer::EmitCFIRestoreState();
965
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000966 if (!UseCFI)
967 return;
968
Rafael Espindola066c2f42011-04-12 23:59:07 +0000969 OS << "\t.cfi_restore_state";
970 EmitEOL();
971}
972
973void MCAsmStreamer::EmitCFISameValue(int64_t Register) {
974 MCStreamer::EmitCFISameValue(Register);
975
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000976 if (!UseCFI)
977 return;
978
Rafael Espindola6e032942011-05-30 20:20:15 +0000979 OS << "\t.cfi_same_value ";
980 EmitRegisterName(Register);
Rafael Espindola066c2f42011-04-12 23:59:07 +0000981 EmitEOL();
982}
983
984void MCAsmStreamer::EmitCFIRelOffset(int64_t Register, int64_t Offset) {
985 MCStreamer::EmitCFIRelOffset(Register, Offset);
986
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000987 if (!UseCFI)
988 return;
989
Rafael Espindola6e032942011-05-30 20:20:15 +0000990 OS << "\t.cfi_rel_offset ";
991 EmitRegisterName(Register);
992 OS << ", " << Offset;
Rafael Espindola066c2f42011-04-12 23:59:07 +0000993 EmitEOL();
994}
995
996void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) {
997 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
998
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000999 if (!UseCFI)
1000 return;
1001
Rafael Espindola066c2f42011-04-12 23:59:07 +00001002 OS << "\t.cfi_adjust_cfa_offset " << Adjustment;
1003 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +00001004}
1005
Rafael Espindola16d7d432012-01-23 21:51:52 +00001006void MCAsmStreamer::EmitCFISignalFrame() {
1007 MCStreamer::EmitCFISignalFrame();
1008
1009 if (!UseCFI)
1010 return;
1011
1012 OS << "\t.cif_signal_frame";
1013 EmitEOL();
1014}
1015
Charles Davisfbc539f2011-05-22 21:12:15 +00001016void MCAsmStreamer::EmitWin64EHStartProc(const MCSymbol *Symbol) {
Charles Daviscde87e22011-05-20 18:19:22 +00001017 MCStreamer::EmitWin64EHStartProc(Symbol);
1018
Charles Davis440596f2011-05-19 17:46:39 +00001019 OS << ".seh_proc " << *Symbol;
Charles Davis0e30f022011-05-18 04:58:05 +00001020 EmitEOL();
1021}
1022
Charles Davis8b3e5e52011-05-18 22:13:51 +00001023void MCAsmStreamer::EmitWin64EHEndProc() {
Charles Daviscde87e22011-05-20 18:19:22 +00001024 MCStreamer::EmitWin64EHEndProc();
1025
Charles Davis440596f2011-05-19 17:46:39 +00001026 OS << "\t.seh_endproc";
Charles Davis0e30f022011-05-18 04:58:05 +00001027 EmitEOL();
1028}
1029
Charles Davis8b3e5e52011-05-18 22:13:51 +00001030void MCAsmStreamer::EmitWin64EHStartChained() {
Charles Daviscde87e22011-05-20 18:19:22 +00001031 MCStreamer::EmitWin64EHStartChained();
1032
Charles Davis440596f2011-05-19 17:46:39 +00001033 OS << "\t.seh_startchained";
Charles Davisf0709012011-05-18 20:54:10 +00001034 EmitEOL();
1035}
1036
Charles Davis8b3e5e52011-05-18 22:13:51 +00001037void MCAsmStreamer::EmitWin64EHEndChained() {
Charles Daviscde87e22011-05-20 18:19:22 +00001038 MCStreamer::EmitWin64EHEndChained();
1039
Charles Davis440596f2011-05-19 17:46:39 +00001040 OS << "\t.seh_endchained";
Charles Davisf0709012011-05-18 20:54:10 +00001041 EmitEOL();
1042}
1043
Charles Davis440596f2011-05-19 17:46:39 +00001044void MCAsmStreamer::EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
1045 bool Except) {
Charles Daviscde87e22011-05-20 18:19:22 +00001046 MCStreamer::EmitWin64EHHandler(Sym, Unwind, Except);
1047
Charles Davis440596f2011-05-19 17:46:39 +00001048 OS << "\t.seh_handler " << *Sym;
1049 if (Unwind)
1050 OS << ", @unwind";
1051 if (Except)
1052 OS << ", @except";
Charles Davisf0709012011-05-18 20:54:10 +00001053 EmitEOL();
1054}
1055
Evan Chenge76a33b2011-07-20 05:58:47 +00001056static const MCSection *getWin64EHTableSection(StringRef suffix,
1057 MCContext &context) {
1058 // FIXME: This doesn't belong in MCObjectFileInfo. However,
1059 /// this duplicate code in MCWin64EH.cpp.
1060 if (suffix == "")
1061 return context.getObjectFileInfo()->getXDataSection();
1062 return context.getCOFFSection((".xdata"+suffix).str(),
1063 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
1064 COFF::IMAGE_SCN_MEM_READ |
1065 COFF::IMAGE_SCN_MEM_WRITE,
1066 SectionKind::getDataRel());
1067}
1068
Charles Davis440596f2011-05-19 17:46:39 +00001069void MCAsmStreamer::EmitWin64EHHandlerData() {
Charles Daviscde87e22011-05-20 18:19:22 +00001070 MCStreamer::EmitWin64EHHandlerData();
1071
Charles Davis410ef2b2011-05-25 21:43:45 +00001072 // Switch sections. Don't call SwitchSection directly, because that will
1073 // cause the section switch to be visible in the emitted assembly.
1074 // We only do this so the section switch that terminates the handler
1075 // data block is visible.
Charles Davis7b06b732011-05-27 19:09:24 +00001076 MCWin64EHUnwindInfo *CurFrame = getCurrentW64UnwindInfo();
1077 StringRef suffix=MCWin64EHUnwindEmitter::GetSectionSuffix(CurFrame->Function);
Evan Chenge76a33b2011-07-20 05:58:47 +00001078 const MCSection *xdataSect = getWin64EHTableSection(suffix, getContext());
Charles Davis410ef2b2011-05-25 21:43:45 +00001079 if (xdataSect)
1080 SwitchSectionNoChange(xdataSect);
1081
Charles Davis440596f2011-05-19 17:46:39 +00001082 OS << "\t.seh_handlerdata";
Charles Davisf0709012011-05-18 20:54:10 +00001083 EmitEOL();
1084}
1085
Charles Davisc3b16282011-05-19 19:35:55 +00001086void MCAsmStreamer::EmitWin64EHPushReg(unsigned Register) {
Charles Daviscde87e22011-05-20 18:19:22 +00001087 MCStreamer::EmitWin64EHPushReg(Register);
1088
Charles Davis440596f2011-05-19 17:46:39 +00001089 OS << "\t.seh_pushreg " << Register;
Charles Davis0e30f022011-05-18 04:58:05 +00001090 EmitEOL();
1091}
1092
Charles Davisc3b16282011-05-19 19:35:55 +00001093void MCAsmStreamer::EmitWin64EHSetFrame(unsigned Register, unsigned Offset) {
Charles Daviscde87e22011-05-20 18:19:22 +00001094 MCStreamer::EmitWin64EHSetFrame(Register, Offset);
1095
Charles Davis440596f2011-05-19 17:46:39 +00001096 OS << "\t.seh_setframe " << Register << ", " << Offset;
Charles Davis0e30f022011-05-18 04:58:05 +00001097 EmitEOL();
1098}
1099
Charles Davisc3b16282011-05-19 19:35:55 +00001100void MCAsmStreamer::EmitWin64EHAllocStack(unsigned Size) {
Charles Daviscde87e22011-05-20 18:19:22 +00001101 MCStreamer::EmitWin64EHAllocStack(Size);
1102
Charles Davis440596f2011-05-19 17:46:39 +00001103 OS << "\t.seh_stackalloc " << Size;
Charles Davis0e30f022011-05-18 04:58:05 +00001104 EmitEOL();
1105}
1106
Charles Davisc3b16282011-05-19 19:35:55 +00001107void MCAsmStreamer::EmitWin64EHSaveReg(unsigned Register, unsigned Offset) {
Charles Daviscde87e22011-05-20 18:19:22 +00001108 MCStreamer::EmitWin64EHSaveReg(Register, Offset);
1109
Charles Davis440596f2011-05-19 17:46:39 +00001110 OS << "\t.seh_savereg " << Register << ", " << Offset;
1111 EmitEOL();
1112}
1113
Charles Davisc3b16282011-05-19 19:35:55 +00001114void MCAsmStreamer::EmitWin64EHSaveXMM(unsigned Register, unsigned Offset) {
Charles Daviscde87e22011-05-20 18:19:22 +00001115 MCStreamer::EmitWin64EHSaveXMM(Register, Offset);
1116
Charles Davis440596f2011-05-19 17:46:39 +00001117 OS << "\t.seh_savexmm " << Register << ", " << Offset;
Charles Davis0e30f022011-05-18 04:58:05 +00001118 EmitEOL();
1119}
1120
Charles Davis8b3e5e52011-05-18 22:13:51 +00001121void MCAsmStreamer::EmitWin64EHPushFrame(bool Code) {
Charles Daviscde87e22011-05-20 18:19:22 +00001122 MCStreamer::EmitWin64EHPushFrame(Code);
1123
Charles Davis440596f2011-05-19 17:46:39 +00001124 OS << "\t.seh_pushframe";
Charles Davis0e30f022011-05-18 04:58:05 +00001125 if (Code)
Charles Davis440596f2011-05-19 17:46:39 +00001126 OS << " @code";
Charles Davis0e30f022011-05-18 04:58:05 +00001127 EmitEOL();
1128}
1129
Charles Davis8b3e5e52011-05-18 22:13:51 +00001130void MCAsmStreamer::EmitWin64EHEndProlog(void) {
Charles Daviscde87e22011-05-20 18:19:22 +00001131 MCStreamer::EmitWin64EHEndProlog();
1132
Charles Davis440596f2011-05-19 17:46:39 +00001133 OS << "\t.seh_endprologue";
Charles Davis0e30f022011-05-18 04:58:05 +00001134 EmitEOL();
1135}
1136
Daniel Dunbar6b716532010-02-09 23:00:14 +00001137void MCAsmStreamer::AddEncodingComment(const MCInst &Inst) {
1138 raw_ostream &OS = GetCommentOS();
1139 SmallString<256> Code;
1140 SmallVector<MCFixup, 4> Fixups;
1141 raw_svector_ostream VecOS(Code);
1142 Emitter->EncodeInstruction(Inst, VecOS, Fixups);
1143 VecOS.flush();
Chris Lattnera6594fc2010-01-25 18:58:59 +00001144
Daniel Dunbar6b716532010-02-09 23:00:14 +00001145 // If we are showing fixups, create symbolic markers in the encoded
1146 // representation. We do this by making a per-bit map to the fixup item index,
1147 // then trying to display it as nicely as possible.
Daniel Dunbar5532cf42010-02-10 01:41:14 +00001148 SmallVector<uint8_t, 64> FixupMap;
1149 FixupMap.resize(Code.size() * 8);
Daniel Dunbar6b716532010-02-09 23:00:14 +00001150 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
1151 FixupMap[i] = 0;
1152
1153 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1154 MCFixup &F = Fixups[i];
Daniel Dunbar2761fc42010-12-16 03:20:06 +00001155 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar6b716532010-02-09 23:00:14 +00001156 for (unsigned j = 0; j != Info.TargetSize; ++j) {
1157 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j;
1158 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
1159 FixupMap[Index] = 1 + i;
1160 }
1161 }
1162
Evan Cheng5c2eef62011-07-08 22:49:42 +00001163 // FIXME: Note the fixup comments for Thumb2 are completely bogus since the
Evan Cheng8fbbd1c2011-01-13 23:27:39 +00001164 // high order halfword of a 32-bit Thumb2 instruction is emitted first.
Daniel Dunbar6b716532010-02-09 23:00:14 +00001165 OS << "encoding: [";
1166 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
1167 if (i)
1168 OS << ',';
1169
1170 // See if all bits are the same map entry.
1171 uint8_t MapEntry = FixupMap[i * 8 + 0];
1172 for (unsigned j = 1; j != 8; ++j) {
1173 if (FixupMap[i * 8 + j] == MapEntry)
1174 continue;
1175
1176 MapEntry = uint8_t(~0U);
1177 break;
1178 }
1179
1180 if (MapEntry != uint8_t(~0U)) {
1181 if (MapEntry == 0) {
1182 OS << format("0x%02x", uint8_t(Code[i]));
1183 } else {
Evan Cheng82caf1a2011-01-13 21:45:26 +00001184 if (Code[i]) {
Evan Cheng8fbbd1c2011-01-13 23:27:39 +00001185 // FIXME: Some of the 8 bits require fix up.
Evan Cheng82caf1a2011-01-13 21:45:26 +00001186 OS << format("0x%02x", uint8_t(Code[i])) << '\''
1187 << char('A' + MapEntry - 1) << '\'';
1188 } else
1189 OS << char('A' + MapEntry - 1);
Daniel Dunbar6b716532010-02-09 23:00:14 +00001190 }
1191 } else {
1192 // Otherwise, write out in binary.
1193 OS << "0b";
Jay Foad95c3e482011-06-23 09:09:15 +00001194 for (unsigned j = 8; j--;) {
Daniel Dunbar6b716532010-02-09 23:00:14 +00001195 unsigned Bit = (Code[i] >> j) & 1;
NAKAMURA Takumid6451512011-03-27 01:44:40 +00001196
Chris Lattner3170a3b2010-11-15 05:56:19 +00001197 unsigned FixupBit;
Evan Cheng1be0e272011-07-15 02:09:41 +00001198 if (getContext().getAsmInfo().isLittleEndian())
Chris Lattner3170a3b2010-11-15 05:56:19 +00001199 FixupBit = i * 8 + j;
1200 else
1201 FixupBit = i * 8 + (7-j);
NAKAMURA Takumid6451512011-03-27 01:44:40 +00001202
Jay Foad95c3e482011-06-23 09:09:15 +00001203 if (uint8_t MapEntry = FixupMap[FixupBit]) {
1204 assert(Bit == 0 && "Encoder wrote into fixed up bit!");
1205 OS << char('A' + MapEntry - 1);
Daniel Dunbar6b716532010-02-09 23:00:14 +00001206 } else
1207 OS << Bit;
1208 }
1209 }
1210 }
1211 OS << "]\n";
1212
1213 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1214 MCFixup &F = Fixups[i];
Daniel Dunbar2761fc42010-12-16 03:20:06 +00001215 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar6b716532010-02-09 23:00:14 +00001216 OS << " fixup " << char('A' + i) << " - " << "offset: " << F.getOffset()
Daniel Dunbar5d5a1e12010-02-10 04:47:08 +00001217 << ", value: " << *F.getValue() << ", kind: " << Info.Name << "\n";
Daniel Dunbar6b716532010-02-09 23:00:14 +00001218 }
1219}
1220
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +00001221void MCAsmStreamer::EmitFnStart() {
1222 OS << "\t.fnstart";
1223 EmitEOL();
1224}
1225
1226void MCAsmStreamer::EmitFnEnd() {
1227 OS << "\t.fnend";
1228 EmitEOL();
1229}
1230
1231void MCAsmStreamer::EmitCantUnwind() {
1232 OS << "\t.cantunwind";
1233 EmitEOL();
1234}
1235
1236void MCAsmStreamer::EmitHandlerData() {
1237 OS << "\t.handlerdata";
1238 EmitEOL();
1239}
1240
1241void MCAsmStreamer::EmitPersonality(const MCSymbol *Personality) {
1242 OS << "\t.personality " << Personality->getName();
1243 EmitEOL();
1244}
1245
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001246void MCAsmStreamer::EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset) {
Rafael Espindolacde4ce42011-06-02 02:34:55 +00001247 OS << "\t.setfp\t";
1248 InstPrinter->printRegName(OS, FpReg);
1249 OS << ", ";
1250 InstPrinter->printRegName(OS, SpReg);
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001251 if (Offset)
1252 OS << ", #" << Offset;
1253 EmitEOL();
1254}
1255
1256void MCAsmStreamer::EmitPad(int64_t Offset) {
1257 OS << "\t.pad\t#" << Offset;
1258 EmitEOL();
1259}
1260
1261void MCAsmStreamer::EmitRegSave(const SmallVectorImpl<unsigned> &RegList,
1262 bool isVector) {
1263 assert(RegList.size() && "RegList should not be empty");
1264 if (isVector)
1265 OS << "\t.vsave\t{";
1266 else
1267 OS << "\t.save\t{";
1268
Rafael Espindolacde4ce42011-06-02 02:34:55 +00001269 InstPrinter->printRegName(OS, RegList[0]);
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001270
Rafael Espindolacde4ce42011-06-02 02:34:55 +00001271 for (unsigned i = 1, e = RegList.size(); i != e; ++i) {
1272 OS << ", ";
1273 InstPrinter->printRegName(OS, RegList[i]);
1274 }
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001275
1276 OS << "}";
1277 EmitEOL();
1278}
1279
Daniel Dunbar6b716532010-02-09 23:00:14 +00001280void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +00001281 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Daniel Dunbar6b716532010-02-09 23:00:14 +00001282
1283 // Show the encoding in a comment if we have a code emitter.
1284 if (Emitter)
1285 AddEncodingComment(Inst);
1286
Chris Lattner30d9a642010-02-09 00:54:51 +00001287 // Show the MCInst if enabled.
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +00001288 if (ShowInst) {
Daniel Dunbar67c076c2010-03-22 21:49:34 +00001289 Inst.dump_pretty(GetCommentOS(), &MAI, InstPrinter.get(), "\n ");
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +00001290 GetCommentOS() << "\n";
1291 }
1292
Daniel Dunbar67c076c2010-03-22 21:49:34 +00001293 // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001294 if (InstPrinter)
Owen Anderson98c5dda2011-09-15 23:38:46 +00001295 InstPrinter->printInst(&Inst, OS, "");
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001296 else
1297 Inst.print(OS, &MAI);
Chris Lattner7d1e49c2010-01-22 07:36:39 +00001298 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +00001299}
1300
Jim Grosbachbd4ec842010-09-22 18:18:30 +00001301/// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +00001302/// the specified string in the output .s file. This capability is
1303/// indicated by the hasRawTextSupport() predicate.
1304void MCAsmStreamer::EmitRawText(StringRef String) {
Chris Lattnerd5928dc2010-04-03 22:06:56 +00001305 if (!String.empty() && String.back() == '\n')
1306 String = String.substr(0, String.size()-1);
Chris Lattner91bead72010-04-03 21:35:55 +00001307 OS << String;
Chris Lattnerd5928dc2010-04-03 22:06:56 +00001308 EmitEOL();
Chris Lattner91bead72010-04-03 21:35:55 +00001309}
1310
Rafael Espindola99b42372012-01-07 03:13:18 +00001311void MCAsmStreamer::FinishImpl() {
Rafael Espindola195a0ce2010-11-19 02:26:16 +00001312 // Dump out the dwarf file & directory tables and line tables.
Rafael Espindola89b93722010-12-10 07:39:47 +00001313 if (getContext().hasDwarfFiles() && !UseLoc)
1314 MCDwarfFileTable::Emit(this);
Rafael Espindola5426a9e2011-05-01 04:49:54 +00001315
Kevin Enderby94c2e852011-12-09 18:09:40 +00001316 // If we are generating dwarf for assembly source files dump out the sections.
1317 if (getContext().getGenDwarfForAssembly())
1318 MCGenDwarfInfo::Emit(this);
1319
Rafael Espindolac25dad82011-05-10 03:14:15 +00001320 if (!UseCFI)
1321 EmitFrames(false);
Daniel Dunbara11af532009-06-24 01:03:06 +00001322}
Chris Lattner86e22112010-01-22 07:29:22 +00001323MCStreamer *llvm::createAsmStreamer(MCContext &Context,
1324 formatted_raw_ostream &OS,
Rafael Espindola89b93722010-12-10 07:39:47 +00001325 bool isVerboseAsm, bool useLoc,
Nick Lewycky44d798d2011-10-17 23:05:28 +00001326 bool useCFI, bool useDwarfDirectory,
1327 MCInstPrinter *IP, MCCodeEmitter *CE,
1328 MCAsmBackend *MAB, bool ShowInst) {
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001329 return new MCAsmStreamer(Context, OS, isVerboseAsm, useLoc, useCFI,
Nick Lewycky44d798d2011-10-17 23:05:28 +00001330 useDwarfDirectory, IP, CE, MAB, ShowInst);
Daniel Dunbara11af532009-06-24 01:03:06 +00001331}