blob: ca2f10ea7c75b823bcd6ac8009cfdd9fd7cc5e74 [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);
64
Chris Lattner46a947d2009-08-17 04:17:34 +000065public:
Chris Lattner86e22112010-01-22 07:29:22 +000066 MCAsmStreamer(MCContext &Context, formatted_raw_ostream &os,
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +000067 bool isVerboseAsm, bool useLoc, bool useCFI,
Nick Lewycky44d798d2011-10-17 23:05:28 +000068 bool useDwarfDirectory,
Daniel Dunbar745dacc2010-12-16 03:05:59 +000069 MCInstPrinter *printer, MCCodeEmitter *emitter,
Evan Cheng78c10ee2011-07-25 23:24:55 +000070 MCAsmBackend *asmbackend,
Daniel Dunbar745dacc2010-12-16 03:05:59 +000071 bool showInst)
Chris Lattnerfdab14b2010-03-12 18:28:53 +000072 : MCStreamer(Context), OS(os), MAI(Context.getAsmInfo()),
Daniel Dunbar745dacc2010-12-16 03:05:59 +000073 InstPrinter(printer), Emitter(emitter), AsmBackend(asmbackend),
74 CommentStream(CommentToEmit), IsVerboseAsm(isVerboseAsm),
Nick Lewycky44d798d2011-10-17 23:05:28 +000075 ShowInst(showInst), UseLoc(useLoc), UseCFI(useCFI),
76 UseDwarfDirectory(useDwarfDirectory) {
Chris Lattner5d672cf2010-02-10 00:10:18 +000077 if (InstPrinter && IsVerboseAsm)
78 InstPrinter->setCommentStream(CommentStream);
79 }
Chris Lattner46a947d2009-08-17 04:17:34 +000080 ~MCAsmStreamer() {}
Daniel Dunbara11af532009-06-24 01:03:06 +000081
Chris Lattner86e22112010-01-22 07:29:22 +000082 inline void EmitEOL() {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000083 // If we don't have any comments, just emit a \n.
84 if (!IsVerboseAsm) {
Chris Lattner86e22112010-01-22 07:29:22 +000085 OS << '\n';
86 return;
87 }
88 EmitCommentsAndEOL();
89 }
90 void EmitCommentsAndEOL();
Chris Lattner56591ab2010-02-02 23:37:42 +000091
92 /// isVerboseAsm - Return true if this streamer supports verbose assembly at
93 /// all.
94 virtual bool isVerboseAsm() const { return IsVerboseAsm; }
Jim Grosbach00545e12010-09-22 18:16:55 +000095
Chris Lattner91bead72010-04-03 21:35:55 +000096 /// hasRawTextSupport - We support EmitRawText.
97 virtual bool hasRawTextSupport() const { return true; }
Daniel Dunbar6b716532010-02-09 23:00:14 +000098
Chris Lattnerd32c7cf2010-01-22 18:21:35 +000099 /// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner86e22112010-01-22 07:29:22 +0000100 /// file if applicable as a QoI issue to make the output of the compiler
101 /// more readable. This only affects the MCAsmStreamer, and only when
102 /// verbose assembly output is enabled.
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000103 virtual void AddComment(const Twine &T);
Daniel Dunbar6b716532010-02-09 23:00:14 +0000104
105 /// AddEncodingComment - Add a comment showing the encoding of an instruction.
106 virtual void AddEncodingComment(const MCInst &Inst);
107
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000108 /// GetCommentOS - Return a raw_ostream that comments can be written to.
109 /// Unlike AddComment, you are required to terminate comments with \n if you
110 /// use this method.
111 virtual raw_ostream &GetCommentOS() {
112 if (!IsVerboseAsm)
113 return nulls(); // Discard comments unless in verbose asm mode.
114 return CommentStream;
115 }
Daniel Dunbar6b716532010-02-09 23:00:14 +0000116
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000117 /// AddBlankLine - Emit a blank line to a .s file to pretty it up.
118 virtual void AddBlankLine() {
119 EmitEOL();
120 }
Daniel Dunbar6b716532010-02-09 23:00:14 +0000121
Chris Lattner46a947d2009-08-17 04:17:34 +0000122 /// @name MCStreamer Interface
123 /// @{
Daniel Dunbara11af532009-06-24 01:03:06 +0000124
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000125 virtual void ChangeSection(const MCSection *Section);
Daniel Dunbara11af532009-06-24 01:03:06 +0000126
Rafael Espindolad80781b2010-09-15 21:48:40 +0000127 virtual void InitSections() {
128 // FIXME, this is MachO specific, but the testsuite
129 // expects this.
130 SwitchSection(getContext().getMachOSection("__TEXT", "__text",
131 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
132 0, SectionKind::getText()));
133 }
134
Chris Lattner46a947d2009-08-17 04:17:34 +0000135 virtual void EmitLabel(MCSymbol *Symbol);
Rafael Espindola277abc82011-04-30 16:34:57 +0000136 virtual void EmitEHSymAttributes(const MCSymbol *Symbol,
137 MCSymbol *EHSymbol);
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000138 virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
Jim Grosbachce792992010-11-05 22:08:08 +0000139 virtual void EmitThumbFunc(MCSymbol *Func);
Daniel Dunbara11af532009-06-24 01:03:06 +0000140
Daniel Dunbar821e3332009-08-31 08:09:28 +0000141 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
Rafael Espindola484291c2010-11-01 14:28:48 +0000142 virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
Rafael Espindola32a006e2010-12-03 00:55:40 +0000143 virtual void EmitDwarfAdvanceLineAddr(int64_t LineDelta,
144 const MCSymbol *LastLabel,
Evan Cheng672b93a2011-07-14 05:43:07 +0000145 const MCSymbol *Label,
146 unsigned PointerSize);
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000147 virtual void EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
148 const MCSymbol *Label);
Daniel Dunbara11af532009-06-24 01:03:06 +0000149
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000150 virtual void EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
Kevin Enderbya5c78322009-07-13 21:03:15 +0000151
Chris Lattner46a947d2009-08-17 04:17:34 +0000152 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
Chris Lattnerb54b9dd2010-05-08 19:54:22 +0000153 virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol);
154 virtual void EmitCOFFSymbolStorageClass(int StorageClass);
155 virtual void EmitCOFFSymbolType(int Type);
156 virtual void EndCOFFSymbolDef();
Rafael Espindola8f7d12c2011-12-17 01:14:52 +0000157 virtual void EmitCOFFSecRel32(MCSymbol const *Symbol);
Chris Lattner99328ad2010-01-25 07:52:13 +0000158 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
Chris Lattner9eb158d2010-01-23 07:47:02 +0000159 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000160 unsigned ByteAlignment);
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000161
Chris Lattner9eb158d2010-01-23 07:47:02 +0000162 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
163 ///
164 /// @param Symbol - The common symbol to emit.
165 /// @param Size - The size of the common symbol.
Benjamin Kramer36a16012011-09-01 23:04:27 +0000166 /// @param Size - The alignment of the common symbol in bytes.
167 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
168 unsigned ByteAlignment);
Jim Grosbach00545e12010-09-22 18:16:55 +0000169
Daniel Dunbar8751b942009-08-28 05:48:22 +0000170 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000171 unsigned Size = 0, unsigned ByteAlignment = 0);
Kevin Enderby71148242009-07-14 21:35:03 +0000172
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000173 virtual void EmitTBSSSymbol (const MCSection *Section, MCSymbol *Symbol,
174 uint64_t Size, unsigned ByteAlignment = 0);
Jim Grosbach00545e12010-09-22 18:16:55 +0000175
Chris Lattneraaec2052010-01-19 19:46:13 +0000176 virtual void EmitBytes(StringRef Data, unsigned AddrSpace);
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000177
Rafael Espindola89b93722010-12-10 07:39:47 +0000178 virtual void EmitValueImpl(const MCExpr *Value, unsigned Size,
Rafael Espindoladebd7e42011-05-01 03:50:49 +0000179 unsigned AddrSpace);
Rafael Espindola2df042c2010-12-03 02:54:21 +0000180 virtual void EmitIntValue(uint64_t Value, unsigned Size,
181 unsigned AddrSpace = 0);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000182
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000183 virtual void EmitULEB128Value(const MCExpr *Value);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000184
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000185 virtual void EmitSLEB128Value(const MCExpr *Value);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000186
Chris Lattner718fb592010-01-25 21:28:50 +0000187 virtual void EmitGPRel32Value(const MCExpr *Value);
Jim Grosbach00545e12010-09-22 18:16:55 +0000188
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000189
Chris Lattneraaec2052010-01-19 19:46:13 +0000190 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue,
191 unsigned AddrSpace);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000192
Chris Lattner46a947d2009-08-17 04:17:34 +0000193 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
194 unsigned ValueSize = 1,
195 unsigned MaxBytesToEmit = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000196
Kevin Enderby6e720482010-02-23 18:26:34 +0000197 virtual void EmitCodeAlignment(unsigned ByteAlignment,
198 unsigned MaxBytesToEmit = 0);
199
Daniel Dunbar821e3332009-08-31 08:09:28 +0000200 virtual void EmitValueToOffset(const MCExpr *Offset,
Chris Lattner46a947d2009-08-17 04:17:34 +0000201 unsigned char Value = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000202
Chris Lattnera6594fc2010-01-25 18:58:59 +0000203 virtual void EmitFileDirective(StringRef Filename);
Nick Lewycky44d798d2011-10-17 23:05:28 +0000204 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
205 StringRef Filename);
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000206 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
207 unsigned Column, unsigned Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +0000208 unsigned Isa, unsigned Discriminator,
209 StringRef FileName);
Chris Lattnera6594fc2010-01-25 18:58:59 +0000210
Rafael Espindola713c4bf2011-05-10 13:39:48 +0000211 virtual void EmitCFISections(bool EH, bool Debug);
Rafael Espindola066c2f42011-04-12 23:59:07 +0000212 virtual void EmitCFIStartProc();
213 virtual void EmitCFIEndProc();
214 virtual void EmitCFIDefCfa(int64_t Register, int64_t Offset);
215 virtual void EmitCFIDefCfaOffset(int64_t Offset);
216 virtual void EmitCFIDefCfaRegister(int64_t Register);
217 virtual void EmitCFIOffset(int64_t Register, int64_t Offset);
218 virtual void EmitCFIPersonality(const MCSymbol *Sym, unsigned Encoding);
219 virtual void EmitCFILsda(const MCSymbol *Sym, unsigned Encoding);
220 virtual void EmitCFIRememberState();
221 virtual void EmitCFIRestoreState();
222 virtual void EmitCFISameValue(int64_t Register);
223 virtual void EmitCFIRelOffset(int64_t Register, int64_t Offset);
224 virtual void EmitCFIAdjustCfaOffset(int64_t Adjustment);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000225
Charles Davisfbc539f2011-05-22 21:12:15 +0000226 virtual void EmitWin64EHStartProc(const MCSymbol *Symbol);
Charles Davis0e30f022011-05-18 04:58:05 +0000227 virtual void EmitWin64EHEndProc();
Charles Davisf0709012011-05-18 20:54:10 +0000228 virtual void EmitWin64EHStartChained();
229 virtual void EmitWin64EHEndChained();
Charles Davis440596f2011-05-19 17:46:39 +0000230 virtual void EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
231 bool Except);
232 virtual void EmitWin64EHHandlerData();
Charles Davisc3b16282011-05-19 19:35:55 +0000233 virtual void EmitWin64EHPushReg(unsigned Register);
234 virtual void EmitWin64EHSetFrame(unsigned Register, unsigned Offset);
235 virtual void EmitWin64EHAllocStack(unsigned Size);
236 virtual void EmitWin64EHSaveReg(unsigned Register, unsigned Offset);
237 virtual void EmitWin64EHSaveXMM(unsigned Register, unsigned Offset);
Charles Davis0e30f022011-05-18 04:58:05 +0000238 virtual void EmitWin64EHPushFrame(bool Code);
239 virtual void EmitWin64EHEndProlog();
240
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000241 virtual void EmitFnStart();
242 virtual void EmitFnEnd();
243 virtual void EmitCantUnwind();
244 virtual void EmitPersonality(const MCSymbol *Personality);
245 virtual void EmitHandlerData();
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000246 virtual void EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset = 0);
247 virtual void EmitPad(int64_t Offset);
248 virtual void EmitRegSave(const SmallVectorImpl<unsigned> &RegList, bool);
249
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000250
Chris Lattnera6594fc2010-01-25 18:58:59 +0000251 virtual void EmitInstruction(const MCInst &Inst);
Jim Grosbach00545e12010-09-22 18:16:55 +0000252
Jim Grosbachbd4ec842010-09-22 18:18:30 +0000253 /// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +0000254 /// the specified string in the output .s file. This capability is
255 /// indicated by the hasRawTextSupport() predicate.
256 virtual void EmitRawText(StringRef String);
Jim Grosbach00545e12010-09-22 18:16:55 +0000257
Rafael Espindola99b42372012-01-07 03:13:18 +0000258 virtual void FinishImpl();
Jim Grosbach00545e12010-09-22 18:16:55 +0000259
Chris Lattner46a947d2009-08-17 04:17:34 +0000260 /// @}
261};
Daniel Dunbar84a29262009-06-24 19:25:34 +0000262
Chris Lattner46a947d2009-08-17 04:17:34 +0000263} // end anonymous namespace.
Daniel Dunbara11af532009-06-24 01:03:06 +0000264
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000265/// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner86e22112010-01-22 07:29:22 +0000266/// file if applicable as a QoI issue to make the output of the compiler
267/// more readable. This only affects the MCAsmStreamer, and only when
268/// verbose assembly output is enabled.
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000269void MCAsmStreamer::AddComment(const Twine &T) {
Chris Lattner86e22112010-01-22 07:29:22 +0000270 if (!IsVerboseAsm) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000271
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000272 // Make sure that CommentStream is flushed.
273 CommentStream.flush();
Jim Grosbach00545e12010-09-22 18:16:55 +0000274
Chris Lattner86e22112010-01-22 07:29:22 +0000275 T.toVector(CommentToEmit);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000276 // Each comment goes on its own line.
277 CommentToEmit.push_back('\n');
Jim Grosbach00545e12010-09-22 18:16:55 +0000278
Chris Lattner14ca1772010-01-22 21:16:10 +0000279 // Tell the comment stream that the vector changed underneath it.
280 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000281}
282
283void MCAsmStreamer::EmitCommentsAndEOL() {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000284 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) {
285 OS << '\n';
286 return;
287 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000288
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000289 CommentStream.flush();
Chris Lattner86e22112010-01-22 07:29:22 +0000290 StringRef Comments = CommentToEmit.str();
Jim Grosbach00545e12010-09-22 18:16:55 +0000291
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000292 assert(Comments.back() == '\n' &&
293 "Comment array not newline terminated");
294 do {
Chris Lattner86e22112010-01-22 07:29:22 +0000295 // Emit a line of comments.
296 OS.PadToColumn(MAI.getCommentColumn());
297 size_t Position = Comments.find('\n');
298 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
Jim Grosbach00545e12010-09-22 18:16:55 +0000299
Chris Lattner86e22112010-01-22 07:29:22 +0000300 Comments = Comments.substr(Position+1);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000301 } while (!Comments.empty());
Jim Grosbach00545e12010-09-22 18:16:55 +0000302
Chris Lattner14ca1772010-01-22 21:16:10 +0000303 CommentToEmit.clear();
304 // Tell the comment stream that the vector changed underneath it.
305 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000306}
307
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000308static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
309 assert(Bytes && "Invalid size!");
310 return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
311}
312
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000313void MCAsmStreamer::ChangeSection(const MCSection *Section) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000314 assert(Section && "Cannot switch to a null section!");
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000315 Section->PrintSwitchToSection(MAI, OS);
Daniel Dunbara11af532009-06-24 01:03:06 +0000316}
317
Rafael Espindola277abc82011-04-30 16:34:57 +0000318void MCAsmStreamer::EmitEHSymAttributes(const MCSymbol *Symbol,
319 MCSymbol *EHSymbol) {
320 if (UseCFI)
321 return;
322
323 unsigned Flags = FlagMap.lookup(Symbol);
324
325 if (Flags & EHGlobal)
326 EmitSymbolAttribute(EHSymbol, MCSA_Global);
327 if (Flags & EHWeakDefinition)
328 EmitSymbolAttribute(EHSymbol, MCSA_WeakDefinition);
329 if (Flags & EHPrivateExtern)
330 EmitSymbolAttribute(EHSymbol, MCSA_PrivateExtern);
331}
332
Daniel Dunbara11af532009-06-24 01:03:06 +0000333void MCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
Daniel Dunbar8906ff12009-08-22 07:22:36 +0000334 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Rafael Espindolaed708f92011-04-27 15:21:19 +0000335 MCStreamer::EmitLabel(Symbol);
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000336
Chris Lattnere07b75e2010-09-22 22:19:53 +0000337 OS << *Symbol << MAI.getLabelSuffix();
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000338 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000339}
340
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000341void MCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
Kevin Enderbyf96db462009-07-16 17:56:39 +0000342 switch (Flag) {
Daniel Dunbar011e4db2009-08-13 23:36:34 +0000343 default: assert(0 && "Invalid flag!");
Jason W Kimafd1cc22010-09-30 02:45:56 +0000344 case MCAF_SyntaxUnified: OS << "\t.syntax unified"; break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000345 case MCAF_SubsectionsViaSymbols: OS << ".subsections_via_symbols"; break;
Evan Chengbd27f5a2011-07-27 00:38:12 +0000346 case MCAF_Code16: OS << '\t'<< MAI.getCode16Directive(); break;
347 case MCAF_Code32: OS << '\t'<< MAI.getCode32Directive(); break;
348 case MCAF_Code64: OS << '\t'<< MAI.getCode64Directive(); break;
Kevin Enderbyf96db462009-07-16 17:56:39 +0000349 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000350 EmitEOL();
Kevin Enderbya5c78322009-07-13 21:03:15 +0000351}
352
Jim Grosbachce792992010-11-05 22:08:08 +0000353void MCAsmStreamer::EmitThumbFunc(MCSymbol *Func) {
354 // This needs to emit to a temporary string to get properly quoted
355 // MCSymbols when they have spaces in them.
356 OS << "\t.thumb_func";
Rafael Espindola64695402011-05-16 16:17:21 +0000357 // Only Mach-O hasSubsectionsViaSymbols()
358 if (MAI.hasSubsectionsViaSymbols())
Jim Grosbachce792992010-11-05 22:08:08 +0000359 OS << '\t' << *Func;
360 EmitEOL();
361}
362
Daniel Dunbar821e3332009-08-31 08:09:28 +0000363void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000364 OS << *Symbol << " = " << *Value;
365 EmitEOL();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000366
367 // FIXME: Lift context changes into super class.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000368 Symbol->setVariableValue(Value);
Daniel Dunbara11af532009-06-24 01:03:06 +0000369}
370
Rafael Espindola484291c2010-11-01 14:28:48 +0000371void MCAsmStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
372 OS << ".weakref " << *Alias << ", " << *Symbol;
373 EmitEOL();
374}
375
Rafael Espindola32a006e2010-12-03 00:55:40 +0000376void MCAsmStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
377 const MCSymbol *LastLabel,
Evan Cheng672b93a2011-07-14 05:43:07 +0000378 const MCSymbol *Label,
379 unsigned PointerSize) {
380 EmitDwarfSetLineAddr(LineDelta, Label, PointerSize);
Rafael Espindola32a006e2010-12-03 00:55:40 +0000381}
382
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000383void MCAsmStreamer::EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
384 const MCSymbol *Label) {
385 EmitIntValue(dwarf::DW_CFA_advance_loc4, 1);
386 const MCExpr *AddrDelta = BuildSymbolDiff(getContext(), Label, LastLabel);
Rafael Espindolaa6f26782011-05-19 21:40:34 +0000387 AddrDelta = ForceExpAbs(AddrDelta);
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000388 EmitValue(AddrDelta, 4);
389}
390
391
Daniel Dunbarfffff912009-10-16 01:34:54 +0000392void MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000393 MCSymbolAttr Attribute) {
Daniel Dunbara11af532009-06-24 01:03:06 +0000394 switch (Attribute) {
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000395 case MCSA_Invalid: assert(0 && "Invalid symbol attribute");
Chris Lattnered0ab152010-01-25 18:30:45 +0000396 case MCSA_ELF_TypeFunction: /// .type _foo, STT_FUNC # aka @function
397 case MCSA_ELF_TypeIndFunction: /// .type _foo, STT_GNU_IFUNC
398 case MCSA_ELF_TypeObject: /// .type _foo, STT_OBJECT # aka @object
399 case MCSA_ELF_TypeTLS: /// .type _foo, STT_TLS # aka @tls_object
400 case MCSA_ELF_TypeCommon: /// .type _foo, STT_COMMON # aka @common
401 case MCSA_ELF_TypeNoType: /// .type _foo, STT_NOTYPE # aka @notype
Rafael Espindolae9c0ff22010-11-13 04:55:06 +0000402 case MCSA_ELF_TypeGnuUniqueObject: /// .type _foo, @gnu_unique_object
Chris Lattnered0ab152010-01-25 18:30:45 +0000403 assert(MAI.hasDotTypeDotSizeDirective() && "Symbol Attr not supported");
Dan Gohman523d70e2010-02-04 01:42:13 +0000404 OS << "\t.type\t" << *Symbol << ','
Chris Lattnered0ab152010-01-25 18:30:45 +0000405 << ((MAI.getCommentString()[0] != '@') ? '@' : '%');
406 switch (Attribute) {
407 default: assert(0 && "Unknown ELF .type");
408 case MCSA_ELF_TypeFunction: OS << "function"; break;
409 case MCSA_ELF_TypeIndFunction: OS << "gnu_indirect_function"; break;
410 case MCSA_ELF_TypeObject: OS << "object"; break;
411 case MCSA_ELF_TypeTLS: OS << "tls_object"; break;
412 case MCSA_ELF_TypeCommon: OS << "common"; break;
413 case MCSA_ELF_TypeNoType: OS << "no_type"; break;
Rafael Espindolae9c0ff22010-11-13 04:55:06 +0000414 case MCSA_ELF_TypeGnuUniqueObject: OS << "gnu_unique_object"; break;
Chris Lattnered0ab152010-01-25 18:30:45 +0000415 }
416 EmitEOL();
417 return;
418 case MCSA_Global: // .globl/.global
419 OS << MAI.getGlobalDirective();
Rafael Espindola277abc82011-04-30 16:34:57 +0000420 FlagMap[Symbol] |= EHGlobal;
Chris Lattnered0ab152010-01-25 18:30:45 +0000421 break;
Chris Lattner61abd7b2010-06-21 20:35:01 +0000422 case MCSA_Hidden: OS << "\t.hidden\t"; break;
423 case MCSA_IndirectSymbol: OS << "\t.indirect_symbol\t"; break;
424 case MCSA_Internal: OS << "\t.internal\t"; break;
425 case MCSA_LazyReference: OS << "\t.lazy_reference\t"; break;
426 case MCSA_Local: OS << "\t.local\t"; break;
427 case MCSA_NoDeadStrip: OS << "\t.no_dead_strip\t"; break;
Kevin Enderbye8e98d72010-11-19 18:39:33 +0000428 case MCSA_SymbolResolver: OS << "\t.symbol_resolver\t"; break;
Rafael Espindola277abc82011-04-30 16:34:57 +0000429 case MCSA_PrivateExtern:
430 OS << "\t.private_extern\t";
431 FlagMap[Symbol] |= EHPrivateExtern;
432 break;
Chris Lattner61abd7b2010-06-21 20:35:01 +0000433 case MCSA_Protected: OS << "\t.protected\t"; break;
434 case MCSA_Reference: OS << "\t.reference\t"; break;
435 case MCSA_Weak: OS << "\t.weak\t"; break;
Rafael Espindola277abc82011-04-30 16:34:57 +0000436 case MCSA_WeakDefinition:
437 OS << "\t.weak_definition\t";
438 FlagMap[Symbol] |= EHWeakDefinition;
439 break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000440 // .weak_reference
441 case MCSA_WeakReference: OS << MAI.getWeakRefDirective(); break;
Kevin Enderbyf59cac52010-07-08 17:22:42 +0000442 case MCSA_WeakDefAutoPrivate: OS << "\t.weak_def_can_be_hidden\t"; break;
Daniel Dunbara11af532009-06-24 01:03:06 +0000443 }
444
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000445 OS << *Symbol;
446 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000447}
448
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000449void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000450 OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
451 EmitEOL();
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000452}
453
Chris Lattnerb54b9dd2010-05-08 19:54:22 +0000454void MCAsmStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {
455 OS << "\t.def\t " << *Symbol << ';';
456 EmitEOL();
457}
458
459void MCAsmStreamer::EmitCOFFSymbolStorageClass (int StorageClass) {
460 OS << "\t.scl\t" << StorageClass << ';';
461 EmitEOL();
462}
463
464void MCAsmStreamer::EmitCOFFSymbolType (int Type) {
465 OS << "\t.type\t" << Type << ';';
466 EmitEOL();
467}
468
469void MCAsmStreamer::EndCOFFSymbolDef() {
470 OS << "\t.endef";
471 EmitEOL();
472}
473
Rafael Espindola8f7d12c2011-12-17 01:14:52 +0000474void MCAsmStreamer::EmitCOFFSecRel32(MCSymbol const *Symbol) {
475 OS << "\t.secrel32\t" << *Symbol << '\n';
476 EmitEOL();
477}
478
Chris Lattner99328ad2010-01-25 07:52:13 +0000479void MCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
480 assert(MAI.hasDotTypeDotSizeDirective());
481 OS << "\t.size\t" << *Symbol << ", " << *Value << '\n';
482}
483
Chris Lattner9eb158d2010-01-23 07:47:02 +0000484void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000485 unsigned ByteAlignment) {
Chris Lattner9eb158d2010-01-23 07:47:02 +0000486 OS << "\t.comm\t" << *Symbol << ',' << Size;
Chris Lattner6559d762010-01-25 07:29:13 +0000487 if (ByteAlignment != 0) {
Rafael Espindola2e2563b2010-01-26 20:21:43 +0000488 if (MAI.getCOMMDirectiveAlignmentIsInBytes())
Chris Lattner4ed54382010-01-19 06:01:04 +0000489 OS << ',' << ByteAlignment;
490 else
491 OS << ',' << Log2_32(ByteAlignment);
492 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000493 EmitEOL();
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000494}
495
Chris Lattner9eb158d2010-01-23 07:47:02 +0000496/// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
497///
498/// @param Symbol - The common symbol to emit.
499/// @param Size - The size of the common symbol.
Benjamin Kramer36a16012011-09-01 23:04:27 +0000500void MCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
501 unsigned ByteAlign) {
502 assert(MAI.getLCOMMDirectiveType() != LCOMM::None &&
503 "Doesn't have .lcomm, can't emit it!");
Chris Lattner9eb158d2010-01-23 07:47:02 +0000504 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
Benjamin Kramer36a16012011-09-01 23:04:27 +0000505 if (ByteAlign > 1) {
506 assert(MAI.getLCOMMDirectiveType() == LCOMM::ByteAlignment &&
507 "Alignment not supported on .lcomm!");
508 OS << ',' << ByteAlign;
509 }
Chris Lattner9eb158d2010-01-23 07:47:02 +0000510 EmitEOL();
511}
512
Daniel Dunbar8751b942009-08-28 05:48:22 +0000513void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000514 unsigned Size, unsigned ByteAlignment) {
Daniel Dunbar011e4db2009-08-13 23:36:34 +0000515 // Note: a .zerofill directive does not switch sections.
Chris Lattner93b6db32009-08-08 23:39:42 +0000516 OS << ".zerofill ";
Jim Grosbach00545e12010-09-22 18:16:55 +0000517
Chris Lattner93b6db32009-08-08 23:39:42 +0000518 // This is a mach-o specific directive.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000519 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
Daniel Dunbar12de0df2009-08-14 18:51:45 +0000520 OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
Jim Grosbach00545e12010-09-22 18:16:55 +0000521
Chris Lattner9be3fee2009-07-10 22:20:30 +0000522 if (Symbol != NULL) {
Chris Lattner10b318b2010-01-17 21:43:43 +0000523 OS << ',' << *Symbol << ',' << Size;
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000524 if (ByteAlignment != 0)
525 OS << ',' << Log2_32(ByteAlignment);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000526 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000527 EmitEOL();
Chris Lattner9be3fee2009-07-10 22:20:30 +0000528}
529
Eric Christopherd04d98d2010-05-17 02:13:02 +0000530// .tbss sym, size, align
531// This depends that the symbol has already been mangled from the original,
532// e.g. _a.
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000533void MCAsmStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
534 uint64_t Size, unsigned ByteAlignment) {
Eric Christopher482eba02010-05-14 01:50:28 +0000535 assert(Symbol != NULL && "Symbol shouldn't be NULL!");
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000536 // Instead of using the Section we'll just use the shortcut.
537 // This is a mach-o specific directive and section.
Eric Christopherd04d98d2010-05-17 02:13:02 +0000538 OS << ".tbss " << *Symbol << ", " << Size;
Jim Grosbach00545e12010-09-22 18:16:55 +0000539
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000540 // Output align if we have it. We default to 1 so don't bother printing
541 // that.
542 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
Jim Grosbach00545e12010-09-22 18:16:55 +0000543
Eric Christopher482eba02010-05-14 01:50:28 +0000544 EmitEOL();
545}
546
Chris Lattner12e555c2010-01-23 00:15:00 +0000547static inline char toOctal(int X) { return (X&7)+'0'; }
548
Chris Lattnera6594fc2010-01-25 18:58:59 +0000549static void PrintQuotedString(StringRef Data, raw_ostream &OS) {
550 OS << '"';
Jim Grosbach00545e12010-09-22 18:16:55 +0000551
Chris Lattnera6594fc2010-01-25 18:58:59 +0000552 for (unsigned i = 0, e = Data.size(); i != e; ++i) {
553 unsigned char C = Data[i];
554 if (C == '"' || C == '\\') {
555 OS << '\\' << (char)C;
556 continue;
557 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000558
Chris Lattnera6594fc2010-01-25 18:58:59 +0000559 if (isprint((unsigned char)C)) {
560 OS << (char)C;
561 continue;
562 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000563
Chris Lattnera6594fc2010-01-25 18:58:59 +0000564 switch (C) {
565 case '\b': OS << "\\b"; break;
566 case '\f': OS << "\\f"; break;
567 case '\n': OS << "\\n"; break;
568 case '\r': OS << "\\r"; break;
569 case '\t': OS << "\\t"; break;
570 default:
571 OS << '\\';
572 OS << toOctal(C >> 6);
573 OS << toOctal(C >> 3);
574 OS << toOctal(C >> 0);
575 break;
576 }
577 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000578
Chris Lattnera6594fc2010-01-25 18:58:59 +0000579 OS << '"';
580}
581
582
Chris Lattneraaec2052010-01-19 19:46:13 +0000583void MCAsmStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000584 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Chris Lattner12e555c2010-01-23 00:15:00 +0000585 if (Data.empty()) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000586
Chris Lattner12e555c2010-01-23 00:15:00 +0000587 if (Data.size() == 1) {
588 OS << MAI.getData8bitsDirective(AddrSpace);
589 OS << (unsigned)(unsigned char)Data[0];
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000590 EmitEOL();
Chris Lattner12e555c2010-01-23 00:15:00 +0000591 return;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000592 }
Chris Lattner12e555c2010-01-23 00:15:00 +0000593
594 // If the data ends with 0 and the target supports .asciz, use it, otherwise
595 // use .ascii
596 if (MAI.getAscizDirective() && Data.back() == 0) {
597 OS << MAI.getAscizDirective();
598 Data = Data.substr(0, Data.size()-1);
599 } else {
600 OS << MAI.getAsciiDirective();
601 }
602
Chris Lattnera6594fc2010-01-25 18:58:59 +0000603 OS << ' ';
604 PrintQuotedString(Data, OS);
Chris Lattner12e555c2010-01-23 00:15:00 +0000605 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000606}
607
Rafael Espindola2df042c2010-12-03 02:54:21 +0000608void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size,
609 unsigned AddrSpace) {
610 EmitValue(MCConstantExpr::Create(Value, getContext()), Size, AddrSpace);
611}
612
Rafael Espindola89b93722010-12-10 07:39:47 +0000613void MCAsmStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size,
Rafael Espindoladebd7e42011-05-01 03:50:49 +0000614 unsigned AddrSpace) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000615 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000616 const char *Directive = 0;
617 switch (Size) {
618 default: break;
619 case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
620 case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
621 case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000622 case 8:
623 Directive = MAI.getData64bitsDirective(AddrSpace);
624 // If the target doesn't support 64-bit data, emit as two 32-bit halves.
625 if (Directive) break;
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000626 int64_t IntValue;
627 if (!Value->EvaluateAsAbsolute(IntValue))
628 report_fatal_error("Don't know how to emit this value.");
Evan Cheng1be0e272011-07-15 02:09:41 +0000629 if (getContext().getAsmInfo().isLittleEndian()) {
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000630 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
631 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000632 } else {
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000633 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
634 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000635 }
636 return;
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000637 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000638
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000639 assert(Directive && "Invalid size for machine code value!");
Chris Lattner718fb592010-01-25 21:28:50 +0000640 OS << Directive << *Value;
Chris Lattner86e22112010-01-22 07:29:22 +0000641 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000642}
643
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000644void MCAsmStreamer::EmitULEB128Value(const MCExpr *Value) {
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000645 int64_t IntValue;
646 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000647 EmitULEB128IntValue(IntValue);
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000648 return;
649 }
Rafael Espindola73873452010-11-04 18:17:08 +0000650 assert(MAI.hasLEB128() && "Cannot print a .uleb");
651 OS << ".uleb128 " << *Value;
Rafael Espindola3ff57092010-11-02 17:22:24 +0000652 EmitEOL();
653}
654
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000655void MCAsmStreamer::EmitSLEB128Value(const MCExpr *Value) {
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000656 int64_t IntValue;
657 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000658 EmitSLEB128IntValue(IntValue);
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000659 return;
660 }
Rafael Espindola73873452010-11-04 18:17:08 +0000661 assert(MAI.hasLEB128() && "Cannot print a .sleb");
662 OS << ".sleb128 " << *Value;
Rafael Espindola3ff57092010-11-02 17:22:24 +0000663 EmitEOL();
664}
665
Chris Lattner718fb592010-01-25 21:28:50 +0000666void MCAsmStreamer::EmitGPRel32Value(const MCExpr *Value) {
667 assert(MAI.getGPRel32Directive() != 0);
668 OS << MAI.getGPRel32Directive() << *Value;
669 EmitEOL();
670}
671
672
Chris Lattner6113b3d2010-01-19 18:52:28 +0000673/// EmitFill - Emit NumBytes bytes worth of the value specified by
674/// FillValue. This implements directives such as '.space'.
Chris Lattneraaec2052010-01-19 19:46:13 +0000675void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
676 unsigned AddrSpace) {
Chris Lattner8a6d7ac2010-01-19 18:58:52 +0000677 if (NumBytes == 0) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000678
Chris Lattneraaec2052010-01-19 19:46:13 +0000679 if (AddrSpace == 0)
680 if (const char *ZeroDirective = MAI.getZeroDirective()) {
681 OS << ZeroDirective << NumBytes;
682 if (FillValue != 0)
683 OS << ',' << (int)FillValue;
Chris Lattner86e22112010-01-22 07:29:22 +0000684 EmitEOL();
Chris Lattneraaec2052010-01-19 19:46:13 +0000685 return;
686 }
687
688 // Emit a byte at a time.
689 MCStreamer::EmitFill(NumBytes, FillValue, AddrSpace);
Chris Lattner6113b3d2010-01-19 18:52:28 +0000690}
691
Daniel Dunbar84a29262009-06-24 19:25:34 +0000692void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
693 unsigned ValueSize,
694 unsigned MaxBytesToEmit) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000695 // Some assemblers don't support non-power of two alignments, so we always
696 // emit alignments as a power of two if possible.
697 if (isPowerOf2_32(ByteAlignment)) {
Chris Lattner6e579c62009-08-19 06:35:36 +0000698 switch (ValueSize) {
699 default: llvm_unreachable("Invalid size for machine code value!");
Chris Lattner33adcfb2009-08-22 21:43:10 +0000700 case 1: OS << MAI.getAlignDirective(); break;
701 // FIXME: use MAI for this!
Chris Lattner6e579c62009-08-19 06:35:36 +0000702 case 2: OS << ".p2alignw "; break;
703 case 4: OS << ".p2alignl "; break;
704 case 8: llvm_unreachable("Unsupported alignment size!");
705 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000706
Chris Lattner33adcfb2009-08-22 21:43:10 +0000707 if (MAI.getAlignmentIsInBytes())
Chris Lattner663c2d22009-08-19 06:12:02 +0000708 OS << ByteAlignment;
709 else
710 OS << Log2_32(ByteAlignment);
Daniel Dunbar84a29262009-06-24 19:25:34 +0000711
Chris Lattner663c2d22009-08-19 06:12:02 +0000712 if (Value || MaxBytesToEmit) {
Chris Lattner579531c2009-09-03 04:01:10 +0000713 OS << ", 0x";
714 OS.write_hex(truncateToSize(Value, ValueSize));
Chris Lattner663c2d22009-08-19 06:12:02 +0000715
Jim Grosbach00545e12010-09-22 18:16:55 +0000716 if (MaxBytesToEmit)
Chris Lattner663c2d22009-08-19 06:12:02 +0000717 OS << ", " << MaxBytesToEmit;
718 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000719 EmitEOL();
Chris Lattner663c2d22009-08-19 06:12:02 +0000720 return;
721 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000722
Chris Lattner663c2d22009-08-19 06:12:02 +0000723 // Non-power of two alignment. This is not widely supported by assemblers.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000724 // FIXME: Parameterize this based on MAI.
Daniel Dunbar84a29262009-06-24 19:25:34 +0000725 switch (ValueSize) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000726 default: llvm_unreachable("Invalid size for machine code value!");
727 case 1: OS << ".balign"; break;
728 case 2: OS << ".balignw"; break;
729 case 4: OS << ".balignl"; break;
730 case 8: llvm_unreachable("Unsupported alignment size!");
Daniel Dunbar84a29262009-06-24 19:25:34 +0000731 }
732
Chris Lattner663c2d22009-08-19 06:12:02 +0000733 OS << ' ' << ByteAlignment;
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000734 OS << ", " << truncateToSize(Value, ValueSize);
Jim Grosbach00545e12010-09-22 18:16:55 +0000735 if (MaxBytesToEmit)
Daniel Dunbar84a29262009-06-24 19:25:34 +0000736 OS << ", " << MaxBytesToEmit;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000737 EmitEOL();
Daniel Dunbar84a29262009-06-24 19:25:34 +0000738}
739
Kevin Enderby6e720482010-02-23 18:26:34 +0000740void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
741 unsigned MaxBytesToEmit) {
Chris Lattnerec167fd2010-02-23 18:44:31 +0000742 // Emit with a text fill value.
743 EmitValueToAlignment(ByteAlignment, MAI.getTextAlignFillValue(),
744 1, MaxBytesToEmit);
Kevin Enderby6e720482010-02-23 18:26:34 +0000745}
746
Daniel Dunbar821e3332009-08-31 08:09:28 +0000747void MCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbar84a29262009-06-24 19:25:34 +0000748 unsigned char Value) {
749 // FIXME: Verify that Offset is associated with the current section.
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000750 OS << ".org " << *Offset << ", " << (unsigned) Value;
751 EmitEOL();
Daniel Dunbar84a29262009-06-24 19:25:34 +0000752}
753
Chris Lattnera6594fc2010-01-25 18:58:59 +0000754
755void MCAsmStreamer::EmitFileDirective(StringRef Filename) {
756 assert(MAI.hasSingleParameterDotFile());
757 OS << "\t.file\t";
758 PrintQuotedString(Filename, OS);
759 EmitEOL();
760}
761
Nick Lewycky44d798d2011-10-17 23:05:28 +0000762bool MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
763 StringRef Filename) {
764 if (!UseDwarfDirectory && !Directory.empty()) {
765 if (sys::path::is_absolute(Filename))
766 return EmitDwarfFileDirective(FileNo, "", Filename);
767
768 SmallString<128> FullPathName = Directory;
769 sys::path::append(FullPathName, Filename);
770 return EmitDwarfFileDirective(FileNo, "", FullPathName);
771 }
772
Rafael Espindola89b93722010-12-10 07:39:47 +0000773 if (UseLoc) {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000774 OS << "\t.file\t" << FileNo << ' ';
Nick Lewycky44d798d2011-10-17 23:05:28 +0000775 if (!Directory.empty()) {
776 PrintQuotedString(Directory, OS);
777 OS << ' ';
778 }
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000779 PrintQuotedString(Filename, OS);
780 EmitEOL();
781 }
Nick Lewycky44d798d2011-10-17 23:05:28 +0000782 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Directory, Filename);
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000783}
784
785void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
786 unsigned Column, unsigned Flags,
787 unsigned Isa,
Devang Patel3f3bf932011-04-18 20:26:49 +0000788 unsigned Discriminator,
789 StringRef FileName) {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000790 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +0000791 Isa, Discriminator, FileName);
Rafael Espindola89b93722010-12-10 07:39:47 +0000792 if (!UseLoc)
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000793 return;
794
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000795 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
796 if (Flags & DWARF2_FLAG_BASIC_BLOCK)
797 OS << " basic_block";
798 if (Flags & DWARF2_FLAG_PROLOGUE_END)
799 OS << " prologue_end";
800 if (Flags & DWARF2_FLAG_EPILOGUE_BEGIN)
801 OS << " epilogue_begin";
802
803 unsigned OldFlags = getContext().getCurrentDwarfLoc().getFlags();
804 if ((Flags & DWARF2_FLAG_IS_STMT) != (OldFlags & DWARF2_FLAG_IS_STMT)) {
805 OS << " is_stmt ";
806
807 if (Flags & DWARF2_FLAG_IS_STMT)
808 OS << "1";
809 else
810 OS << "0";
811 }
812
813 if (Isa)
814 OS << "isa " << Isa;
815 if (Discriminator)
816 OS << "discriminator " << Discriminator;
Devang Patel3f3bf932011-04-18 20:26:49 +0000817
818 if (IsVerboseAsm) {
819 OS.PadToColumn(MAI.getCommentColumn());
820 OS << MAI.getCommentString() << ' ' << FileName << ':'
821 << Line << ':' << Column;
822 }
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000823 EmitEOL();
Chris Lattnera6594fc2010-01-25 18:58:59 +0000824}
825
Rafael Espindola713c4bf2011-05-10 13:39:48 +0000826void MCAsmStreamer::EmitCFISections(bool EH, bool Debug) {
827 MCStreamer::EmitCFISections(EH, Debug);
828
829 if (!UseCFI)
830 return;
831
832 OS << "\t.cfi_sections ";
833 if (EH) {
834 OS << ".eh_frame";
835 if (Debug)
836 OS << ", .debug_frame";
837 } else if (Debug) {
838 OS << ".debug_frame";
839 }
840
841 EmitEOL();
842}
843
Rafael Espindola066c2f42011-04-12 23:59:07 +0000844void MCAsmStreamer::EmitCFIStartProc() {
845 MCStreamer::EmitCFIStartProc();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000846
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000847 if (!UseCFI)
848 return;
849
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000850 OS << "\t.cfi_startproc";
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000851 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000852}
853
Rafael Espindola066c2f42011-04-12 23:59:07 +0000854void MCAsmStreamer::EmitCFIEndProc() {
855 MCStreamer::EmitCFIEndProc();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000856
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000857 if (!UseCFI)
858 return;
859
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000860 OS << "\t.cfi_endproc";
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000861 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000862}
863
Rafael Espindola6e032942011-05-30 20:20:15 +0000864void MCAsmStreamer::EmitRegisterName(int64_t Register) {
Akira Hatanaka3014b2f2011-07-07 20:30:33 +0000865 if (InstPrinter && !MAI.useDwarfRegNumForCFI()) {
Evan Cheng0e6a0522011-07-18 20:57:22 +0000866 const MCRegisterInfo &MRI = getContext().getRegisterInfo();
867 unsigned LLVMRegister = MRI.getLLVMRegNum(Register, true);
Rafael Espindolacde4ce42011-06-02 02:34:55 +0000868 InstPrinter->printRegName(OS, LLVMRegister);
Rafael Espindola6e032942011-05-30 20:20:15 +0000869 } else {
870 OS << Register;
871 }
872}
873
Rafael Espindola066c2f42011-04-12 23:59:07 +0000874void MCAsmStreamer::EmitCFIDefCfa(int64_t Register, int64_t Offset) {
Rafael Espindola7f46b082011-04-29 21:41:06 +0000875 MCStreamer::EmitCFIDefCfa(Register, Offset);
876
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000877 if (!UseCFI)
878 return;
879
Rafael Espindola6e032942011-05-30 20:20:15 +0000880 OS << "\t.cfi_def_cfa ";
881 EmitRegisterName(Register);
882 OS << ", " << Offset;
Rafael Espindola7f46b082011-04-29 21:41:06 +0000883 EmitEOL();
Rafael Espindola066c2f42011-04-12 23:59:07 +0000884}
885
886void MCAsmStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
887 MCStreamer::EmitCFIDefCfaOffset(Offset);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000888
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000889 if (!UseCFI)
890 return;
891
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000892 OS << "\t.cfi_def_cfa_offset " << Offset;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000893 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000894}
895
Rafael Espindola066c2f42011-04-12 23:59:07 +0000896void MCAsmStreamer::EmitCFIDefCfaRegister(int64_t Register) {
897 MCStreamer::EmitCFIDefCfaRegister(Register);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000898
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000899 if (!UseCFI)
900 return;
901
Rafael Espindola6e032942011-05-30 20:20:15 +0000902 OS << "\t.cfi_def_cfa_register ";
903 EmitRegisterName(Register);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000904 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000905}
906
Rafael Espindola066c2f42011-04-12 23:59:07 +0000907void MCAsmStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
908 this->MCStreamer::EmitCFIOffset(Register, Offset);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000909
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000910 if (!UseCFI)
911 return;
912
Rafael Espindola6e032942011-05-30 20:20:15 +0000913 OS << "\t.cfi_offset ";
914 EmitRegisterName(Register);
915 OS << ", " << Offset;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000916 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000917}
918
Rafael Espindola066c2f42011-04-12 23:59:07 +0000919void MCAsmStreamer::EmitCFIPersonality(const MCSymbol *Sym,
Rafael Espindola3a83c402010-12-27 00:36:05 +0000920 unsigned Encoding) {
Rafael Espindola066c2f42011-04-12 23:59:07 +0000921 MCStreamer::EmitCFIPersonality(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000922
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000923 if (!UseCFI)
924 return;
925
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000926 OS << "\t.cfi_personality " << Encoding << ", " << *Sym;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000927 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000928}
929
Rafael Espindola066c2f42011-04-12 23:59:07 +0000930void MCAsmStreamer::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) {
931 MCStreamer::EmitCFILsda(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000932
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000933 if (!UseCFI)
934 return;
935
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000936 OS << "\t.cfi_lsda " << Encoding << ", " << *Sym;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000937 EmitEOL();
Rafael Espindola066c2f42011-04-12 23:59:07 +0000938}
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000939
Rafael Espindola066c2f42011-04-12 23:59:07 +0000940void MCAsmStreamer::EmitCFIRememberState() {
941 MCStreamer::EmitCFIRememberState();
942
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000943 if (!UseCFI)
944 return;
945
Rafael Espindola066c2f42011-04-12 23:59:07 +0000946 OS << "\t.cfi_remember_state";
947 EmitEOL();
948}
949
950void MCAsmStreamer::EmitCFIRestoreState() {
951 MCStreamer::EmitCFIRestoreState();
952
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000953 if (!UseCFI)
954 return;
955
Rafael Espindola066c2f42011-04-12 23:59:07 +0000956 OS << "\t.cfi_restore_state";
957 EmitEOL();
958}
959
960void MCAsmStreamer::EmitCFISameValue(int64_t Register) {
961 MCStreamer::EmitCFISameValue(Register);
962
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000963 if (!UseCFI)
964 return;
965
Rafael Espindola6e032942011-05-30 20:20:15 +0000966 OS << "\t.cfi_same_value ";
967 EmitRegisterName(Register);
Rafael Espindola066c2f42011-04-12 23:59:07 +0000968 EmitEOL();
969}
970
971void MCAsmStreamer::EmitCFIRelOffset(int64_t Register, int64_t Offset) {
972 MCStreamer::EmitCFIRelOffset(Register, Offset);
973
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000974 if (!UseCFI)
975 return;
976
Rafael Espindola6e032942011-05-30 20:20:15 +0000977 OS << "\t.cfi_rel_offset ";
978 EmitRegisterName(Register);
979 OS << ", " << Offset;
Rafael Espindola066c2f42011-04-12 23:59:07 +0000980 EmitEOL();
981}
982
983void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) {
984 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
985
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000986 if (!UseCFI)
987 return;
988
Rafael Espindola066c2f42011-04-12 23:59:07 +0000989 OS << "\t.cfi_adjust_cfa_offset " << Adjustment;
990 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000991}
992
Charles Davisfbc539f2011-05-22 21:12:15 +0000993void MCAsmStreamer::EmitWin64EHStartProc(const MCSymbol *Symbol) {
Charles Daviscde87e22011-05-20 18:19:22 +0000994 MCStreamer::EmitWin64EHStartProc(Symbol);
995
Charles Davis440596f2011-05-19 17:46:39 +0000996 OS << ".seh_proc " << *Symbol;
Charles Davis0e30f022011-05-18 04:58:05 +0000997 EmitEOL();
998}
999
Charles Davis8b3e5e52011-05-18 22:13:51 +00001000void MCAsmStreamer::EmitWin64EHEndProc() {
Charles Daviscde87e22011-05-20 18:19:22 +00001001 MCStreamer::EmitWin64EHEndProc();
1002
Charles Davis440596f2011-05-19 17:46:39 +00001003 OS << "\t.seh_endproc";
Charles Davis0e30f022011-05-18 04:58:05 +00001004 EmitEOL();
1005}
1006
Charles Davis8b3e5e52011-05-18 22:13:51 +00001007void MCAsmStreamer::EmitWin64EHStartChained() {
Charles Daviscde87e22011-05-20 18:19:22 +00001008 MCStreamer::EmitWin64EHStartChained();
1009
Charles Davis440596f2011-05-19 17:46:39 +00001010 OS << "\t.seh_startchained";
Charles Davisf0709012011-05-18 20:54:10 +00001011 EmitEOL();
1012}
1013
Charles Davis8b3e5e52011-05-18 22:13:51 +00001014void MCAsmStreamer::EmitWin64EHEndChained() {
Charles Daviscde87e22011-05-20 18:19:22 +00001015 MCStreamer::EmitWin64EHEndChained();
1016
Charles Davis440596f2011-05-19 17:46:39 +00001017 OS << "\t.seh_endchained";
Charles Davisf0709012011-05-18 20:54:10 +00001018 EmitEOL();
1019}
1020
Charles Davis440596f2011-05-19 17:46:39 +00001021void MCAsmStreamer::EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
1022 bool Except) {
Charles Daviscde87e22011-05-20 18:19:22 +00001023 MCStreamer::EmitWin64EHHandler(Sym, Unwind, Except);
1024
Charles Davis440596f2011-05-19 17:46:39 +00001025 OS << "\t.seh_handler " << *Sym;
1026 if (Unwind)
1027 OS << ", @unwind";
1028 if (Except)
1029 OS << ", @except";
Charles Davisf0709012011-05-18 20:54:10 +00001030 EmitEOL();
1031}
1032
Evan Chenge76a33b2011-07-20 05:58:47 +00001033static const MCSection *getWin64EHTableSection(StringRef suffix,
1034 MCContext &context) {
1035 // FIXME: This doesn't belong in MCObjectFileInfo. However,
1036 /// this duplicate code in MCWin64EH.cpp.
1037 if (suffix == "")
1038 return context.getObjectFileInfo()->getXDataSection();
1039 return context.getCOFFSection((".xdata"+suffix).str(),
1040 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
1041 COFF::IMAGE_SCN_MEM_READ |
1042 COFF::IMAGE_SCN_MEM_WRITE,
1043 SectionKind::getDataRel());
1044}
1045
Charles Davis440596f2011-05-19 17:46:39 +00001046void MCAsmStreamer::EmitWin64EHHandlerData() {
Charles Daviscde87e22011-05-20 18:19:22 +00001047 MCStreamer::EmitWin64EHHandlerData();
1048
Charles Davis410ef2b2011-05-25 21:43:45 +00001049 // Switch sections. Don't call SwitchSection directly, because that will
1050 // cause the section switch to be visible in the emitted assembly.
1051 // We only do this so the section switch that terminates the handler
1052 // data block is visible.
Charles Davis7b06b732011-05-27 19:09:24 +00001053 MCWin64EHUnwindInfo *CurFrame = getCurrentW64UnwindInfo();
1054 StringRef suffix=MCWin64EHUnwindEmitter::GetSectionSuffix(CurFrame->Function);
Evan Chenge76a33b2011-07-20 05:58:47 +00001055 const MCSection *xdataSect = getWin64EHTableSection(suffix, getContext());
Charles Davis410ef2b2011-05-25 21:43:45 +00001056 if (xdataSect)
1057 SwitchSectionNoChange(xdataSect);
1058
Charles Davis440596f2011-05-19 17:46:39 +00001059 OS << "\t.seh_handlerdata";
Charles Davisf0709012011-05-18 20:54:10 +00001060 EmitEOL();
1061}
1062
Charles Davisc3b16282011-05-19 19:35:55 +00001063void MCAsmStreamer::EmitWin64EHPushReg(unsigned Register) {
Charles Daviscde87e22011-05-20 18:19:22 +00001064 MCStreamer::EmitWin64EHPushReg(Register);
1065
Charles Davis440596f2011-05-19 17:46:39 +00001066 OS << "\t.seh_pushreg " << Register;
Charles Davis0e30f022011-05-18 04:58:05 +00001067 EmitEOL();
1068}
1069
Charles Davisc3b16282011-05-19 19:35:55 +00001070void MCAsmStreamer::EmitWin64EHSetFrame(unsigned Register, unsigned Offset) {
Charles Daviscde87e22011-05-20 18:19:22 +00001071 MCStreamer::EmitWin64EHSetFrame(Register, Offset);
1072
Charles Davis440596f2011-05-19 17:46:39 +00001073 OS << "\t.seh_setframe " << Register << ", " << Offset;
Charles Davis0e30f022011-05-18 04:58:05 +00001074 EmitEOL();
1075}
1076
Charles Davisc3b16282011-05-19 19:35:55 +00001077void MCAsmStreamer::EmitWin64EHAllocStack(unsigned Size) {
Charles Daviscde87e22011-05-20 18:19:22 +00001078 MCStreamer::EmitWin64EHAllocStack(Size);
1079
Charles Davis440596f2011-05-19 17:46:39 +00001080 OS << "\t.seh_stackalloc " << Size;
Charles Davis0e30f022011-05-18 04:58:05 +00001081 EmitEOL();
1082}
1083
Charles Davisc3b16282011-05-19 19:35:55 +00001084void MCAsmStreamer::EmitWin64EHSaveReg(unsigned Register, unsigned Offset) {
Charles Daviscde87e22011-05-20 18:19:22 +00001085 MCStreamer::EmitWin64EHSaveReg(Register, Offset);
1086
Charles Davis440596f2011-05-19 17:46:39 +00001087 OS << "\t.seh_savereg " << Register << ", " << Offset;
1088 EmitEOL();
1089}
1090
Charles Davisc3b16282011-05-19 19:35:55 +00001091void MCAsmStreamer::EmitWin64EHSaveXMM(unsigned Register, unsigned Offset) {
Charles Daviscde87e22011-05-20 18:19:22 +00001092 MCStreamer::EmitWin64EHSaveXMM(Register, Offset);
1093
Charles Davis440596f2011-05-19 17:46:39 +00001094 OS << "\t.seh_savexmm " << Register << ", " << Offset;
Charles Davis0e30f022011-05-18 04:58:05 +00001095 EmitEOL();
1096}
1097
Charles Davis8b3e5e52011-05-18 22:13:51 +00001098void MCAsmStreamer::EmitWin64EHPushFrame(bool Code) {
Charles Daviscde87e22011-05-20 18:19:22 +00001099 MCStreamer::EmitWin64EHPushFrame(Code);
1100
Charles Davis440596f2011-05-19 17:46:39 +00001101 OS << "\t.seh_pushframe";
Charles Davis0e30f022011-05-18 04:58:05 +00001102 if (Code)
Charles Davis440596f2011-05-19 17:46:39 +00001103 OS << " @code";
Charles Davis0e30f022011-05-18 04:58:05 +00001104 EmitEOL();
1105}
1106
Charles Davis8b3e5e52011-05-18 22:13:51 +00001107void MCAsmStreamer::EmitWin64EHEndProlog(void) {
Charles Daviscde87e22011-05-20 18:19:22 +00001108 MCStreamer::EmitWin64EHEndProlog();
1109
Charles Davis440596f2011-05-19 17:46:39 +00001110 OS << "\t.seh_endprologue";
Charles Davis0e30f022011-05-18 04:58:05 +00001111 EmitEOL();
1112}
1113
Daniel Dunbar6b716532010-02-09 23:00:14 +00001114void MCAsmStreamer::AddEncodingComment(const MCInst &Inst) {
1115 raw_ostream &OS = GetCommentOS();
1116 SmallString<256> Code;
1117 SmallVector<MCFixup, 4> Fixups;
1118 raw_svector_ostream VecOS(Code);
1119 Emitter->EncodeInstruction(Inst, VecOS, Fixups);
1120 VecOS.flush();
Chris Lattnera6594fc2010-01-25 18:58:59 +00001121
Daniel Dunbar6b716532010-02-09 23:00:14 +00001122 // If we are showing fixups, create symbolic markers in the encoded
1123 // representation. We do this by making a per-bit map to the fixup item index,
1124 // then trying to display it as nicely as possible.
Daniel Dunbar5532cf42010-02-10 01:41:14 +00001125 SmallVector<uint8_t, 64> FixupMap;
1126 FixupMap.resize(Code.size() * 8);
Daniel Dunbar6b716532010-02-09 23:00:14 +00001127 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
1128 FixupMap[i] = 0;
1129
1130 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1131 MCFixup &F = Fixups[i];
Daniel Dunbar2761fc42010-12-16 03:20:06 +00001132 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar6b716532010-02-09 23:00:14 +00001133 for (unsigned j = 0; j != Info.TargetSize; ++j) {
1134 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j;
1135 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
1136 FixupMap[Index] = 1 + i;
1137 }
1138 }
1139
Evan Cheng5c2eef62011-07-08 22:49:42 +00001140 // FIXME: Note the fixup comments for Thumb2 are completely bogus since the
Evan Cheng8fbbd1c2011-01-13 23:27:39 +00001141 // high order halfword of a 32-bit Thumb2 instruction is emitted first.
Daniel Dunbar6b716532010-02-09 23:00:14 +00001142 OS << "encoding: [";
1143 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
1144 if (i)
1145 OS << ',';
1146
1147 // See if all bits are the same map entry.
1148 uint8_t MapEntry = FixupMap[i * 8 + 0];
1149 for (unsigned j = 1; j != 8; ++j) {
1150 if (FixupMap[i * 8 + j] == MapEntry)
1151 continue;
1152
1153 MapEntry = uint8_t(~0U);
1154 break;
1155 }
1156
1157 if (MapEntry != uint8_t(~0U)) {
1158 if (MapEntry == 0) {
1159 OS << format("0x%02x", uint8_t(Code[i]));
1160 } else {
Evan Cheng82caf1a2011-01-13 21:45:26 +00001161 if (Code[i]) {
Evan Cheng8fbbd1c2011-01-13 23:27:39 +00001162 // FIXME: Some of the 8 bits require fix up.
Evan Cheng82caf1a2011-01-13 21:45:26 +00001163 OS << format("0x%02x", uint8_t(Code[i])) << '\''
1164 << char('A' + MapEntry - 1) << '\'';
1165 } else
1166 OS << char('A' + MapEntry - 1);
Daniel Dunbar6b716532010-02-09 23:00:14 +00001167 }
1168 } else {
1169 // Otherwise, write out in binary.
1170 OS << "0b";
Jay Foad95c3e482011-06-23 09:09:15 +00001171 for (unsigned j = 8; j--;) {
Daniel Dunbar6b716532010-02-09 23:00:14 +00001172 unsigned Bit = (Code[i] >> j) & 1;
NAKAMURA Takumid6451512011-03-27 01:44:40 +00001173
Chris Lattner3170a3b2010-11-15 05:56:19 +00001174 unsigned FixupBit;
Evan Cheng1be0e272011-07-15 02:09:41 +00001175 if (getContext().getAsmInfo().isLittleEndian())
Chris Lattner3170a3b2010-11-15 05:56:19 +00001176 FixupBit = i * 8 + j;
1177 else
1178 FixupBit = i * 8 + (7-j);
NAKAMURA Takumid6451512011-03-27 01:44:40 +00001179
Jay Foad95c3e482011-06-23 09:09:15 +00001180 if (uint8_t MapEntry = FixupMap[FixupBit]) {
1181 assert(Bit == 0 && "Encoder wrote into fixed up bit!");
1182 OS << char('A' + MapEntry - 1);
Daniel Dunbar6b716532010-02-09 23:00:14 +00001183 } else
1184 OS << Bit;
1185 }
1186 }
1187 }
1188 OS << "]\n";
1189
1190 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1191 MCFixup &F = Fixups[i];
Daniel Dunbar2761fc42010-12-16 03:20:06 +00001192 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar6b716532010-02-09 23:00:14 +00001193 OS << " fixup " << char('A' + i) << " - " << "offset: " << F.getOffset()
Daniel Dunbar5d5a1e12010-02-10 04:47:08 +00001194 << ", value: " << *F.getValue() << ", kind: " << Info.Name << "\n";
Daniel Dunbar6b716532010-02-09 23:00:14 +00001195 }
1196}
1197
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +00001198void MCAsmStreamer::EmitFnStart() {
1199 OS << "\t.fnstart";
1200 EmitEOL();
1201}
1202
1203void MCAsmStreamer::EmitFnEnd() {
1204 OS << "\t.fnend";
1205 EmitEOL();
1206}
1207
1208void MCAsmStreamer::EmitCantUnwind() {
1209 OS << "\t.cantunwind";
1210 EmitEOL();
1211}
1212
1213void MCAsmStreamer::EmitHandlerData() {
1214 OS << "\t.handlerdata";
1215 EmitEOL();
1216}
1217
1218void MCAsmStreamer::EmitPersonality(const MCSymbol *Personality) {
1219 OS << "\t.personality " << Personality->getName();
1220 EmitEOL();
1221}
1222
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001223void MCAsmStreamer::EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset) {
Rafael Espindolacde4ce42011-06-02 02:34:55 +00001224 OS << "\t.setfp\t";
1225 InstPrinter->printRegName(OS, FpReg);
1226 OS << ", ";
1227 InstPrinter->printRegName(OS, SpReg);
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001228 if (Offset)
1229 OS << ", #" << Offset;
1230 EmitEOL();
1231}
1232
1233void MCAsmStreamer::EmitPad(int64_t Offset) {
1234 OS << "\t.pad\t#" << Offset;
1235 EmitEOL();
1236}
1237
1238void MCAsmStreamer::EmitRegSave(const SmallVectorImpl<unsigned> &RegList,
1239 bool isVector) {
1240 assert(RegList.size() && "RegList should not be empty");
1241 if (isVector)
1242 OS << "\t.vsave\t{";
1243 else
1244 OS << "\t.save\t{";
1245
Rafael Espindolacde4ce42011-06-02 02:34:55 +00001246 InstPrinter->printRegName(OS, RegList[0]);
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001247
Rafael Espindolacde4ce42011-06-02 02:34:55 +00001248 for (unsigned i = 1, e = RegList.size(); i != e; ++i) {
1249 OS << ", ";
1250 InstPrinter->printRegName(OS, RegList[i]);
1251 }
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001252
1253 OS << "}";
1254 EmitEOL();
1255}
1256
Daniel Dunbar6b716532010-02-09 23:00:14 +00001257void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +00001258 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Daniel Dunbar6b716532010-02-09 23:00:14 +00001259
1260 // Show the encoding in a comment if we have a code emitter.
1261 if (Emitter)
1262 AddEncodingComment(Inst);
1263
Chris Lattner30d9a642010-02-09 00:54:51 +00001264 // Show the MCInst if enabled.
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +00001265 if (ShowInst) {
Daniel Dunbar67c076c2010-03-22 21:49:34 +00001266 Inst.dump_pretty(GetCommentOS(), &MAI, InstPrinter.get(), "\n ");
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +00001267 GetCommentOS() << "\n";
1268 }
1269
Daniel Dunbar67c076c2010-03-22 21:49:34 +00001270 // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001271 if (InstPrinter)
Owen Anderson98c5dda2011-09-15 23:38:46 +00001272 InstPrinter->printInst(&Inst, OS, "");
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001273 else
1274 Inst.print(OS, &MAI);
Chris Lattner7d1e49c2010-01-22 07:36:39 +00001275 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +00001276}
1277
Jim Grosbachbd4ec842010-09-22 18:18:30 +00001278/// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +00001279/// the specified string in the output .s file. This capability is
1280/// indicated by the hasRawTextSupport() predicate.
1281void MCAsmStreamer::EmitRawText(StringRef String) {
Chris Lattnerd5928dc2010-04-03 22:06:56 +00001282 if (!String.empty() && String.back() == '\n')
1283 String = String.substr(0, String.size()-1);
Chris Lattner91bead72010-04-03 21:35:55 +00001284 OS << String;
Chris Lattnerd5928dc2010-04-03 22:06:56 +00001285 EmitEOL();
Chris Lattner91bead72010-04-03 21:35:55 +00001286}
1287
Rafael Espindola99b42372012-01-07 03:13:18 +00001288void MCAsmStreamer::FinishImpl() {
Rafael Espindola195a0ce2010-11-19 02:26:16 +00001289 // Dump out the dwarf file & directory tables and line tables.
Rafael Espindola89b93722010-12-10 07:39:47 +00001290 if (getContext().hasDwarfFiles() && !UseLoc)
1291 MCDwarfFileTable::Emit(this);
Rafael Espindola5426a9e2011-05-01 04:49:54 +00001292
Kevin Enderby94c2e852011-12-09 18:09:40 +00001293 // If we are generating dwarf for assembly source files dump out the sections.
1294 if (getContext().getGenDwarfForAssembly())
1295 MCGenDwarfInfo::Emit(this);
1296
Rafael Espindolac25dad82011-05-10 03:14:15 +00001297 if (!UseCFI)
1298 EmitFrames(false);
Daniel Dunbara11af532009-06-24 01:03:06 +00001299}
Chris Lattner86e22112010-01-22 07:29:22 +00001300MCStreamer *llvm::createAsmStreamer(MCContext &Context,
1301 formatted_raw_ostream &OS,
Rafael Espindola89b93722010-12-10 07:39:47 +00001302 bool isVerboseAsm, bool useLoc,
Nick Lewycky44d798d2011-10-17 23:05:28 +00001303 bool useCFI, bool useDwarfDirectory,
1304 MCInstPrinter *IP, MCCodeEmitter *CE,
1305 MCAsmBackend *MAB, bool ShowInst) {
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001306 return new MCAsmStreamer(Context, OS, isVerboseAsm, useLoc, useCFI,
Nick Lewycky44d798d2011-10-17 23:05:28 +00001307 useDwarfDirectory, IP, CE, MAB, ShowInst);
Daniel Dunbara11af532009-06-24 01:03:06 +00001308}