blob: d9a04575ff16446d1aebcbaaa3b74c45ae443208 [file] [log] [blame]
Daniel Dunbar9faf2732009-06-24 01:03:06 +00001//===- lib/MC/MCAsmStreamer.cpp - Text Assembly Output --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/MC/MCStreamer.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000011#include "llvm/ADT/SmallString.h"
12#include "llvm/ADT/StringExtras.h"
13#include "llvm/ADT/Twine.h"
14#include "llvm/MC/MCAsmBackend.h"
Daniel Dunbar73da11e2009-08-31 08:08:38 +000015#include "llvm/MC/MCAsmInfo.h"
Daniel Dunbar65105172009-08-27 00:51:57 +000016#include "llvm/MC/MCCodeEmitter.h"
Daniel Dunbar9faf2732009-06-24 01:03:06 +000017#include "llvm/MC/MCContext.h"
Daniel Dunbar73da11e2009-08-31 08:08:38 +000018#include "llvm/MC/MCExpr.h"
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +000019#include "llvm/MC/MCFixupKindInfo.h"
Daniel Dunbar23a72aa2009-07-01 06:35:03 +000020#include "llvm/MC/MCInst.h"
Chris Lattner11b2fc92009-09-14 03:02:37 +000021#include "llvm/MC/MCInstPrinter.h"
Evan Cheng2833ad12011-07-26 20:57:44 +000022#include "llvm/MC/MCObjectFileInfo.h"
Evan Chengd60fa58b2011-07-18 20:57:22 +000023#include "llvm/MC/MCRegisterInfo.h"
Evan Cheng76792992011-07-20 05:58:47 +000024#include "llvm/MC/MCSectionCOFF.h"
Chris Lattner6c203912009-08-10 18:15:01 +000025#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbar9faf2732009-06-24 01:03:06 +000026#include "llvm/MC/MCSymbol.h"
Rafael Espindolaac4ad252013-10-05 16:42:21 +000027#include "llvm/Support/CommandLine.h"
Torok Edwin56d06592009-07-11 20:10:48 +000028#include "llvm/Support/ErrorHandling.h"
Daniel Dunbar65105172009-08-27 00:51:57 +000029#include "llvm/Support/Format.h"
Chris Lattner38e92192010-01-22 07:29:22 +000030#include "llvm/Support/FormattedStream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000031#include "llvm/Support/MathExtras.h"
Rafael Espindola3bc8e712013-06-11 22:21:28 +000032#include "llvm/Support/Path.h"
Nick Lewycky0de20af2010-12-19 20:43:38 +000033#include <cctype>
Daniel Dunbar9faf2732009-06-24 01:03:06 +000034using namespace llvm;
35
36namespace {
37
Chris Lattner962c5bd82009-08-17 04:17:34 +000038class MCAsmStreamer : public MCStreamer {
Bill Wendlinge3031142011-06-17 20:35:21 +000039protected:
Chris Lattner38e92192010-01-22 07:29:22 +000040 formatted_raw_ostream &OS;
Bill Wendlingbc07a892013-06-18 07:20:20 +000041 const MCAsmInfo *MAI;
Bill Wendlinge3031142011-06-17 20:35:21 +000042private:
Ahmed Charles56440fd2014-03-06 05:51:42 +000043 std::unique_ptr<MCInstPrinter> InstPrinter;
44 std::unique_ptr<MCCodeEmitter> Emitter;
45 std::unique_ptr<MCAsmBackend> AsmBackend;
Jim Grosbach3bde49a2010-09-22 18:16:55 +000046
Chris Lattner38e92192010-01-22 07:29:22 +000047 SmallString<128> CommentToEmit;
Chris Lattner8fa0e352010-01-22 19:17:48 +000048 raw_svector_ostream CommentStream;
Daniel Dunbare3ee3322010-02-03 18:18:30 +000049
Daniel Dunbare3ee3322010-02-03 18:18:30 +000050 unsigned IsVerboseAsm : 1;
51 unsigned ShowInst : 1;
Rafael Espindolaa3181d12011-04-30 03:44:37 +000052 unsigned UseCFI : 1;
Nick Lewycky40f8f2f2011-10-17 23:05:28 +000053 unsigned UseDwarfDirectory : 1;
Daniel Dunbare3ee3322010-02-03 18:18:30 +000054
Rafael Espindolabde52bc2011-04-30 16:34:57 +000055 enum EHSymbolFlags { EHGlobal = 1,
56 EHWeakDefinition = 1 << 1,
57 EHPrivateExtern = 1 << 2 };
58 DenseMap<const MCSymbol*, unsigned> FlagMap;
59
Rafael Espindola1c8ac8f2010-12-04 03:21:47 +000060 bool needsSet(const MCExpr *Value);
61
Rafael Espindola08600bc2011-05-30 20:20:15 +000062 void EmitRegisterName(int64_t Register);
Rafael Espindola38241202012-01-07 22:42:19 +000063 virtual void EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame);
Rafael Espindolaf28213c2012-01-09 00:17:29 +000064 virtual void EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame);
Rafael Espindola08600bc2011-05-30 20:20:15 +000065
Chris Lattner962c5bd82009-08-17 04:17:34 +000066public:
Rafael Espindola24ea09e2014-01-26 06:06:37 +000067 MCAsmStreamer(MCContext &Context, formatted_raw_ostream &os,
Rafael Espindolab4eec1d2014-02-05 18:00:21 +000068 bool isVerboseAsm, bool useCFI, bool useDwarfDirectory,
69 MCInstPrinter *printer, MCCodeEmitter *emitter,
70 MCAsmBackend *asmbackend, bool showInst)
Rafael Espindola24ea09e2014-01-26 06:06:37 +000071 : MCStreamer(Context), OS(os), MAI(Context.getAsmInfo()),
Rafael Espindolaa17151a2013-10-08 13:08:17 +000072 InstPrinter(printer), Emitter(emitter), AsmBackend(asmbackend),
73 CommentStream(CommentToEmit), IsVerboseAsm(isVerboseAsm),
Rafael Espindolab4eec1d2014-02-05 18:00:21 +000074 ShowInst(showInst), UseCFI(useCFI),
Rafael Espindolaa17151a2013-10-08 13:08:17 +000075 UseDwarfDirectory(useDwarfDirectory) {
Chris Lattner482bf692010-02-10 00:10:18 +000076 if (InstPrinter && IsVerboseAsm)
77 InstPrinter->setCommentStream(CommentStream);
78 }
Chris Lattner962c5bd82009-08-17 04:17:34 +000079 ~MCAsmStreamer() {}
Daniel Dunbar9faf2732009-06-24 01:03:06 +000080
Chris Lattner38e92192010-01-22 07:29:22 +000081 inline void EmitEOL() {
Chris Lattner8fa0e352010-01-22 19:17:48 +000082 // If we don't have any comments, just emit a \n.
83 if (!IsVerboseAsm) {
Chris Lattner38e92192010-01-22 07:29:22 +000084 OS << '\n';
85 return;
86 }
87 EmitCommentsAndEOL();
88 }
89 void EmitCommentsAndEOL();
Chris Lattnerb0d44c32010-02-02 23:37:42 +000090
91 /// isVerboseAsm - Return true if this streamer supports verbose assembly at
92 /// all.
93 virtual bool isVerboseAsm() const { return IsVerboseAsm; }
Jim Grosbach3bde49a2010-09-22 18:16:55 +000094
Chris Lattner8a87fb72010-04-03 21:35:55 +000095 /// hasRawTextSupport - We support EmitRawText.
96 virtual bool hasRawTextSupport() const { return true; }
Daniel Dunbar9a0a4612010-02-09 23:00:14 +000097
Chris Lattnere1d8a312010-01-22 18:21:35 +000098 /// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner38e92192010-01-22 07:29:22 +000099 /// file if applicable as a QoI issue to make the output of the compiler
100 /// more readable. This only affects the MCAsmStreamer, and only when
101 /// verbose assembly output is enabled.
Chris Lattnere1d8a312010-01-22 18:21:35 +0000102 virtual void AddComment(const Twine &T);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000103
104 /// AddEncodingComment - Add a comment showing the encoding of an instruction.
David Woodhouse9784cef2014-01-28 23:13:07 +0000105 virtual void AddEncodingComment(const MCInst &Inst, const MCSubtargetInfo &);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000106
Chris Lattner8fa0e352010-01-22 19:17:48 +0000107 /// GetCommentOS - Return a raw_ostream that comments can be written to.
108 /// Unlike AddComment, you are required to terminate comments with \n if you
109 /// use this method.
110 virtual raw_ostream &GetCommentOS() {
111 if (!IsVerboseAsm)
112 return nulls(); // Discard comments unless in verbose asm mode.
113 return CommentStream;
114 }
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000115
Craig Topper73156022014-03-02 09:09:27 +0000116 void emitRawComment(const Twine &T, bool TabPrefix = true) override;
Rafael Espindola0b694812014-01-16 16:28:37 +0000117
Chris Lattnera3eee3c2010-01-22 19:52:01 +0000118 /// AddBlankLine - Emit a blank line to a .s file to pretty it up.
119 virtual void AddBlankLine() {
120 EmitEOL();
121 }
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000122
Chris Lattner962c5bd82009-08-17 04:17:34 +0000123 /// @name MCStreamer Interface
124 /// @{
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000125
Peter Collingbourne2f495b92013-04-17 21:18:16 +0000126 virtual void ChangeSection(const MCSection *Section,
127 const MCExpr *Subsection);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000128
Chris Lattner962c5bd82009-08-17 04:17:34 +0000129 virtual void EmitLabel(MCSymbol *Symbol);
Reed Kotleraee4d5d12012-12-16 04:00:45 +0000130 virtual void EmitDebugLabel(MCSymbol *Symbol);
131
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000132 virtual void EmitEHSymAttributes(const MCSymbol *Symbol,
133 MCSymbol *EHSymbol);
Chris Lattner685508c2010-01-23 06:39:22 +0000134 virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
Daniel Dunbar16004b82013-01-18 01:25:48 +0000135 virtual void EmitLinkerOptions(ArrayRef<std::string> Options);
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000136 virtual void EmitDataRegion(MCDataRegionType Kind);
Jim Grosbach5a2c68d2010-11-05 22:08:08 +0000137 virtual void EmitThumbFunc(MCSymbol *Func);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000138
Daniel Dunbar897ffad2009-08-31 08:09:28 +0000139 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
Rafael Espindola16145972010-11-01 14:28:48 +0000140 virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
Rafael Espindola57ab7082010-12-03 00:55:40 +0000141 virtual void EmitDwarfAdvanceLineAddr(int64_t LineDelta,
142 const MCSymbol *LastLabel,
Evan Chengc7ac6902011-07-14 05:43:07 +0000143 const MCSymbol *Label,
144 unsigned PointerSize);
Rafael Espindola1d1eced2011-04-30 03:21:04 +0000145 virtual void EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
146 const MCSymbol *Label);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000147
Saleem Abdulrasool4208b612013-08-09 01:52:03 +0000148 virtual bool EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
Kevin Enderbyc9d93ef2009-07-13 21:03:15 +0000149
Chris Lattner962c5bd82009-08-17 04:17:34 +0000150 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
Chris Lattner72afa952010-05-08 19:54:22 +0000151 virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol);
152 virtual void EmitCOFFSymbolStorageClass(int StorageClass);
153 virtual void EmitCOFFSymbolType(int Type);
154 virtual void EndCOFFSymbolDef();
Timur Iskhodzhanovc1fb2d62013-12-20 18:15:00 +0000155 virtual void EmitCOFFSectionIndex(MCSymbol const *Symbol);
Rafael Espindolad3df3d32011-12-17 01:14:52 +0000156 virtual void EmitCOFFSecRel32(MCSymbol const *Symbol);
Chris Lattner91dac6d2010-01-25 07:52:13 +0000157 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
Chris Lattnerb1301f72010-01-23 07:47:02 +0000158 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar6a715dc2009-08-30 06:17:16 +0000159 unsigned ByteAlignment);
Kevin Enderby4c21caa2009-07-14 18:17:10 +0000160
Chris Lattnerb1301f72010-01-23 07:47:02 +0000161 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
162 ///
163 /// @param Symbol - The common symbol to emit.
164 /// @param Size - The size of the common symbol.
Dmitri Gribenko65340a62012-08-23 16:54:08 +0000165 /// @param ByteAlignment - The alignment of the common symbol in bytes.
Benjamin Kramer63970512011-09-01 23:04:27 +0000166 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
167 unsigned ByteAlignment);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000168
Daniel Dunbarcf72e1c2009-08-28 05:48:22 +0000169 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
Evan Chengf5bd6c62012-06-22 20:14:46 +0000170 uint64_t Size = 0, unsigned ByteAlignment = 0);
Kevin Enderbycbe475d2009-07-14 21:35:03 +0000171
Eric Christopher5c87be72010-05-18 21:16:04 +0000172 virtual void EmitTBSSSymbol (const MCSection *Section, MCSymbol *Symbol,
173 uint64_t Size, unsigned ByteAlignment = 0);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000174
Rafael Espindola64e1af82013-07-02 15:49:13 +0000175 virtual void EmitBytes(StringRef Data);
Chris Lattnera1e11f52009-07-07 20:30:46 +0000176
Rafael Espindola64e1af82013-07-02 15:49:13 +0000177 virtual void EmitValueImpl(const MCExpr *Value, unsigned Size);
178 virtual void EmitIntValue(uint64_t Value, unsigned Size);
Rafael Espindola5e874982010-11-02 17:22:24 +0000179
Rafael Espindola6aea5922011-04-21 23:39:26 +0000180 virtual void EmitULEB128Value(const MCExpr *Value);
Rafael Espindola5e874982010-11-02 17:22:24 +0000181
Rafael Espindola6aea5922011-04-21 23:39:26 +0000182 virtual void EmitSLEB128Value(const MCExpr *Value);
Rafael Espindola5e874982010-11-02 17:22:24 +0000183
Akira Hatanakaf0b08442012-02-03 04:33:00 +0000184 virtual void EmitGPRel64Value(const MCExpr *Value);
185
Chris Lattner3cde7602010-01-25 21:28:50 +0000186 virtual void EmitGPRel32Value(const MCExpr *Value);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000187
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000188
Rafael Espindola64e1af82013-07-02 15:49:13 +0000189 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue);
Chris Lattner07cadaf2009-07-10 22:20:30 +0000190
Chris Lattner962c5bd82009-08-17 04:17:34 +0000191 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
192 unsigned ValueSize = 1,
193 unsigned MaxBytesToEmit = 0);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000194
Kevin Enderbye83d74f2010-02-23 18:26:34 +0000195 virtual void EmitCodeAlignment(unsigned ByteAlignment,
196 unsigned MaxBytesToEmit = 0);
197
Jim Grosbachb5912772012-01-27 00:37:08 +0000198 virtual bool EmitValueToOffset(const MCExpr *Offset,
Chris Lattner962c5bd82009-08-17 04:17:34 +0000199 unsigned char Value = 0);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000200
Chris Lattner601ef332010-01-25 18:58:59 +0000201 virtual void EmitFileDirective(StringRef Filename);
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000202 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
Manman Ren1e427202013-03-07 01:42:00 +0000203 StringRef Filename, unsigned CUID = 0);
Rafael Espindolac653a892010-11-16 21:20:32 +0000204 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
205 unsigned Column, unsigned Flags,
Devang Patel17740e72011-04-18 20:26:49 +0000206 unsigned Isa, unsigned Discriminator,
207 StringRef FileName);
Chris Lattner601ef332010-01-25 18:58:59 +0000208
Rafael Espindola5645bad2013-10-16 01:05:45 +0000209 virtual void EmitIdent(StringRef IdentString);
Rafael Espindolaec53aa92011-05-10 13:39:48 +0000210 virtual void EmitCFISections(bool EH, bool Debug);
Rafael Espindola539d96f2011-04-12 23:59:07 +0000211 virtual void EmitCFIDefCfa(int64_t Register, int64_t Offset);
212 virtual void EmitCFIDefCfaOffset(int64_t Offset);
213 virtual void EmitCFIDefCfaRegister(int64_t Register);
214 virtual void EmitCFIOffset(int64_t Register, int64_t Offset);
215 virtual void EmitCFIPersonality(const MCSymbol *Sym, unsigned Encoding);
216 virtual void EmitCFILsda(const MCSymbol *Sym, unsigned Encoding);
217 virtual void EmitCFIRememberState();
218 virtual void EmitCFIRestoreState();
219 virtual void EmitCFISameValue(int64_t Register);
220 virtual void EmitCFIRelOffset(int64_t Register, int64_t Offset);
221 virtual void EmitCFIAdjustCfaOffset(int64_t Adjustment);
Rafael Espindola3c47e372012-01-23 21:51:52 +0000222 virtual void EmitCFISignalFrame();
Rafael Espindola9bb24782012-11-23 16:59:41 +0000223 virtual void EmitCFIUndefined(int64_t Register);
Rafael Espindolacdb9a532012-11-25 15:14:49 +0000224 virtual void EmitCFIRegister(int64_t Register1, int64_t Register2);
Venkatraman Govindaraju3816d432013-09-26 14:49:40 +0000225 virtual void EmitCFIWindowSave();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000226
Charles Davisc7250fa2011-05-22 21:12:15 +0000227 virtual void EmitWin64EHStartProc(const MCSymbol *Symbol);
Charles Davis8d9c9902011-05-18 04:58:05 +0000228 virtual void EmitWin64EHEndProc();
Charles Davis77e06102011-05-18 20:54:10 +0000229 virtual void EmitWin64EHStartChained();
230 virtual void EmitWin64EHEndChained();
Charles Davis4cd88562011-05-19 17:46:39 +0000231 virtual void EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
232 bool Except);
233 virtual void EmitWin64EHHandlerData();
Charles Davis7e6e8952011-05-19 19:35:55 +0000234 virtual void EmitWin64EHPushReg(unsigned Register);
235 virtual void EmitWin64EHSetFrame(unsigned Register, unsigned Offset);
236 virtual void EmitWin64EHAllocStack(unsigned Size);
237 virtual void EmitWin64EHSaveReg(unsigned Register, unsigned Offset);
238 virtual void EmitWin64EHSaveXMM(unsigned Register, unsigned Offset);
Charles Davis8d9c9902011-05-18 04:58:05 +0000239 virtual void EmitWin64EHPushFrame(bool Code);
240 virtual void EmitWin64EHEndProlog();
241
David Woodhousee6c13e42014-01-28 23:12:42 +0000242 virtual void EmitInstruction(const MCInst &Inst, const MCSubtargetInfo &STI);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000243
Eli Benderskyf483ff92012-12-20 19:05:53 +0000244 virtual void EmitBundleAlignMode(unsigned AlignPow2);
Eli Bendersky802b6282013-01-07 21:51:08 +0000245 virtual void EmitBundleLock(bool AlignToEnd);
Eli Benderskyf483ff92012-12-20 19:05:53 +0000246 virtual void EmitBundleUnlock();
247
Jim Grosbach6ebd7282010-09-22 18:18:30 +0000248 /// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner8a87fb72010-04-03 21:35:55 +0000249 /// the specified string in the output .s file. This capability is
250 /// indicated by the hasRawTextSupport() predicate.
David Blaikied8c5b4e2013-10-24 22:43:10 +0000251 virtual void EmitRawTextImpl(StringRef String);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000252
Rafael Espindola07082092012-01-07 03:13:18 +0000253 virtual void FinishImpl();
Chris Lattner962c5bd82009-08-17 04:17:34 +0000254};
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000255
Chris Lattner962c5bd82009-08-17 04:17:34 +0000256} // end anonymous namespace.
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000257
Chris Lattnere1d8a312010-01-22 18:21:35 +0000258/// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner38e92192010-01-22 07:29:22 +0000259/// file if applicable as a QoI issue to make the output of the compiler
260/// more readable. This only affects the MCAsmStreamer, and only when
261/// verbose assembly output is enabled.
Chris Lattnere1d8a312010-01-22 18:21:35 +0000262void MCAsmStreamer::AddComment(const Twine &T) {
Chris Lattner38e92192010-01-22 07:29:22 +0000263 if (!IsVerboseAsm) return;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000264
Chris Lattner8fa0e352010-01-22 19:17:48 +0000265 // Make sure that CommentStream is flushed.
266 CommentStream.flush();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000267
Chris Lattner38e92192010-01-22 07:29:22 +0000268 T.toVector(CommentToEmit);
Chris Lattner8fa0e352010-01-22 19:17:48 +0000269 // Each comment goes on its own line.
270 CommentToEmit.push_back('\n');
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000271
Chris Lattner1386a882010-01-22 21:16:10 +0000272 // Tell the comment stream that the vector changed underneath it.
273 CommentStream.resync();
Chris Lattner38e92192010-01-22 07:29:22 +0000274}
275
276void MCAsmStreamer::EmitCommentsAndEOL() {
Chris Lattner8fa0e352010-01-22 19:17:48 +0000277 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) {
278 OS << '\n';
279 return;
280 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000281
Chris Lattner8fa0e352010-01-22 19:17:48 +0000282 CommentStream.flush();
Chris Lattner38e92192010-01-22 07:29:22 +0000283 StringRef Comments = CommentToEmit.str();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000284
Chris Lattner8fa0e352010-01-22 19:17:48 +0000285 assert(Comments.back() == '\n' &&
286 "Comment array not newline terminated");
287 do {
Chris Lattner38e92192010-01-22 07:29:22 +0000288 // Emit a line of comments.
Bill Wendlingbc07a892013-06-18 07:20:20 +0000289 OS.PadToColumn(MAI->getCommentColumn());
Chris Lattner38e92192010-01-22 07:29:22 +0000290 size_t Position = Comments.find('\n');
Bill Wendlingbc07a892013-06-18 07:20:20 +0000291 OS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) <<'\n';
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000292
Chris Lattner38e92192010-01-22 07:29:22 +0000293 Comments = Comments.substr(Position+1);
Chris Lattner8fa0e352010-01-22 19:17:48 +0000294 } while (!Comments.empty());
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000295
Chris Lattner1386a882010-01-22 21:16:10 +0000296 CommentToEmit.clear();
297 // Tell the comment stream that the vector changed underneath it.
298 CommentStream.resync();
Chris Lattner38e92192010-01-22 07:29:22 +0000299}
300
Daniel Dunbar188e87f2009-06-25 21:03:18 +0000301static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
302 assert(Bytes && "Invalid size!");
303 return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
304}
305
Rafael Espindola0b694812014-01-16 16:28:37 +0000306void MCAsmStreamer::emitRawComment(const Twine &T, bool TabPrefix) {
307 if (TabPrefix)
308 OS << '\t';
309 OS << MAI->getCommentString() << T;
310 EmitEOL();
311}
312
Peter Collingbourne2f495b92013-04-17 21:18:16 +0000313void MCAsmStreamer::ChangeSection(const MCSection *Section,
314 const MCExpr *Subsection) {
Chris Lattner4b7dadb2009-08-19 05:49:37 +0000315 assert(Section && "Cannot switch to a null section!");
Bill Wendlingbc07a892013-06-18 07:20:20 +0000316 Section->PrintSwitchToSection(*MAI, OS, Subsection);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000317}
318
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000319void MCAsmStreamer::EmitEHSymAttributes(const MCSymbol *Symbol,
320 MCSymbol *EHSymbol) {
321 if (UseCFI)
322 return;
323
324 unsigned Flags = FlagMap.lookup(Symbol);
325
326 if (Flags & EHGlobal)
327 EmitSymbolAttribute(EHSymbol, MCSA_Global);
328 if (Flags & EHWeakDefinition)
329 EmitSymbolAttribute(EHSymbol, MCSA_WeakDefinition);
330 if (Flags & EHPrivateExtern)
331 EmitSymbolAttribute(EHSymbol, MCSA_PrivateExtern);
332}
333
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000334void MCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
Daniel Dunbar6860ac72009-08-22 07:22:36 +0000335 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Rafael Espindola27c0c9b2011-04-27 15:21:19 +0000336 MCStreamer::EmitLabel(Symbol);
Daniel Dunbarf782ebc2009-06-24 17:00:42 +0000337
Bill Wendlingbc07a892013-06-18 07:20:20 +0000338 OS << *Symbol << MAI->getLabelSuffix();
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000339 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000340}
341
Reed Kotleraee4d5d12012-12-16 04:00:45 +0000342void MCAsmStreamer::EmitDebugLabel(MCSymbol *Symbol) {
343 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
344 MCStreamer::EmitDebugLabel(Symbol);
345
Bill Wendlingbc07a892013-06-18 07:20:20 +0000346 OS << *Symbol << MAI->getDebugLabelSuffix();
Reed Kotleraee4d5d12012-12-16 04:00:45 +0000347 EmitEOL();
348}
349
Chris Lattner685508c2010-01-23 06:39:22 +0000350void MCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
Kevin Enderbydd27e5e2009-07-16 17:56:39 +0000351 switch (Flag) {
Jason W Kim645f6c22010-09-30 02:45:56 +0000352 case MCAF_SyntaxUnified: OS << "\t.syntax unified"; break;
Chris Lattner685508c2010-01-23 06:39:22 +0000353 case MCAF_SubsectionsViaSymbols: OS << ".subsections_via_symbols"; break;
Bill Wendlingbc07a892013-06-18 07:20:20 +0000354 case MCAF_Code16: OS << '\t'<< MAI->getCode16Directive();break;
355 case MCAF_Code32: OS << '\t'<< MAI->getCode32Directive();break;
356 case MCAF_Code64: OS << '\t'<< MAI->getCode64Directive();break;
Kevin Enderbydd27e5e2009-07-16 17:56:39 +0000357 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000358 EmitEOL();
Kevin Enderbyc9d93ef2009-07-13 21:03:15 +0000359}
360
Daniel Dunbar16004b82013-01-18 01:25:48 +0000361void MCAsmStreamer::EmitLinkerOptions(ArrayRef<std::string> Options) {
362 assert(!Options.empty() && "At least one option is required!");
363 OS << "\t.linker_option \"" << Options[0] << '"';
364 for (ArrayRef<std::string>::iterator it = Options.begin() + 1,
365 ie = Options.end(); it != ie; ++it) {
366 OS << ", " << '"' << *it << '"';
367 }
Daniel Dunbar95856122013-01-18 19:37:00 +0000368 OS << "\n";
Daniel Dunbar16004b82013-01-18 01:25:48 +0000369}
370
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000371void MCAsmStreamer::EmitDataRegion(MCDataRegionType Kind) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000372 if (!MAI->doesSupportDataRegionDirectives())
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000373 return;
374 switch (Kind) {
375 case MCDR_DataRegion: OS << "\t.data_region"; break;
376 case MCDR_DataRegionJT8: OS << "\t.data_region jt8"; break;
377 case MCDR_DataRegionJT16: OS << "\t.data_region jt16"; break;
378 case MCDR_DataRegionJT32: OS << "\t.data_region jt32"; break;
379 case MCDR_DataRegionEnd: OS << "\t.end_data_region"; break;
380 }
381 EmitEOL();
382}
383
Jim Grosbach5a2c68d2010-11-05 22:08:08 +0000384void MCAsmStreamer::EmitThumbFunc(MCSymbol *Func) {
385 // This needs to emit to a temporary string to get properly quoted
386 // MCSymbols when they have spaces in them.
387 OS << "\t.thumb_func";
Rafael Espindolae90c1cb2011-05-16 16:17:21 +0000388 // Only Mach-O hasSubsectionsViaSymbols()
Bill Wendlingbc07a892013-06-18 07:20:20 +0000389 if (MAI->hasSubsectionsViaSymbols())
Jim Grosbach5a2c68d2010-11-05 22:08:08 +0000390 OS << '\t' << *Func;
391 EmitEOL();
392}
393
Daniel Dunbar897ffad2009-08-31 08:09:28 +0000394void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000395 OS << *Symbol << " = " << *Value;
396 EmitEOL();
Daniel Dunbard20cda02009-10-16 01:34:54 +0000397
398 // FIXME: Lift context changes into super class.
Daniel Dunbar7a989da2010-05-05 17:41:00 +0000399 Symbol->setVariableValue(Value);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000400}
401
Rafael Espindola16145972010-11-01 14:28:48 +0000402void MCAsmStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
403 OS << ".weakref " << *Alias << ", " << *Symbol;
404 EmitEOL();
405}
406
Rafael Espindola57ab7082010-12-03 00:55:40 +0000407void MCAsmStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
408 const MCSymbol *LastLabel,
Evan Chengc7ac6902011-07-14 05:43:07 +0000409 const MCSymbol *Label,
410 unsigned PointerSize) {
411 EmitDwarfSetLineAddr(LineDelta, Label, PointerSize);
Rafael Espindola57ab7082010-12-03 00:55:40 +0000412}
413
Rafael Espindola1d1eced2011-04-30 03:21:04 +0000414void MCAsmStreamer::EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
415 const MCSymbol *Label) {
416 EmitIntValue(dwarf::DW_CFA_advance_loc4, 1);
417 const MCExpr *AddrDelta = BuildSymbolDiff(getContext(), Label, LastLabel);
Rafael Espindola8e129292011-05-19 21:40:34 +0000418 AddrDelta = ForceExpAbs(AddrDelta);
Rafael Espindola1d1eced2011-04-30 03:21:04 +0000419 EmitValue(AddrDelta, 4);
420}
421
422
Saleem Abdulrasool4208b612013-08-09 01:52:03 +0000423bool MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
Chris Lattner685508c2010-01-23 06:39:22 +0000424 MCSymbolAttr Attribute) {
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000425 switch (Attribute) {
Craig Toppera2886c22012-02-07 05:05:23 +0000426 case MCSA_Invalid: llvm_unreachable("Invalid symbol attribute");
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000427 case MCSA_ELF_TypeFunction: /// .type _foo, STT_FUNC # aka @function
428 case MCSA_ELF_TypeIndFunction: /// .type _foo, STT_GNU_IFUNC
429 case MCSA_ELF_TypeObject: /// .type _foo, STT_OBJECT # aka @object
430 case MCSA_ELF_TypeTLS: /// .type _foo, STT_TLS # aka @tls_object
431 case MCSA_ELF_TypeCommon: /// .type _foo, STT_COMMON # aka @common
432 case MCSA_ELF_TypeNoType: /// .type _foo, STT_NOTYPE # aka @notype
Rafael Espindola2d006b12010-11-13 04:55:06 +0000433 case MCSA_ELF_TypeGnuUniqueObject: /// .type _foo, @gnu_unique_object
Saleem Abdulrasool4208b612013-08-09 01:52:03 +0000434 if (!MAI->hasDotTypeDotSizeDirective())
435 return false; // Symbol attribute not supported
Dan Gohman77fe07a2010-02-04 01:42:13 +0000436 OS << "\t.type\t" << *Symbol << ','
Bill Wendlingbc07a892013-06-18 07:20:20 +0000437 << ((MAI->getCommentString()[0] != '@') ? '@' : '%');
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000438 switch (Attribute) {
Saleem Abdulrasool4208b612013-08-09 01:52:03 +0000439 default: return false;
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000440 case MCSA_ELF_TypeFunction: OS << "function"; break;
441 case MCSA_ELF_TypeIndFunction: OS << "gnu_indirect_function"; break;
442 case MCSA_ELF_TypeObject: OS << "object"; break;
443 case MCSA_ELF_TypeTLS: OS << "tls_object"; break;
444 case MCSA_ELF_TypeCommon: OS << "common"; break;
445 case MCSA_ELF_TypeNoType: OS << "no_type"; break;
Rafael Espindola2d006b12010-11-13 04:55:06 +0000446 case MCSA_ELF_TypeGnuUniqueObject: OS << "gnu_unique_object"; break;
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000447 }
448 EmitEOL();
Saleem Abdulrasool4208b612013-08-09 01:52:03 +0000449 return true;
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000450 case MCSA_Global: // .globl/.global
Bill Wendlingbc07a892013-06-18 07:20:20 +0000451 OS << MAI->getGlobalDirective();
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000452 FlagMap[Symbol] |= EHGlobal;
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000453 break;
Chris Lattner79d20752010-06-21 20:35:01 +0000454 case MCSA_Hidden: OS << "\t.hidden\t"; break;
455 case MCSA_IndirectSymbol: OS << "\t.indirect_symbol\t"; break;
456 case MCSA_Internal: OS << "\t.internal\t"; break;
457 case MCSA_LazyReference: OS << "\t.lazy_reference\t"; break;
458 case MCSA_Local: OS << "\t.local\t"; break;
459 case MCSA_NoDeadStrip: OS << "\t.no_dead_strip\t"; break;
Kevin Enderby8be14412010-11-19 18:39:33 +0000460 case MCSA_SymbolResolver: OS << "\t.symbol_resolver\t"; break;
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000461 case MCSA_PrivateExtern:
462 OS << "\t.private_extern\t";
463 FlagMap[Symbol] |= EHPrivateExtern;
464 break;
Chris Lattner79d20752010-06-21 20:35:01 +0000465 case MCSA_Protected: OS << "\t.protected\t"; break;
466 case MCSA_Reference: OS << "\t.reference\t"; break;
467 case MCSA_Weak: OS << "\t.weak\t"; break;
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000468 case MCSA_WeakDefinition:
469 OS << "\t.weak_definition\t";
470 FlagMap[Symbol] |= EHWeakDefinition;
471 break;
Chris Lattner685508c2010-01-23 06:39:22 +0000472 // .weak_reference
Bill Wendlingbc07a892013-06-18 07:20:20 +0000473 case MCSA_WeakReference: OS << MAI->getWeakRefDirective(); break;
Kevin Enderby082d0fd2010-07-08 17:22:42 +0000474 case MCSA_WeakDefAutoPrivate: OS << "\t.weak_def_can_be_hidden\t"; break;
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000475 }
476
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000477 OS << *Symbol;
478 EmitEOL();
Saleem Abdulrasool4208b612013-08-09 01:52:03 +0000479
480 return true;
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000481}
482
Kevin Enderby4c21caa2009-07-14 18:17:10 +0000483void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000484 OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
485 EmitEOL();
Kevin Enderby4c21caa2009-07-14 18:17:10 +0000486}
487
Chris Lattner72afa952010-05-08 19:54:22 +0000488void MCAsmStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {
489 OS << "\t.def\t " << *Symbol << ';';
490 EmitEOL();
491}
492
493void MCAsmStreamer::EmitCOFFSymbolStorageClass (int StorageClass) {
494 OS << "\t.scl\t" << StorageClass << ';';
495 EmitEOL();
496}
497
498void MCAsmStreamer::EmitCOFFSymbolType (int Type) {
499 OS << "\t.type\t" << Type << ';';
500 EmitEOL();
501}
502
503void MCAsmStreamer::EndCOFFSymbolDef() {
504 OS << "\t.endef";
505 EmitEOL();
506}
507
Timur Iskhodzhanovc1fb2d62013-12-20 18:15:00 +0000508void MCAsmStreamer::EmitCOFFSectionIndex(MCSymbol const *Symbol) {
509 OS << "\t.secidx\t" << *Symbol;
510 EmitEOL();
511}
512
Rafael Espindolad3df3d32011-12-17 01:14:52 +0000513void MCAsmStreamer::EmitCOFFSecRel32(MCSymbol const *Symbol) {
Timur Iskhodzhanovc1fb2d62013-12-20 18:15:00 +0000514 OS << "\t.secrel32\t" << *Symbol;
Rafael Espindolad3df3d32011-12-17 01:14:52 +0000515 EmitEOL();
516}
517
Chris Lattner91dac6d2010-01-25 07:52:13 +0000518void MCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000519 assert(MAI->hasDotTypeDotSizeDirective());
Chris Lattner91dac6d2010-01-25 07:52:13 +0000520 OS << "\t.size\t" << *Symbol << ", " << *Value << '\n';
521}
522
Chris Lattnerb1301f72010-01-23 07:47:02 +0000523void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar6a715dc2009-08-30 06:17:16 +0000524 unsigned ByteAlignment) {
Richard Mitton089ed892013-09-23 17:56:20 +0000525 // Common symbols do not belong to any actual section.
526 AssignSection(Symbol, NULL);
Richard Mitton21101b32013-09-19 23:21:01 +0000527
Chris Lattnerb1301f72010-01-23 07:47:02 +0000528 OS << "\t.comm\t" << *Symbol << ',' << Size;
Chris Lattner0375d2f2010-01-25 07:29:13 +0000529 if (ByteAlignment != 0) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000530 if (MAI->getCOMMDirectiveAlignmentIsInBytes())
Chris Lattner95b98952010-01-19 06:01:04 +0000531 OS << ',' << ByteAlignment;
532 else
533 OS << ',' << Log2_32(ByteAlignment);
534 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000535 EmitEOL();
Chris Lattnera1e11f52009-07-07 20:30:46 +0000536}
537
Chris Lattnerb1301f72010-01-23 07:47:02 +0000538/// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
539///
540/// @param Symbol - The common symbol to emit.
541/// @param Size - The size of the common symbol.
Benjamin Kramer63970512011-09-01 23:04:27 +0000542void MCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
543 unsigned ByteAlign) {
Richard Mitton089ed892013-09-23 17:56:20 +0000544 // Common symbols do not belong to any actual section.
545 AssignSection(Symbol, NULL);
Richard Mitton21101b32013-09-19 23:21:01 +0000546
Chris Lattnerb1301f72010-01-23 07:47:02 +0000547 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
Benjamin Kramer63970512011-09-01 23:04:27 +0000548 if (ByteAlign > 1) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000549 switch (MAI->getLCOMMDirectiveAlignmentType()) {
Benjamin Kramer68b9f052012-09-07 21:08:01 +0000550 case LCOMM::NoAlignment:
551 llvm_unreachable("alignment not supported on .lcomm!");
552 case LCOMM::ByteAlignment:
Benjamin Kramer47f9ec92012-09-07 17:25:13 +0000553 OS << ',' << ByteAlign;
Benjamin Kramer68b9f052012-09-07 21:08:01 +0000554 break;
555 case LCOMM::Log2Alignment:
Benjamin Kramer47f9ec92012-09-07 17:25:13 +0000556 assert(isPowerOf2_32(ByteAlign) && "alignment must be a power of 2");
557 OS << ',' << Log2_32(ByteAlign);
Benjamin Kramer68b9f052012-09-07 21:08:01 +0000558 break;
Benjamin Kramer47f9ec92012-09-07 17:25:13 +0000559 }
Benjamin Kramer63970512011-09-01 23:04:27 +0000560 }
Chris Lattnerb1301f72010-01-23 07:47:02 +0000561 EmitEOL();
562}
563
Daniel Dunbarcf72e1c2009-08-28 05:48:22 +0000564void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Evan Chengf5bd6c62012-06-22 20:14:46 +0000565 uint64_t Size, unsigned ByteAlignment) {
Richard Mitton21101b32013-09-19 23:21:01 +0000566 if (Symbol)
567 AssignSection(Symbol, Section);
568
Daniel Dunbaraba5fb82009-08-13 23:36:34 +0000569 // Note: a .zerofill directive does not switch sections.
Chris Lattner591105c2009-08-08 23:39:42 +0000570 OS << ".zerofill ";
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000571
Chris Lattner591105c2009-08-08 23:39:42 +0000572 // This is a mach-o specific directive.
Chris Lattnercb307a272009-08-10 01:39:42 +0000573 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
Daniel Dunbar563a7e82009-08-14 18:51:45 +0000574 OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000575
Chris Lattner07cadaf2009-07-10 22:20:30 +0000576 if (Symbol != NULL) {
Chris Lattner8b5d55e2010-01-17 21:43:43 +0000577 OS << ',' << *Symbol << ',' << Size;
Daniel Dunbar6a715dc2009-08-30 06:17:16 +0000578 if (ByteAlignment != 0)
579 OS << ',' << Log2_32(ByteAlignment);
Chris Lattner07cadaf2009-07-10 22:20:30 +0000580 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000581 EmitEOL();
Chris Lattner07cadaf2009-07-10 22:20:30 +0000582}
583
Eric Christopher68b1bbe2010-05-17 02:13:02 +0000584// .tbss sym, size, align
585// This depends that the symbol has already been mangled from the original,
586// e.g. _a.
Eric Christopher5c87be72010-05-18 21:16:04 +0000587void MCAsmStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
588 uint64_t Size, unsigned ByteAlignment) {
Richard Mitton21101b32013-09-19 23:21:01 +0000589 AssignSection(Symbol, Section);
590
Eric Christopher9fb6bb02010-05-14 01:50:28 +0000591 assert(Symbol != NULL && "Symbol shouldn't be NULL!");
Eric Christopher5c87be72010-05-18 21:16:04 +0000592 // Instead of using the Section we'll just use the shortcut.
593 // This is a mach-o specific directive and section.
Eric Christopher68b1bbe2010-05-17 02:13:02 +0000594 OS << ".tbss " << *Symbol << ", " << Size;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000595
Eric Christopher5c87be72010-05-18 21:16:04 +0000596 // Output align if we have it. We default to 1 so don't bother printing
597 // that.
598 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000599
Eric Christopher9fb6bb02010-05-14 01:50:28 +0000600 EmitEOL();
601}
602
Chris Lattnerded9af632010-01-23 00:15:00 +0000603static inline char toOctal(int X) { return (X&7)+'0'; }
604
Chris Lattner601ef332010-01-25 18:58:59 +0000605static void PrintQuotedString(StringRef Data, raw_ostream &OS) {
606 OS << '"';
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000607
Chris Lattner601ef332010-01-25 18:58:59 +0000608 for (unsigned i = 0, e = Data.size(); i != e; ++i) {
609 unsigned char C = Data[i];
610 if (C == '"' || C == '\\') {
611 OS << '\\' << (char)C;
612 continue;
613 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000614
Chris Lattner601ef332010-01-25 18:58:59 +0000615 if (isprint((unsigned char)C)) {
616 OS << (char)C;
617 continue;
618 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000619
Chris Lattner601ef332010-01-25 18:58:59 +0000620 switch (C) {
621 case '\b': OS << "\\b"; break;
622 case '\f': OS << "\\f"; break;
623 case '\n': OS << "\\n"; break;
624 case '\r': OS << "\\r"; break;
625 case '\t': OS << "\\t"; break;
626 default:
627 OS << '\\';
628 OS << toOctal(C >> 6);
629 OS << toOctal(C >> 3);
630 OS << toOctal(C >> 0);
631 break;
632 }
633 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000634
Chris Lattner601ef332010-01-25 18:58:59 +0000635 OS << '"';
636}
637
638
Rafael Espindola64e1af82013-07-02 15:49:13 +0000639void MCAsmStreamer::EmitBytes(StringRef Data) {
Peter Collingbourne2f495b92013-04-17 21:18:16 +0000640 assert(getCurrentSection().first &&
641 "Cannot emit contents before setting section!");
Chris Lattnerded9af632010-01-23 00:15:00 +0000642 if (Data.empty()) return;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000643
Chris Lattnerded9af632010-01-23 00:15:00 +0000644 if (Data.size() == 1) {
Rafael Espindola64e1af82013-07-02 15:49:13 +0000645 OS << MAI->getData8bitsDirective();
Chris Lattnerded9af632010-01-23 00:15:00 +0000646 OS << (unsigned)(unsigned char)Data[0];
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000647 EmitEOL();
Chris Lattnerded9af632010-01-23 00:15:00 +0000648 return;
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000649 }
Chris Lattnerded9af632010-01-23 00:15:00 +0000650
651 // If the data ends with 0 and the target supports .asciz, use it, otherwise
652 // use .ascii
Bill Wendlingbc07a892013-06-18 07:20:20 +0000653 if (MAI->getAscizDirective() && Data.back() == 0) {
654 OS << MAI->getAscizDirective();
Chris Lattnerded9af632010-01-23 00:15:00 +0000655 Data = Data.substr(0, Data.size()-1);
656 } else {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000657 OS << MAI->getAsciiDirective();
Chris Lattnerded9af632010-01-23 00:15:00 +0000658 }
659
Chris Lattner601ef332010-01-25 18:58:59 +0000660 PrintQuotedString(Data, OS);
Chris Lattnerded9af632010-01-23 00:15:00 +0000661 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000662}
663
Rafael Espindola64e1af82013-07-02 15:49:13 +0000664void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size) {
665 EmitValue(MCConstantExpr::Create(Value, getContext()), Size);
Rafael Espindola4c70eea2010-12-03 02:54:21 +0000666}
667
Rafael Espindola64e1af82013-07-02 15:49:13 +0000668void MCAsmStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size) {
David Majnemer522d3db2014-02-01 07:19:38 +0000669 assert(Size <= 8 && "Invalid size");
Peter Collingbourne2f495b92013-04-17 21:18:16 +0000670 assert(getCurrentSection().first &&
671 "Cannot emit contents before setting section!");
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000672 const char *Directive = 0;
673 switch (Size) {
674 default: break;
Rafael Espindola64e1af82013-07-02 15:49:13 +0000675 case 1: Directive = MAI->getData8bitsDirective(); break;
676 case 2: Directive = MAI->getData16bitsDirective(); break;
677 case 4: Directive = MAI->getData32bitsDirective(); break;
David Majnemer522d3db2014-02-01 07:19:38 +0000678 case 8: Directive = MAI->getData64bitsDirective(); break;
679 }
680
681 if (!Directive) {
Rafael Espindolae5e1f9a2010-11-28 23:22:44 +0000682 int64_t IntValue;
683 if (!Value->EvaluateAsAbsolute(IntValue))
684 report_fatal_error("Don't know how to emit this value.");
David Majnemer522d3db2014-02-01 07:19:38 +0000685
686 // We couldn't handle the requested integer size so we fallback by breaking
687 // the request down into several, smaller, integers. Since sizes greater
688 // than eight are invalid and size equivalent to eight should have been
689 // handled earlier, we use four bytes as our largest piece of granularity.
690 bool IsLittleEndian = MAI->isLittleEndian();
691 for (unsigned Emitted = 0; Emitted != Size;) {
692 unsigned Remaining = Size - Emitted;
693 // The size of our partial emission must be a power of two less than
694 // eight.
695 unsigned EmissionSize = PowerOf2Floor(Remaining);
696 if (EmissionSize > 4)
697 EmissionSize = 4;
698 // Calculate the byte offset of our partial emission taking into account
699 // the endianness of the target.
700 unsigned ByteOffset =
701 IsLittleEndian ? Emitted : (Remaining - EmissionSize);
702 uint64_t ValueToEmit = IntValue >> (ByteOffset * 8);
703 // We truncate our partial emission to fit within the bounds of the
704 // emission domain. This produces nicer output and silences potential
705 // truncation warnings when round tripping through another assembler.
706 ValueToEmit &= ~0ULL >> (64 - EmissionSize * 8);
707 EmitIntValue(ValueToEmit, EmissionSize);
708 Emitted += EmissionSize;
Chris Lattner45eeffc2010-01-20 06:45:39 +0000709 }
710 return;
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000711 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000712
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000713 assert(Directive && "Invalid size for machine code value!");
Chris Lattner3cde7602010-01-25 21:28:50 +0000714 OS << Directive << *Value;
Chris Lattner38e92192010-01-22 07:29:22 +0000715 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000716}
717
Rafael Espindola6aea5922011-04-21 23:39:26 +0000718void MCAsmStreamer::EmitULEB128Value(const MCExpr *Value) {
Rafael Espindola92ca9332010-11-19 04:10:13 +0000719 int64_t IntValue;
720 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindola6aea5922011-04-21 23:39:26 +0000721 EmitULEB128IntValue(IntValue);
Rafael Espindola92ca9332010-11-19 04:10:13 +0000722 return;
723 }
Bill Wendlingbc07a892013-06-18 07:20:20 +0000724 assert(MAI->hasLEB128() && "Cannot print a .uleb");
Rafael Espindola38d07562010-11-04 18:17:08 +0000725 OS << ".uleb128 " << *Value;
Rafael Espindola5e874982010-11-02 17:22:24 +0000726 EmitEOL();
727}
728
Rafael Espindola6aea5922011-04-21 23:39:26 +0000729void MCAsmStreamer::EmitSLEB128Value(const MCExpr *Value) {
Rafael Espindola92ca9332010-11-19 04:10:13 +0000730 int64_t IntValue;
731 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindola6aea5922011-04-21 23:39:26 +0000732 EmitSLEB128IntValue(IntValue);
Rafael Espindola92ca9332010-11-19 04:10:13 +0000733 return;
734 }
Bill Wendlingbc07a892013-06-18 07:20:20 +0000735 assert(MAI->hasLEB128() && "Cannot print a .sleb");
Rafael Espindola38d07562010-11-04 18:17:08 +0000736 OS << ".sleb128 " << *Value;
Rafael Espindola5e874982010-11-02 17:22:24 +0000737 EmitEOL();
738}
739
Akira Hatanakaf0b08442012-02-03 04:33:00 +0000740void MCAsmStreamer::EmitGPRel64Value(const MCExpr *Value) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000741 assert(MAI->getGPRel64Directive() != 0);
742 OS << MAI->getGPRel64Directive() << *Value;
Akira Hatanakaf0b08442012-02-03 04:33:00 +0000743 EmitEOL();
744}
745
Chris Lattner3cde7602010-01-25 21:28:50 +0000746void MCAsmStreamer::EmitGPRel32Value(const MCExpr *Value) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000747 assert(MAI->getGPRel32Directive() != 0);
748 OS << MAI->getGPRel32Directive() << *Value;
Chris Lattner3cde7602010-01-25 21:28:50 +0000749 EmitEOL();
750}
751
752
Chris Lattner4340cb32010-01-19 18:52:28 +0000753/// EmitFill - Emit NumBytes bytes worth of the value specified by
754/// FillValue. This implements directives such as '.space'.
Rafael Espindola64e1af82013-07-02 15:49:13 +0000755void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue) {
Chris Lattnered89f602010-01-19 18:58:52 +0000756 if (NumBytes == 0) return;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000757
Rafael Espindola64e1af82013-07-02 15:49:13 +0000758 if (const char *ZeroDirective = MAI->getZeroDirective()) {
759 OS << ZeroDirective << NumBytes;
760 if (FillValue != 0)
761 OS << ',' << (int)FillValue;
762 EmitEOL();
763 return;
764 }
Chris Lattnerc35681b2010-01-19 19:46:13 +0000765
766 // Emit a byte at a time.
Rafael Espindola64e1af82013-07-02 15:49:13 +0000767 MCStreamer::EmitFill(NumBytes, FillValue);
Chris Lattner4340cb32010-01-19 18:52:28 +0000768}
769
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000770void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
771 unsigned ValueSize,
772 unsigned MaxBytesToEmit) {
Chris Lattner37b72342009-08-19 06:12:02 +0000773 // Some assemblers don't support non-power of two alignments, so we always
774 // emit alignments as a power of two if possible.
775 if (isPowerOf2_32(ByteAlignment)) {
Chris Lattner78b23b02009-08-19 06:35:36 +0000776 switch (ValueSize) {
Rafael Espindola7cbbd282014-02-04 18:39:51 +0000777 default:
778 llvm_unreachable("Invalid size for machine code value!");
779 case 1:
780 OS << "\t.align\t";
781 break;
782 case 2:
783 OS << ".p2alignw ";
784 break;
785 case 4:
786 OS << ".p2alignl ";
787 break;
788 case 8:
789 llvm_unreachable("Unsupported alignment size!");
Chris Lattner78b23b02009-08-19 06:35:36 +0000790 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000791
Bill Wendlingbc07a892013-06-18 07:20:20 +0000792 if (MAI->getAlignmentIsInBytes())
Chris Lattner37b72342009-08-19 06:12:02 +0000793 OS << ByteAlignment;
794 else
795 OS << Log2_32(ByteAlignment);
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000796
Chris Lattner37b72342009-08-19 06:12:02 +0000797 if (Value || MaxBytesToEmit) {
Chris Lattnerf16a1222009-09-03 04:01:10 +0000798 OS << ", 0x";
799 OS.write_hex(truncateToSize(Value, ValueSize));
Chris Lattner37b72342009-08-19 06:12:02 +0000800
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000801 if (MaxBytesToEmit)
Chris Lattner37b72342009-08-19 06:12:02 +0000802 OS << ", " << MaxBytesToEmit;
803 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000804 EmitEOL();
Chris Lattner37b72342009-08-19 06:12:02 +0000805 return;
806 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000807
Chris Lattner37b72342009-08-19 06:12:02 +0000808 // Non-power of two alignment. This is not widely supported by assemblers.
Chris Lattnere9a75a62009-08-22 21:43:10 +0000809 // FIXME: Parameterize this based on MAI.
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000810 switch (ValueSize) {
Chris Lattner37b72342009-08-19 06:12:02 +0000811 default: llvm_unreachable("Invalid size for machine code value!");
812 case 1: OS << ".balign"; break;
813 case 2: OS << ".balignw"; break;
814 case 4: OS << ".balignl"; break;
815 case 8: llvm_unreachable("Unsupported alignment size!");
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000816 }
817
Chris Lattner37b72342009-08-19 06:12:02 +0000818 OS << ' ' << ByteAlignment;
Daniel Dunbar188e87f2009-06-25 21:03:18 +0000819 OS << ", " << truncateToSize(Value, ValueSize);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000820 if (MaxBytesToEmit)
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000821 OS << ", " << MaxBytesToEmit;
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000822 EmitEOL();
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000823}
824
Kevin Enderbye83d74f2010-02-23 18:26:34 +0000825void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
826 unsigned MaxBytesToEmit) {
Chris Lattnereebaf6a2010-02-23 18:44:31 +0000827 // Emit with a text fill value.
Bill Wendlingbc07a892013-06-18 07:20:20 +0000828 EmitValueToAlignment(ByteAlignment, MAI->getTextAlignFillValue(),
Chris Lattnereebaf6a2010-02-23 18:44:31 +0000829 1, MaxBytesToEmit);
Kevin Enderbye83d74f2010-02-23 18:26:34 +0000830}
831
Jim Grosbachb5912772012-01-27 00:37:08 +0000832bool MCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000833 unsigned char Value) {
834 // FIXME: Verify that Offset is associated with the current section.
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000835 OS << ".org " << *Offset << ", " << (unsigned) Value;
836 EmitEOL();
Jim Grosbachb5912772012-01-27 00:37:08 +0000837 return false;
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000838}
839
Chris Lattner601ef332010-01-25 18:58:59 +0000840
841void MCAsmStreamer::EmitFileDirective(StringRef Filename) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000842 assert(MAI->hasSingleParameterDotFile());
Chris Lattner601ef332010-01-25 18:58:59 +0000843 OS << "\t.file\t";
844 PrintQuotedString(Filename, OS);
845 EmitEOL();
846}
847
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000848bool MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
Manman Ren1e427202013-03-07 01:42:00 +0000849 StringRef Filename, unsigned CUID) {
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000850 if (!UseDwarfDirectory && !Directory.empty()) {
851 if (sys::path::is_absolute(Filename))
Manman Ren1e427202013-03-07 01:42:00 +0000852 return EmitDwarfFileDirective(FileNo, "", Filename, CUID);
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000853
854 SmallString<128> FullPathName = Directory;
855 sys::path::append(FullPathName, Filename);
Manman Ren1e427202013-03-07 01:42:00 +0000856 return EmitDwarfFileDirective(FileNo, "", FullPathName, CUID);
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000857 }
858
Rafael Espindolab4eec1d2014-02-05 18:00:21 +0000859 OS << "\t.file\t" << FileNo << ' ';
860 if (!Directory.empty()) {
861 PrintQuotedString(Directory, OS);
862 OS << ' ';
Rafael Espindolab58867c2010-11-19 02:26:16 +0000863 }
Rafael Espindolab4eec1d2014-02-05 18:00:21 +0000864 PrintQuotedString(Filename, OS);
865 EmitEOL();
866 // All .file will belong to a single CUID.
867 CUID = 0;
868
Manman Ren1e427202013-03-07 01:42:00 +0000869 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Directory, Filename,
870 CUID);
Rafael Espindolac653a892010-11-16 21:20:32 +0000871}
872
873void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
874 unsigned Column, unsigned Flags,
875 unsigned Isa,
Devang Patel17740e72011-04-18 20:26:49 +0000876 unsigned Discriminator,
877 StringRef FileName) {
Rafael Espindolab58867c2010-11-19 02:26:16 +0000878 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
Devang Patel17740e72011-04-18 20:26:49 +0000879 Isa, Discriminator, FileName);
Rafael Espindolac653a892010-11-16 21:20:32 +0000880 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
881 if (Flags & DWARF2_FLAG_BASIC_BLOCK)
882 OS << " basic_block";
883 if (Flags & DWARF2_FLAG_PROLOGUE_END)
884 OS << " prologue_end";
885 if (Flags & DWARF2_FLAG_EPILOGUE_BEGIN)
886 OS << " epilogue_begin";
887
888 unsigned OldFlags = getContext().getCurrentDwarfLoc().getFlags();
889 if ((Flags & DWARF2_FLAG_IS_STMT) != (OldFlags & DWARF2_FLAG_IS_STMT)) {
890 OS << " is_stmt ";
891
892 if (Flags & DWARF2_FLAG_IS_STMT)
893 OS << "1";
894 else
895 OS << "0";
896 }
897
898 if (Isa)
Diego Novillob1b50072014-02-13 20:05:03 +0000899 OS << " isa " << Isa;
Rafael Espindolac653a892010-11-16 21:20:32 +0000900 if (Discriminator)
Diego Novillob1b50072014-02-13 20:05:03 +0000901 OS << " discriminator " << Discriminator;
Devang Patel17740e72011-04-18 20:26:49 +0000902
903 if (IsVerboseAsm) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000904 OS.PadToColumn(MAI->getCommentColumn());
905 OS << MAI->getCommentString() << ' ' << FileName << ':'
Devang Patel17740e72011-04-18 20:26:49 +0000906 << Line << ':' << Column;
907 }
Rafael Espindolac653a892010-11-16 21:20:32 +0000908 EmitEOL();
Chris Lattner601ef332010-01-25 18:58:59 +0000909}
910
Rafael Espindola5645bad2013-10-16 01:05:45 +0000911void MCAsmStreamer::EmitIdent(StringRef IdentString) {
912 assert(MAI->hasIdentDirective() && ".ident directive not supported");
913 OS << "\t.ident\t";
914 PrintQuotedString(IdentString, OS);
915 EmitEOL();
916}
917
Rafael Espindolaec53aa92011-05-10 13:39:48 +0000918void MCAsmStreamer::EmitCFISections(bool EH, bool Debug) {
919 MCStreamer::EmitCFISections(EH, Debug);
920
921 if (!UseCFI)
922 return;
923
924 OS << "\t.cfi_sections ";
925 if (EH) {
926 OS << ".eh_frame";
927 if (Debug)
928 OS << ", .debug_frame";
929 } else if (Debug) {
930 OS << ".debug_frame";
931 }
932
933 EmitEOL();
934}
935
Rafael Espindola38241202012-01-07 22:42:19 +0000936void MCAsmStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) {
937 if (!UseCFI) {
938 RecordProcStart(Frame);
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000939 return;
Rafael Espindola38241202012-01-07 22:42:19 +0000940 }
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000941
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000942 OS << "\t.cfi_startproc";
David Majnemere035cf92014-01-27 17:20:25 +0000943 if (Frame.IsSimple)
944 OS << " simple";
Rafael Espindola3c227b02010-11-22 14:27:24 +0000945 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000946}
947
Rafael Espindolaf28213c2012-01-09 00:17:29 +0000948void MCAsmStreamer::EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) {
949 if (!UseCFI) {
950 RecordProcEnd(Frame);
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000951 return;
Rafael Espindolaf28213c2012-01-09 00:17:29 +0000952 }
953
954 // Put a dummy non-null value in Frame.End to mark that this frame has been
955 // closed.
956 Frame.End = (MCSymbol *) 1;
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000957
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000958 OS << "\t.cfi_endproc";
Rafael Espindola3c227b02010-11-22 14:27:24 +0000959 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000960}
961
Rafael Espindola08600bc2011-05-30 20:20:15 +0000962void MCAsmStreamer::EmitRegisterName(int64_t Register) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000963 if (InstPrinter && !MAI->useDwarfRegNumForCFI()) {
964 const MCRegisterInfo *MRI = getContext().getRegisterInfo();
965 unsigned LLVMRegister = MRI->getLLVMRegNum(Register, true);
Rafael Espindolad6860522011-06-02 02:34:55 +0000966 InstPrinter->printRegName(OS, LLVMRegister);
Rafael Espindola08600bc2011-05-30 20:20:15 +0000967 } else {
968 OS << Register;
969 }
970}
971
Rafael Espindola539d96f2011-04-12 23:59:07 +0000972void MCAsmStreamer::EmitCFIDefCfa(int64_t Register, int64_t Offset) {
Rafael Espindola6c961e12011-04-29 21:41:06 +0000973 MCStreamer::EmitCFIDefCfa(Register, Offset);
974
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000975 if (!UseCFI)
976 return;
977
Rafael Espindola08600bc2011-05-30 20:20:15 +0000978 OS << "\t.cfi_def_cfa ";
979 EmitRegisterName(Register);
980 OS << ", " << Offset;
Rafael Espindola6c961e12011-04-29 21:41:06 +0000981 EmitEOL();
Rafael Espindola539d96f2011-04-12 23:59:07 +0000982}
983
984void MCAsmStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
985 MCStreamer::EmitCFIDefCfaOffset(Offset);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000986
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000987 if (!UseCFI)
988 return;
989
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000990 OS << "\t.cfi_def_cfa_offset " << Offset;
Rafael Espindola3c227b02010-11-22 14:27:24 +0000991 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000992}
993
Rafael Espindola539d96f2011-04-12 23:59:07 +0000994void MCAsmStreamer::EmitCFIDefCfaRegister(int64_t Register) {
995 MCStreamer::EmitCFIDefCfaRegister(Register);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000996
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000997 if (!UseCFI)
998 return;
999
Rafael Espindola08600bc2011-05-30 20:20:15 +00001000 OS << "\t.cfi_def_cfa_register ";
1001 EmitRegisterName(Register);
Rafael Espindola3c227b02010-11-22 14:27:24 +00001002 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +00001003}
1004
Rafael Espindola539d96f2011-04-12 23:59:07 +00001005void MCAsmStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
1006 this->MCStreamer::EmitCFIOffset(Register, Offset);
Rafael Espindola3c227b02010-11-22 14:27:24 +00001007
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001008 if (!UseCFI)
1009 return;
1010
Rafael Espindola08600bc2011-05-30 20:20:15 +00001011 OS << "\t.cfi_offset ";
1012 EmitRegisterName(Register);
1013 OS << ", " << Offset;
Rafael Espindola3c227b02010-11-22 14:27:24 +00001014 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +00001015}
1016
Rafael Espindola539d96f2011-04-12 23:59:07 +00001017void MCAsmStreamer::EmitCFIPersonality(const MCSymbol *Sym,
Rafael Espindola2ac83552010-12-27 00:36:05 +00001018 unsigned Encoding) {
Rafael Espindola539d96f2011-04-12 23:59:07 +00001019 MCStreamer::EmitCFIPersonality(Sym, Encoding);
Rafael Espindola3c227b02010-11-22 14:27:24 +00001020
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001021 if (!UseCFI)
1022 return;
1023
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +00001024 OS << "\t.cfi_personality " << Encoding << ", " << *Sym;
Rafael Espindola3c227b02010-11-22 14:27:24 +00001025 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +00001026}
1027
Rafael Espindola539d96f2011-04-12 23:59:07 +00001028void MCAsmStreamer::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) {
1029 MCStreamer::EmitCFILsda(Sym, Encoding);
Rafael Espindola3c227b02010-11-22 14:27:24 +00001030
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001031 if (!UseCFI)
1032 return;
1033
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +00001034 OS << "\t.cfi_lsda " << Encoding << ", " << *Sym;
Rafael Espindola3c227b02010-11-22 14:27:24 +00001035 EmitEOL();
Rafael Espindola539d96f2011-04-12 23:59:07 +00001036}
Rafael Espindola3c227b02010-11-22 14:27:24 +00001037
Rafael Espindola539d96f2011-04-12 23:59:07 +00001038void MCAsmStreamer::EmitCFIRememberState() {
1039 MCStreamer::EmitCFIRememberState();
1040
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001041 if (!UseCFI)
1042 return;
1043
Rafael Espindola539d96f2011-04-12 23:59:07 +00001044 OS << "\t.cfi_remember_state";
1045 EmitEOL();
1046}
1047
1048void MCAsmStreamer::EmitCFIRestoreState() {
1049 MCStreamer::EmitCFIRestoreState();
1050
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001051 if (!UseCFI)
1052 return;
1053
Rafael Espindola539d96f2011-04-12 23:59:07 +00001054 OS << "\t.cfi_restore_state";
1055 EmitEOL();
1056}
1057
1058void MCAsmStreamer::EmitCFISameValue(int64_t Register) {
1059 MCStreamer::EmitCFISameValue(Register);
1060
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001061 if (!UseCFI)
1062 return;
1063
Rafael Espindola08600bc2011-05-30 20:20:15 +00001064 OS << "\t.cfi_same_value ";
1065 EmitRegisterName(Register);
Rafael Espindola539d96f2011-04-12 23:59:07 +00001066 EmitEOL();
1067}
1068
1069void MCAsmStreamer::EmitCFIRelOffset(int64_t Register, int64_t Offset) {
1070 MCStreamer::EmitCFIRelOffset(Register, Offset);
1071
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001072 if (!UseCFI)
1073 return;
1074
Rafael Espindola08600bc2011-05-30 20:20:15 +00001075 OS << "\t.cfi_rel_offset ";
1076 EmitRegisterName(Register);
1077 OS << ", " << Offset;
Rafael Espindola539d96f2011-04-12 23:59:07 +00001078 EmitEOL();
1079}
1080
1081void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) {
1082 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
1083
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001084 if (!UseCFI)
1085 return;
1086
Rafael Espindola539d96f2011-04-12 23:59:07 +00001087 OS << "\t.cfi_adjust_cfa_offset " << Adjustment;
1088 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +00001089}
1090
Rafael Espindola3c47e372012-01-23 21:51:52 +00001091void MCAsmStreamer::EmitCFISignalFrame() {
1092 MCStreamer::EmitCFISignalFrame();
1093
1094 if (!UseCFI)
1095 return;
1096
Eric Christopher368461c2012-05-31 00:53:18 +00001097 OS << "\t.cfi_signal_frame";
Rafael Espindola3c47e372012-01-23 21:51:52 +00001098 EmitEOL();
1099}
1100
Rafael Espindola9bb24782012-11-23 16:59:41 +00001101void MCAsmStreamer::EmitCFIUndefined(int64_t Register) {
1102 MCStreamer::EmitCFIUndefined(Register);
1103
1104 if (!UseCFI)
1105 return;
1106
1107 OS << "\t.cfi_undefined " << Register;
1108 EmitEOL();
1109}
1110
Rafael Espindolacdb9a532012-11-25 15:14:49 +00001111void MCAsmStreamer::EmitCFIRegister(int64_t Register1, int64_t Register2) {
1112 MCStreamer::EmitCFIRegister(Register1, Register2);
1113
1114 if (!UseCFI)
1115 return;
1116
1117 OS << "\t.cfi_register " << Register1 << ", " << Register2;
1118 EmitEOL();
1119}
1120
Venkatraman Govindaraju3816d432013-09-26 14:49:40 +00001121void MCAsmStreamer::EmitCFIWindowSave() {
1122 MCStreamer::EmitCFIWindowSave();
1123
1124 if (!UseCFI)
1125 return;
1126
1127 OS << "\t.cfi_window_save";
1128 EmitEOL();
1129}
1130
Charles Davisc7250fa2011-05-22 21:12:15 +00001131void MCAsmStreamer::EmitWin64EHStartProc(const MCSymbol *Symbol) {
Charles Davis9a115a42011-05-20 18:19:22 +00001132 MCStreamer::EmitWin64EHStartProc(Symbol);
1133
Charles Davis4cd88562011-05-19 17:46:39 +00001134 OS << ".seh_proc " << *Symbol;
Charles Davis8d9c9902011-05-18 04:58:05 +00001135 EmitEOL();
1136}
1137
Charles Davis27117af2011-05-18 22:13:51 +00001138void MCAsmStreamer::EmitWin64EHEndProc() {
Charles Davis9a115a42011-05-20 18:19:22 +00001139 MCStreamer::EmitWin64EHEndProc();
1140
Charles Davis4cd88562011-05-19 17:46:39 +00001141 OS << "\t.seh_endproc";
Charles Davis8d9c9902011-05-18 04:58:05 +00001142 EmitEOL();
1143}
1144
Charles Davis27117af2011-05-18 22:13:51 +00001145void MCAsmStreamer::EmitWin64EHStartChained() {
Charles Davis9a115a42011-05-20 18:19:22 +00001146 MCStreamer::EmitWin64EHStartChained();
1147
Charles Davis4cd88562011-05-19 17:46:39 +00001148 OS << "\t.seh_startchained";
Charles Davis77e06102011-05-18 20:54:10 +00001149 EmitEOL();
1150}
1151
Charles Davis27117af2011-05-18 22:13:51 +00001152void MCAsmStreamer::EmitWin64EHEndChained() {
Charles Davis9a115a42011-05-20 18:19:22 +00001153 MCStreamer::EmitWin64EHEndChained();
1154
Charles Davis4cd88562011-05-19 17:46:39 +00001155 OS << "\t.seh_endchained";
Charles Davis77e06102011-05-18 20:54:10 +00001156 EmitEOL();
1157}
1158
Charles Davis4cd88562011-05-19 17:46:39 +00001159void MCAsmStreamer::EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
1160 bool Except) {
Charles Davis9a115a42011-05-20 18:19:22 +00001161 MCStreamer::EmitWin64EHHandler(Sym, Unwind, Except);
1162
Charles Davis4cd88562011-05-19 17:46:39 +00001163 OS << "\t.seh_handler " << *Sym;
1164 if (Unwind)
1165 OS << ", @unwind";
1166 if (Except)
1167 OS << ", @except";
Charles Davis77e06102011-05-18 20:54:10 +00001168 EmitEOL();
1169}
1170
Evan Cheng76792992011-07-20 05:58:47 +00001171static const MCSection *getWin64EHTableSection(StringRef suffix,
1172 MCContext &context) {
1173 // FIXME: This doesn't belong in MCObjectFileInfo. However,
1174 /// this duplicate code in MCWin64EH.cpp.
1175 if (suffix == "")
1176 return context.getObjectFileInfo()->getXDataSection();
1177 return context.getCOFFSection((".xdata"+suffix).str(),
1178 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
1179 COFF::IMAGE_SCN_MEM_READ |
1180 COFF::IMAGE_SCN_MEM_WRITE,
1181 SectionKind::getDataRel());
1182}
1183
Charles Davis4cd88562011-05-19 17:46:39 +00001184void MCAsmStreamer::EmitWin64EHHandlerData() {
Charles Davis9a115a42011-05-20 18:19:22 +00001185 MCStreamer::EmitWin64EHHandlerData();
1186
Charles Davis2f6ecea2011-05-25 21:43:45 +00001187 // Switch sections. Don't call SwitchSection directly, because that will
1188 // cause the section switch to be visible in the emitted assembly.
1189 // We only do this so the section switch that terminates the handler
1190 // data block is visible.
Charles Davis03eef622011-05-27 19:09:24 +00001191 MCWin64EHUnwindInfo *CurFrame = getCurrentW64UnwindInfo();
1192 StringRef suffix=MCWin64EHUnwindEmitter::GetSectionSuffix(CurFrame->Function);
Evan Cheng76792992011-07-20 05:58:47 +00001193 const MCSection *xdataSect = getWin64EHTableSection(suffix, getContext());
Charles Davis2f6ecea2011-05-25 21:43:45 +00001194 if (xdataSect)
1195 SwitchSectionNoChange(xdataSect);
1196
Charles Davis4cd88562011-05-19 17:46:39 +00001197 OS << "\t.seh_handlerdata";
Charles Davis77e06102011-05-18 20:54:10 +00001198 EmitEOL();
1199}
1200
Charles Davis7e6e8952011-05-19 19:35:55 +00001201void MCAsmStreamer::EmitWin64EHPushReg(unsigned Register) {
Charles Davis9a115a42011-05-20 18:19:22 +00001202 MCStreamer::EmitWin64EHPushReg(Register);
1203
Charles Davis4cd88562011-05-19 17:46:39 +00001204 OS << "\t.seh_pushreg " << Register;
Charles Davis8d9c9902011-05-18 04:58:05 +00001205 EmitEOL();
1206}
1207
Charles Davis7e6e8952011-05-19 19:35:55 +00001208void MCAsmStreamer::EmitWin64EHSetFrame(unsigned Register, unsigned Offset) {
Charles Davis9a115a42011-05-20 18:19:22 +00001209 MCStreamer::EmitWin64EHSetFrame(Register, Offset);
1210
Charles Davis4cd88562011-05-19 17:46:39 +00001211 OS << "\t.seh_setframe " << Register << ", " << Offset;
Charles Davis8d9c9902011-05-18 04:58:05 +00001212 EmitEOL();
1213}
1214
Charles Davis7e6e8952011-05-19 19:35:55 +00001215void MCAsmStreamer::EmitWin64EHAllocStack(unsigned Size) {
Charles Davis9a115a42011-05-20 18:19:22 +00001216 MCStreamer::EmitWin64EHAllocStack(Size);
1217
Charles Davis4cd88562011-05-19 17:46:39 +00001218 OS << "\t.seh_stackalloc " << Size;
Charles Davis8d9c9902011-05-18 04:58:05 +00001219 EmitEOL();
1220}
1221
Charles Davis7e6e8952011-05-19 19:35:55 +00001222void MCAsmStreamer::EmitWin64EHSaveReg(unsigned Register, unsigned Offset) {
Charles Davis9a115a42011-05-20 18:19:22 +00001223 MCStreamer::EmitWin64EHSaveReg(Register, Offset);
1224
Charles Davis4cd88562011-05-19 17:46:39 +00001225 OS << "\t.seh_savereg " << Register << ", " << Offset;
1226 EmitEOL();
1227}
1228
Charles Davis7e6e8952011-05-19 19:35:55 +00001229void MCAsmStreamer::EmitWin64EHSaveXMM(unsigned Register, unsigned Offset) {
Charles Davis9a115a42011-05-20 18:19:22 +00001230 MCStreamer::EmitWin64EHSaveXMM(Register, Offset);
1231
Charles Davis4cd88562011-05-19 17:46:39 +00001232 OS << "\t.seh_savexmm " << Register << ", " << Offset;
Charles Davis8d9c9902011-05-18 04:58:05 +00001233 EmitEOL();
1234}
1235
Charles Davis27117af2011-05-18 22:13:51 +00001236void MCAsmStreamer::EmitWin64EHPushFrame(bool Code) {
Charles Davis9a115a42011-05-20 18:19:22 +00001237 MCStreamer::EmitWin64EHPushFrame(Code);
1238
Charles Davis4cd88562011-05-19 17:46:39 +00001239 OS << "\t.seh_pushframe";
Charles Davis8d9c9902011-05-18 04:58:05 +00001240 if (Code)
Charles Davis4cd88562011-05-19 17:46:39 +00001241 OS << " @code";
Charles Davis8d9c9902011-05-18 04:58:05 +00001242 EmitEOL();
1243}
1244
Charles Davis27117af2011-05-18 22:13:51 +00001245void MCAsmStreamer::EmitWin64EHEndProlog(void) {
Charles Davis9a115a42011-05-20 18:19:22 +00001246 MCStreamer::EmitWin64EHEndProlog();
1247
Charles Davis4cd88562011-05-19 17:46:39 +00001248 OS << "\t.seh_endprologue";
Charles Davis8d9c9902011-05-18 04:58:05 +00001249 EmitEOL();
1250}
1251
David Woodhouse9784cef2014-01-28 23:13:07 +00001252void MCAsmStreamer::AddEncodingComment(const MCInst &Inst,
1253 const MCSubtargetInfo &STI) {
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001254 raw_ostream &OS = GetCommentOS();
1255 SmallString<256> Code;
1256 SmallVector<MCFixup, 4> Fixups;
1257 raw_svector_ostream VecOS(Code);
David Woodhouse9784cef2014-01-28 23:13:07 +00001258 Emitter->EncodeInstruction(Inst, VecOS, Fixups, STI);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001259 VecOS.flush();
Chris Lattner601ef332010-01-25 18:58:59 +00001260
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001261 // If we are showing fixups, create symbolic markers in the encoded
1262 // representation. We do this by making a per-bit map to the fixup item index,
1263 // then trying to display it as nicely as possible.
Daniel Dunbar75c9a4e2010-02-10 01:41:14 +00001264 SmallVector<uint8_t, 64> FixupMap;
1265 FixupMap.resize(Code.size() * 8);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001266 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
1267 FixupMap[i] = 0;
1268
1269 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1270 MCFixup &F = Fixups[i];
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +00001271 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001272 for (unsigned j = 0; j != Info.TargetSize; ++j) {
1273 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j;
1274 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
1275 FixupMap[Index] = 1 + i;
1276 }
1277 }
1278
Evan Cheng15bc70f2011-07-08 22:49:42 +00001279 // FIXME: Note the fixup comments for Thumb2 are completely bogus since the
Evan Cheng52899a92011-01-13 23:27:39 +00001280 // high order halfword of a 32-bit Thumb2 instruction is emitted first.
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001281 OS << "encoding: [";
1282 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
1283 if (i)
1284 OS << ',';
1285
1286 // See if all bits are the same map entry.
1287 uint8_t MapEntry = FixupMap[i * 8 + 0];
1288 for (unsigned j = 1; j != 8; ++j) {
1289 if (FixupMap[i * 8 + j] == MapEntry)
1290 continue;
1291
1292 MapEntry = uint8_t(~0U);
1293 break;
1294 }
1295
1296 if (MapEntry != uint8_t(~0U)) {
1297 if (MapEntry == 0) {
1298 OS << format("0x%02x", uint8_t(Code[i]));
1299 } else {
Evan Cheng0447d302011-01-13 21:45:26 +00001300 if (Code[i]) {
Evan Cheng52899a92011-01-13 23:27:39 +00001301 // FIXME: Some of the 8 bits require fix up.
Evan Cheng0447d302011-01-13 21:45:26 +00001302 OS << format("0x%02x", uint8_t(Code[i])) << '\''
1303 << char('A' + MapEntry - 1) << '\'';
1304 } else
1305 OS << char('A' + MapEntry - 1);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001306 }
1307 } else {
1308 // Otherwise, write out in binary.
1309 OS << "0b";
Jay Foad61ea0e42011-06-23 09:09:15 +00001310 for (unsigned j = 8; j--;) {
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001311 unsigned Bit = (Code[i] >> j) & 1;
NAKAMURA Takumiaf669802011-03-27 01:44:40 +00001312
Chris Lattner9e7d8c02010-11-15 05:56:19 +00001313 unsigned FixupBit;
Bill Wendlingbc07a892013-06-18 07:20:20 +00001314 if (MAI->isLittleEndian())
Chris Lattner9e7d8c02010-11-15 05:56:19 +00001315 FixupBit = i * 8 + j;
1316 else
1317 FixupBit = i * 8 + (7-j);
NAKAMURA Takumiaf669802011-03-27 01:44:40 +00001318
Jay Foad61ea0e42011-06-23 09:09:15 +00001319 if (uint8_t MapEntry = FixupMap[FixupBit]) {
1320 assert(Bit == 0 && "Encoder wrote into fixed up bit!");
1321 OS << char('A' + MapEntry - 1);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001322 } else
1323 OS << Bit;
1324 }
1325 }
1326 }
1327 OS << "]\n";
1328
1329 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1330 MCFixup &F = Fixups[i];
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +00001331 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001332 OS << " fixup " << char('A' + i) << " - " << "offset: " << F.getOffset()
Daniel Dunbar60547442010-02-10 04:47:08 +00001333 << ", value: " << *F.getValue() << ", kind: " << Info.Name << "\n";
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001334 }
1335}
1336
David Woodhousee6c13e42014-01-28 23:12:42 +00001337void MCAsmStreamer::EmitInstruction(const MCInst &Inst, const MCSubtargetInfo &STI) {
Peter Collingbourne2f495b92013-04-17 21:18:16 +00001338 assert(getCurrentSection().first &&
1339 "Cannot emit contents before setting section!");
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001340
1341 // Show the encoding in a comment if we have a code emitter.
1342 if (Emitter)
David Woodhouse9784cef2014-01-28 23:13:07 +00001343 AddEncodingComment(Inst, STI);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001344
Chris Lattner89261502010-02-09 00:54:51 +00001345 // Show the MCInst if enabled.
Daniel Dunbar3627af52010-05-26 15:18:13 +00001346 if (ShowInst) {
Bill Wendlingbc07a892013-06-18 07:20:20 +00001347 Inst.dump_pretty(GetCommentOS(), MAI, InstPrinter.get(), "\n ");
Daniel Dunbar3627af52010-05-26 15:18:13 +00001348 GetCommentOS() << "\n";
1349 }
1350
Daniel Dunbar04047fb2010-03-22 21:49:34 +00001351 // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
Daniel Dunbare3ee3322010-02-03 18:18:30 +00001352 if (InstPrinter)
Owen Andersona0c3b972011-09-15 23:38:46 +00001353 InstPrinter->printInst(&Inst, OS, "");
Daniel Dunbare3ee3322010-02-03 18:18:30 +00001354 else
Bill Wendlingbc07a892013-06-18 07:20:20 +00001355 Inst.print(OS, MAI);
Chris Lattnercfa5ebc32010-01-22 07:36:39 +00001356 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +00001357}
1358
Eli Benderskyf483ff92012-12-20 19:05:53 +00001359void MCAsmStreamer::EmitBundleAlignMode(unsigned AlignPow2) {
1360 OS << "\t.bundle_align_mode " << AlignPow2;
1361 EmitEOL();
1362}
1363
Eli Bendersky802b6282013-01-07 21:51:08 +00001364void MCAsmStreamer::EmitBundleLock(bool AlignToEnd) {
Eli Benderskyf483ff92012-12-20 19:05:53 +00001365 OS << "\t.bundle_lock";
Eli Bendersky802b6282013-01-07 21:51:08 +00001366 if (AlignToEnd)
1367 OS << " align_to_end";
Eli Benderskyf483ff92012-12-20 19:05:53 +00001368 EmitEOL();
1369}
1370
1371void MCAsmStreamer::EmitBundleUnlock() {
1372 OS << "\t.bundle_unlock";
1373 EmitEOL();
1374}
1375
Jim Grosbach6ebd7282010-09-22 18:18:30 +00001376/// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner8a87fb72010-04-03 21:35:55 +00001377/// the specified string in the output .s file. This capability is
1378/// indicated by the hasRawTextSupport() predicate.
David Blaikied8c5b4e2013-10-24 22:43:10 +00001379void MCAsmStreamer::EmitRawTextImpl(StringRef String) {
Chris Lattneraca014e2010-04-03 22:06:56 +00001380 if (!String.empty() && String.back() == '\n')
1381 String = String.substr(0, String.size()-1);
Chris Lattner8a87fb72010-04-03 21:35:55 +00001382 OS << String;
Chris Lattneraca014e2010-04-03 22:06:56 +00001383 EmitEOL();
Chris Lattner8a87fb72010-04-03 21:35:55 +00001384}
1385
Rafael Espindola07082092012-01-07 03:13:18 +00001386void MCAsmStreamer::FinishImpl() {
Kevin Enderbye7739d42011-12-09 18:09:40 +00001387 // If we are generating dwarf for assembly source files dump out the sections.
1388 if (getContext().getGenDwarfForAssembly())
Rafael Espindolab4eec1d2014-02-05 18:00:21 +00001389 MCGenDwarfInfo::Emit(this, NULL);
Kevin Enderbye7739d42011-12-09 18:09:40 +00001390
Rafael Espindolab6089d62011-05-10 03:14:15 +00001391 if (!UseCFI)
Bill Wendling550c76d2013-09-09 19:48:37 +00001392 EmitFrames(AsmBackend.get(), false);
Daniel Dunbar9faf2732009-06-24 01:03:06 +00001393}
Bill Wendling550c76d2013-09-09 19:48:37 +00001394
Chris Lattner38e92192010-01-22 07:29:22 +00001395MCStreamer *llvm::createAsmStreamer(MCContext &Context,
1396 formatted_raw_ostream &OS,
Rafael Espindolab4eec1d2014-02-05 18:00:21 +00001397 bool isVerboseAsm, bool useCFI,
Rafael Espindolaa17151a2013-10-08 13:08:17 +00001398 bool useDwarfDirectory, MCInstPrinter *IP,
1399 MCCodeEmitter *CE, MCAsmBackend *MAB,
1400 bool ShowInst) {
Rafael Espindolab4eec1d2014-02-05 18:00:21 +00001401 return new MCAsmStreamer(Context, OS, isVerboseAsm, useCFI, useDwarfDirectory,
1402 IP, CE, MAB, ShowInst);
Daniel Dunbar9faf2732009-06-24 01:03:06 +00001403}