blob: 637913a9355738d0fe3cd6a894685370245a07b8 [file] [log] [blame]
Daniel Dunbara11af532009-06-24 01:03:06 +00001//===- lib/MC/MCAsmStreamer.cpp - Text Assembly Output --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/MC/MCStreamer.h"
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +000011#include "llvm/MC/MCAsmInfo.h"
Daniel Dunbar4a0abd82009-08-27 00:51:57 +000012#include "llvm/MC/MCCodeEmitter.h"
Daniel Dunbara11af532009-06-24 01:03:06 +000013#include "llvm/MC/MCContext.h"
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +000014#include "llvm/MC/MCExpr.h"
Daniel Dunbar2761fc42010-12-16 03:20:06 +000015#include "llvm/MC/MCFixupKindInfo.h"
Daniel Dunbarabde2982009-07-01 06:35:03 +000016#include "llvm/MC/MCInst.h"
Chris Lattner90edac02009-09-14 03:02:37 +000017#include "llvm/MC/MCInstPrinter.h"
Chris Lattnerf9bdedd2009-08-10 18:15:01 +000018#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbara11af532009-06-24 01:03:06 +000019#include "llvm/MC/MCSymbol.h"
Chris Lattner4c42a6d2010-03-19 05:48:53 +000020#include "llvm/ADT/OwningPtr.h"
Chris Lattner86e22112010-01-22 07:29:22 +000021#include "llvm/ADT/SmallString.h"
22#include "llvm/ADT/Twine.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000023#include "llvm/Support/ErrorHandling.h"
Chris Lattner663c2d22009-08-19 06:12:02 +000024#include "llvm/Support/MathExtras.h"
Daniel Dunbar4a0abd82009-08-27 00:51:57 +000025#include "llvm/Support/Format.h"
Chris Lattner86e22112010-01-22 07:29:22 +000026#include "llvm/Support/FormattedStream.h"
Daniel Dunbar745dacc2010-12-16 03:05:59 +000027#include "llvm/Target/TargetAsmBackend.h"
Rafael Espindola89b93722010-12-10 07:39:47 +000028#include "llvm/Target/TargetAsmInfo.h"
Daniel Dunbar745dacc2010-12-16 03:05:59 +000029#include "llvm/Target/TargetLoweringObjectFile.h"
Nick Lewycky476b2422010-12-19 20:43:38 +000030#include <cctype>
Daniel Dunbara11af532009-06-24 01:03:06 +000031using namespace llvm;
32
33namespace {
34
Chris Lattner46a947d2009-08-17 04:17:34 +000035class MCAsmStreamer : public MCStreamer {
Chris Lattner86e22112010-01-22 07:29:22 +000036 formatted_raw_ostream &OS;
Chris Lattner33adcfb2009-08-22 21:43:10 +000037 const MCAsmInfo &MAI;
Chris Lattner4c42a6d2010-03-19 05:48:53 +000038 OwningPtr<MCInstPrinter> InstPrinter;
Benjamin Kramer1abcd062010-07-29 17:48:06 +000039 OwningPtr<MCCodeEmitter> Emitter;
Daniel Dunbar745dacc2010-12-16 03:05:59 +000040 OwningPtr<TargetAsmBackend> AsmBackend;
Jim Grosbach00545e12010-09-22 18:16:55 +000041
Chris Lattner86e22112010-01-22 07:29:22 +000042 SmallString<128> CommentToEmit;
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000043 raw_svector_ostream CommentStream;
Daniel Dunbar9dee8e32010-02-03 18:18:30 +000044
Daniel Dunbar9dee8e32010-02-03 18:18:30 +000045 unsigned IsVerboseAsm : 1;
46 unsigned ShowInst : 1;
Rafael Espindola89b93722010-12-10 07:39:47 +000047 unsigned UseLoc : 1;
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +000048 unsigned UseCFI : 1;
Daniel Dunbar9dee8e32010-02-03 18:18:30 +000049
Rafael Espindola277abc82011-04-30 16:34:57 +000050 enum EHSymbolFlags { EHGlobal = 1,
51 EHWeakDefinition = 1 << 1,
52 EHPrivateExtern = 1 << 2 };
53 DenseMap<const MCSymbol*, unsigned> FlagMap;
54
Rafael Espindola5d4918d2010-12-04 03:21:47 +000055 bool needsSet(const MCExpr *Value);
56
Chris Lattner46a947d2009-08-17 04:17:34 +000057public:
Chris Lattner86e22112010-01-22 07:29:22 +000058 MCAsmStreamer(MCContext &Context, formatted_raw_ostream &os,
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +000059 bool isVerboseAsm, bool useLoc, bool useCFI,
Daniel Dunbar745dacc2010-12-16 03:05:59 +000060 MCInstPrinter *printer, MCCodeEmitter *emitter,
61 TargetAsmBackend *asmbackend,
62 bool showInst)
Chris Lattnerfdab14b2010-03-12 18:28:53 +000063 : MCStreamer(Context), OS(os), MAI(Context.getAsmInfo()),
Daniel Dunbar745dacc2010-12-16 03:05:59 +000064 InstPrinter(printer), Emitter(emitter), AsmBackend(asmbackend),
65 CommentStream(CommentToEmit), IsVerboseAsm(isVerboseAsm),
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +000066 ShowInst(showInst), UseLoc(useLoc), UseCFI(useCFI) {
Chris Lattner5d672cf2010-02-10 00:10:18 +000067 if (InstPrinter && IsVerboseAsm)
68 InstPrinter->setCommentStream(CommentStream);
69 }
Chris Lattner46a947d2009-08-17 04:17:34 +000070 ~MCAsmStreamer() {}
Daniel Dunbara11af532009-06-24 01:03:06 +000071
Chris Lattner86e22112010-01-22 07:29:22 +000072 inline void EmitEOL() {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000073 // If we don't have any comments, just emit a \n.
74 if (!IsVerboseAsm) {
Chris Lattner86e22112010-01-22 07:29:22 +000075 OS << '\n';
76 return;
77 }
78 EmitCommentsAndEOL();
79 }
80 void EmitCommentsAndEOL();
Chris Lattner56591ab2010-02-02 23:37:42 +000081
82 /// isVerboseAsm - Return true if this streamer supports verbose assembly at
83 /// all.
84 virtual bool isVerboseAsm() const { return IsVerboseAsm; }
Jim Grosbach00545e12010-09-22 18:16:55 +000085
Chris Lattner91bead72010-04-03 21:35:55 +000086 /// hasRawTextSupport - We support EmitRawText.
87 virtual bool hasRawTextSupport() const { return true; }
Daniel Dunbar6b716532010-02-09 23:00:14 +000088
Chris Lattnerd32c7cf2010-01-22 18:21:35 +000089 /// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner86e22112010-01-22 07:29:22 +000090 /// file if applicable as a QoI issue to make the output of the compiler
91 /// more readable. This only affects the MCAsmStreamer, and only when
92 /// verbose assembly output is enabled.
Chris Lattnerd32c7cf2010-01-22 18:21:35 +000093 virtual void AddComment(const Twine &T);
Daniel Dunbar6b716532010-02-09 23:00:14 +000094
95 /// AddEncodingComment - Add a comment showing the encoding of an instruction.
96 virtual void AddEncodingComment(const MCInst &Inst);
97
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000098 /// GetCommentOS - Return a raw_ostream that comments can be written to.
99 /// Unlike AddComment, you are required to terminate comments with \n if you
100 /// use this method.
101 virtual raw_ostream &GetCommentOS() {
102 if (!IsVerboseAsm)
103 return nulls(); // Discard comments unless in verbose asm mode.
104 return CommentStream;
105 }
Daniel Dunbar6b716532010-02-09 23:00:14 +0000106
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000107 /// AddBlankLine - Emit a blank line to a .s file to pretty it up.
108 virtual void AddBlankLine() {
109 EmitEOL();
110 }
Daniel Dunbar6b716532010-02-09 23:00:14 +0000111
Chris Lattner46a947d2009-08-17 04:17:34 +0000112 /// @name MCStreamer Interface
113 /// @{
Daniel Dunbara11af532009-06-24 01:03:06 +0000114
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000115 virtual void ChangeSection(const MCSection *Section);
Daniel Dunbara11af532009-06-24 01:03:06 +0000116
Rafael Espindolad80781b2010-09-15 21:48:40 +0000117 virtual void InitSections() {
118 // FIXME, this is MachO specific, but the testsuite
119 // expects this.
120 SwitchSection(getContext().getMachOSection("__TEXT", "__text",
121 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
122 0, SectionKind::getText()));
123 }
124
Chris Lattner46a947d2009-08-17 04:17:34 +0000125 virtual void EmitLabel(MCSymbol *Symbol);
Rafael Espindola277abc82011-04-30 16:34:57 +0000126 virtual void EmitEHSymAttributes(const MCSymbol *Symbol,
127 MCSymbol *EHSymbol);
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000128 virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
Jim Grosbachce792992010-11-05 22:08:08 +0000129 virtual void EmitThumbFunc(MCSymbol *Func);
Daniel Dunbara11af532009-06-24 01:03:06 +0000130
Daniel Dunbar821e3332009-08-31 08:09:28 +0000131 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
Rafael Espindola484291c2010-11-01 14:28:48 +0000132 virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
Rafael Espindola32a006e2010-12-03 00:55:40 +0000133 virtual void EmitDwarfAdvanceLineAddr(int64_t LineDelta,
134 const MCSymbol *LastLabel,
135 const MCSymbol *Label);
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000136 virtual void EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
137 const MCSymbol *Label);
Daniel Dunbara11af532009-06-24 01:03:06 +0000138
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000139 virtual void EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
Kevin Enderbya5c78322009-07-13 21:03:15 +0000140
Chris Lattner46a947d2009-08-17 04:17:34 +0000141 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
Chris Lattnerb54b9dd2010-05-08 19:54:22 +0000142 virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol);
143 virtual void EmitCOFFSymbolStorageClass(int StorageClass);
144 virtual void EmitCOFFSymbolType(int Type);
145 virtual void EndCOFFSymbolDef();
Chris Lattner99328ad2010-01-25 07:52:13 +0000146 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
Chris Lattner9eb158d2010-01-23 07:47:02 +0000147 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000148 unsigned ByteAlignment);
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000149
Chris Lattner9eb158d2010-01-23 07:47:02 +0000150 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
151 ///
152 /// @param Symbol - The common symbol to emit.
153 /// @param Size - The size of the common symbol.
154 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size);
Jim Grosbach00545e12010-09-22 18:16:55 +0000155
Daniel Dunbar8751b942009-08-28 05:48:22 +0000156 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000157 unsigned Size = 0, unsigned ByteAlignment = 0);
Kevin Enderby71148242009-07-14 21:35:03 +0000158
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000159 virtual void EmitTBSSSymbol (const MCSection *Section, MCSymbol *Symbol,
160 uint64_t Size, unsigned ByteAlignment = 0);
Jim Grosbach00545e12010-09-22 18:16:55 +0000161
Chris Lattneraaec2052010-01-19 19:46:13 +0000162 virtual void EmitBytes(StringRef Data, unsigned AddrSpace);
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000163
Rafael Espindola89b93722010-12-10 07:39:47 +0000164 virtual void EmitValueImpl(const MCExpr *Value, unsigned Size,
Rafael Espindoladebd7e42011-05-01 03:50:49 +0000165 unsigned AddrSpace);
Rafael Espindola2df042c2010-12-03 02:54:21 +0000166 virtual void EmitIntValue(uint64_t Value, unsigned Size,
167 unsigned AddrSpace = 0);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000168
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000169 virtual void EmitULEB128Value(const MCExpr *Value);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000170
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000171 virtual void EmitSLEB128Value(const MCExpr *Value);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000172
Chris Lattner718fb592010-01-25 21:28:50 +0000173 virtual void EmitGPRel32Value(const MCExpr *Value);
Jim Grosbach00545e12010-09-22 18:16:55 +0000174
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000175
Chris Lattneraaec2052010-01-19 19:46:13 +0000176 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue,
177 unsigned AddrSpace);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000178
Chris Lattner46a947d2009-08-17 04:17:34 +0000179 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
180 unsigned ValueSize = 1,
181 unsigned MaxBytesToEmit = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000182
Kevin Enderby6e720482010-02-23 18:26:34 +0000183 virtual void EmitCodeAlignment(unsigned ByteAlignment,
184 unsigned MaxBytesToEmit = 0);
185
Daniel Dunbar821e3332009-08-31 08:09:28 +0000186 virtual void EmitValueToOffset(const MCExpr *Offset,
Chris Lattner46a947d2009-08-17 04:17:34 +0000187 unsigned char Value = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000188
Chris Lattnera6594fc2010-01-25 18:58:59 +0000189 virtual void EmitFileDirective(StringRef Filename);
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000190 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Filename);
191 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
192 unsigned Column, unsigned Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +0000193 unsigned Isa, unsigned Discriminator,
194 StringRef FileName);
Chris Lattnera6594fc2010-01-25 18:58:59 +0000195
Rafael Espindola713c4bf2011-05-10 13:39:48 +0000196 virtual void EmitCFISections(bool EH, bool Debug);
Rafael Espindola066c2f42011-04-12 23:59:07 +0000197 virtual void EmitCFIStartProc();
198 virtual void EmitCFIEndProc();
199 virtual void EmitCFIDefCfa(int64_t Register, int64_t Offset);
200 virtual void EmitCFIDefCfaOffset(int64_t Offset);
201 virtual void EmitCFIDefCfaRegister(int64_t Register);
202 virtual void EmitCFIOffset(int64_t Register, int64_t Offset);
203 virtual void EmitCFIPersonality(const MCSymbol *Sym, unsigned Encoding);
204 virtual void EmitCFILsda(const MCSymbol *Sym, unsigned Encoding);
205 virtual void EmitCFIRememberState();
206 virtual void EmitCFIRestoreState();
207 virtual void EmitCFISameValue(int64_t Register);
208 virtual void EmitCFIRelOffset(int64_t Register, int64_t Offset);
209 virtual void EmitCFIAdjustCfaOffset(int64_t Adjustment);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000210
Charles Davis0e30f022011-05-18 04:58:05 +0000211 virtual void EmitWin64EHStartProc(MCSymbol *Symbol, MCSymbol *EHandler = 0);
212 virtual void EmitWin64EHEndProc();
Charles Davisf0709012011-05-18 20:54:10 +0000213 virtual void EmitWin64EHStartChained();
214 virtual void EmitWin64EHEndChained();
215 virtual void EmitWin64EHUnwindOnly();
Cameron Zwarichd36d26d2011-05-18 21:29:07 +0000216 virtual void EmitWin64EHLsda(const MCSymbol *Sym, int64_t Size);
Charles Davis0e30f022011-05-18 04:58:05 +0000217 virtual void EmitWin64EHPushReg(int64_t Register);
218 virtual void EmitWin64EHSetFrame(int64_t Register, int64_t Offset);
219 virtual void EmitWin64EHAllocStack(int64_t Size);
220 virtual void EmitWin64EHSaveReg(int64_t Register, int64_t Offset);
221 virtual void EmitWin64EHPushFrame(bool Code);
222 virtual void EmitWin64EHEndProlog();
223
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000224 virtual void EmitFnStart();
225 virtual void EmitFnEnd();
226 virtual void EmitCantUnwind();
227 virtual void EmitPersonality(const MCSymbol *Personality);
228 virtual void EmitHandlerData();
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000229 virtual void EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset = 0);
230 virtual void EmitPad(int64_t Offset);
231 virtual void EmitRegSave(const SmallVectorImpl<unsigned> &RegList, bool);
232
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000233
Chris Lattnera6594fc2010-01-25 18:58:59 +0000234 virtual void EmitInstruction(const MCInst &Inst);
Jim Grosbach00545e12010-09-22 18:16:55 +0000235
Jim Grosbachbd4ec842010-09-22 18:18:30 +0000236 /// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +0000237 /// the specified string in the output .s file. This capability is
238 /// indicated by the hasRawTextSupport() predicate.
239 virtual void EmitRawText(StringRef String);
Jim Grosbach00545e12010-09-22 18:16:55 +0000240
Chris Lattner46a947d2009-08-17 04:17:34 +0000241 virtual void Finish();
Jim Grosbach00545e12010-09-22 18:16:55 +0000242
Chris Lattner46a947d2009-08-17 04:17:34 +0000243 /// @}
244};
Daniel Dunbar84a29262009-06-24 19:25:34 +0000245
Chris Lattner46a947d2009-08-17 04:17:34 +0000246} // end anonymous namespace.
Daniel Dunbara11af532009-06-24 01:03:06 +0000247
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000248/// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner86e22112010-01-22 07:29:22 +0000249/// file if applicable as a QoI issue to make the output of the compiler
250/// more readable. This only affects the MCAsmStreamer, and only when
251/// verbose assembly output is enabled.
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000252void MCAsmStreamer::AddComment(const Twine &T) {
Chris Lattner86e22112010-01-22 07:29:22 +0000253 if (!IsVerboseAsm) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000254
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000255 // Make sure that CommentStream is flushed.
256 CommentStream.flush();
Jim Grosbach00545e12010-09-22 18:16:55 +0000257
Chris Lattner86e22112010-01-22 07:29:22 +0000258 T.toVector(CommentToEmit);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000259 // Each comment goes on its own line.
260 CommentToEmit.push_back('\n');
Jim Grosbach00545e12010-09-22 18:16:55 +0000261
Chris Lattner14ca1772010-01-22 21:16:10 +0000262 // Tell the comment stream that the vector changed underneath it.
263 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000264}
265
266void MCAsmStreamer::EmitCommentsAndEOL() {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000267 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) {
268 OS << '\n';
269 return;
270 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000271
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000272 CommentStream.flush();
Chris Lattner86e22112010-01-22 07:29:22 +0000273 StringRef Comments = CommentToEmit.str();
Jim Grosbach00545e12010-09-22 18:16:55 +0000274
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000275 assert(Comments.back() == '\n' &&
276 "Comment array not newline terminated");
277 do {
Chris Lattner86e22112010-01-22 07:29:22 +0000278 // Emit a line of comments.
279 OS.PadToColumn(MAI.getCommentColumn());
280 size_t Position = Comments.find('\n');
281 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
Jim Grosbach00545e12010-09-22 18:16:55 +0000282
Chris Lattner86e22112010-01-22 07:29:22 +0000283 Comments = Comments.substr(Position+1);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000284 } while (!Comments.empty());
Jim Grosbach00545e12010-09-22 18:16:55 +0000285
Chris Lattner14ca1772010-01-22 21:16:10 +0000286 CommentToEmit.clear();
287 // Tell the comment stream that the vector changed underneath it.
288 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000289}
290
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000291static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
292 assert(Bytes && "Invalid size!");
293 return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
294}
295
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000296void MCAsmStreamer::ChangeSection(const MCSection *Section) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000297 assert(Section && "Cannot switch to a null section!");
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000298 Section->PrintSwitchToSection(MAI, OS);
Daniel Dunbara11af532009-06-24 01:03:06 +0000299}
300
Rafael Espindola277abc82011-04-30 16:34:57 +0000301void MCAsmStreamer::EmitEHSymAttributes(const MCSymbol *Symbol,
302 MCSymbol *EHSymbol) {
303 if (UseCFI)
304 return;
305
306 unsigned Flags = FlagMap.lookup(Symbol);
307
308 if (Flags & EHGlobal)
309 EmitSymbolAttribute(EHSymbol, MCSA_Global);
310 if (Flags & EHWeakDefinition)
311 EmitSymbolAttribute(EHSymbol, MCSA_WeakDefinition);
312 if (Flags & EHPrivateExtern)
313 EmitSymbolAttribute(EHSymbol, MCSA_PrivateExtern);
314}
315
Daniel Dunbara11af532009-06-24 01:03:06 +0000316void MCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
Daniel Dunbar8906ff12009-08-22 07:22:36 +0000317 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Rafael Espindolaed708f92011-04-27 15:21:19 +0000318 MCStreamer::EmitLabel(Symbol);
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000319
Chris Lattnere07b75e2010-09-22 22:19:53 +0000320 OS << *Symbol << MAI.getLabelSuffix();
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000321 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000322}
323
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000324void MCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
Kevin Enderbyf96db462009-07-16 17:56:39 +0000325 switch (Flag) {
Daniel Dunbar011e4db2009-08-13 23:36:34 +0000326 default: assert(0 && "Invalid flag!");
Jason W Kimafd1cc22010-09-30 02:45:56 +0000327 case MCAF_SyntaxUnified: OS << "\t.syntax unified"; break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000328 case MCAF_SubsectionsViaSymbols: OS << ".subsections_via_symbols"; break;
Jim Grosbachce792992010-11-05 22:08:08 +0000329 case MCAF_Code16: OS << "\t.code\t16"; break;
Jim Grosbachba219572010-11-05 22:40:09 +0000330 case MCAF_Code32: OS << "\t.code\t32"; break;
Kevin Enderbyf96db462009-07-16 17:56:39 +0000331 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000332 EmitEOL();
Kevin Enderbya5c78322009-07-13 21:03:15 +0000333}
334
Jim Grosbachce792992010-11-05 22:08:08 +0000335void MCAsmStreamer::EmitThumbFunc(MCSymbol *Func) {
336 // This needs to emit to a temporary string to get properly quoted
337 // MCSymbols when they have spaces in them.
338 OS << "\t.thumb_func";
Rafael Espindola64695402011-05-16 16:17:21 +0000339 // Only Mach-O hasSubsectionsViaSymbols()
340 if (MAI.hasSubsectionsViaSymbols())
Jim Grosbachce792992010-11-05 22:08:08 +0000341 OS << '\t' << *Func;
342 EmitEOL();
343}
344
Daniel Dunbar821e3332009-08-31 08:09:28 +0000345void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000346 OS << *Symbol << " = " << *Value;
347 EmitEOL();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000348
349 // FIXME: Lift context changes into super class.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000350 Symbol->setVariableValue(Value);
Daniel Dunbara11af532009-06-24 01:03:06 +0000351}
352
Rafael Espindola484291c2010-11-01 14:28:48 +0000353void MCAsmStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
354 OS << ".weakref " << *Alias << ", " << *Symbol;
355 EmitEOL();
356}
357
Rafael Espindola32a006e2010-12-03 00:55:40 +0000358void MCAsmStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
359 const MCSymbol *LastLabel,
360 const MCSymbol *Label) {
Rafael Espindola89b93722010-12-10 07:39:47 +0000361 EmitDwarfSetLineAddr(LineDelta, Label,
362 getContext().getTargetAsmInfo().getPointerSize());
Rafael Espindola32a006e2010-12-03 00:55:40 +0000363}
364
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000365void MCAsmStreamer::EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
366 const MCSymbol *Label) {
367 EmitIntValue(dwarf::DW_CFA_advance_loc4, 1);
368 const MCExpr *AddrDelta = BuildSymbolDiff(getContext(), Label, LastLabel);
369 AddrDelta = ForceExpAbs(this, getContext(), AddrDelta);
370 EmitValue(AddrDelta, 4);
371}
372
373
Daniel Dunbarfffff912009-10-16 01:34:54 +0000374void MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000375 MCSymbolAttr Attribute) {
Daniel Dunbara11af532009-06-24 01:03:06 +0000376 switch (Attribute) {
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000377 case MCSA_Invalid: assert(0 && "Invalid symbol attribute");
Chris Lattnered0ab152010-01-25 18:30:45 +0000378 case MCSA_ELF_TypeFunction: /// .type _foo, STT_FUNC # aka @function
379 case MCSA_ELF_TypeIndFunction: /// .type _foo, STT_GNU_IFUNC
380 case MCSA_ELF_TypeObject: /// .type _foo, STT_OBJECT # aka @object
381 case MCSA_ELF_TypeTLS: /// .type _foo, STT_TLS # aka @tls_object
382 case MCSA_ELF_TypeCommon: /// .type _foo, STT_COMMON # aka @common
383 case MCSA_ELF_TypeNoType: /// .type _foo, STT_NOTYPE # aka @notype
Rafael Espindolae9c0ff22010-11-13 04:55:06 +0000384 case MCSA_ELF_TypeGnuUniqueObject: /// .type _foo, @gnu_unique_object
Chris Lattnered0ab152010-01-25 18:30:45 +0000385 assert(MAI.hasDotTypeDotSizeDirective() && "Symbol Attr not supported");
Dan Gohman523d70e2010-02-04 01:42:13 +0000386 OS << "\t.type\t" << *Symbol << ','
Chris Lattnered0ab152010-01-25 18:30:45 +0000387 << ((MAI.getCommentString()[0] != '@') ? '@' : '%');
388 switch (Attribute) {
389 default: assert(0 && "Unknown ELF .type");
390 case MCSA_ELF_TypeFunction: OS << "function"; break;
391 case MCSA_ELF_TypeIndFunction: OS << "gnu_indirect_function"; break;
392 case MCSA_ELF_TypeObject: OS << "object"; break;
393 case MCSA_ELF_TypeTLS: OS << "tls_object"; break;
394 case MCSA_ELF_TypeCommon: OS << "common"; break;
395 case MCSA_ELF_TypeNoType: OS << "no_type"; break;
Rafael Espindolae9c0ff22010-11-13 04:55:06 +0000396 case MCSA_ELF_TypeGnuUniqueObject: OS << "gnu_unique_object"; break;
Chris Lattnered0ab152010-01-25 18:30:45 +0000397 }
398 EmitEOL();
399 return;
400 case MCSA_Global: // .globl/.global
401 OS << MAI.getGlobalDirective();
Rafael Espindola277abc82011-04-30 16:34:57 +0000402 FlagMap[Symbol] |= EHGlobal;
Chris Lattnered0ab152010-01-25 18:30:45 +0000403 break;
Chris Lattner61abd7b2010-06-21 20:35:01 +0000404 case MCSA_Hidden: OS << "\t.hidden\t"; break;
405 case MCSA_IndirectSymbol: OS << "\t.indirect_symbol\t"; break;
406 case MCSA_Internal: OS << "\t.internal\t"; break;
407 case MCSA_LazyReference: OS << "\t.lazy_reference\t"; break;
408 case MCSA_Local: OS << "\t.local\t"; break;
409 case MCSA_NoDeadStrip: OS << "\t.no_dead_strip\t"; break;
Kevin Enderbye8e98d72010-11-19 18:39:33 +0000410 case MCSA_SymbolResolver: OS << "\t.symbol_resolver\t"; break;
Rafael Espindola277abc82011-04-30 16:34:57 +0000411 case MCSA_PrivateExtern:
412 OS << "\t.private_extern\t";
413 FlagMap[Symbol] |= EHPrivateExtern;
414 break;
Chris Lattner61abd7b2010-06-21 20:35:01 +0000415 case MCSA_Protected: OS << "\t.protected\t"; break;
416 case MCSA_Reference: OS << "\t.reference\t"; break;
417 case MCSA_Weak: OS << "\t.weak\t"; break;
Rafael Espindola277abc82011-04-30 16:34:57 +0000418 case MCSA_WeakDefinition:
419 OS << "\t.weak_definition\t";
420 FlagMap[Symbol] |= EHWeakDefinition;
421 break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000422 // .weak_reference
423 case MCSA_WeakReference: OS << MAI.getWeakRefDirective(); break;
Kevin Enderbyf59cac52010-07-08 17:22:42 +0000424 case MCSA_WeakDefAutoPrivate: OS << "\t.weak_def_can_be_hidden\t"; break;
Daniel Dunbara11af532009-06-24 01:03:06 +0000425 }
426
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000427 OS << *Symbol;
428 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000429}
430
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000431void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000432 OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
433 EmitEOL();
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000434}
435
Chris Lattnerb54b9dd2010-05-08 19:54:22 +0000436void MCAsmStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {
437 OS << "\t.def\t " << *Symbol << ';';
438 EmitEOL();
439}
440
441void MCAsmStreamer::EmitCOFFSymbolStorageClass (int StorageClass) {
442 OS << "\t.scl\t" << StorageClass << ';';
443 EmitEOL();
444}
445
446void MCAsmStreamer::EmitCOFFSymbolType (int Type) {
447 OS << "\t.type\t" << Type << ';';
448 EmitEOL();
449}
450
451void MCAsmStreamer::EndCOFFSymbolDef() {
452 OS << "\t.endef";
453 EmitEOL();
454}
455
Chris Lattner99328ad2010-01-25 07:52:13 +0000456void MCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
457 assert(MAI.hasDotTypeDotSizeDirective());
458 OS << "\t.size\t" << *Symbol << ", " << *Value << '\n';
459}
460
Chris Lattner9eb158d2010-01-23 07:47:02 +0000461void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000462 unsigned ByteAlignment) {
Chris Lattner9eb158d2010-01-23 07:47:02 +0000463 OS << "\t.comm\t" << *Symbol << ',' << Size;
Chris Lattner6559d762010-01-25 07:29:13 +0000464 if (ByteAlignment != 0) {
Rafael Espindola2e2563b2010-01-26 20:21:43 +0000465 if (MAI.getCOMMDirectiveAlignmentIsInBytes())
Chris Lattner4ed54382010-01-19 06:01:04 +0000466 OS << ',' << ByteAlignment;
467 else
468 OS << ',' << Log2_32(ByteAlignment);
469 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000470 EmitEOL();
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000471}
472
Chris Lattner9eb158d2010-01-23 07:47:02 +0000473/// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
474///
475/// @param Symbol - The common symbol to emit.
476/// @param Size - The size of the common symbol.
477void MCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size) {
478 assert(MAI.hasLCOMMDirective() && "Doesn't have .lcomm, can't emit it!");
479 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
480 EmitEOL();
481}
482
Daniel Dunbar8751b942009-08-28 05:48:22 +0000483void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000484 unsigned Size, unsigned ByteAlignment) {
Daniel Dunbar011e4db2009-08-13 23:36:34 +0000485 // Note: a .zerofill directive does not switch sections.
Chris Lattner93b6db32009-08-08 23:39:42 +0000486 OS << ".zerofill ";
Jim Grosbach00545e12010-09-22 18:16:55 +0000487
Chris Lattner93b6db32009-08-08 23:39:42 +0000488 // This is a mach-o specific directive.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000489 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
Daniel Dunbar12de0df2009-08-14 18:51:45 +0000490 OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
Jim Grosbach00545e12010-09-22 18:16:55 +0000491
Chris Lattner9be3fee2009-07-10 22:20:30 +0000492 if (Symbol != NULL) {
Chris Lattner10b318b2010-01-17 21:43:43 +0000493 OS << ',' << *Symbol << ',' << Size;
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000494 if (ByteAlignment != 0)
495 OS << ',' << Log2_32(ByteAlignment);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000496 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000497 EmitEOL();
Chris Lattner9be3fee2009-07-10 22:20:30 +0000498}
499
Eric Christopherd04d98d2010-05-17 02:13:02 +0000500// .tbss sym, size, align
501// This depends that the symbol has already been mangled from the original,
502// e.g. _a.
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000503void MCAsmStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
504 uint64_t Size, unsigned ByteAlignment) {
Eric Christopher482eba02010-05-14 01:50:28 +0000505 assert(Symbol != NULL && "Symbol shouldn't be NULL!");
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000506 // Instead of using the Section we'll just use the shortcut.
507 // This is a mach-o specific directive and section.
Eric Christopherd04d98d2010-05-17 02:13:02 +0000508 OS << ".tbss " << *Symbol << ", " << Size;
Jim Grosbach00545e12010-09-22 18:16:55 +0000509
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000510 // Output align if we have it. We default to 1 so don't bother printing
511 // that.
512 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
Jim Grosbach00545e12010-09-22 18:16:55 +0000513
Eric Christopher482eba02010-05-14 01:50:28 +0000514 EmitEOL();
515}
516
Chris Lattner12e555c2010-01-23 00:15:00 +0000517static inline char toOctal(int X) { return (X&7)+'0'; }
518
Chris Lattnera6594fc2010-01-25 18:58:59 +0000519static void PrintQuotedString(StringRef Data, raw_ostream &OS) {
520 OS << '"';
Jim Grosbach00545e12010-09-22 18:16:55 +0000521
Chris Lattnera6594fc2010-01-25 18:58:59 +0000522 for (unsigned i = 0, e = Data.size(); i != e; ++i) {
523 unsigned char C = Data[i];
524 if (C == '"' || C == '\\') {
525 OS << '\\' << (char)C;
526 continue;
527 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000528
Chris Lattnera6594fc2010-01-25 18:58:59 +0000529 if (isprint((unsigned char)C)) {
530 OS << (char)C;
531 continue;
532 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000533
Chris Lattnera6594fc2010-01-25 18:58:59 +0000534 switch (C) {
535 case '\b': OS << "\\b"; break;
536 case '\f': OS << "\\f"; break;
537 case '\n': OS << "\\n"; break;
538 case '\r': OS << "\\r"; break;
539 case '\t': OS << "\\t"; break;
540 default:
541 OS << '\\';
542 OS << toOctal(C >> 6);
543 OS << toOctal(C >> 3);
544 OS << toOctal(C >> 0);
545 break;
546 }
547 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000548
Chris Lattnera6594fc2010-01-25 18:58:59 +0000549 OS << '"';
550}
551
552
Chris Lattneraaec2052010-01-19 19:46:13 +0000553void MCAsmStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000554 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Chris Lattner12e555c2010-01-23 00:15:00 +0000555 if (Data.empty()) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000556
Chris Lattner12e555c2010-01-23 00:15:00 +0000557 if (Data.size() == 1) {
558 OS << MAI.getData8bitsDirective(AddrSpace);
559 OS << (unsigned)(unsigned char)Data[0];
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000560 EmitEOL();
Chris Lattner12e555c2010-01-23 00:15:00 +0000561 return;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000562 }
Chris Lattner12e555c2010-01-23 00:15:00 +0000563
564 // If the data ends with 0 and the target supports .asciz, use it, otherwise
565 // use .ascii
566 if (MAI.getAscizDirective() && Data.back() == 0) {
567 OS << MAI.getAscizDirective();
568 Data = Data.substr(0, Data.size()-1);
569 } else {
570 OS << MAI.getAsciiDirective();
571 }
572
Chris Lattnera6594fc2010-01-25 18:58:59 +0000573 OS << ' ';
574 PrintQuotedString(Data, OS);
Chris Lattner12e555c2010-01-23 00:15:00 +0000575 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000576}
577
Rafael Espindola2df042c2010-12-03 02:54:21 +0000578void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size,
579 unsigned AddrSpace) {
580 EmitValue(MCConstantExpr::Create(Value, getContext()), Size, AddrSpace);
581}
582
Rafael Espindola89b93722010-12-10 07:39:47 +0000583void MCAsmStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size,
Rafael Espindoladebd7e42011-05-01 03:50:49 +0000584 unsigned AddrSpace) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000585 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000586 const char *Directive = 0;
587 switch (Size) {
588 default: break;
589 case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
590 case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
591 case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000592 case 8:
593 Directive = MAI.getData64bitsDirective(AddrSpace);
594 // If the target doesn't support 64-bit data, emit as two 32-bit halves.
595 if (Directive) break;
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000596 int64_t IntValue;
597 if (!Value->EvaluateAsAbsolute(IntValue))
598 report_fatal_error("Don't know how to emit this value.");
Rafael Espindola89b93722010-12-10 07:39:47 +0000599 if (getContext().getTargetAsmInfo().isLittleEndian()) {
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000600 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
601 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000602 } else {
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000603 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
604 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000605 }
606 return;
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000607 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000608
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000609 assert(Directive && "Invalid size for machine code value!");
Chris Lattner718fb592010-01-25 21:28:50 +0000610 OS << Directive << *Value;
Chris Lattner86e22112010-01-22 07:29:22 +0000611 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000612}
613
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000614void MCAsmStreamer::EmitULEB128Value(const MCExpr *Value) {
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000615 int64_t IntValue;
616 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000617 EmitULEB128IntValue(IntValue);
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000618 return;
619 }
Rafael Espindola73873452010-11-04 18:17:08 +0000620 assert(MAI.hasLEB128() && "Cannot print a .uleb");
621 OS << ".uleb128 " << *Value;
Rafael Espindola3ff57092010-11-02 17:22:24 +0000622 EmitEOL();
623}
624
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000625void MCAsmStreamer::EmitSLEB128Value(const MCExpr *Value) {
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000626 int64_t IntValue;
627 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000628 EmitSLEB128IntValue(IntValue);
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000629 return;
630 }
Rafael Espindola73873452010-11-04 18:17:08 +0000631 assert(MAI.hasLEB128() && "Cannot print a .sleb");
632 OS << ".sleb128 " << *Value;
Rafael Espindola3ff57092010-11-02 17:22:24 +0000633 EmitEOL();
634}
635
Chris Lattner718fb592010-01-25 21:28:50 +0000636void MCAsmStreamer::EmitGPRel32Value(const MCExpr *Value) {
637 assert(MAI.getGPRel32Directive() != 0);
638 OS << MAI.getGPRel32Directive() << *Value;
639 EmitEOL();
640}
641
642
Chris Lattner6113b3d2010-01-19 18:52:28 +0000643/// EmitFill - Emit NumBytes bytes worth of the value specified by
644/// FillValue. This implements directives such as '.space'.
Chris Lattneraaec2052010-01-19 19:46:13 +0000645void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
646 unsigned AddrSpace) {
Chris Lattner8a6d7ac2010-01-19 18:58:52 +0000647 if (NumBytes == 0) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000648
Chris Lattneraaec2052010-01-19 19:46:13 +0000649 if (AddrSpace == 0)
650 if (const char *ZeroDirective = MAI.getZeroDirective()) {
651 OS << ZeroDirective << NumBytes;
652 if (FillValue != 0)
653 OS << ',' << (int)FillValue;
Chris Lattner86e22112010-01-22 07:29:22 +0000654 EmitEOL();
Chris Lattneraaec2052010-01-19 19:46:13 +0000655 return;
656 }
657
658 // Emit a byte at a time.
659 MCStreamer::EmitFill(NumBytes, FillValue, AddrSpace);
Chris Lattner6113b3d2010-01-19 18:52:28 +0000660}
661
Daniel Dunbar84a29262009-06-24 19:25:34 +0000662void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
663 unsigned ValueSize,
664 unsigned MaxBytesToEmit) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000665 // Some assemblers don't support non-power of two alignments, so we always
666 // emit alignments as a power of two if possible.
667 if (isPowerOf2_32(ByteAlignment)) {
Chris Lattner6e579c62009-08-19 06:35:36 +0000668 switch (ValueSize) {
669 default: llvm_unreachable("Invalid size for machine code value!");
Chris Lattner33adcfb2009-08-22 21:43:10 +0000670 case 1: OS << MAI.getAlignDirective(); break;
671 // FIXME: use MAI for this!
Chris Lattner6e579c62009-08-19 06:35:36 +0000672 case 2: OS << ".p2alignw "; break;
673 case 4: OS << ".p2alignl "; break;
674 case 8: llvm_unreachable("Unsupported alignment size!");
675 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000676
Chris Lattner33adcfb2009-08-22 21:43:10 +0000677 if (MAI.getAlignmentIsInBytes())
Chris Lattner663c2d22009-08-19 06:12:02 +0000678 OS << ByteAlignment;
679 else
680 OS << Log2_32(ByteAlignment);
Daniel Dunbar84a29262009-06-24 19:25:34 +0000681
Chris Lattner663c2d22009-08-19 06:12:02 +0000682 if (Value || MaxBytesToEmit) {
Chris Lattner579531c2009-09-03 04:01:10 +0000683 OS << ", 0x";
684 OS.write_hex(truncateToSize(Value, ValueSize));
Chris Lattner663c2d22009-08-19 06:12:02 +0000685
Jim Grosbach00545e12010-09-22 18:16:55 +0000686 if (MaxBytesToEmit)
Chris Lattner663c2d22009-08-19 06:12:02 +0000687 OS << ", " << MaxBytesToEmit;
688 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000689 EmitEOL();
Chris Lattner663c2d22009-08-19 06:12:02 +0000690 return;
691 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000692
Chris Lattner663c2d22009-08-19 06:12:02 +0000693 // Non-power of two alignment. This is not widely supported by assemblers.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000694 // FIXME: Parameterize this based on MAI.
Daniel Dunbar84a29262009-06-24 19:25:34 +0000695 switch (ValueSize) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000696 default: llvm_unreachable("Invalid size for machine code value!");
697 case 1: OS << ".balign"; break;
698 case 2: OS << ".balignw"; break;
699 case 4: OS << ".balignl"; break;
700 case 8: llvm_unreachable("Unsupported alignment size!");
Daniel Dunbar84a29262009-06-24 19:25:34 +0000701 }
702
Chris Lattner663c2d22009-08-19 06:12:02 +0000703 OS << ' ' << ByteAlignment;
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000704 OS << ", " << truncateToSize(Value, ValueSize);
Jim Grosbach00545e12010-09-22 18:16:55 +0000705 if (MaxBytesToEmit)
Daniel Dunbar84a29262009-06-24 19:25:34 +0000706 OS << ", " << MaxBytesToEmit;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000707 EmitEOL();
Daniel Dunbar84a29262009-06-24 19:25:34 +0000708}
709
Kevin Enderby6e720482010-02-23 18:26:34 +0000710void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
711 unsigned MaxBytesToEmit) {
Chris Lattnerec167fd2010-02-23 18:44:31 +0000712 // Emit with a text fill value.
713 EmitValueToAlignment(ByteAlignment, MAI.getTextAlignFillValue(),
714 1, MaxBytesToEmit);
Kevin Enderby6e720482010-02-23 18:26:34 +0000715}
716
Daniel Dunbar821e3332009-08-31 08:09:28 +0000717void MCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbar84a29262009-06-24 19:25:34 +0000718 unsigned char Value) {
719 // FIXME: Verify that Offset is associated with the current section.
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000720 OS << ".org " << *Offset << ", " << (unsigned) Value;
721 EmitEOL();
Daniel Dunbar84a29262009-06-24 19:25:34 +0000722}
723
Chris Lattnera6594fc2010-01-25 18:58:59 +0000724
725void MCAsmStreamer::EmitFileDirective(StringRef Filename) {
726 assert(MAI.hasSingleParameterDotFile());
727 OS << "\t.file\t";
728 PrintQuotedString(Filename, OS);
729 EmitEOL();
730}
731
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000732bool MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Filename){
Rafael Espindola89b93722010-12-10 07:39:47 +0000733 if (UseLoc) {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000734 OS << "\t.file\t" << FileNo << ' ';
735 PrintQuotedString(Filename, OS);
736 EmitEOL();
737 }
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000738 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Filename);
739}
740
741void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
742 unsigned Column, unsigned Flags,
743 unsigned Isa,
Devang Patel3f3bf932011-04-18 20:26:49 +0000744 unsigned Discriminator,
745 StringRef FileName) {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000746 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +0000747 Isa, Discriminator, FileName);
Rafael Espindola89b93722010-12-10 07:39:47 +0000748 if (!UseLoc)
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000749 return;
750
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000751 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
752 if (Flags & DWARF2_FLAG_BASIC_BLOCK)
753 OS << " basic_block";
754 if (Flags & DWARF2_FLAG_PROLOGUE_END)
755 OS << " prologue_end";
756 if (Flags & DWARF2_FLAG_EPILOGUE_BEGIN)
757 OS << " epilogue_begin";
758
759 unsigned OldFlags = getContext().getCurrentDwarfLoc().getFlags();
760 if ((Flags & DWARF2_FLAG_IS_STMT) != (OldFlags & DWARF2_FLAG_IS_STMT)) {
761 OS << " is_stmt ";
762
763 if (Flags & DWARF2_FLAG_IS_STMT)
764 OS << "1";
765 else
766 OS << "0";
767 }
768
769 if (Isa)
770 OS << "isa " << Isa;
771 if (Discriminator)
772 OS << "discriminator " << Discriminator;
Devang Patel3f3bf932011-04-18 20:26:49 +0000773
774 if (IsVerboseAsm) {
775 OS.PadToColumn(MAI.getCommentColumn());
776 OS << MAI.getCommentString() << ' ' << FileName << ':'
777 << Line << ':' << Column;
778 }
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000779 EmitEOL();
Chris Lattnera6594fc2010-01-25 18:58:59 +0000780}
781
Rafael Espindola713c4bf2011-05-10 13:39:48 +0000782void MCAsmStreamer::EmitCFISections(bool EH, bool Debug) {
783 MCStreamer::EmitCFISections(EH, Debug);
784
785 if (!UseCFI)
786 return;
787
788 OS << "\t.cfi_sections ";
789 if (EH) {
790 OS << ".eh_frame";
791 if (Debug)
792 OS << ", .debug_frame";
793 } else if (Debug) {
794 OS << ".debug_frame";
795 }
796
797 EmitEOL();
798}
799
Rafael Espindola066c2f42011-04-12 23:59:07 +0000800void MCAsmStreamer::EmitCFIStartProc() {
801 MCStreamer::EmitCFIStartProc();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000802
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000803 if (!UseCFI)
804 return;
805
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000806 OS << "\t.cfi_startproc";
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000807 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000808}
809
Rafael Espindola066c2f42011-04-12 23:59:07 +0000810void MCAsmStreamer::EmitCFIEndProc() {
811 MCStreamer::EmitCFIEndProc();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000812
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000813 if (!UseCFI)
814 return;
815
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000816 OS << "\t.cfi_endproc";
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000817 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000818}
819
Rafael Espindola066c2f42011-04-12 23:59:07 +0000820void MCAsmStreamer::EmitCFIDefCfa(int64_t Register, int64_t Offset) {
Rafael Espindola7f46b082011-04-29 21:41:06 +0000821 MCStreamer::EmitCFIDefCfa(Register, Offset);
822
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000823 if (!UseCFI)
824 return;
825
Rafael Espindola7f46b082011-04-29 21:41:06 +0000826 OS << ".cfi_def_cfa " << Register << ", " << Offset;
827 EmitEOL();
Rafael Espindola066c2f42011-04-12 23:59:07 +0000828}
829
830void MCAsmStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
831 MCStreamer::EmitCFIDefCfaOffset(Offset);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000832
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000833 if (!UseCFI)
834 return;
835
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000836 OS << "\t.cfi_def_cfa_offset " << Offset;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000837 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000838}
839
Rafael Espindola066c2f42011-04-12 23:59:07 +0000840void MCAsmStreamer::EmitCFIDefCfaRegister(int64_t Register) {
841 MCStreamer::EmitCFIDefCfaRegister(Register);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000842
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000843 if (!UseCFI)
844 return;
845
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000846 OS << "\t.cfi_def_cfa_register " << Register;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000847 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000848}
849
Rafael Espindola066c2f42011-04-12 23:59:07 +0000850void MCAsmStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
851 this->MCStreamer::EmitCFIOffset(Register, Offset);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000852
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000853 if (!UseCFI)
854 return;
855
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000856 OS << "\t.cfi_offset " << Register << ", " << Offset;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000857 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000858}
859
Rafael Espindola066c2f42011-04-12 23:59:07 +0000860void MCAsmStreamer::EmitCFIPersonality(const MCSymbol *Sym,
Rafael Espindola3a83c402010-12-27 00:36:05 +0000861 unsigned Encoding) {
Rafael Espindola066c2f42011-04-12 23:59:07 +0000862 MCStreamer::EmitCFIPersonality(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000863
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000864 if (!UseCFI)
865 return;
866
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000867 OS << "\t.cfi_personality " << Encoding << ", " << *Sym;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000868 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000869}
870
Rafael Espindola066c2f42011-04-12 23:59:07 +0000871void MCAsmStreamer::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) {
872 MCStreamer::EmitCFILsda(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000873
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000874 if (!UseCFI)
875 return;
876
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000877 OS << "\t.cfi_lsda " << Encoding << ", " << *Sym;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000878 EmitEOL();
Rafael Espindola066c2f42011-04-12 23:59:07 +0000879}
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000880
Rafael Espindola066c2f42011-04-12 23:59:07 +0000881void MCAsmStreamer::EmitCFIRememberState() {
882 MCStreamer::EmitCFIRememberState();
883
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000884 if (!UseCFI)
885 return;
886
Rafael Espindola066c2f42011-04-12 23:59:07 +0000887 OS << "\t.cfi_remember_state";
888 EmitEOL();
889}
890
891void MCAsmStreamer::EmitCFIRestoreState() {
892 MCStreamer::EmitCFIRestoreState();
893
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000894 if (!UseCFI)
895 return;
896
Rafael Espindola066c2f42011-04-12 23:59:07 +0000897 OS << "\t.cfi_restore_state";
898 EmitEOL();
899}
900
901void MCAsmStreamer::EmitCFISameValue(int64_t Register) {
902 MCStreamer::EmitCFISameValue(Register);
903
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000904 if (!UseCFI)
905 return;
906
Rafael Espindola066c2f42011-04-12 23:59:07 +0000907 OS << "\t.cfi_same_value " << Register;
908 EmitEOL();
909}
910
911void MCAsmStreamer::EmitCFIRelOffset(int64_t Register, int64_t Offset) {
912 MCStreamer::EmitCFIRelOffset(Register, Offset);
913
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000914 if (!UseCFI)
915 return;
916
Rafael Espindola066c2f42011-04-12 23:59:07 +0000917 OS << "\t.cfi_rel_offset " << Register << ", " << Offset;
918 EmitEOL();
919}
920
921void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) {
922 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
923
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000924 if (!UseCFI)
925 return;
926
Rafael Espindola066c2f42011-04-12 23:59:07 +0000927 OS << "\t.cfi_adjust_cfa_offset " << Adjustment;
928 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000929}
930
Charles Davis0e30f022011-05-18 04:58:05 +0000931void MCAsmStreamer::EmitWin64EHStartProc(MCSymbol *Symbol, MCSymbol *EHandler)
932{
933 //MCStreamer::EmitWin64EHStartProc(Symbol, EHandler);
934
935 OS << ".w64_startproc " << *Symbol;
936 if (EHandler)
937 OS << ", " << *EHandler;
938 EmitEOL();
939}
940
941void MCAsmStreamer::EmitWin64EHEndProc()
942{
943 //MCStreamer::EmitWin64EHEndProc();
944
945 OS << "\t.w64_endproc";
946 EmitEOL();
947}
948
Charles Davisf0709012011-05-18 20:54:10 +0000949void MCAsmStreamer::EmitWin64EHStartChained()
950{
951 //MCStreamer::EmitWin64EHStartChained();
952
953 OS << "\t.w64_startchained";
954 EmitEOL();
955}
956
957void MCAsmStreamer::EmitWin64EHEndChained()
958{
959 //MCStreamer::EmitWin64EHEndChained();
960
961 OS << "\t.w64_endchained";
962 EmitEOL();
963}
964
965void MCAsmStreamer::EmitWin64EHUnwindOnly()
966{
967 //MCStreamer::EmitWin64EHUnwindOnly();
968
969 OS << "\t.w64_unwind_only";
970 EmitEOL();
971}
972
Cameron Zwarichd36d26d2011-05-18 21:29:07 +0000973void MCAsmStreamer::EmitWin64EHLsda(const MCSymbol *Sym, int64_t Size)
Charles Davisf0709012011-05-18 20:54:10 +0000974{
975 //MCStreamer::EmitWin64EHLsda(Sym, Size);
976
977 OS << "\t.w64_lsda " << *Sym << ", " << Size;
978 EmitEOL();
979}
980
Charles Davis0e30f022011-05-18 04:58:05 +0000981void MCAsmStreamer::EmitWin64EHPushReg(int64_t Register)
982{
983 //MCStreamer::EmitWin64EHPushReg(Register);
984
985 OS << "\t.w64_pushreg " << Register;
986 EmitEOL();
987}
988
989void MCAsmStreamer::EmitWin64EHSetFrame(int64_t Register, int64_t Offset)
990{
991 //MCStreamer::EmitWin64EHSetFrame(Register, Offset);
992
993 OS << "\t.w64_setframe " << Register << ", " << Offset;
994 EmitEOL();
995}
996
997void MCAsmStreamer::EmitWin64EHAllocStack(int64_t Size)
998{
999 //MCStremaer::EmitWin64EHAllocStack(Size);
1000
1001 OS << "\t.w64_allocstack " << Size;
1002 EmitEOL();
1003}
1004
1005void MCAsmStreamer::EmitWin64EHSaveReg(int64_t Register, int64_t Offset)
1006{
1007 //MCStreamer::EmitWin64EHSaveReg(Register, Offset)
1008
1009 OS << "\t.w64_savereg " << Register << ", " << Offset;
1010 EmitEOL();
1011}
1012
1013void MCAsmStreamer::EmitWin64EHPushFrame(bool Code)
1014{
1015 //MCStreamer::EmitWin64EHPushFrame(Code);
1016
1017 OS << "\t.w64_pushframe";
1018 if (Code)
1019 OS << " " << "code";
1020 EmitEOL();
1021}
1022
1023void MCAsmStreamer::EmitWin64EHEndProlog(void)
1024{
1025 //MCStreamer::EmitWin64EHEndProlog();
1026
1027 OS << "\t.w64_endprolog";
1028 EmitEOL();
1029}
1030
Daniel Dunbar6b716532010-02-09 23:00:14 +00001031void MCAsmStreamer::AddEncodingComment(const MCInst &Inst) {
1032 raw_ostream &OS = GetCommentOS();
1033 SmallString<256> Code;
1034 SmallVector<MCFixup, 4> Fixups;
1035 raw_svector_ostream VecOS(Code);
1036 Emitter->EncodeInstruction(Inst, VecOS, Fixups);
1037 VecOS.flush();
Chris Lattnera6594fc2010-01-25 18:58:59 +00001038
Daniel Dunbar6b716532010-02-09 23:00:14 +00001039 // If we are showing fixups, create symbolic markers in the encoded
1040 // representation. We do this by making a per-bit map to the fixup item index,
1041 // then trying to display it as nicely as possible.
Daniel Dunbar5532cf42010-02-10 01:41:14 +00001042 SmallVector<uint8_t, 64> FixupMap;
1043 FixupMap.resize(Code.size() * 8);
Daniel Dunbar6b716532010-02-09 23:00:14 +00001044 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
1045 FixupMap[i] = 0;
1046
1047 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1048 MCFixup &F = Fixups[i];
Daniel Dunbar2761fc42010-12-16 03:20:06 +00001049 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar6b716532010-02-09 23:00:14 +00001050 for (unsigned j = 0; j != Info.TargetSize; ++j) {
1051 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j;
1052 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
1053 FixupMap[Index] = 1 + i;
1054 }
1055 }
1056
Evan Cheng8fbbd1c2011-01-13 23:27:39 +00001057 // FIXME: Node the fixup comments for Thumb2 are completely bogus since the
1058 // high order halfword of a 32-bit Thumb2 instruction is emitted first.
Daniel Dunbar6b716532010-02-09 23:00:14 +00001059 OS << "encoding: [";
1060 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
1061 if (i)
1062 OS << ',';
1063
1064 // See if all bits are the same map entry.
1065 uint8_t MapEntry = FixupMap[i * 8 + 0];
1066 for (unsigned j = 1; j != 8; ++j) {
1067 if (FixupMap[i * 8 + j] == MapEntry)
1068 continue;
1069
1070 MapEntry = uint8_t(~0U);
1071 break;
1072 }
1073
1074 if (MapEntry != uint8_t(~0U)) {
1075 if (MapEntry == 0) {
1076 OS << format("0x%02x", uint8_t(Code[i]));
1077 } else {
Evan Cheng82caf1a2011-01-13 21:45:26 +00001078 if (Code[i]) {
Evan Cheng8fbbd1c2011-01-13 23:27:39 +00001079 // FIXME: Some of the 8 bits require fix up.
Evan Cheng82caf1a2011-01-13 21:45:26 +00001080 OS << format("0x%02x", uint8_t(Code[i])) << '\''
1081 << char('A' + MapEntry - 1) << '\'';
1082 } else
1083 OS << char('A' + MapEntry - 1);
Daniel Dunbar6b716532010-02-09 23:00:14 +00001084 }
1085 } else {
1086 // Otherwise, write out in binary.
1087 OS << "0b";
1088 for (unsigned j = 8; j--;) {
1089 unsigned Bit = (Code[i] >> j) & 1;
NAKAMURA Takumid6451512011-03-27 01:44:40 +00001090
Chris Lattner3170a3b2010-11-15 05:56:19 +00001091 unsigned FixupBit;
Rafael Espindola89b93722010-12-10 07:39:47 +00001092 if (getContext().getTargetAsmInfo().isLittleEndian())
Chris Lattner3170a3b2010-11-15 05:56:19 +00001093 FixupBit = i * 8 + j;
1094 else
1095 FixupBit = i * 8 + (7-j);
NAKAMURA Takumid6451512011-03-27 01:44:40 +00001096
Chris Lattner3170a3b2010-11-15 05:56:19 +00001097 if (uint8_t MapEntry = FixupMap[FixupBit]) {
Daniel Dunbar6b716532010-02-09 23:00:14 +00001098 assert(Bit == 0 && "Encoder wrote into fixed up bit!");
1099 OS << char('A' + MapEntry - 1);
1100 } else
1101 OS << Bit;
1102 }
1103 }
1104 }
1105 OS << "]\n";
1106
1107 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1108 MCFixup &F = Fixups[i];
Daniel Dunbar2761fc42010-12-16 03:20:06 +00001109 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar6b716532010-02-09 23:00:14 +00001110 OS << " fixup " << char('A' + i) << " - " << "offset: " << F.getOffset()
Daniel Dunbar5d5a1e12010-02-10 04:47:08 +00001111 << ", value: " << *F.getValue() << ", kind: " << Info.Name << "\n";
Daniel Dunbar6b716532010-02-09 23:00:14 +00001112 }
1113}
1114
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +00001115void MCAsmStreamer::EmitFnStart() {
1116 OS << "\t.fnstart";
1117 EmitEOL();
1118}
1119
1120void MCAsmStreamer::EmitFnEnd() {
1121 OS << "\t.fnend";
1122 EmitEOL();
1123}
1124
1125void MCAsmStreamer::EmitCantUnwind() {
1126 OS << "\t.cantunwind";
1127 EmitEOL();
1128}
1129
1130void MCAsmStreamer::EmitHandlerData() {
1131 OS << "\t.handlerdata";
1132 EmitEOL();
1133}
1134
1135void MCAsmStreamer::EmitPersonality(const MCSymbol *Personality) {
1136 OS << "\t.personality " << Personality->getName();
1137 EmitEOL();
1138}
1139
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001140void MCAsmStreamer::EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset) {
1141 OS << "\t.setfp\t" << InstPrinter->getRegName(FpReg)
1142 << ", " << InstPrinter->getRegName(SpReg);
1143 if (Offset)
1144 OS << ", #" << Offset;
1145 EmitEOL();
1146}
1147
1148void MCAsmStreamer::EmitPad(int64_t Offset) {
1149 OS << "\t.pad\t#" << Offset;
1150 EmitEOL();
1151}
1152
1153void MCAsmStreamer::EmitRegSave(const SmallVectorImpl<unsigned> &RegList,
1154 bool isVector) {
1155 assert(RegList.size() && "RegList should not be empty");
1156 if (isVector)
1157 OS << "\t.vsave\t{";
1158 else
1159 OS << "\t.save\t{";
1160
1161 OS << InstPrinter->getRegName(RegList[0]);
1162
1163 for (unsigned i = 1, e = RegList.size(); i != e; ++i)
1164 OS << ", " << InstPrinter->getRegName(RegList[i]);
1165
1166 OS << "}";
1167 EmitEOL();
1168}
1169
Daniel Dunbar6b716532010-02-09 23:00:14 +00001170void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +00001171 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Daniel Dunbar6b716532010-02-09 23:00:14 +00001172
1173 // Show the encoding in a comment if we have a code emitter.
1174 if (Emitter)
1175 AddEncodingComment(Inst);
1176
Chris Lattner30d9a642010-02-09 00:54:51 +00001177 // Show the MCInst if enabled.
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +00001178 if (ShowInst) {
Daniel Dunbar67c076c2010-03-22 21:49:34 +00001179 Inst.dump_pretty(GetCommentOS(), &MAI, InstPrinter.get(), "\n ");
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +00001180 GetCommentOS() << "\n";
1181 }
1182
Daniel Dunbar67c076c2010-03-22 21:49:34 +00001183 // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001184 if (InstPrinter)
Chris Lattnerd3740872010-04-04 05:04:31 +00001185 InstPrinter->printInst(&Inst, OS);
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001186 else
1187 Inst.print(OS, &MAI);
Chris Lattner7d1e49c2010-01-22 07:36:39 +00001188 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +00001189}
1190
Jim Grosbachbd4ec842010-09-22 18:18:30 +00001191/// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +00001192/// the specified string in the output .s file. This capability is
1193/// indicated by the hasRawTextSupport() predicate.
1194void MCAsmStreamer::EmitRawText(StringRef String) {
Chris Lattnerd5928dc2010-04-03 22:06:56 +00001195 if (!String.empty() && String.back() == '\n')
1196 String = String.substr(0, String.size()-1);
Chris Lattner91bead72010-04-03 21:35:55 +00001197 OS << String;
Chris Lattnerd5928dc2010-04-03 22:06:56 +00001198 EmitEOL();
Chris Lattner91bead72010-04-03 21:35:55 +00001199}
1200
Daniel Dunbara11af532009-06-24 01:03:06 +00001201void MCAsmStreamer::Finish() {
Rafael Espindola195a0ce2010-11-19 02:26:16 +00001202 // Dump out the dwarf file & directory tables and line tables.
Rafael Espindola89b93722010-12-10 07:39:47 +00001203 if (getContext().hasDwarfFiles() && !UseLoc)
1204 MCDwarfFileTable::Emit(this);
Rafael Espindola5426a9e2011-05-01 04:49:54 +00001205
Rafael Espindolac25dad82011-05-10 03:14:15 +00001206 if (!UseCFI)
1207 EmitFrames(false);
Daniel Dunbara11af532009-06-24 01:03:06 +00001208}
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001209
Chris Lattner86e22112010-01-22 07:29:22 +00001210MCStreamer *llvm::createAsmStreamer(MCContext &Context,
1211 formatted_raw_ostream &OS,
Rafael Espindola89b93722010-12-10 07:39:47 +00001212 bool isVerboseAsm, bool useLoc,
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001213 bool useCFI,
Daniel Dunbar745dacc2010-12-16 03:05:59 +00001214 MCInstPrinter *IP, MCCodeEmitter *CE,
1215 TargetAsmBackend *TAB, bool ShowInst) {
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001216 return new MCAsmStreamer(Context, OS, isVerboseAsm, useLoc, useCFI,
Daniel Dunbar745dacc2010-12-16 03:05:59 +00001217 IP, CE, TAB, ShowInst);
Daniel Dunbara11af532009-06-24 01:03:06 +00001218}