blob: d71b1f738bbe1bee1b8c2dd85f0792bbca04a795 [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/OwningPtr.h"
12#include "llvm/ADT/SmallString.h"
13#include "llvm/ADT/StringExtras.h"
14#include "llvm/ADT/Twine.h"
15#include "llvm/MC/MCAsmBackend.h"
Daniel Dunbar73da11e2009-08-31 08:08:38 +000016#include "llvm/MC/MCAsmInfo.h"
Daniel Dunbar65105172009-08-27 00:51:57 +000017#include "llvm/MC/MCCodeEmitter.h"
Daniel Dunbar9faf2732009-06-24 01:03:06 +000018#include "llvm/MC/MCContext.h"
Daniel Dunbar73da11e2009-08-31 08:08:38 +000019#include "llvm/MC/MCExpr.h"
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +000020#include "llvm/MC/MCFixupKindInfo.h"
Daniel Dunbar23a72aa2009-07-01 06:35:03 +000021#include "llvm/MC/MCInst.h"
Chris Lattner11b2fc92009-09-14 03:02:37 +000022#include "llvm/MC/MCInstPrinter.h"
Evan Cheng2833ad12011-07-26 20:57:44 +000023#include "llvm/MC/MCObjectFileInfo.h"
Evan Chengd60fa58b2011-07-18 20:57:22 +000024#include "llvm/MC/MCRegisterInfo.h"
Evan Cheng76792992011-07-20 05:58:47 +000025#include "llvm/MC/MCSectionCOFF.h"
Chris Lattner6c203912009-08-10 18:15:01 +000026#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbar9faf2732009-06-24 01:03:06 +000027#include "llvm/MC/MCSymbol.h"
Rafael Espindolaac4ad252013-10-05 16:42:21 +000028#include "llvm/Support/CommandLine.h"
Torok Edwin56d06592009-07-11 20:10:48 +000029#include "llvm/Support/ErrorHandling.h"
Daniel Dunbar65105172009-08-27 00:51:57 +000030#include "llvm/Support/Format.h"
Chris Lattner38e92192010-01-22 07:29:22 +000031#include "llvm/Support/FormattedStream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000032#include "llvm/Support/MathExtras.h"
Rafael Espindola3bc8e712013-06-11 22:21:28 +000033#include "llvm/Support/Path.h"
Nick Lewycky0de20af2010-12-19 20:43:38 +000034#include <cctype>
Daniel Dunbar9faf2732009-06-24 01:03:06 +000035using namespace llvm;
36
37namespace {
38
Chris Lattner962c5bd82009-08-17 04:17:34 +000039class MCAsmStreamer : public MCStreamer {
Bill Wendlinge3031142011-06-17 20:35:21 +000040protected:
Chris Lattner38e92192010-01-22 07:29:22 +000041 formatted_raw_ostream &OS;
Bill Wendlingbc07a892013-06-18 07:20:20 +000042 const MCAsmInfo *MAI;
Bill Wendlinge3031142011-06-17 20:35:21 +000043private:
Chris Lattner90a78592010-03-19 05:48:53 +000044 OwningPtr<MCInstPrinter> InstPrinter;
Benjamin Kramera3e0ddb2010-07-29 17:48:06 +000045 OwningPtr<MCCodeEmitter> Emitter;
Evan Cheng5928e692011-07-25 23:24:55 +000046 OwningPtr<MCAsmBackend> AsmBackend;
Jim Grosbach3bde49a2010-09-22 18:16:55 +000047
Chris Lattner38e92192010-01-22 07:29:22 +000048 SmallString<128> CommentToEmit;
Chris Lattner8fa0e352010-01-22 19:17:48 +000049 raw_svector_ostream CommentStream;
Daniel Dunbare3ee3322010-02-03 18:18:30 +000050
Daniel Dunbare3ee3322010-02-03 18:18:30 +000051 unsigned IsVerboseAsm : 1;
52 unsigned ShowInst : 1;
Rafael Espindolaa3181d12011-04-30 03:44:37 +000053 unsigned UseCFI : 1;
Nick Lewycky40f8f2f2011-10-17 23:05:28 +000054 unsigned UseDwarfDirectory : 1;
Daniel Dunbare3ee3322010-02-03 18:18:30 +000055
Rafael Espindolabde52bc2011-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 Espindola1c8ac8f2010-12-04 03:21:47 +000061 bool needsSet(const MCExpr *Value);
62
Rafael Espindola08600bc2011-05-30 20:20:15 +000063 void EmitRegisterName(int64_t Register);
Rafael Espindola38241202012-01-07 22:42:19 +000064 virtual void EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame);
Rafael Espindolaf28213c2012-01-09 00:17:29 +000065 virtual void EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame);
Rafael Espindola08600bc2011-05-30 20:20:15 +000066
Chris Lattner962c5bd82009-08-17 04:17:34 +000067public:
Rafael Espindola24ea09e2014-01-26 06:06:37 +000068 MCAsmStreamer(MCContext &Context, formatted_raw_ostream &os,
Rafael Espindolab4eec1d2014-02-05 18:00:21 +000069 bool isVerboseAsm, bool useCFI, bool useDwarfDirectory,
70 MCInstPrinter *printer, MCCodeEmitter *emitter,
71 MCAsmBackend *asmbackend, bool showInst)
Rafael Espindola24ea09e2014-01-26 06:06:37 +000072 : MCStreamer(Context), OS(os), MAI(Context.getAsmInfo()),
Rafael Espindolaa17151a2013-10-08 13:08:17 +000073 InstPrinter(printer), Emitter(emitter), AsmBackend(asmbackend),
74 CommentStream(CommentToEmit), IsVerboseAsm(isVerboseAsm),
Rafael Espindolab4eec1d2014-02-05 18:00:21 +000075 ShowInst(showInst), UseCFI(useCFI),
Rafael Espindolaa17151a2013-10-08 13:08:17 +000076 UseDwarfDirectory(useDwarfDirectory) {
Chris Lattner482bf692010-02-10 00:10:18 +000077 if (InstPrinter && IsVerboseAsm)
78 InstPrinter->setCommentStream(CommentStream);
79 }
Chris Lattner962c5bd82009-08-17 04:17:34 +000080 ~MCAsmStreamer() {}
Daniel Dunbar9faf2732009-06-24 01:03:06 +000081
Chris Lattner38e92192010-01-22 07:29:22 +000082 inline void EmitEOL() {
Chris Lattner8fa0e352010-01-22 19:17:48 +000083 // If we don't have any comments, just emit a \n.
84 if (!IsVerboseAsm) {
Chris Lattner38e92192010-01-22 07:29:22 +000085 OS << '\n';
86 return;
87 }
88 EmitCommentsAndEOL();
89 }
90 void EmitCommentsAndEOL();
Chris Lattnerb0d44c32010-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 Grosbach3bde49a2010-09-22 18:16:55 +000095
Chris Lattner8a87fb72010-04-03 21:35:55 +000096 /// hasRawTextSupport - We support EmitRawText.
97 virtual bool hasRawTextSupport() const { return true; }
Daniel Dunbar9a0a4612010-02-09 23:00:14 +000098
Chris Lattnere1d8a312010-01-22 18:21:35 +000099 /// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner38e92192010-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 Lattnere1d8a312010-01-22 18:21:35 +0000103 virtual void AddComment(const Twine &T);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000104
105 /// AddEncodingComment - Add a comment showing the encoding of an instruction.
David Woodhouse9784cef2014-01-28 23:13:07 +0000106 virtual void AddEncodingComment(const MCInst &Inst, const MCSubtargetInfo &);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000107
Chris Lattner8fa0e352010-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 Dunbar9a0a4612010-02-09 23:00:14 +0000116
Rafael Espindola0b694812014-01-16 16:28:37 +0000117 void emitRawComment(const Twine &T, bool TabPrefix = true) LLVM_OVERRIDE;
118
Chris Lattnera3eee3c2010-01-22 19:52:01 +0000119 /// AddBlankLine - Emit a blank line to a .s file to pretty it up.
120 virtual void AddBlankLine() {
121 EmitEOL();
122 }
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000123
Chris Lattner962c5bd82009-08-17 04:17:34 +0000124 /// @name MCStreamer Interface
125 /// @{
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000126
Peter Collingbourne2f495b92013-04-17 21:18:16 +0000127 virtual void ChangeSection(const MCSection *Section,
128 const MCExpr *Subsection);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000129
Rafael Espindola0e2ccb22014-01-24 03:54:40 +0000130 virtual void InitSections(bool Force) {
131 if (Force)
132 SwitchSection(getContext().getObjectFileInfo()->getTextSection());
133 }
134
Chris Lattner962c5bd82009-08-17 04:17:34 +0000135 virtual void EmitLabel(MCSymbol *Symbol);
Reed Kotleraee4d5d12012-12-16 04:00:45 +0000136 virtual void EmitDebugLabel(MCSymbol *Symbol);
137
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000138 virtual void EmitEHSymAttributes(const MCSymbol *Symbol,
139 MCSymbol *EHSymbol);
Chris Lattner685508c2010-01-23 06:39:22 +0000140 virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
Daniel Dunbar16004b82013-01-18 01:25:48 +0000141 virtual void EmitLinkerOptions(ArrayRef<std::string> Options);
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000142 virtual void EmitDataRegion(MCDataRegionType Kind);
Jim Grosbach5a2c68d2010-11-05 22:08:08 +0000143 virtual void EmitThumbFunc(MCSymbol *Func);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000144
Daniel Dunbar897ffad2009-08-31 08:09:28 +0000145 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
Rafael Espindola16145972010-11-01 14:28:48 +0000146 virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
Rafael Espindola57ab7082010-12-03 00:55:40 +0000147 virtual void EmitDwarfAdvanceLineAddr(int64_t LineDelta,
148 const MCSymbol *LastLabel,
Evan Chengc7ac6902011-07-14 05:43:07 +0000149 const MCSymbol *Label,
150 unsigned PointerSize);
Rafael Espindola1d1eced2011-04-30 03:21:04 +0000151 virtual void EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
152 const MCSymbol *Label);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000153
Saleem Abdulrasool4208b612013-08-09 01:52:03 +0000154 virtual bool EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
Kevin Enderbyc9d93ef2009-07-13 21:03:15 +0000155
Chris Lattner962c5bd82009-08-17 04:17:34 +0000156 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
Chris Lattner72afa952010-05-08 19:54:22 +0000157 virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol);
158 virtual void EmitCOFFSymbolStorageClass(int StorageClass);
159 virtual void EmitCOFFSymbolType(int Type);
160 virtual void EndCOFFSymbolDef();
Timur Iskhodzhanovc1fb2d62013-12-20 18:15:00 +0000161 virtual void EmitCOFFSectionIndex(MCSymbol const *Symbol);
Rafael Espindolad3df3d32011-12-17 01:14:52 +0000162 virtual void EmitCOFFSecRel32(MCSymbol const *Symbol);
Chris Lattner91dac6d2010-01-25 07:52:13 +0000163 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
Chris Lattnerb1301f72010-01-23 07:47:02 +0000164 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar6a715dc2009-08-30 06:17:16 +0000165 unsigned ByteAlignment);
Kevin Enderby4c21caa2009-07-14 18:17:10 +0000166
Chris Lattnerb1301f72010-01-23 07:47:02 +0000167 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
168 ///
169 /// @param Symbol - The common symbol to emit.
170 /// @param Size - The size of the common symbol.
Dmitri Gribenko65340a62012-08-23 16:54:08 +0000171 /// @param ByteAlignment - The alignment of the common symbol in bytes.
Benjamin Kramer63970512011-09-01 23:04:27 +0000172 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
173 unsigned ByteAlignment);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000174
Daniel Dunbarcf72e1c2009-08-28 05:48:22 +0000175 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
Evan Chengf5bd6c62012-06-22 20:14:46 +0000176 uint64_t Size = 0, unsigned ByteAlignment = 0);
Kevin Enderbycbe475d2009-07-14 21:35:03 +0000177
Eric Christopher5c87be72010-05-18 21:16:04 +0000178 virtual void EmitTBSSSymbol (const MCSection *Section, MCSymbol *Symbol,
179 uint64_t Size, unsigned ByteAlignment = 0);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000180
Rafael Espindola64e1af82013-07-02 15:49:13 +0000181 virtual void EmitBytes(StringRef Data);
Chris Lattnera1e11f52009-07-07 20:30:46 +0000182
Rafael Espindola64e1af82013-07-02 15:49:13 +0000183 virtual void EmitValueImpl(const MCExpr *Value, unsigned Size);
184 virtual void EmitIntValue(uint64_t Value, unsigned Size);
Rafael Espindola5e874982010-11-02 17:22:24 +0000185
Rafael Espindola6aea5922011-04-21 23:39:26 +0000186 virtual void EmitULEB128Value(const MCExpr *Value);
Rafael Espindola5e874982010-11-02 17:22:24 +0000187
Rafael Espindola6aea5922011-04-21 23:39:26 +0000188 virtual void EmitSLEB128Value(const MCExpr *Value);
Rafael Espindola5e874982010-11-02 17:22:24 +0000189
Akira Hatanakaf0b08442012-02-03 04:33:00 +0000190 virtual void EmitGPRel64Value(const MCExpr *Value);
191
Chris Lattner3cde7602010-01-25 21:28:50 +0000192 virtual void EmitGPRel32Value(const MCExpr *Value);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000193
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000194
Rafael Espindola64e1af82013-07-02 15:49:13 +0000195 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue);
Chris Lattner07cadaf2009-07-10 22:20:30 +0000196
Chris Lattner962c5bd82009-08-17 04:17:34 +0000197 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
198 unsigned ValueSize = 1,
199 unsigned MaxBytesToEmit = 0);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000200
Kevin Enderbye83d74f2010-02-23 18:26:34 +0000201 virtual void EmitCodeAlignment(unsigned ByteAlignment,
202 unsigned MaxBytesToEmit = 0);
203
Jim Grosbachb5912772012-01-27 00:37:08 +0000204 virtual bool EmitValueToOffset(const MCExpr *Offset,
Chris Lattner962c5bd82009-08-17 04:17:34 +0000205 unsigned char Value = 0);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000206
Chris Lattner601ef332010-01-25 18:58:59 +0000207 virtual void EmitFileDirective(StringRef Filename);
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000208 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
Manman Ren1e427202013-03-07 01:42:00 +0000209 StringRef Filename, unsigned CUID = 0);
Rafael Espindolac653a892010-11-16 21:20:32 +0000210 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
211 unsigned Column, unsigned Flags,
Devang Patel17740e72011-04-18 20:26:49 +0000212 unsigned Isa, unsigned Discriminator,
213 StringRef FileName);
Chris Lattner601ef332010-01-25 18:58:59 +0000214
Rafael Espindola5645bad2013-10-16 01:05:45 +0000215 virtual void EmitIdent(StringRef IdentString);
Rafael Espindolaec53aa92011-05-10 13:39:48 +0000216 virtual void EmitCFISections(bool EH, bool Debug);
Rafael Espindola539d96f2011-04-12 23:59:07 +0000217 virtual void EmitCFIDefCfa(int64_t Register, int64_t Offset);
218 virtual void EmitCFIDefCfaOffset(int64_t Offset);
219 virtual void EmitCFIDefCfaRegister(int64_t Register);
220 virtual void EmitCFIOffset(int64_t Register, int64_t Offset);
221 virtual void EmitCFIPersonality(const MCSymbol *Sym, unsigned Encoding);
222 virtual void EmitCFILsda(const MCSymbol *Sym, unsigned Encoding);
223 virtual void EmitCFIRememberState();
224 virtual void EmitCFIRestoreState();
225 virtual void EmitCFISameValue(int64_t Register);
226 virtual void EmitCFIRelOffset(int64_t Register, int64_t Offset);
227 virtual void EmitCFIAdjustCfaOffset(int64_t Adjustment);
Rafael Espindola3c47e372012-01-23 21:51:52 +0000228 virtual void EmitCFISignalFrame();
Rafael Espindola9bb24782012-11-23 16:59:41 +0000229 virtual void EmitCFIUndefined(int64_t Register);
Rafael Espindolacdb9a532012-11-25 15:14:49 +0000230 virtual void EmitCFIRegister(int64_t Register1, int64_t Register2);
Venkatraman Govindaraju3816d432013-09-26 14:49:40 +0000231 virtual void EmitCFIWindowSave();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000232
Charles Davisc7250fa2011-05-22 21:12:15 +0000233 virtual void EmitWin64EHStartProc(const MCSymbol *Symbol);
Charles Davis8d9c9902011-05-18 04:58:05 +0000234 virtual void EmitWin64EHEndProc();
Charles Davis77e06102011-05-18 20:54:10 +0000235 virtual void EmitWin64EHStartChained();
236 virtual void EmitWin64EHEndChained();
Charles Davis4cd88562011-05-19 17:46:39 +0000237 virtual void EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
238 bool Except);
239 virtual void EmitWin64EHHandlerData();
Charles Davis7e6e8952011-05-19 19:35:55 +0000240 virtual void EmitWin64EHPushReg(unsigned Register);
241 virtual void EmitWin64EHSetFrame(unsigned Register, unsigned Offset);
242 virtual void EmitWin64EHAllocStack(unsigned Size);
243 virtual void EmitWin64EHSaveReg(unsigned Register, unsigned Offset);
244 virtual void EmitWin64EHSaveXMM(unsigned Register, unsigned Offset);
Charles Davis8d9c9902011-05-18 04:58:05 +0000245 virtual void EmitWin64EHPushFrame(bool Code);
246 virtual void EmitWin64EHEndProlog();
247
David Woodhousee6c13e42014-01-28 23:12:42 +0000248 virtual void EmitInstruction(const MCInst &Inst, const MCSubtargetInfo &STI);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000249
Eli Benderskyf483ff92012-12-20 19:05:53 +0000250 virtual void EmitBundleAlignMode(unsigned AlignPow2);
Eli Bendersky802b6282013-01-07 21:51:08 +0000251 virtual void EmitBundleLock(bool AlignToEnd);
Eli Benderskyf483ff92012-12-20 19:05:53 +0000252 virtual void EmitBundleUnlock();
253
Jim Grosbach6ebd7282010-09-22 18:18:30 +0000254 /// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner8a87fb72010-04-03 21:35:55 +0000255 /// the specified string in the output .s file. This capability is
256 /// indicated by the hasRawTextSupport() predicate.
David Blaikied8c5b4e2013-10-24 22:43:10 +0000257 virtual void EmitRawTextImpl(StringRef String);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000258
Rafael Espindola07082092012-01-07 03:13:18 +0000259 virtual void FinishImpl();
Chris Lattner962c5bd82009-08-17 04:17:34 +0000260};
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000261
Chris Lattner962c5bd82009-08-17 04:17:34 +0000262} // end anonymous namespace.
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000263
Chris Lattnere1d8a312010-01-22 18:21:35 +0000264/// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner38e92192010-01-22 07:29:22 +0000265/// file if applicable as a QoI issue to make the output of the compiler
266/// more readable. This only affects the MCAsmStreamer, and only when
267/// verbose assembly output is enabled.
Chris Lattnere1d8a312010-01-22 18:21:35 +0000268void MCAsmStreamer::AddComment(const Twine &T) {
Chris Lattner38e92192010-01-22 07:29:22 +0000269 if (!IsVerboseAsm) return;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000270
Chris Lattner8fa0e352010-01-22 19:17:48 +0000271 // Make sure that CommentStream is flushed.
272 CommentStream.flush();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000273
Chris Lattner38e92192010-01-22 07:29:22 +0000274 T.toVector(CommentToEmit);
Chris Lattner8fa0e352010-01-22 19:17:48 +0000275 // Each comment goes on its own line.
276 CommentToEmit.push_back('\n');
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000277
Chris Lattner1386a882010-01-22 21:16:10 +0000278 // Tell the comment stream that the vector changed underneath it.
279 CommentStream.resync();
Chris Lattner38e92192010-01-22 07:29:22 +0000280}
281
282void MCAsmStreamer::EmitCommentsAndEOL() {
Chris Lattner8fa0e352010-01-22 19:17:48 +0000283 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) {
284 OS << '\n';
285 return;
286 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000287
Chris Lattner8fa0e352010-01-22 19:17:48 +0000288 CommentStream.flush();
Chris Lattner38e92192010-01-22 07:29:22 +0000289 StringRef Comments = CommentToEmit.str();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000290
Chris Lattner8fa0e352010-01-22 19:17:48 +0000291 assert(Comments.back() == '\n' &&
292 "Comment array not newline terminated");
293 do {
Chris Lattner38e92192010-01-22 07:29:22 +0000294 // Emit a line of comments.
Bill Wendlingbc07a892013-06-18 07:20:20 +0000295 OS.PadToColumn(MAI->getCommentColumn());
Chris Lattner38e92192010-01-22 07:29:22 +0000296 size_t Position = Comments.find('\n');
Bill Wendlingbc07a892013-06-18 07:20:20 +0000297 OS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) <<'\n';
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000298
Chris Lattner38e92192010-01-22 07:29:22 +0000299 Comments = Comments.substr(Position+1);
Chris Lattner8fa0e352010-01-22 19:17:48 +0000300 } while (!Comments.empty());
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000301
Chris Lattner1386a882010-01-22 21:16:10 +0000302 CommentToEmit.clear();
303 // Tell the comment stream that the vector changed underneath it.
304 CommentStream.resync();
Chris Lattner38e92192010-01-22 07:29:22 +0000305}
306
Daniel Dunbar188e87f2009-06-25 21:03:18 +0000307static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
308 assert(Bytes && "Invalid size!");
309 return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
310}
311
Rafael Espindola0b694812014-01-16 16:28:37 +0000312void MCAsmStreamer::emitRawComment(const Twine &T, bool TabPrefix) {
313 if (TabPrefix)
314 OS << '\t';
315 OS << MAI->getCommentString() << T;
316 EmitEOL();
317}
318
Peter Collingbourne2f495b92013-04-17 21:18:16 +0000319void MCAsmStreamer::ChangeSection(const MCSection *Section,
320 const MCExpr *Subsection) {
Chris Lattner4b7dadb2009-08-19 05:49:37 +0000321 assert(Section && "Cannot switch to a null section!");
Bill Wendlingbc07a892013-06-18 07:20:20 +0000322 Section->PrintSwitchToSection(*MAI, OS, Subsection);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000323}
324
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000325void MCAsmStreamer::EmitEHSymAttributes(const MCSymbol *Symbol,
326 MCSymbol *EHSymbol) {
327 if (UseCFI)
328 return;
329
330 unsigned Flags = FlagMap.lookup(Symbol);
331
332 if (Flags & EHGlobal)
333 EmitSymbolAttribute(EHSymbol, MCSA_Global);
334 if (Flags & EHWeakDefinition)
335 EmitSymbolAttribute(EHSymbol, MCSA_WeakDefinition);
336 if (Flags & EHPrivateExtern)
337 EmitSymbolAttribute(EHSymbol, MCSA_PrivateExtern);
338}
339
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000340void MCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
Daniel Dunbar6860ac72009-08-22 07:22:36 +0000341 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Rafael Espindola27c0c9b2011-04-27 15:21:19 +0000342 MCStreamer::EmitLabel(Symbol);
Daniel Dunbarf782ebc2009-06-24 17:00:42 +0000343
Bill Wendlingbc07a892013-06-18 07:20:20 +0000344 OS << *Symbol << MAI->getLabelSuffix();
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000345 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000346}
347
Reed Kotleraee4d5d12012-12-16 04:00:45 +0000348void MCAsmStreamer::EmitDebugLabel(MCSymbol *Symbol) {
349 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
350 MCStreamer::EmitDebugLabel(Symbol);
351
Bill Wendlingbc07a892013-06-18 07:20:20 +0000352 OS << *Symbol << MAI->getDebugLabelSuffix();
Reed Kotleraee4d5d12012-12-16 04:00:45 +0000353 EmitEOL();
354}
355
Chris Lattner685508c2010-01-23 06:39:22 +0000356void MCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
Kevin Enderbydd27e5e2009-07-16 17:56:39 +0000357 switch (Flag) {
Jason W Kim645f6c22010-09-30 02:45:56 +0000358 case MCAF_SyntaxUnified: OS << "\t.syntax unified"; break;
Chris Lattner685508c2010-01-23 06:39:22 +0000359 case MCAF_SubsectionsViaSymbols: OS << ".subsections_via_symbols"; break;
Bill Wendlingbc07a892013-06-18 07:20:20 +0000360 case MCAF_Code16: OS << '\t'<< MAI->getCode16Directive();break;
361 case MCAF_Code32: OS << '\t'<< MAI->getCode32Directive();break;
362 case MCAF_Code64: OS << '\t'<< MAI->getCode64Directive();break;
Kevin Enderbydd27e5e2009-07-16 17:56:39 +0000363 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000364 EmitEOL();
Kevin Enderbyc9d93ef2009-07-13 21:03:15 +0000365}
366
Daniel Dunbar16004b82013-01-18 01:25:48 +0000367void MCAsmStreamer::EmitLinkerOptions(ArrayRef<std::string> Options) {
368 assert(!Options.empty() && "At least one option is required!");
369 OS << "\t.linker_option \"" << Options[0] << '"';
370 for (ArrayRef<std::string>::iterator it = Options.begin() + 1,
371 ie = Options.end(); it != ie; ++it) {
372 OS << ", " << '"' << *it << '"';
373 }
Daniel Dunbar95856122013-01-18 19:37:00 +0000374 OS << "\n";
Daniel Dunbar16004b82013-01-18 01:25:48 +0000375}
376
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000377void MCAsmStreamer::EmitDataRegion(MCDataRegionType Kind) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000378 if (!MAI->doesSupportDataRegionDirectives())
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000379 return;
380 switch (Kind) {
381 case MCDR_DataRegion: OS << "\t.data_region"; break;
382 case MCDR_DataRegionJT8: OS << "\t.data_region jt8"; break;
383 case MCDR_DataRegionJT16: OS << "\t.data_region jt16"; break;
384 case MCDR_DataRegionJT32: OS << "\t.data_region jt32"; break;
385 case MCDR_DataRegionEnd: OS << "\t.end_data_region"; break;
386 }
387 EmitEOL();
388}
389
Jim Grosbach5a2c68d2010-11-05 22:08:08 +0000390void MCAsmStreamer::EmitThumbFunc(MCSymbol *Func) {
391 // This needs to emit to a temporary string to get properly quoted
392 // MCSymbols when they have spaces in them.
393 OS << "\t.thumb_func";
Rafael Espindolae90c1cb2011-05-16 16:17:21 +0000394 // Only Mach-O hasSubsectionsViaSymbols()
Bill Wendlingbc07a892013-06-18 07:20:20 +0000395 if (MAI->hasSubsectionsViaSymbols())
Jim Grosbach5a2c68d2010-11-05 22:08:08 +0000396 OS << '\t' << *Func;
397 EmitEOL();
398}
399
Daniel Dunbar897ffad2009-08-31 08:09:28 +0000400void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000401 OS << *Symbol << " = " << *Value;
402 EmitEOL();
Daniel Dunbard20cda02009-10-16 01:34:54 +0000403
404 // FIXME: Lift context changes into super class.
Daniel Dunbar7a989da2010-05-05 17:41:00 +0000405 Symbol->setVariableValue(Value);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000406}
407
Rafael Espindola16145972010-11-01 14:28:48 +0000408void MCAsmStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
409 OS << ".weakref " << *Alias << ", " << *Symbol;
410 EmitEOL();
411}
412
Rafael Espindola57ab7082010-12-03 00:55:40 +0000413void MCAsmStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
414 const MCSymbol *LastLabel,
Evan Chengc7ac6902011-07-14 05:43:07 +0000415 const MCSymbol *Label,
416 unsigned PointerSize) {
417 EmitDwarfSetLineAddr(LineDelta, Label, PointerSize);
Rafael Espindola57ab7082010-12-03 00:55:40 +0000418}
419
Rafael Espindola1d1eced2011-04-30 03:21:04 +0000420void MCAsmStreamer::EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
421 const MCSymbol *Label) {
422 EmitIntValue(dwarf::DW_CFA_advance_loc4, 1);
423 const MCExpr *AddrDelta = BuildSymbolDiff(getContext(), Label, LastLabel);
Rafael Espindola8e129292011-05-19 21:40:34 +0000424 AddrDelta = ForceExpAbs(AddrDelta);
Rafael Espindola1d1eced2011-04-30 03:21:04 +0000425 EmitValue(AddrDelta, 4);
426}
427
428
Saleem Abdulrasool4208b612013-08-09 01:52:03 +0000429bool MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
Chris Lattner685508c2010-01-23 06:39:22 +0000430 MCSymbolAttr Attribute) {
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000431 switch (Attribute) {
Craig Toppera2886c22012-02-07 05:05:23 +0000432 case MCSA_Invalid: llvm_unreachable("Invalid symbol attribute");
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000433 case MCSA_ELF_TypeFunction: /// .type _foo, STT_FUNC # aka @function
434 case MCSA_ELF_TypeIndFunction: /// .type _foo, STT_GNU_IFUNC
435 case MCSA_ELF_TypeObject: /// .type _foo, STT_OBJECT # aka @object
436 case MCSA_ELF_TypeTLS: /// .type _foo, STT_TLS # aka @tls_object
437 case MCSA_ELF_TypeCommon: /// .type _foo, STT_COMMON # aka @common
438 case MCSA_ELF_TypeNoType: /// .type _foo, STT_NOTYPE # aka @notype
Rafael Espindola2d006b12010-11-13 04:55:06 +0000439 case MCSA_ELF_TypeGnuUniqueObject: /// .type _foo, @gnu_unique_object
Saleem Abdulrasool4208b612013-08-09 01:52:03 +0000440 if (!MAI->hasDotTypeDotSizeDirective())
441 return false; // Symbol attribute not supported
Dan Gohman77fe07a2010-02-04 01:42:13 +0000442 OS << "\t.type\t" << *Symbol << ','
Bill Wendlingbc07a892013-06-18 07:20:20 +0000443 << ((MAI->getCommentString()[0] != '@') ? '@' : '%');
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000444 switch (Attribute) {
Saleem Abdulrasool4208b612013-08-09 01:52:03 +0000445 default: return false;
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000446 case MCSA_ELF_TypeFunction: OS << "function"; break;
447 case MCSA_ELF_TypeIndFunction: OS << "gnu_indirect_function"; break;
448 case MCSA_ELF_TypeObject: OS << "object"; break;
449 case MCSA_ELF_TypeTLS: OS << "tls_object"; break;
450 case MCSA_ELF_TypeCommon: OS << "common"; break;
451 case MCSA_ELF_TypeNoType: OS << "no_type"; break;
Rafael Espindola2d006b12010-11-13 04:55:06 +0000452 case MCSA_ELF_TypeGnuUniqueObject: OS << "gnu_unique_object"; break;
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000453 }
454 EmitEOL();
Saleem Abdulrasool4208b612013-08-09 01:52:03 +0000455 return true;
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000456 case MCSA_Global: // .globl/.global
Bill Wendlingbc07a892013-06-18 07:20:20 +0000457 OS << MAI->getGlobalDirective();
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000458 FlagMap[Symbol] |= EHGlobal;
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000459 break;
Chris Lattner79d20752010-06-21 20:35:01 +0000460 case MCSA_Hidden: OS << "\t.hidden\t"; break;
461 case MCSA_IndirectSymbol: OS << "\t.indirect_symbol\t"; break;
462 case MCSA_Internal: OS << "\t.internal\t"; break;
463 case MCSA_LazyReference: OS << "\t.lazy_reference\t"; break;
464 case MCSA_Local: OS << "\t.local\t"; break;
465 case MCSA_NoDeadStrip: OS << "\t.no_dead_strip\t"; break;
Kevin Enderby8be14412010-11-19 18:39:33 +0000466 case MCSA_SymbolResolver: OS << "\t.symbol_resolver\t"; break;
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000467 case MCSA_PrivateExtern:
468 OS << "\t.private_extern\t";
469 FlagMap[Symbol] |= EHPrivateExtern;
470 break;
Chris Lattner79d20752010-06-21 20:35:01 +0000471 case MCSA_Protected: OS << "\t.protected\t"; break;
472 case MCSA_Reference: OS << "\t.reference\t"; break;
473 case MCSA_Weak: OS << "\t.weak\t"; break;
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000474 case MCSA_WeakDefinition:
475 OS << "\t.weak_definition\t";
476 FlagMap[Symbol] |= EHWeakDefinition;
477 break;
Chris Lattner685508c2010-01-23 06:39:22 +0000478 // .weak_reference
Bill Wendlingbc07a892013-06-18 07:20:20 +0000479 case MCSA_WeakReference: OS << MAI->getWeakRefDirective(); break;
Kevin Enderby082d0fd2010-07-08 17:22:42 +0000480 case MCSA_WeakDefAutoPrivate: OS << "\t.weak_def_can_be_hidden\t"; break;
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000481 }
482
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000483 OS << *Symbol;
484 EmitEOL();
Saleem Abdulrasool4208b612013-08-09 01:52:03 +0000485
486 return true;
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000487}
488
Kevin Enderby4c21caa2009-07-14 18:17:10 +0000489void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000490 OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
491 EmitEOL();
Kevin Enderby4c21caa2009-07-14 18:17:10 +0000492}
493
Chris Lattner72afa952010-05-08 19:54:22 +0000494void MCAsmStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {
495 OS << "\t.def\t " << *Symbol << ';';
496 EmitEOL();
497}
498
499void MCAsmStreamer::EmitCOFFSymbolStorageClass (int StorageClass) {
500 OS << "\t.scl\t" << StorageClass << ';';
501 EmitEOL();
502}
503
504void MCAsmStreamer::EmitCOFFSymbolType (int Type) {
505 OS << "\t.type\t" << Type << ';';
506 EmitEOL();
507}
508
509void MCAsmStreamer::EndCOFFSymbolDef() {
510 OS << "\t.endef";
511 EmitEOL();
512}
513
Timur Iskhodzhanovc1fb2d62013-12-20 18:15:00 +0000514void MCAsmStreamer::EmitCOFFSectionIndex(MCSymbol const *Symbol) {
515 OS << "\t.secidx\t" << *Symbol;
516 EmitEOL();
517}
518
Rafael Espindolad3df3d32011-12-17 01:14:52 +0000519void MCAsmStreamer::EmitCOFFSecRel32(MCSymbol const *Symbol) {
Timur Iskhodzhanovc1fb2d62013-12-20 18:15:00 +0000520 OS << "\t.secrel32\t" << *Symbol;
Rafael Espindolad3df3d32011-12-17 01:14:52 +0000521 EmitEOL();
522}
523
Chris Lattner91dac6d2010-01-25 07:52:13 +0000524void MCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000525 assert(MAI->hasDotTypeDotSizeDirective());
Chris Lattner91dac6d2010-01-25 07:52:13 +0000526 OS << "\t.size\t" << *Symbol << ", " << *Value << '\n';
527}
528
Chris Lattnerb1301f72010-01-23 07:47:02 +0000529void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar6a715dc2009-08-30 06:17:16 +0000530 unsigned ByteAlignment) {
Richard Mitton089ed892013-09-23 17:56:20 +0000531 // Common symbols do not belong to any actual section.
532 AssignSection(Symbol, NULL);
Richard Mitton21101b32013-09-19 23:21:01 +0000533
Chris Lattnerb1301f72010-01-23 07:47:02 +0000534 OS << "\t.comm\t" << *Symbol << ',' << Size;
Chris Lattner0375d2f2010-01-25 07:29:13 +0000535 if (ByteAlignment != 0) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000536 if (MAI->getCOMMDirectiveAlignmentIsInBytes())
Chris Lattner95b98952010-01-19 06:01:04 +0000537 OS << ',' << ByteAlignment;
538 else
539 OS << ',' << Log2_32(ByteAlignment);
540 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000541 EmitEOL();
Chris Lattnera1e11f52009-07-07 20:30:46 +0000542}
543
Chris Lattnerb1301f72010-01-23 07:47:02 +0000544/// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
545///
546/// @param Symbol - The common symbol to emit.
547/// @param Size - The size of the common symbol.
Benjamin Kramer63970512011-09-01 23:04:27 +0000548void MCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
549 unsigned ByteAlign) {
Richard Mitton089ed892013-09-23 17:56:20 +0000550 // Common symbols do not belong to any actual section.
551 AssignSection(Symbol, NULL);
Richard Mitton21101b32013-09-19 23:21:01 +0000552
Chris Lattnerb1301f72010-01-23 07:47:02 +0000553 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
Benjamin Kramer63970512011-09-01 23:04:27 +0000554 if (ByteAlign > 1) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000555 switch (MAI->getLCOMMDirectiveAlignmentType()) {
Benjamin Kramer68b9f052012-09-07 21:08:01 +0000556 case LCOMM::NoAlignment:
557 llvm_unreachable("alignment not supported on .lcomm!");
558 case LCOMM::ByteAlignment:
Benjamin Kramer47f9ec92012-09-07 17:25:13 +0000559 OS << ',' << ByteAlign;
Benjamin Kramer68b9f052012-09-07 21:08:01 +0000560 break;
561 case LCOMM::Log2Alignment:
Benjamin Kramer47f9ec92012-09-07 17:25:13 +0000562 assert(isPowerOf2_32(ByteAlign) && "alignment must be a power of 2");
563 OS << ',' << Log2_32(ByteAlign);
Benjamin Kramer68b9f052012-09-07 21:08:01 +0000564 break;
Benjamin Kramer47f9ec92012-09-07 17:25:13 +0000565 }
Benjamin Kramer63970512011-09-01 23:04:27 +0000566 }
Chris Lattnerb1301f72010-01-23 07:47:02 +0000567 EmitEOL();
568}
569
Daniel Dunbarcf72e1c2009-08-28 05:48:22 +0000570void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Evan Chengf5bd6c62012-06-22 20:14:46 +0000571 uint64_t Size, unsigned ByteAlignment) {
Richard Mitton21101b32013-09-19 23:21:01 +0000572 if (Symbol)
573 AssignSection(Symbol, Section);
574
Daniel Dunbaraba5fb82009-08-13 23:36:34 +0000575 // Note: a .zerofill directive does not switch sections.
Chris Lattner591105c2009-08-08 23:39:42 +0000576 OS << ".zerofill ";
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000577
Chris Lattner591105c2009-08-08 23:39:42 +0000578 // This is a mach-o specific directive.
Chris Lattnercb307a272009-08-10 01:39:42 +0000579 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
Daniel Dunbar563a7e82009-08-14 18:51:45 +0000580 OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000581
Chris Lattner07cadaf2009-07-10 22:20:30 +0000582 if (Symbol != NULL) {
Chris Lattner8b5d55e2010-01-17 21:43:43 +0000583 OS << ',' << *Symbol << ',' << Size;
Daniel Dunbar6a715dc2009-08-30 06:17:16 +0000584 if (ByteAlignment != 0)
585 OS << ',' << Log2_32(ByteAlignment);
Chris Lattner07cadaf2009-07-10 22:20:30 +0000586 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000587 EmitEOL();
Chris Lattner07cadaf2009-07-10 22:20:30 +0000588}
589
Eric Christopher68b1bbe2010-05-17 02:13:02 +0000590// .tbss sym, size, align
591// This depends that the symbol has already been mangled from the original,
592// e.g. _a.
Eric Christopher5c87be72010-05-18 21:16:04 +0000593void MCAsmStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
594 uint64_t Size, unsigned ByteAlignment) {
Richard Mitton21101b32013-09-19 23:21:01 +0000595 AssignSection(Symbol, Section);
596
Eric Christopher9fb6bb02010-05-14 01:50:28 +0000597 assert(Symbol != NULL && "Symbol shouldn't be NULL!");
Eric Christopher5c87be72010-05-18 21:16:04 +0000598 // Instead of using the Section we'll just use the shortcut.
599 // This is a mach-o specific directive and section.
Eric Christopher68b1bbe2010-05-17 02:13:02 +0000600 OS << ".tbss " << *Symbol << ", " << Size;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000601
Eric Christopher5c87be72010-05-18 21:16:04 +0000602 // Output align if we have it. We default to 1 so don't bother printing
603 // that.
604 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000605
Eric Christopher9fb6bb02010-05-14 01:50:28 +0000606 EmitEOL();
607}
608
Chris Lattnerded9af632010-01-23 00:15:00 +0000609static inline char toOctal(int X) { return (X&7)+'0'; }
610
Chris Lattner601ef332010-01-25 18:58:59 +0000611static void PrintQuotedString(StringRef Data, raw_ostream &OS) {
612 OS << '"';
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000613
Chris Lattner601ef332010-01-25 18:58:59 +0000614 for (unsigned i = 0, e = Data.size(); i != e; ++i) {
615 unsigned char C = Data[i];
616 if (C == '"' || C == '\\') {
617 OS << '\\' << (char)C;
618 continue;
619 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000620
Chris Lattner601ef332010-01-25 18:58:59 +0000621 if (isprint((unsigned char)C)) {
622 OS << (char)C;
623 continue;
624 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000625
Chris Lattner601ef332010-01-25 18:58:59 +0000626 switch (C) {
627 case '\b': OS << "\\b"; break;
628 case '\f': OS << "\\f"; break;
629 case '\n': OS << "\\n"; break;
630 case '\r': OS << "\\r"; break;
631 case '\t': OS << "\\t"; break;
632 default:
633 OS << '\\';
634 OS << toOctal(C >> 6);
635 OS << toOctal(C >> 3);
636 OS << toOctal(C >> 0);
637 break;
638 }
639 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000640
Chris Lattner601ef332010-01-25 18:58:59 +0000641 OS << '"';
642}
643
644
Rafael Espindola64e1af82013-07-02 15:49:13 +0000645void MCAsmStreamer::EmitBytes(StringRef Data) {
Peter Collingbourne2f495b92013-04-17 21:18:16 +0000646 assert(getCurrentSection().first &&
647 "Cannot emit contents before setting section!");
Chris Lattnerded9af632010-01-23 00:15:00 +0000648 if (Data.empty()) return;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000649
Chris Lattnerded9af632010-01-23 00:15:00 +0000650 if (Data.size() == 1) {
Rafael Espindola64e1af82013-07-02 15:49:13 +0000651 OS << MAI->getData8bitsDirective();
Chris Lattnerded9af632010-01-23 00:15:00 +0000652 OS << (unsigned)(unsigned char)Data[0];
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000653 EmitEOL();
Chris Lattnerded9af632010-01-23 00:15:00 +0000654 return;
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000655 }
Chris Lattnerded9af632010-01-23 00:15:00 +0000656
657 // If the data ends with 0 and the target supports .asciz, use it, otherwise
658 // use .ascii
Bill Wendlingbc07a892013-06-18 07:20:20 +0000659 if (MAI->getAscizDirective() && Data.back() == 0) {
660 OS << MAI->getAscizDirective();
Chris Lattnerded9af632010-01-23 00:15:00 +0000661 Data = Data.substr(0, Data.size()-1);
662 } else {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000663 OS << MAI->getAsciiDirective();
Chris Lattnerded9af632010-01-23 00:15:00 +0000664 }
665
Chris Lattner601ef332010-01-25 18:58:59 +0000666 PrintQuotedString(Data, OS);
Chris Lattnerded9af632010-01-23 00:15:00 +0000667 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000668}
669
Rafael Espindola64e1af82013-07-02 15:49:13 +0000670void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size) {
671 EmitValue(MCConstantExpr::Create(Value, getContext()), Size);
Rafael Espindola4c70eea2010-12-03 02:54:21 +0000672}
673
Rafael Espindola64e1af82013-07-02 15:49:13 +0000674void MCAsmStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size) {
David Majnemer522d3db2014-02-01 07:19:38 +0000675 assert(Size <= 8 && "Invalid size");
Peter Collingbourne2f495b92013-04-17 21:18:16 +0000676 assert(getCurrentSection().first &&
677 "Cannot emit contents before setting section!");
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000678 const char *Directive = 0;
679 switch (Size) {
680 default: break;
Rafael Espindola64e1af82013-07-02 15:49:13 +0000681 case 1: Directive = MAI->getData8bitsDirective(); break;
682 case 2: Directive = MAI->getData16bitsDirective(); break;
683 case 4: Directive = MAI->getData32bitsDirective(); break;
David Majnemer522d3db2014-02-01 07:19:38 +0000684 case 8: Directive = MAI->getData64bitsDirective(); break;
685 }
686
687 if (!Directive) {
Rafael Espindolae5e1f9a2010-11-28 23:22:44 +0000688 int64_t IntValue;
689 if (!Value->EvaluateAsAbsolute(IntValue))
690 report_fatal_error("Don't know how to emit this value.");
David Majnemer522d3db2014-02-01 07:19:38 +0000691
692 // We couldn't handle the requested integer size so we fallback by breaking
693 // the request down into several, smaller, integers. Since sizes greater
694 // than eight are invalid and size equivalent to eight should have been
695 // handled earlier, we use four bytes as our largest piece of granularity.
696 bool IsLittleEndian = MAI->isLittleEndian();
697 for (unsigned Emitted = 0; Emitted != Size;) {
698 unsigned Remaining = Size - Emitted;
699 // The size of our partial emission must be a power of two less than
700 // eight.
701 unsigned EmissionSize = PowerOf2Floor(Remaining);
702 if (EmissionSize > 4)
703 EmissionSize = 4;
704 // Calculate the byte offset of our partial emission taking into account
705 // the endianness of the target.
706 unsigned ByteOffset =
707 IsLittleEndian ? Emitted : (Remaining - EmissionSize);
708 uint64_t ValueToEmit = IntValue >> (ByteOffset * 8);
709 // We truncate our partial emission to fit within the bounds of the
710 // emission domain. This produces nicer output and silences potential
711 // truncation warnings when round tripping through another assembler.
712 ValueToEmit &= ~0ULL >> (64 - EmissionSize * 8);
713 EmitIntValue(ValueToEmit, EmissionSize);
714 Emitted += EmissionSize;
Chris Lattner45eeffc2010-01-20 06:45:39 +0000715 }
716 return;
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000717 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000718
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000719 assert(Directive && "Invalid size for machine code value!");
Chris Lattner3cde7602010-01-25 21:28:50 +0000720 OS << Directive << *Value;
Chris Lattner38e92192010-01-22 07:29:22 +0000721 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000722}
723
Rafael Espindola6aea5922011-04-21 23:39:26 +0000724void MCAsmStreamer::EmitULEB128Value(const MCExpr *Value) {
Rafael Espindola92ca9332010-11-19 04:10:13 +0000725 int64_t IntValue;
726 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindola6aea5922011-04-21 23:39:26 +0000727 EmitULEB128IntValue(IntValue);
Rafael Espindola92ca9332010-11-19 04:10:13 +0000728 return;
729 }
Bill Wendlingbc07a892013-06-18 07:20:20 +0000730 assert(MAI->hasLEB128() && "Cannot print a .uleb");
Rafael Espindola38d07562010-11-04 18:17:08 +0000731 OS << ".uleb128 " << *Value;
Rafael Espindola5e874982010-11-02 17:22:24 +0000732 EmitEOL();
733}
734
Rafael Espindola6aea5922011-04-21 23:39:26 +0000735void MCAsmStreamer::EmitSLEB128Value(const MCExpr *Value) {
Rafael Espindola92ca9332010-11-19 04:10:13 +0000736 int64_t IntValue;
737 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindola6aea5922011-04-21 23:39:26 +0000738 EmitSLEB128IntValue(IntValue);
Rafael Espindola92ca9332010-11-19 04:10:13 +0000739 return;
740 }
Bill Wendlingbc07a892013-06-18 07:20:20 +0000741 assert(MAI->hasLEB128() && "Cannot print a .sleb");
Rafael Espindola38d07562010-11-04 18:17:08 +0000742 OS << ".sleb128 " << *Value;
Rafael Espindola5e874982010-11-02 17:22:24 +0000743 EmitEOL();
744}
745
Akira Hatanakaf0b08442012-02-03 04:33:00 +0000746void MCAsmStreamer::EmitGPRel64Value(const MCExpr *Value) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000747 assert(MAI->getGPRel64Directive() != 0);
748 OS << MAI->getGPRel64Directive() << *Value;
Akira Hatanakaf0b08442012-02-03 04:33:00 +0000749 EmitEOL();
750}
751
Chris Lattner3cde7602010-01-25 21:28:50 +0000752void MCAsmStreamer::EmitGPRel32Value(const MCExpr *Value) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000753 assert(MAI->getGPRel32Directive() != 0);
754 OS << MAI->getGPRel32Directive() << *Value;
Chris Lattner3cde7602010-01-25 21:28:50 +0000755 EmitEOL();
756}
757
758
Chris Lattner4340cb32010-01-19 18:52:28 +0000759/// EmitFill - Emit NumBytes bytes worth of the value specified by
760/// FillValue. This implements directives such as '.space'.
Rafael Espindola64e1af82013-07-02 15:49:13 +0000761void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue) {
Chris Lattnered89f602010-01-19 18:58:52 +0000762 if (NumBytes == 0) return;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000763
Rafael Espindola64e1af82013-07-02 15:49:13 +0000764 if (const char *ZeroDirective = MAI->getZeroDirective()) {
765 OS << ZeroDirective << NumBytes;
766 if (FillValue != 0)
767 OS << ',' << (int)FillValue;
768 EmitEOL();
769 return;
770 }
Chris Lattnerc35681b2010-01-19 19:46:13 +0000771
772 // Emit a byte at a time.
Rafael Espindola64e1af82013-07-02 15:49:13 +0000773 MCStreamer::EmitFill(NumBytes, FillValue);
Chris Lattner4340cb32010-01-19 18:52:28 +0000774}
775
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000776void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
777 unsigned ValueSize,
778 unsigned MaxBytesToEmit) {
Chris Lattner37b72342009-08-19 06:12:02 +0000779 // Some assemblers don't support non-power of two alignments, so we always
780 // emit alignments as a power of two if possible.
781 if (isPowerOf2_32(ByteAlignment)) {
Chris Lattner78b23b02009-08-19 06:35:36 +0000782 switch (ValueSize) {
Rafael Espindola7cbbd282014-02-04 18:39:51 +0000783 default:
784 llvm_unreachable("Invalid size for machine code value!");
785 case 1:
786 OS << "\t.align\t";
787 break;
788 case 2:
789 OS << ".p2alignw ";
790 break;
791 case 4:
792 OS << ".p2alignl ";
793 break;
794 case 8:
795 llvm_unreachable("Unsupported alignment size!");
Chris Lattner78b23b02009-08-19 06:35:36 +0000796 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000797
Bill Wendlingbc07a892013-06-18 07:20:20 +0000798 if (MAI->getAlignmentIsInBytes())
Chris Lattner37b72342009-08-19 06:12:02 +0000799 OS << ByteAlignment;
800 else
801 OS << Log2_32(ByteAlignment);
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000802
Chris Lattner37b72342009-08-19 06:12:02 +0000803 if (Value || MaxBytesToEmit) {
Chris Lattnerf16a1222009-09-03 04:01:10 +0000804 OS << ", 0x";
805 OS.write_hex(truncateToSize(Value, ValueSize));
Chris Lattner37b72342009-08-19 06:12:02 +0000806
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000807 if (MaxBytesToEmit)
Chris Lattner37b72342009-08-19 06:12:02 +0000808 OS << ", " << MaxBytesToEmit;
809 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000810 EmitEOL();
Chris Lattner37b72342009-08-19 06:12:02 +0000811 return;
812 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000813
Chris Lattner37b72342009-08-19 06:12:02 +0000814 // Non-power of two alignment. This is not widely supported by assemblers.
Chris Lattnere9a75a62009-08-22 21:43:10 +0000815 // FIXME: Parameterize this based on MAI.
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000816 switch (ValueSize) {
Chris Lattner37b72342009-08-19 06:12:02 +0000817 default: llvm_unreachable("Invalid size for machine code value!");
818 case 1: OS << ".balign"; break;
819 case 2: OS << ".balignw"; break;
820 case 4: OS << ".balignl"; break;
821 case 8: llvm_unreachable("Unsupported alignment size!");
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000822 }
823
Chris Lattner37b72342009-08-19 06:12:02 +0000824 OS << ' ' << ByteAlignment;
Daniel Dunbar188e87f2009-06-25 21:03:18 +0000825 OS << ", " << truncateToSize(Value, ValueSize);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000826 if (MaxBytesToEmit)
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000827 OS << ", " << MaxBytesToEmit;
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000828 EmitEOL();
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000829}
830
Kevin Enderbye83d74f2010-02-23 18:26:34 +0000831void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
832 unsigned MaxBytesToEmit) {
Chris Lattnereebaf6a2010-02-23 18:44:31 +0000833 // Emit with a text fill value.
Bill Wendlingbc07a892013-06-18 07:20:20 +0000834 EmitValueToAlignment(ByteAlignment, MAI->getTextAlignFillValue(),
Chris Lattnereebaf6a2010-02-23 18:44:31 +0000835 1, MaxBytesToEmit);
Kevin Enderbye83d74f2010-02-23 18:26:34 +0000836}
837
Jim Grosbachb5912772012-01-27 00:37:08 +0000838bool MCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000839 unsigned char Value) {
840 // FIXME: Verify that Offset is associated with the current section.
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000841 OS << ".org " << *Offset << ", " << (unsigned) Value;
842 EmitEOL();
Jim Grosbachb5912772012-01-27 00:37:08 +0000843 return false;
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000844}
845
Chris Lattner601ef332010-01-25 18:58:59 +0000846
847void MCAsmStreamer::EmitFileDirective(StringRef Filename) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000848 assert(MAI->hasSingleParameterDotFile());
Chris Lattner601ef332010-01-25 18:58:59 +0000849 OS << "\t.file\t";
850 PrintQuotedString(Filename, OS);
851 EmitEOL();
852}
853
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000854bool MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
Manman Ren1e427202013-03-07 01:42:00 +0000855 StringRef Filename, unsigned CUID) {
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000856 if (!UseDwarfDirectory && !Directory.empty()) {
857 if (sys::path::is_absolute(Filename))
Manman Ren1e427202013-03-07 01:42:00 +0000858 return EmitDwarfFileDirective(FileNo, "", Filename, CUID);
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000859
860 SmallString<128> FullPathName = Directory;
861 sys::path::append(FullPathName, Filename);
Manman Ren1e427202013-03-07 01:42:00 +0000862 return EmitDwarfFileDirective(FileNo, "", FullPathName, CUID);
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000863 }
864
Rafael Espindolab4eec1d2014-02-05 18:00:21 +0000865 OS << "\t.file\t" << FileNo << ' ';
866 if (!Directory.empty()) {
867 PrintQuotedString(Directory, OS);
868 OS << ' ';
Rafael Espindolab58867c2010-11-19 02:26:16 +0000869 }
Rafael Espindolab4eec1d2014-02-05 18:00:21 +0000870 PrintQuotedString(Filename, OS);
871 EmitEOL();
872 // All .file will belong to a single CUID.
873 CUID = 0;
874
Manman Ren1e427202013-03-07 01:42:00 +0000875 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Directory, Filename,
876 CUID);
Rafael Espindolac653a892010-11-16 21:20:32 +0000877}
878
879void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
880 unsigned Column, unsigned Flags,
881 unsigned Isa,
Devang Patel17740e72011-04-18 20:26:49 +0000882 unsigned Discriminator,
883 StringRef FileName) {
Rafael Espindolab58867c2010-11-19 02:26:16 +0000884 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
Devang Patel17740e72011-04-18 20:26:49 +0000885 Isa, Discriminator, FileName);
Rafael Espindolac653a892010-11-16 21:20:32 +0000886 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
887 if (Flags & DWARF2_FLAG_BASIC_BLOCK)
888 OS << " basic_block";
889 if (Flags & DWARF2_FLAG_PROLOGUE_END)
890 OS << " prologue_end";
891 if (Flags & DWARF2_FLAG_EPILOGUE_BEGIN)
892 OS << " epilogue_begin";
893
894 unsigned OldFlags = getContext().getCurrentDwarfLoc().getFlags();
895 if ((Flags & DWARF2_FLAG_IS_STMT) != (OldFlags & DWARF2_FLAG_IS_STMT)) {
896 OS << " is_stmt ";
897
898 if (Flags & DWARF2_FLAG_IS_STMT)
899 OS << "1";
900 else
901 OS << "0";
902 }
903
904 if (Isa)
905 OS << "isa " << Isa;
906 if (Discriminator)
907 OS << "discriminator " << Discriminator;
Devang Patel17740e72011-04-18 20:26:49 +0000908
909 if (IsVerboseAsm) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000910 OS.PadToColumn(MAI->getCommentColumn());
911 OS << MAI->getCommentString() << ' ' << FileName << ':'
Devang Patel17740e72011-04-18 20:26:49 +0000912 << Line << ':' << Column;
913 }
Rafael Espindolac653a892010-11-16 21:20:32 +0000914 EmitEOL();
Chris Lattner601ef332010-01-25 18:58:59 +0000915}
916
Rafael Espindola5645bad2013-10-16 01:05:45 +0000917void MCAsmStreamer::EmitIdent(StringRef IdentString) {
918 assert(MAI->hasIdentDirective() && ".ident directive not supported");
919 OS << "\t.ident\t";
920 PrintQuotedString(IdentString, OS);
921 EmitEOL();
922}
923
Rafael Espindolaec53aa92011-05-10 13:39:48 +0000924void MCAsmStreamer::EmitCFISections(bool EH, bool Debug) {
925 MCStreamer::EmitCFISections(EH, Debug);
926
927 if (!UseCFI)
928 return;
929
930 OS << "\t.cfi_sections ";
931 if (EH) {
932 OS << ".eh_frame";
933 if (Debug)
934 OS << ", .debug_frame";
935 } else if (Debug) {
936 OS << ".debug_frame";
937 }
938
939 EmitEOL();
940}
941
Rafael Espindola38241202012-01-07 22:42:19 +0000942void MCAsmStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) {
943 if (!UseCFI) {
944 RecordProcStart(Frame);
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000945 return;
Rafael Espindola38241202012-01-07 22:42:19 +0000946 }
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000947
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000948 OS << "\t.cfi_startproc";
David Majnemere035cf92014-01-27 17:20:25 +0000949 if (Frame.IsSimple)
950 OS << " simple";
Rafael Espindola3c227b02010-11-22 14:27:24 +0000951 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000952}
953
Rafael Espindolaf28213c2012-01-09 00:17:29 +0000954void MCAsmStreamer::EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) {
955 if (!UseCFI) {
956 RecordProcEnd(Frame);
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000957 return;
Rafael Espindolaf28213c2012-01-09 00:17:29 +0000958 }
959
960 // Put a dummy non-null value in Frame.End to mark that this frame has been
961 // closed.
962 Frame.End = (MCSymbol *) 1;
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000963
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000964 OS << "\t.cfi_endproc";
Rafael Espindola3c227b02010-11-22 14:27:24 +0000965 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000966}
967
Rafael Espindola08600bc2011-05-30 20:20:15 +0000968void MCAsmStreamer::EmitRegisterName(int64_t Register) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000969 if (InstPrinter && !MAI->useDwarfRegNumForCFI()) {
970 const MCRegisterInfo *MRI = getContext().getRegisterInfo();
971 unsigned LLVMRegister = MRI->getLLVMRegNum(Register, true);
Rafael Espindolad6860522011-06-02 02:34:55 +0000972 InstPrinter->printRegName(OS, LLVMRegister);
Rafael Espindola08600bc2011-05-30 20:20:15 +0000973 } else {
974 OS << Register;
975 }
976}
977
Rafael Espindola539d96f2011-04-12 23:59:07 +0000978void MCAsmStreamer::EmitCFIDefCfa(int64_t Register, int64_t Offset) {
Rafael Espindola6c961e12011-04-29 21:41:06 +0000979 MCStreamer::EmitCFIDefCfa(Register, Offset);
980
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000981 if (!UseCFI)
982 return;
983
Rafael Espindola08600bc2011-05-30 20:20:15 +0000984 OS << "\t.cfi_def_cfa ";
985 EmitRegisterName(Register);
986 OS << ", " << Offset;
Rafael Espindola6c961e12011-04-29 21:41:06 +0000987 EmitEOL();
Rafael Espindola539d96f2011-04-12 23:59:07 +0000988}
989
990void MCAsmStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
991 MCStreamer::EmitCFIDefCfaOffset(Offset);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000992
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000993 if (!UseCFI)
994 return;
995
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000996 OS << "\t.cfi_def_cfa_offset " << Offset;
Rafael Espindola3c227b02010-11-22 14:27:24 +0000997 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000998}
999
Rafael Espindola539d96f2011-04-12 23:59:07 +00001000void MCAsmStreamer::EmitCFIDefCfaRegister(int64_t Register) {
1001 MCStreamer::EmitCFIDefCfaRegister(Register);
Rafael Espindola3c227b02010-11-22 14:27:24 +00001002
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001003 if (!UseCFI)
1004 return;
1005
Rafael Espindola08600bc2011-05-30 20:20:15 +00001006 OS << "\t.cfi_def_cfa_register ";
1007 EmitRegisterName(Register);
Rafael Espindola3c227b02010-11-22 14:27:24 +00001008 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +00001009}
1010
Rafael Espindola539d96f2011-04-12 23:59:07 +00001011void MCAsmStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
1012 this->MCStreamer::EmitCFIOffset(Register, Offset);
Rafael Espindola3c227b02010-11-22 14:27:24 +00001013
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001014 if (!UseCFI)
1015 return;
1016
Rafael Espindola08600bc2011-05-30 20:20:15 +00001017 OS << "\t.cfi_offset ";
1018 EmitRegisterName(Register);
1019 OS << ", " << Offset;
Rafael Espindola3c227b02010-11-22 14:27:24 +00001020 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +00001021}
1022
Rafael Espindola539d96f2011-04-12 23:59:07 +00001023void MCAsmStreamer::EmitCFIPersonality(const MCSymbol *Sym,
Rafael Espindola2ac83552010-12-27 00:36:05 +00001024 unsigned Encoding) {
Rafael Espindola539d96f2011-04-12 23:59:07 +00001025 MCStreamer::EmitCFIPersonality(Sym, Encoding);
Rafael Espindola3c227b02010-11-22 14:27:24 +00001026
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001027 if (!UseCFI)
1028 return;
1029
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +00001030 OS << "\t.cfi_personality " << Encoding << ", " << *Sym;
Rafael Espindola3c227b02010-11-22 14:27:24 +00001031 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +00001032}
1033
Rafael Espindola539d96f2011-04-12 23:59:07 +00001034void MCAsmStreamer::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) {
1035 MCStreamer::EmitCFILsda(Sym, Encoding);
Rafael Espindola3c227b02010-11-22 14:27:24 +00001036
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001037 if (!UseCFI)
1038 return;
1039
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +00001040 OS << "\t.cfi_lsda " << Encoding << ", " << *Sym;
Rafael Espindola3c227b02010-11-22 14:27:24 +00001041 EmitEOL();
Rafael Espindola539d96f2011-04-12 23:59:07 +00001042}
Rafael Espindola3c227b02010-11-22 14:27:24 +00001043
Rafael Espindola539d96f2011-04-12 23:59:07 +00001044void MCAsmStreamer::EmitCFIRememberState() {
1045 MCStreamer::EmitCFIRememberState();
1046
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001047 if (!UseCFI)
1048 return;
1049
Rafael Espindola539d96f2011-04-12 23:59:07 +00001050 OS << "\t.cfi_remember_state";
1051 EmitEOL();
1052}
1053
1054void MCAsmStreamer::EmitCFIRestoreState() {
1055 MCStreamer::EmitCFIRestoreState();
1056
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001057 if (!UseCFI)
1058 return;
1059
Rafael Espindola539d96f2011-04-12 23:59:07 +00001060 OS << "\t.cfi_restore_state";
1061 EmitEOL();
1062}
1063
1064void MCAsmStreamer::EmitCFISameValue(int64_t Register) {
1065 MCStreamer::EmitCFISameValue(Register);
1066
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001067 if (!UseCFI)
1068 return;
1069
Rafael Espindola08600bc2011-05-30 20:20:15 +00001070 OS << "\t.cfi_same_value ";
1071 EmitRegisterName(Register);
Rafael Espindola539d96f2011-04-12 23:59:07 +00001072 EmitEOL();
1073}
1074
1075void MCAsmStreamer::EmitCFIRelOffset(int64_t Register, int64_t Offset) {
1076 MCStreamer::EmitCFIRelOffset(Register, Offset);
1077
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001078 if (!UseCFI)
1079 return;
1080
Rafael Espindola08600bc2011-05-30 20:20:15 +00001081 OS << "\t.cfi_rel_offset ";
1082 EmitRegisterName(Register);
1083 OS << ", " << Offset;
Rafael Espindola539d96f2011-04-12 23:59:07 +00001084 EmitEOL();
1085}
1086
1087void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) {
1088 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
1089
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001090 if (!UseCFI)
1091 return;
1092
Rafael Espindola539d96f2011-04-12 23:59:07 +00001093 OS << "\t.cfi_adjust_cfa_offset " << Adjustment;
1094 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +00001095}
1096
Rafael Espindola3c47e372012-01-23 21:51:52 +00001097void MCAsmStreamer::EmitCFISignalFrame() {
1098 MCStreamer::EmitCFISignalFrame();
1099
1100 if (!UseCFI)
1101 return;
1102
Eric Christopher368461c2012-05-31 00:53:18 +00001103 OS << "\t.cfi_signal_frame";
Rafael Espindola3c47e372012-01-23 21:51:52 +00001104 EmitEOL();
1105}
1106
Rafael Espindola9bb24782012-11-23 16:59:41 +00001107void MCAsmStreamer::EmitCFIUndefined(int64_t Register) {
1108 MCStreamer::EmitCFIUndefined(Register);
1109
1110 if (!UseCFI)
1111 return;
1112
1113 OS << "\t.cfi_undefined " << Register;
1114 EmitEOL();
1115}
1116
Rafael Espindolacdb9a532012-11-25 15:14:49 +00001117void MCAsmStreamer::EmitCFIRegister(int64_t Register1, int64_t Register2) {
1118 MCStreamer::EmitCFIRegister(Register1, Register2);
1119
1120 if (!UseCFI)
1121 return;
1122
1123 OS << "\t.cfi_register " << Register1 << ", " << Register2;
1124 EmitEOL();
1125}
1126
Venkatraman Govindaraju3816d432013-09-26 14:49:40 +00001127void MCAsmStreamer::EmitCFIWindowSave() {
1128 MCStreamer::EmitCFIWindowSave();
1129
1130 if (!UseCFI)
1131 return;
1132
1133 OS << "\t.cfi_window_save";
1134 EmitEOL();
1135}
1136
Charles Davisc7250fa2011-05-22 21:12:15 +00001137void MCAsmStreamer::EmitWin64EHStartProc(const MCSymbol *Symbol) {
Charles Davis9a115a42011-05-20 18:19:22 +00001138 MCStreamer::EmitWin64EHStartProc(Symbol);
1139
Charles Davis4cd88562011-05-19 17:46:39 +00001140 OS << ".seh_proc " << *Symbol;
Charles Davis8d9c9902011-05-18 04:58:05 +00001141 EmitEOL();
1142}
1143
Charles Davis27117af2011-05-18 22:13:51 +00001144void MCAsmStreamer::EmitWin64EHEndProc() {
Charles Davis9a115a42011-05-20 18:19:22 +00001145 MCStreamer::EmitWin64EHEndProc();
1146
Charles Davis4cd88562011-05-19 17:46:39 +00001147 OS << "\t.seh_endproc";
Charles Davis8d9c9902011-05-18 04:58:05 +00001148 EmitEOL();
1149}
1150
Charles Davis27117af2011-05-18 22:13:51 +00001151void MCAsmStreamer::EmitWin64EHStartChained() {
Charles Davis9a115a42011-05-20 18:19:22 +00001152 MCStreamer::EmitWin64EHStartChained();
1153
Charles Davis4cd88562011-05-19 17:46:39 +00001154 OS << "\t.seh_startchained";
Charles Davis77e06102011-05-18 20:54:10 +00001155 EmitEOL();
1156}
1157
Charles Davis27117af2011-05-18 22:13:51 +00001158void MCAsmStreamer::EmitWin64EHEndChained() {
Charles Davis9a115a42011-05-20 18:19:22 +00001159 MCStreamer::EmitWin64EHEndChained();
1160
Charles Davis4cd88562011-05-19 17:46:39 +00001161 OS << "\t.seh_endchained";
Charles Davis77e06102011-05-18 20:54:10 +00001162 EmitEOL();
1163}
1164
Charles Davis4cd88562011-05-19 17:46:39 +00001165void MCAsmStreamer::EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
1166 bool Except) {
Charles Davis9a115a42011-05-20 18:19:22 +00001167 MCStreamer::EmitWin64EHHandler(Sym, Unwind, Except);
1168
Charles Davis4cd88562011-05-19 17:46:39 +00001169 OS << "\t.seh_handler " << *Sym;
1170 if (Unwind)
1171 OS << ", @unwind";
1172 if (Except)
1173 OS << ", @except";
Charles Davis77e06102011-05-18 20:54:10 +00001174 EmitEOL();
1175}
1176
Evan Cheng76792992011-07-20 05:58:47 +00001177static const MCSection *getWin64EHTableSection(StringRef suffix,
1178 MCContext &context) {
1179 // FIXME: This doesn't belong in MCObjectFileInfo. However,
1180 /// this duplicate code in MCWin64EH.cpp.
1181 if (suffix == "")
1182 return context.getObjectFileInfo()->getXDataSection();
1183 return context.getCOFFSection((".xdata"+suffix).str(),
1184 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
1185 COFF::IMAGE_SCN_MEM_READ |
1186 COFF::IMAGE_SCN_MEM_WRITE,
1187 SectionKind::getDataRel());
1188}
1189
Charles Davis4cd88562011-05-19 17:46:39 +00001190void MCAsmStreamer::EmitWin64EHHandlerData() {
Charles Davis9a115a42011-05-20 18:19:22 +00001191 MCStreamer::EmitWin64EHHandlerData();
1192
Charles Davis2f6ecea2011-05-25 21:43:45 +00001193 // Switch sections. Don't call SwitchSection directly, because that will
1194 // cause the section switch to be visible in the emitted assembly.
1195 // We only do this so the section switch that terminates the handler
1196 // data block is visible.
Charles Davis03eef622011-05-27 19:09:24 +00001197 MCWin64EHUnwindInfo *CurFrame = getCurrentW64UnwindInfo();
1198 StringRef suffix=MCWin64EHUnwindEmitter::GetSectionSuffix(CurFrame->Function);
Evan Cheng76792992011-07-20 05:58:47 +00001199 const MCSection *xdataSect = getWin64EHTableSection(suffix, getContext());
Charles Davis2f6ecea2011-05-25 21:43:45 +00001200 if (xdataSect)
1201 SwitchSectionNoChange(xdataSect);
1202
Charles Davis4cd88562011-05-19 17:46:39 +00001203 OS << "\t.seh_handlerdata";
Charles Davis77e06102011-05-18 20:54:10 +00001204 EmitEOL();
1205}
1206
Charles Davis7e6e8952011-05-19 19:35:55 +00001207void MCAsmStreamer::EmitWin64EHPushReg(unsigned Register) {
Charles Davis9a115a42011-05-20 18:19:22 +00001208 MCStreamer::EmitWin64EHPushReg(Register);
1209
Charles Davis4cd88562011-05-19 17:46:39 +00001210 OS << "\t.seh_pushreg " << Register;
Charles Davis8d9c9902011-05-18 04:58:05 +00001211 EmitEOL();
1212}
1213
Charles Davis7e6e8952011-05-19 19:35:55 +00001214void MCAsmStreamer::EmitWin64EHSetFrame(unsigned Register, unsigned Offset) {
Charles Davis9a115a42011-05-20 18:19:22 +00001215 MCStreamer::EmitWin64EHSetFrame(Register, Offset);
1216
Charles Davis4cd88562011-05-19 17:46:39 +00001217 OS << "\t.seh_setframe " << Register << ", " << Offset;
Charles Davis8d9c9902011-05-18 04:58:05 +00001218 EmitEOL();
1219}
1220
Charles Davis7e6e8952011-05-19 19:35:55 +00001221void MCAsmStreamer::EmitWin64EHAllocStack(unsigned Size) {
Charles Davis9a115a42011-05-20 18:19:22 +00001222 MCStreamer::EmitWin64EHAllocStack(Size);
1223
Charles Davis4cd88562011-05-19 17:46:39 +00001224 OS << "\t.seh_stackalloc " << Size;
Charles Davis8d9c9902011-05-18 04:58:05 +00001225 EmitEOL();
1226}
1227
Charles Davis7e6e8952011-05-19 19:35:55 +00001228void MCAsmStreamer::EmitWin64EHSaveReg(unsigned Register, unsigned Offset) {
Charles Davis9a115a42011-05-20 18:19:22 +00001229 MCStreamer::EmitWin64EHSaveReg(Register, Offset);
1230
Charles Davis4cd88562011-05-19 17:46:39 +00001231 OS << "\t.seh_savereg " << Register << ", " << Offset;
1232 EmitEOL();
1233}
1234
Charles Davis7e6e8952011-05-19 19:35:55 +00001235void MCAsmStreamer::EmitWin64EHSaveXMM(unsigned Register, unsigned Offset) {
Charles Davis9a115a42011-05-20 18:19:22 +00001236 MCStreamer::EmitWin64EHSaveXMM(Register, Offset);
1237
Charles Davis4cd88562011-05-19 17:46:39 +00001238 OS << "\t.seh_savexmm " << Register << ", " << Offset;
Charles Davis8d9c9902011-05-18 04:58:05 +00001239 EmitEOL();
1240}
1241
Charles Davis27117af2011-05-18 22:13:51 +00001242void MCAsmStreamer::EmitWin64EHPushFrame(bool Code) {
Charles Davis9a115a42011-05-20 18:19:22 +00001243 MCStreamer::EmitWin64EHPushFrame(Code);
1244
Charles Davis4cd88562011-05-19 17:46:39 +00001245 OS << "\t.seh_pushframe";
Charles Davis8d9c9902011-05-18 04:58:05 +00001246 if (Code)
Charles Davis4cd88562011-05-19 17:46:39 +00001247 OS << " @code";
Charles Davis8d9c9902011-05-18 04:58:05 +00001248 EmitEOL();
1249}
1250
Charles Davis27117af2011-05-18 22:13:51 +00001251void MCAsmStreamer::EmitWin64EHEndProlog(void) {
Charles Davis9a115a42011-05-20 18:19:22 +00001252 MCStreamer::EmitWin64EHEndProlog();
1253
Charles Davis4cd88562011-05-19 17:46:39 +00001254 OS << "\t.seh_endprologue";
Charles Davis8d9c9902011-05-18 04:58:05 +00001255 EmitEOL();
1256}
1257
David Woodhouse9784cef2014-01-28 23:13:07 +00001258void MCAsmStreamer::AddEncodingComment(const MCInst &Inst,
1259 const MCSubtargetInfo &STI) {
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001260 raw_ostream &OS = GetCommentOS();
1261 SmallString<256> Code;
1262 SmallVector<MCFixup, 4> Fixups;
1263 raw_svector_ostream VecOS(Code);
David Woodhouse9784cef2014-01-28 23:13:07 +00001264 Emitter->EncodeInstruction(Inst, VecOS, Fixups, STI);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001265 VecOS.flush();
Chris Lattner601ef332010-01-25 18:58:59 +00001266
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001267 // If we are showing fixups, create symbolic markers in the encoded
1268 // representation. We do this by making a per-bit map to the fixup item index,
1269 // then trying to display it as nicely as possible.
Daniel Dunbar75c9a4e2010-02-10 01:41:14 +00001270 SmallVector<uint8_t, 64> FixupMap;
1271 FixupMap.resize(Code.size() * 8);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001272 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
1273 FixupMap[i] = 0;
1274
1275 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1276 MCFixup &F = Fixups[i];
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +00001277 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001278 for (unsigned j = 0; j != Info.TargetSize; ++j) {
1279 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j;
1280 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
1281 FixupMap[Index] = 1 + i;
1282 }
1283 }
1284
Evan Cheng15bc70f2011-07-08 22:49:42 +00001285 // FIXME: Note the fixup comments for Thumb2 are completely bogus since the
Evan Cheng52899a92011-01-13 23:27:39 +00001286 // high order halfword of a 32-bit Thumb2 instruction is emitted first.
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001287 OS << "encoding: [";
1288 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
1289 if (i)
1290 OS << ',';
1291
1292 // See if all bits are the same map entry.
1293 uint8_t MapEntry = FixupMap[i * 8 + 0];
1294 for (unsigned j = 1; j != 8; ++j) {
1295 if (FixupMap[i * 8 + j] == MapEntry)
1296 continue;
1297
1298 MapEntry = uint8_t(~0U);
1299 break;
1300 }
1301
1302 if (MapEntry != uint8_t(~0U)) {
1303 if (MapEntry == 0) {
1304 OS << format("0x%02x", uint8_t(Code[i]));
1305 } else {
Evan Cheng0447d302011-01-13 21:45:26 +00001306 if (Code[i]) {
Evan Cheng52899a92011-01-13 23:27:39 +00001307 // FIXME: Some of the 8 bits require fix up.
Evan Cheng0447d302011-01-13 21:45:26 +00001308 OS << format("0x%02x", uint8_t(Code[i])) << '\''
1309 << char('A' + MapEntry - 1) << '\'';
1310 } else
1311 OS << char('A' + MapEntry - 1);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001312 }
1313 } else {
1314 // Otherwise, write out in binary.
1315 OS << "0b";
Jay Foad61ea0e42011-06-23 09:09:15 +00001316 for (unsigned j = 8; j--;) {
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001317 unsigned Bit = (Code[i] >> j) & 1;
NAKAMURA Takumiaf669802011-03-27 01:44:40 +00001318
Chris Lattner9e7d8c02010-11-15 05:56:19 +00001319 unsigned FixupBit;
Bill Wendlingbc07a892013-06-18 07:20:20 +00001320 if (MAI->isLittleEndian())
Chris Lattner9e7d8c02010-11-15 05:56:19 +00001321 FixupBit = i * 8 + j;
1322 else
1323 FixupBit = i * 8 + (7-j);
NAKAMURA Takumiaf669802011-03-27 01:44:40 +00001324
Jay Foad61ea0e42011-06-23 09:09:15 +00001325 if (uint8_t MapEntry = FixupMap[FixupBit]) {
1326 assert(Bit == 0 && "Encoder wrote into fixed up bit!");
1327 OS << char('A' + MapEntry - 1);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001328 } else
1329 OS << Bit;
1330 }
1331 }
1332 }
1333 OS << "]\n";
1334
1335 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1336 MCFixup &F = Fixups[i];
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +00001337 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001338 OS << " fixup " << char('A' + i) << " - " << "offset: " << F.getOffset()
Daniel Dunbar60547442010-02-10 04:47:08 +00001339 << ", value: " << *F.getValue() << ", kind: " << Info.Name << "\n";
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001340 }
1341}
1342
David Woodhousee6c13e42014-01-28 23:12:42 +00001343void MCAsmStreamer::EmitInstruction(const MCInst &Inst, const MCSubtargetInfo &STI) {
Peter Collingbourne2f495b92013-04-17 21:18:16 +00001344 assert(getCurrentSection().first &&
1345 "Cannot emit contents before setting section!");
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001346
1347 // Show the encoding in a comment if we have a code emitter.
1348 if (Emitter)
David Woodhouse9784cef2014-01-28 23:13:07 +00001349 AddEncodingComment(Inst, STI);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001350
Chris Lattner89261502010-02-09 00:54:51 +00001351 // Show the MCInst if enabled.
Daniel Dunbar3627af52010-05-26 15:18:13 +00001352 if (ShowInst) {
Bill Wendlingbc07a892013-06-18 07:20:20 +00001353 Inst.dump_pretty(GetCommentOS(), MAI, InstPrinter.get(), "\n ");
Daniel Dunbar3627af52010-05-26 15:18:13 +00001354 GetCommentOS() << "\n";
1355 }
1356
Daniel Dunbar04047fb2010-03-22 21:49:34 +00001357 // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
Daniel Dunbare3ee3322010-02-03 18:18:30 +00001358 if (InstPrinter)
Owen Andersona0c3b972011-09-15 23:38:46 +00001359 InstPrinter->printInst(&Inst, OS, "");
Daniel Dunbare3ee3322010-02-03 18:18:30 +00001360 else
Bill Wendlingbc07a892013-06-18 07:20:20 +00001361 Inst.print(OS, MAI);
Chris Lattnercfa5ebc32010-01-22 07:36:39 +00001362 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +00001363}
1364
Eli Benderskyf483ff92012-12-20 19:05:53 +00001365void MCAsmStreamer::EmitBundleAlignMode(unsigned AlignPow2) {
1366 OS << "\t.bundle_align_mode " << AlignPow2;
1367 EmitEOL();
1368}
1369
Eli Bendersky802b6282013-01-07 21:51:08 +00001370void MCAsmStreamer::EmitBundleLock(bool AlignToEnd) {
Eli Benderskyf483ff92012-12-20 19:05:53 +00001371 OS << "\t.bundle_lock";
Eli Bendersky802b6282013-01-07 21:51:08 +00001372 if (AlignToEnd)
1373 OS << " align_to_end";
Eli Benderskyf483ff92012-12-20 19:05:53 +00001374 EmitEOL();
1375}
1376
1377void MCAsmStreamer::EmitBundleUnlock() {
1378 OS << "\t.bundle_unlock";
1379 EmitEOL();
1380}
1381
Jim Grosbach6ebd7282010-09-22 18:18:30 +00001382/// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner8a87fb72010-04-03 21:35:55 +00001383/// the specified string in the output .s file. This capability is
1384/// indicated by the hasRawTextSupport() predicate.
David Blaikied8c5b4e2013-10-24 22:43:10 +00001385void MCAsmStreamer::EmitRawTextImpl(StringRef String) {
Chris Lattneraca014e2010-04-03 22:06:56 +00001386 if (!String.empty() && String.back() == '\n')
1387 String = String.substr(0, String.size()-1);
Chris Lattner8a87fb72010-04-03 21:35:55 +00001388 OS << String;
Chris Lattneraca014e2010-04-03 22:06:56 +00001389 EmitEOL();
Chris Lattner8a87fb72010-04-03 21:35:55 +00001390}
1391
Rafael Espindola07082092012-01-07 03:13:18 +00001392void MCAsmStreamer::FinishImpl() {
Kevin Enderbye7739d42011-12-09 18:09:40 +00001393 // If we are generating dwarf for assembly source files dump out the sections.
1394 if (getContext().getGenDwarfForAssembly())
Rafael Espindolab4eec1d2014-02-05 18:00:21 +00001395 MCGenDwarfInfo::Emit(this, NULL);
Kevin Enderbye7739d42011-12-09 18:09:40 +00001396
Rafael Espindolab6089d62011-05-10 03:14:15 +00001397 if (!UseCFI)
Bill Wendling550c76d2013-09-09 19:48:37 +00001398 EmitFrames(AsmBackend.get(), false);
Daniel Dunbar9faf2732009-06-24 01:03:06 +00001399}
Bill Wendling550c76d2013-09-09 19:48:37 +00001400
Chris Lattner38e92192010-01-22 07:29:22 +00001401MCStreamer *llvm::createAsmStreamer(MCContext &Context,
1402 formatted_raw_ostream &OS,
Rafael Espindolab4eec1d2014-02-05 18:00:21 +00001403 bool isVerboseAsm, bool useCFI,
Rafael Espindolaa17151a2013-10-08 13:08:17 +00001404 bool useDwarfDirectory, MCInstPrinter *IP,
1405 MCCodeEmitter *CE, MCAsmBackend *MAB,
1406 bool ShowInst) {
Rafael Espindolab4eec1d2014-02-05 18:00:21 +00001407 return new MCAsmStreamer(Context, OS, isVerboseAsm, useCFI, useDwarfDirectory,
1408 IP, CE, MAB, ShowInst);
Daniel Dunbar9faf2732009-06-24 01:03:06 +00001409}