blob: 1791f7383291ffd66e6db8086f8454ae7996153c [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 Espindola0a017a62010-12-10 07:39:47 +000053 unsigned UseLoc : 1;
Rafael Espindolaa3181d12011-04-30 03:44:37 +000054 unsigned UseCFI : 1;
Nick Lewycky40f8f2f2011-10-17 23:05:28 +000055 unsigned UseDwarfDirectory : 1;
Daniel Dunbare3ee3322010-02-03 18:18:30 +000056
Rafael Espindolabde52bc2011-04-30 16:34:57 +000057 enum EHSymbolFlags { EHGlobal = 1,
58 EHWeakDefinition = 1 << 1,
59 EHPrivateExtern = 1 << 2 };
60 DenseMap<const MCSymbol*, unsigned> FlagMap;
61
Rafael Espindola1c8ac8f2010-12-04 03:21:47 +000062 bool needsSet(const MCExpr *Value);
63
Rafael Espindola08600bc2011-05-30 20:20:15 +000064 void EmitRegisterName(int64_t Register);
Rafael Espindola38241202012-01-07 22:42:19 +000065 virtual void EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame);
Rafael Espindolaf28213c2012-01-09 00:17:29 +000066 virtual void EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame);
Rafael Espindola08600bc2011-05-30 20:20:15 +000067
Chris Lattner962c5bd82009-08-17 04:17:34 +000068public:
Rafael Espindola24ea09e2014-01-26 06:06:37 +000069 MCAsmStreamer(MCContext &Context, formatted_raw_ostream &os,
70 bool isVerboseAsm, bool useLoc, bool useCFI,
71 bool useDwarfDirectory, MCInstPrinter *printer,
Rafael Espindolaa17151a2013-10-08 13:08:17 +000072 MCCodeEmitter *emitter, MCAsmBackend *asmbackend, bool showInst)
Rafael Espindola24ea09e2014-01-26 06:06:37 +000073 : MCStreamer(Context), OS(os), MAI(Context.getAsmInfo()),
Rafael Espindolaa17151a2013-10-08 13:08:17 +000074 InstPrinter(printer), Emitter(emitter), AsmBackend(asmbackend),
75 CommentStream(CommentToEmit), IsVerboseAsm(isVerboseAsm),
76 ShowInst(showInst), UseLoc(useLoc), UseCFI(useCFI),
77 UseDwarfDirectory(useDwarfDirectory) {
Chris Lattner482bf692010-02-10 00:10:18 +000078 if (InstPrinter && IsVerboseAsm)
79 InstPrinter->setCommentStream(CommentStream);
80 }
Chris Lattner962c5bd82009-08-17 04:17:34 +000081 ~MCAsmStreamer() {}
Daniel Dunbar9faf2732009-06-24 01:03:06 +000082
Chris Lattner38e92192010-01-22 07:29:22 +000083 inline void EmitEOL() {
Chris Lattner8fa0e352010-01-22 19:17:48 +000084 // If we don't have any comments, just emit a \n.
85 if (!IsVerboseAsm) {
Chris Lattner38e92192010-01-22 07:29:22 +000086 OS << '\n';
87 return;
88 }
89 EmitCommentsAndEOL();
90 }
91 void EmitCommentsAndEOL();
Chris Lattnerb0d44c32010-02-02 23:37:42 +000092
93 /// isVerboseAsm - Return true if this streamer supports verbose assembly at
94 /// all.
95 virtual bool isVerboseAsm() const { return IsVerboseAsm; }
Jim Grosbach3bde49a2010-09-22 18:16:55 +000096
Chris Lattner8a87fb72010-04-03 21:35:55 +000097 /// hasRawTextSupport - We support EmitRawText.
98 virtual bool hasRawTextSupport() const { return true; }
Daniel Dunbar9a0a4612010-02-09 23:00:14 +000099
Chris Lattnere1d8a312010-01-22 18:21:35 +0000100 /// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner38e92192010-01-22 07:29:22 +0000101 /// file if applicable as a QoI issue to make the output of the compiler
102 /// more readable. This only affects the MCAsmStreamer, and only when
103 /// verbose assembly output is enabled.
Chris Lattnere1d8a312010-01-22 18:21:35 +0000104 virtual void AddComment(const Twine &T);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000105
106 /// AddEncodingComment - Add a comment showing the encoding of an instruction.
David Woodhouse9784cef2014-01-28 23:13:07 +0000107 virtual void AddEncodingComment(const MCInst &Inst, const MCSubtargetInfo &);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000108
Chris Lattner8fa0e352010-01-22 19:17:48 +0000109 /// GetCommentOS - Return a raw_ostream that comments can be written to.
110 /// Unlike AddComment, you are required to terminate comments with \n if you
111 /// use this method.
112 virtual raw_ostream &GetCommentOS() {
113 if (!IsVerboseAsm)
114 return nulls(); // Discard comments unless in verbose asm mode.
115 return CommentStream;
116 }
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000117
Rafael Espindola0b694812014-01-16 16:28:37 +0000118 void emitRawComment(const Twine &T, bool TabPrefix = true) LLVM_OVERRIDE;
119
Chris Lattnera3eee3c2010-01-22 19:52:01 +0000120 /// AddBlankLine - Emit a blank line to a .s file to pretty it up.
121 virtual void AddBlankLine() {
122 EmitEOL();
123 }
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000124
Chris Lattner962c5bd82009-08-17 04:17:34 +0000125 /// @name MCStreamer Interface
126 /// @{
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000127
Peter Collingbourne2f495b92013-04-17 21:18:16 +0000128 virtual void ChangeSection(const MCSection *Section,
129 const MCExpr *Subsection);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000130
Rafael Espindola0e2ccb22014-01-24 03:54:40 +0000131 virtual void InitSections(bool Force) {
132 if (Force)
133 SwitchSection(getContext().getObjectFileInfo()->getTextSection());
134 }
135
Chris Lattner962c5bd82009-08-17 04:17:34 +0000136 virtual void EmitLabel(MCSymbol *Symbol);
Reed Kotleraee4d5d12012-12-16 04:00:45 +0000137 virtual void EmitDebugLabel(MCSymbol *Symbol);
138
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000139 virtual void EmitEHSymAttributes(const MCSymbol *Symbol,
140 MCSymbol *EHSymbol);
Chris Lattner685508c2010-01-23 06:39:22 +0000141 virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
Daniel Dunbar16004b82013-01-18 01:25:48 +0000142 virtual void EmitLinkerOptions(ArrayRef<std::string> Options);
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000143 virtual void EmitDataRegion(MCDataRegionType Kind);
Jim Grosbach5a2c68d2010-11-05 22:08:08 +0000144 virtual void EmitThumbFunc(MCSymbol *Func);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000145
Daniel Dunbar897ffad2009-08-31 08:09:28 +0000146 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
Rafael Espindola16145972010-11-01 14:28:48 +0000147 virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
Rafael Espindola57ab7082010-12-03 00:55:40 +0000148 virtual void EmitDwarfAdvanceLineAddr(int64_t LineDelta,
149 const MCSymbol *LastLabel,
Evan Chengc7ac6902011-07-14 05:43:07 +0000150 const MCSymbol *Label,
151 unsigned PointerSize);
Rafael Espindola1d1eced2011-04-30 03:21:04 +0000152 virtual void EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
153 const MCSymbol *Label);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000154
Saleem Abdulrasool4208b612013-08-09 01:52:03 +0000155 virtual bool EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
Kevin Enderbyc9d93ef2009-07-13 21:03:15 +0000156
Chris Lattner962c5bd82009-08-17 04:17:34 +0000157 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
Chris Lattner72afa952010-05-08 19:54:22 +0000158 virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol);
159 virtual void EmitCOFFSymbolStorageClass(int StorageClass);
160 virtual void EmitCOFFSymbolType(int Type);
161 virtual void EndCOFFSymbolDef();
Timur Iskhodzhanovc1fb2d62013-12-20 18:15:00 +0000162 virtual void EmitCOFFSectionIndex(MCSymbol const *Symbol);
Rafael Espindolad3df3d32011-12-17 01:14:52 +0000163 virtual void EmitCOFFSecRel32(MCSymbol const *Symbol);
Chris Lattner91dac6d2010-01-25 07:52:13 +0000164 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
Chris Lattnerb1301f72010-01-23 07:47:02 +0000165 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar6a715dc2009-08-30 06:17:16 +0000166 unsigned ByteAlignment);
Kevin Enderby4c21caa2009-07-14 18:17:10 +0000167
Chris Lattnerb1301f72010-01-23 07:47:02 +0000168 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
169 ///
170 /// @param Symbol - The common symbol to emit.
171 /// @param Size - The size of the common symbol.
Dmitri Gribenko65340a62012-08-23 16:54:08 +0000172 /// @param ByteAlignment - The alignment of the common symbol in bytes.
Benjamin Kramer63970512011-09-01 23:04:27 +0000173 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
174 unsigned ByteAlignment);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000175
Daniel Dunbarcf72e1c2009-08-28 05:48:22 +0000176 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
Evan Chengf5bd6c62012-06-22 20:14:46 +0000177 uint64_t Size = 0, unsigned ByteAlignment = 0);
Kevin Enderbycbe475d2009-07-14 21:35:03 +0000178
Eric Christopher5c87be72010-05-18 21:16:04 +0000179 virtual void EmitTBSSSymbol (const MCSection *Section, MCSymbol *Symbol,
180 uint64_t Size, unsigned ByteAlignment = 0);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000181
Rafael Espindola64e1af82013-07-02 15:49:13 +0000182 virtual void EmitBytes(StringRef Data);
Chris Lattnera1e11f52009-07-07 20:30:46 +0000183
Rafael Espindola64e1af82013-07-02 15:49:13 +0000184 virtual void EmitValueImpl(const MCExpr *Value, unsigned Size);
185 virtual void EmitIntValue(uint64_t Value, unsigned Size);
Rafael Espindola5e874982010-11-02 17:22:24 +0000186
Rafael Espindola6aea5922011-04-21 23:39:26 +0000187 virtual void EmitULEB128Value(const MCExpr *Value);
Rafael Espindola5e874982010-11-02 17:22:24 +0000188
Rafael Espindola6aea5922011-04-21 23:39:26 +0000189 virtual void EmitSLEB128Value(const MCExpr *Value);
Rafael Espindola5e874982010-11-02 17:22:24 +0000190
Akira Hatanakaf0b08442012-02-03 04:33:00 +0000191 virtual void EmitGPRel64Value(const MCExpr *Value);
192
Chris Lattner3cde7602010-01-25 21:28:50 +0000193 virtual void EmitGPRel32Value(const MCExpr *Value);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000194
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000195
Rafael Espindola64e1af82013-07-02 15:49:13 +0000196 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue);
Chris Lattner07cadaf2009-07-10 22:20:30 +0000197
Chris Lattner962c5bd82009-08-17 04:17:34 +0000198 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
199 unsigned ValueSize = 1,
200 unsigned MaxBytesToEmit = 0);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000201
Kevin Enderbye83d74f2010-02-23 18:26:34 +0000202 virtual void EmitCodeAlignment(unsigned ByteAlignment,
203 unsigned MaxBytesToEmit = 0);
204
Jim Grosbachb5912772012-01-27 00:37:08 +0000205 virtual bool EmitValueToOffset(const MCExpr *Offset,
Chris Lattner962c5bd82009-08-17 04:17:34 +0000206 unsigned char Value = 0);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000207
Chris Lattner601ef332010-01-25 18:58:59 +0000208 virtual void EmitFileDirective(StringRef Filename);
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000209 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
Manman Ren1e427202013-03-07 01:42:00 +0000210 StringRef Filename, unsigned CUID = 0);
Rafael Espindolac653a892010-11-16 21:20:32 +0000211 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
212 unsigned Column, unsigned Flags,
Devang Patel17740e72011-04-18 20:26:49 +0000213 unsigned Isa, unsigned Discriminator,
214 StringRef FileName);
Chris Lattner601ef332010-01-25 18:58:59 +0000215
Rafael Espindola5645bad2013-10-16 01:05:45 +0000216 virtual void EmitIdent(StringRef IdentString);
Rafael Espindolaec53aa92011-05-10 13:39:48 +0000217 virtual void EmitCFISections(bool EH, bool Debug);
Rafael Espindola539d96f2011-04-12 23:59:07 +0000218 virtual void EmitCFIDefCfa(int64_t Register, int64_t Offset);
219 virtual void EmitCFIDefCfaOffset(int64_t Offset);
220 virtual void EmitCFIDefCfaRegister(int64_t Register);
221 virtual void EmitCFIOffset(int64_t Register, int64_t Offset);
222 virtual void EmitCFIPersonality(const MCSymbol *Sym, unsigned Encoding);
223 virtual void EmitCFILsda(const MCSymbol *Sym, unsigned Encoding);
224 virtual void EmitCFIRememberState();
225 virtual void EmitCFIRestoreState();
226 virtual void EmitCFISameValue(int64_t Register);
227 virtual void EmitCFIRelOffset(int64_t Register, int64_t Offset);
228 virtual void EmitCFIAdjustCfaOffset(int64_t Adjustment);
Rafael Espindola3c47e372012-01-23 21:51:52 +0000229 virtual void EmitCFISignalFrame();
Rafael Espindola9bb24782012-11-23 16:59:41 +0000230 virtual void EmitCFIUndefined(int64_t Register);
Rafael Espindolacdb9a532012-11-25 15:14:49 +0000231 virtual void EmitCFIRegister(int64_t Register1, int64_t Register2);
Venkatraman Govindaraju3816d432013-09-26 14:49:40 +0000232 virtual void EmitCFIWindowSave();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000233
Charles Davisc7250fa2011-05-22 21:12:15 +0000234 virtual void EmitWin64EHStartProc(const MCSymbol *Symbol);
Charles Davis8d9c9902011-05-18 04:58:05 +0000235 virtual void EmitWin64EHEndProc();
Charles Davis77e06102011-05-18 20:54:10 +0000236 virtual void EmitWin64EHStartChained();
237 virtual void EmitWin64EHEndChained();
Charles Davis4cd88562011-05-19 17:46:39 +0000238 virtual void EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
239 bool Except);
240 virtual void EmitWin64EHHandlerData();
Charles Davis7e6e8952011-05-19 19:35:55 +0000241 virtual void EmitWin64EHPushReg(unsigned Register);
242 virtual void EmitWin64EHSetFrame(unsigned Register, unsigned Offset);
243 virtual void EmitWin64EHAllocStack(unsigned Size);
244 virtual void EmitWin64EHSaveReg(unsigned Register, unsigned Offset);
245 virtual void EmitWin64EHSaveXMM(unsigned Register, unsigned Offset);
Charles Davis8d9c9902011-05-18 04:58:05 +0000246 virtual void EmitWin64EHPushFrame(bool Code);
247 virtual void EmitWin64EHEndProlog();
248
David Woodhousee6c13e42014-01-28 23:12:42 +0000249 virtual void EmitInstruction(const MCInst &Inst, const MCSubtargetInfo &STI);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000250
Eli Benderskyf483ff92012-12-20 19:05:53 +0000251 virtual void EmitBundleAlignMode(unsigned AlignPow2);
Eli Bendersky802b6282013-01-07 21:51:08 +0000252 virtual void EmitBundleLock(bool AlignToEnd);
Eli Benderskyf483ff92012-12-20 19:05:53 +0000253 virtual void EmitBundleUnlock();
254
Jim Grosbach6ebd7282010-09-22 18:18:30 +0000255 /// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner8a87fb72010-04-03 21:35:55 +0000256 /// the specified string in the output .s file. This capability is
257 /// indicated by the hasRawTextSupport() predicate.
David Blaikied8c5b4e2013-10-24 22:43:10 +0000258 virtual void EmitRawTextImpl(StringRef String);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000259
Rafael Espindola07082092012-01-07 03:13:18 +0000260 virtual void FinishImpl();
Chris Lattner962c5bd82009-08-17 04:17:34 +0000261};
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000262
Chris Lattner962c5bd82009-08-17 04:17:34 +0000263} // end anonymous namespace.
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000264
Chris Lattnere1d8a312010-01-22 18:21:35 +0000265/// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner38e92192010-01-22 07:29:22 +0000266/// file if applicable as a QoI issue to make the output of the compiler
267/// more readable. This only affects the MCAsmStreamer, and only when
268/// verbose assembly output is enabled.
Chris Lattnere1d8a312010-01-22 18:21:35 +0000269void MCAsmStreamer::AddComment(const Twine &T) {
Chris Lattner38e92192010-01-22 07:29:22 +0000270 if (!IsVerboseAsm) return;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000271
Chris Lattner8fa0e352010-01-22 19:17:48 +0000272 // Make sure that CommentStream is flushed.
273 CommentStream.flush();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000274
Chris Lattner38e92192010-01-22 07:29:22 +0000275 T.toVector(CommentToEmit);
Chris Lattner8fa0e352010-01-22 19:17:48 +0000276 // Each comment goes on its own line.
277 CommentToEmit.push_back('\n');
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000278
Chris Lattner1386a882010-01-22 21:16:10 +0000279 // Tell the comment stream that the vector changed underneath it.
280 CommentStream.resync();
Chris Lattner38e92192010-01-22 07:29:22 +0000281}
282
283void MCAsmStreamer::EmitCommentsAndEOL() {
Chris Lattner8fa0e352010-01-22 19:17:48 +0000284 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) {
285 OS << '\n';
286 return;
287 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000288
Chris Lattner8fa0e352010-01-22 19:17:48 +0000289 CommentStream.flush();
Chris Lattner38e92192010-01-22 07:29:22 +0000290 StringRef Comments = CommentToEmit.str();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000291
Chris Lattner8fa0e352010-01-22 19:17:48 +0000292 assert(Comments.back() == '\n' &&
293 "Comment array not newline terminated");
294 do {
Chris Lattner38e92192010-01-22 07:29:22 +0000295 // Emit a line of comments.
Bill Wendlingbc07a892013-06-18 07:20:20 +0000296 OS.PadToColumn(MAI->getCommentColumn());
Chris Lattner38e92192010-01-22 07:29:22 +0000297 size_t Position = Comments.find('\n');
Bill Wendlingbc07a892013-06-18 07:20:20 +0000298 OS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) <<'\n';
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000299
Chris Lattner38e92192010-01-22 07:29:22 +0000300 Comments = Comments.substr(Position+1);
Chris Lattner8fa0e352010-01-22 19:17:48 +0000301 } while (!Comments.empty());
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000302
Chris Lattner1386a882010-01-22 21:16:10 +0000303 CommentToEmit.clear();
304 // Tell the comment stream that the vector changed underneath it.
305 CommentStream.resync();
Chris Lattner38e92192010-01-22 07:29:22 +0000306}
307
Daniel Dunbar188e87f2009-06-25 21:03:18 +0000308static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
309 assert(Bytes && "Invalid size!");
310 return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
311}
312
Rafael Espindola0b694812014-01-16 16:28:37 +0000313void MCAsmStreamer::emitRawComment(const Twine &T, bool TabPrefix) {
314 if (TabPrefix)
315 OS << '\t';
316 OS << MAI->getCommentString() << T;
317 EmitEOL();
318}
319
Peter Collingbourne2f495b92013-04-17 21:18:16 +0000320void MCAsmStreamer::ChangeSection(const MCSection *Section,
321 const MCExpr *Subsection) {
Chris Lattner4b7dadb2009-08-19 05:49:37 +0000322 assert(Section && "Cannot switch to a null section!");
Bill Wendlingbc07a892013-06-18 07:20:20 +0000323 Section->PrintSwitchToSection(*MAI, OS, Subsection);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000324}
325
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000326void MCAsmStreamer::EmitEHSymAttributes(const MCSymbol *Symbol,
327 MCSymbol *EHSymbol) {
328 if (UseCFI)
329 return;
330
331 unsigned Flags = FlagMap.lookup(Symbol);
332
333 if (Flags & EHGlobal)
334 EmitSymbolAttribute(EHSymbol, MCSA_Global);
335 if (Flags & EHWeakDefinition)
336 EmitSymbolAttribute(EHSymbol, MCSA_WeakDefinition);
337 if (Flags & EHPrivateExtern)
338 EmitSymbolAttribute(EHSymbol, MCSA_PrivateExtern);
339}
340
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000341void MCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
Daniel Dunbar6860ac72009-08-22 07:22:36 +0000342 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Rafael Espindola27c0c9b2011-04-27 15:21:19 +0000343 MCStreamer::EmitLabel(Symbol);
Daniel Dunbarf782ebc2009-06-24 17:00:42 +0000344
Bill Wendlingbc07a892013-06-18 07:20:20 +0000345 OS << *Symbol << MAI->getLabelSuffix();
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000346 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000347}
348
Reed Kotleraee4d5d12012-12-16 04:00:45 +0000349void MCAsmStreamer::EmitDebugLabel(MCSymbol *Symbol) {
350 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
351 MCStreamer::EmitDebugLabel(Symbol);
352
Bill Wendlingbc07a892013-06-18 07:20:20 +0000353 OS << *Symbol << MAI->getDebugLabelSuffix();
Reed Kotleraee4d5d12012-12-16 04:00:45 +0000354 EmitEOL();
355}
356
Chris Lattner685508c2010-01-23 06:39:22 +0000357void MCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
Kevin Enderbydd27e5e2009-07-16 17:56:39 +0000358 switch (Flag) {
Jason W Kim645f6c22010-09-30 02:45:56 +0000359 case MCAF_SyntaxUnified: OS << "\t.syntax unified"; break;
Chris Lattner685508c2010-01-23 06:39:22 +0000360 case MCAF_SubsectionsViaSymbols: OS << ".subsections_via_symbols"; break;
Bill Wendlingbc07a892013-06-18 07:20:20 +0000361 case MCAF_Code16: OS << '\t'<< MAI->getCode16Directive();break;
362 case MCAF_Code32: OS << '\t'<< MAI->getCode32Directive();break;
363 case MCAF_Code64: OS << '\t'<< MAI->getCode64Directive();break;
Kevin Enderbydd27e5e2009-07-16 17:56:39 +0000364 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000365 EmitEOL();
Kevin Enderbyc9d93ef2009-07-13 21:03:15 +0000366}
367
Daniel Dunbar16004b82013-01-18 01:25:48 +0000368void MCAsmStreamer::EmitLinkerOptions(ArrayRef<std::string> Options) {
369 assert(!Options.empty() && "At least one option is required!");
370 OS << "\t.linker_option \"" << Options[0] << '"';
371 for (ArrayRef<std::string>::iterator it = Options.begin() + 1,
372 ie = Options.end(); it != ie; ++it) {
373 OS << ", " << '"' << *it << '"';
374 }
Daniel Dunbar95856122013-01-18 19:37:00 +0000375 OS << "\n";
Daniel Dunbar16004b82013-01-18 01:25:48 +0000376}
377
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000378void MCAsmStreamer::EmitDataRegion(MCDataRegionType Kind) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000379 if (!MAI->doesSupportDataRegionDirectives())
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000380 return;
381 switch (Kind) {
382 case MCDR_DataRegion: OS << "\t.data_region"; break;
383 case MCDR_DataRegionJT8: OS << "\t.data_region jt8"; break;
384 case MCDR_DataRegionJT16: OS << "\t.data_region jt16"; break;
385 case MCDR_DataRegionJT32: OS << "\t.data_region jt32"; break;
386 case MCDR_DataRegionEnd: OS << "\t.end_data_region"; break;
387 }
388 EmitEOL();
389}
390
Jim Grosbach5a2c68d2010-11-05 22:08:08 +0000391void MCAsmStreamer::EmitThumbFunc(MCSymbol *Func) {
392 // This needs to emit to a temporary string to get properly quoted
393 // MCSymbols when they have spaces in them.
394 OS << "\t.thumb_func";
Rafael Espindolae90c1cb2011-05-16 16:17:21 +0000395 // Only Mach-O hasSubsectionsViaSymbols()
Bill Wendlingbc07a892013-06-18 07:20:20 +0000396 if (MAI->hasSubsectionsViaSymbols())
Jim Grosbach5a2c68d2010-11-05 22:08:08 +0000397 OS << '\t' << *Func;
398 EmitEOL();
399}
400
Daniel Dunbar897ffad2009-08-31 08:09:28 +0000401void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000402 OS << *Symbol << " = " << *Value;
403 EmitEOL();
Daniel Dunbard20cda02009-10-16 01:34:54 +0000404
405 // FIXME: Lift context changes into super class.
Daniel Dunbar7a989da2010-05-05 17:41:00 +0000406 Symbol->setVariableValue(Value);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000407}
408
Rafael Espindola16145972010-11-01 14:28:48 +0000409void MCAsmStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
410 OS << ".weakref " << *Alias << ", " << *Symbol;
411 EmitEOL();
412}
413
Rafael Espindola57ab7082010-12-03 00:55:40 +0000414void MCAsmStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
415 const MCSymbol *LastLabel,
Evan Chengc7ac6902011-07-14 05:43:07 +0000416 const MCSymbol *Label,
417 unsigned PointerSize) {
418 EmitDwarfSetLineAddr(LineDelta, Label, PointerSize);
Rafael Espindola57ab7082010-12-03 00:55:40 +0000419}
420
Rafael Espindola1d1eced2011-04-30 03:21:04 +0000421void MCAsmStreamer::EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
422 const MCSymbol *Label) {
423 EmitIntValue(dwarf::DW_CFA_advance_loc4, 1);
424 const MCExpr *AddrDelta = BuildSymbolDiff(getContext(), Label, LastLabel);
Rafael Espindola8e129292011-05-19 21:40:34 +0000425 AddrDelta = ForceExpAbs(AddrDelta);
Rafael Espindola1d1eced2011-04-30 03:21:04 +0000426 EmitValue(AddrDelta, 4);
427}
428
429
Saleem Abdulrasool4208b612013-08-09 01:52:03 +0000430bool MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
Chris Lattner685508c2010-01-23 06:39:22 +0000431 MCSymbolAttr Attribute) {
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000432 switch (Attribute) {
Craig Toppera2886c22012-02-07 05:05:23 +0000433 case MCSA_Invalid: llvm_unreachable("Invalid symbol attribute");
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000434 case MCSA_ELF_TypeFunction: /// .type _foo, STT_FUNC # aka @function
435 case MCSA_ELF_TypeIndFunction: /// .type _foo, STT_GNU_IFUNC
436 case MCSA_ELF_TypeObject: /// .type _foo, STT_OBJECT # aka @object
437 case MCSA_ELF_TypeTLS: /// .type _foo, STT_TLS # aka @tls_object
438 case MCSA_ELF_TypeCommon: /// .type _foo, STT_COMMON # aka @common
439 case MCSA_ELF_TypeNoType: /// .type _foo, STT_NOTYPE # aka @notype
Rafael Espindola2d006b12010-11-13 04:55:06 +0000440 case MCSA_ELF_TypeGnuUniqueObject: /// .type _foo, @gnu_unique_object
Saleem Abdulrasool4208b612013-08-09 01:52:03 +0000441 if (!MAI->hasDotTypeDotSizeDirective())
442 return false; // Symbol attribute not supported
Dan Gohman77fe07a2010-02-04 01:42:13 +0000443 OS << "\t.type\t" << *Symbol << ','
Bill Wendlingbc07a892013-06-18 07:20:20 +0000444 << ((MAI->getCommentString()[0] != '@') ? '@' : '%');
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000445 switch (Attribute) {
Saleem Abdulrasool4208b612013-08-09 01:52:03 +0000446 default: return false;
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000447 case MCSA_ELF_TypeFunction: OS << "function"; break;
448 case MCSA_ELF_TypeIndFunction: OS << "gnu_indirect_function"; break;
449 case MCSA_ELF_TypeObject: OS << "object"; break;
450 case MCSA_ELF_TypeTLS: OS << "tls_object"; break;
451 case MCSA_ELF_TypeCommon: OS << "common"; break;
452 case MCSA_ELF_TypeNoType: OS << "no_type"; break;
Rafael Espindola2d006b12010-11-13 04:55:06 +0000453 case MCSA_ELF_TypeGnuUniqueObject: OS << "gnu_unique_object"; break;
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000454 }
455 EmitEOL();
Saleem Abdulrasool4208b612013-08-09 01:52:03 +0000456 return true;
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000457 case MCSA_Global: // .globl/.global
Bill Wendlingbc07a892013-06-18 07:20:20 +0000458 OS << MAI->getGlobalDirective();
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000459 FlagMap[Symbol] |= EHGlobal;
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000460 break;
Chris Lattner79d20752010-06-21 20:35:01 +0000461 case MCSA_Hidden: OS << "\t.hidden\t"; break;
462 case MCSA_IndirectSymbol: OS << "\t.indirect_symbol\t"; break;
463 case MCSA_Internal: OS << "\t.internal\t"; break;
464 case MCSA_LazyReference: OS << "\t.lazy_reference\t"; break;
465 case MCSA_Local: OS << "\t.local\t"; break;
466 case MCSA_NoDeadStrip: OS << "\t.no_dead_strip\t"; break;
Kevin Enderby8be14412010-11-19 18:39:33 +0000467 case MCSA_SymbolResolver: OS << "\t.symbol_resolver\t"; break;
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000468 case MCSA_PrivateExtern:
469 OS << "\t.private_extern\t";
470 FlagMap[Symbol] |= EHPrivateExtern;
471 break;
Chris Lattner79d20752010-06-21 20:35:01 +0000472 case MCSA_Protected: OS << "\t.protected\t"; break;
473 case MCSA_Reference: OS << "\t.reference\t"; break;
474 case MCSA_Weak: OS << "\t.weak\t"; break;
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000475 case MCSA_WeakDefinition:
476 OS << "\t.weak_definition\t";
477 FlagMap[Symbol] |= EHWeakDefinition;
478 break;
Chris Lattner685508c2010-01-23 06:39:22 +0000479 // .weak_reference
Bill Wendlingbc07a892013-06-18 07:20:20 +0000480 case MCSA_WeakReference: OS << MAI->getWeakRefDirective(); break;
Kevin Enderby082d0fd2010-07-08 17:22:42 +0000481 case MCSA_WeakDefAutoPrivate: OS << "\t.weak_def_can_be_hidden\t"; break;
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000482 }
483
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000484 OS << *Symbol;
485 EmitEOL();
Saleem Abdulrasool4208b612013-08-09 01:52:03 +0000486
487 return true;
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000488}
489
Kevin Enderby4c21caa2009-07-14 18:17:10 +0000490void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000491 OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
492 EmitEOL();
Kevin Enderby4c21caa2009-07-14 18:17:10 +0000493}
494
Chris Lattner72afa952010-05-08 19:54:22 +0000495void MCAsmStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {
496 OS << "\t.def\t " << *Symbol << ';';
497 EmitEOL();
498}
499
500void MCAsmStreamer::EmitCOFFSymbolStorageClass (int StorageClass) {
501 OS << "\t.scl\t" << StorageClass << ';';
502 EmitEOL();
503}
504
505void MCAsmStreamer::EmitCOFFSymbolType (int Type) {
506 OS << "\t.type\t" << Type << ';';
507 EmitEOL();
508}
509
510void MCAsmStreamer::EndCOFFSymbolDef() {
511 OS << "\t.endef";
512 EmitEOL();
513}
514
Timur Iskhodzhanovc1fb2d62013-12-20 18:15:00 +0000515void MCAsmStreamer::EmitCOFFSectionIndex(MCSymbol const *Symbol) {
516 OS << "\t.secidx\t" << *Symbol;
517 EmitEOL();
518}
519
Rafael Espindolad3df3d32011-12-17 01:14:52 +0000520void MCAsmStreamer::EmitCOFFSecRel32(MCSymbol const *Symbol) {
Timur Iskhodzhanovc1fb2d62013-12-20 18:15:00 +0000521 OS << "\t.secrel32\t" << *Symbol;
Rafael Espindolad3df3d32011-12-17 01:14:52 +0000522 EmitEOL();
523}
524
Chris Lattner91dac6d2010-01-25 07:52:13 +0000525void MCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000526 assert(MAI->hasDotTypeDotSizeDirective());
Chris Lattner91dac6d2010-01-25 07:52:13 +0000527 OS << "\t.size\t" << *Symbol << ", " << *Value << '\n';
528}
529
Chris Lattnerb1301f72010-01-23 07:47:02 +0000530void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar6a715dc2009-08-30 06:17:16 +0000531 unsigned ByteAlignment) {
Richard Mitton089ed892013-09-23 17:56:20 +0000532 // Common symbols do not belong to any actual section.
533 AssignSection(Symbol, NULL);
Richard Mitton21101b32013-09-19 23:21:01 +0000534
Chris Lattnerb1301f72010-01-23 07:47:02 +0000535 OS << "\t.comm\t" << *Symbol << ',' << Size;
Chris Lattner0375d2f2010-01-25 07:29:13 +0000536 if (ByteAlignment != 0) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000537 if (MAI->getCOMMDirectiveAlignmentIsInBytes())
Chris Lattner95b98952010-01-19 06:01:04 +0000538 OS << ',' << ByteAlignment;
539 else
540 OS << ',' << Log2_32(ByteAlignment);
541 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000542 EmitEOL();
Chris Lattnera1e11f52009-07-07 20:30:46 +0000543}
544
Chris Lattnerb1301f72010-01-23 07:47:02 +0000545/// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
546///
547/// @param Symbol - The common symbol to emit.
548/// @param Size - The size of the common symbol.
Benjamin Kramer63970512011-09-01 23:04:27 +0000549void MCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
550 unsigned ByteAlign) {
Richard Mitton089ed892013-09-23 17:56:20 +0000551 // Common symbols do not belong to any actual section.
552 AssignSection(Symbol, NULL);
Richard Mitton21101b32013-09-19 23:21:01 +0000553
Chris Lattnerb1301f72010-01-23 07:47:02 +0000554 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
Benjamin Kramer63970512011-09-01 23:04:27 +0000555 if (ByteAlign > 1) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000556 switch (MAI->getLCOMMDirectiveAlignmentType()) {
Benjamin Kramer68b9f052012-09-07 21:08:01 +0000557 case LCOMM::NoAlignment:
558 llvm_unreachable("alignment not supported on .lcomm!");
559 case LCOMM::ByteAlignment:
Benjamin Kramer47f9ec92012-09-07 17:25:13 +0000560 OS << ',' << ByteAlign;
Benjamin Kramer68b9f052012-09-07 21:08:01 +0000561 break;
562 case LCOMM::Log2Alignment:
Benjamin Kramer47f9ec92012-09-07 17:25:13 +0000563 assert(isPowerOf2_32(ByteAlign) && "alignment must be a power of 2");
564 OS << ',' << Log2_32(ByteAlign);
Benjamin Kramer68b9f052012-09-07 21:08:01 +0000565 break;
Benjamin Kramer47f9ec92012-09-07 17:25:13 +0000566 }
Benjamin Kramer63970512011-09-01 23:04:27 +0000567 }
Chris Lattnerb1301f72010-01-23 07:47:02 +0000568 EmitEOL();
569}
570
Daniel Dunbarcf72e1c2009-08-28 05:48:22 +0000571void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Evan Chengf5bd6c62012-06-22 20:14:46 +0000572 uint64_t Size, unsigned ByteAlignment) {
Richard Mitton21101b32013-09-19 23:21:01 +0000573 if (Symbol)
574 AssignSection(Symbol, Section);
575
Daniel Dunbaraba5fb82009-08-13 23:36:34 +0000576 // Note: a .zerofill directive does not switch sections.
Chris Lattner591105c2009-08-08 23:39:42 +0000577 OS << ".zerofill ";
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000578
Chris Lattner591105c2009-08-08 23:39:42 +0000579 // This is a mach-o specific directive.
Chris Lattnercb307a272009-08-10 01:39:42 +0000580 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
Daniel Dunbar563a7e82009-08-14 18:51:45 +0000581 OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000582
Chris Lattner07cadaf2009-07-10 22:20:30 +0000583 if (Symbol != NULL) {
Chris Lattner8b5d55e2010-01-17 21:43:43 +0000584 OS << ',' << *Symbol << ',' << Size;
Daniel Dunbar6a715dc2009-08-30 06:17:16 +0000585 if (ByteAlignment != 0)
586 OS << ',' << Log2_32(ByteAlignment);
Chris Lattner07cadaf2009-07-10 22:20:30 +0000587 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000588 EmitEOL();
Chris Lattner07cadaf2009-07-10 22:20:30 +0000589}
590
Eric Christopher68b1bbe2010-05-17 02:13:02 +0000591// .tbss sym, size, align
592// This depends that the symbol has already been mangled from the original,
593// e.g. _a.
Eric Christopher5c87be72010-05-18 21:16:04 +0000594void MCAsmStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
595 uint64_t Size, unsigned ByteAlignment) {
Richard Mitton21101b32013-09-19 23:21:01 +0000596 AssignSection(Symbol, Section);
597
Eric Christopher9fb6bb02010-05-14 01:50:28 +0000598 assert(Symbol != NULL && "Symbol shouldn't be NULL!");
Eric Christopher5c87be72010-05-18 21:16:04 +0000599 // Instead of using the Section we'll just use the shortcut.
600 // This is a mach-o specific directive and section.
Eric Christopher68b1bbe2010-05-17 02:13:02 +0000601 OS << ".tbss " << *Symbol << ", " << Size;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000602
Eric Christopher5c87be72010-05-18 21:16:04 +0000603 // Output align if we have it. We default to 1 so don't bother printing
604 // that.
605 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000606
Eric Christopher9fb6bb02010-05-14 01:50:28 +0000607 EmitEOL();
608}
609
Chris Lattnerded9af632010-01-23 00:15:00 +0000610static inline char toOctal(int X) { return (X&7)+'0'; }
611
Chris Lattner601ef332010-01-25 18:58:59 +0000612static void PrintQuotedString(StringRef Data, raw_ostream &OS) {
613 OS << '"';
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000614
Chris Lattner601ef332010-01-25 18:58:59 +0000615 for (unsigned i = 0, e = Data.size(); i != e; ++i) {
616 unsigned char C = Data[i];
617 if (C == '"' || C == '\\') {
618 OS << '\\' << (char)C;
619 continue;
620 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000621
Chris Lattner601ef332010-01-25 18:58:59 +0000622 if (isprint((unsigned char)C)) {
623 OS << (char)C;
624 continue;
625 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000626
Chris Lattner601ef332010-01-25 18:58:59 +0000627 switch (C) {
628 case '\b': OS << "\\b"; break;
629 case '\f': OS << "\\f"; break;
630 case '\n': OS << "\\n"; break;
631 case '\r': OS << "\\r"; break;
632 case '\t': OS << "\\t"; break;
633 default:
634 OS << '\\';
635 OS << toOctal(C >> 6);
636 OS << toOctal(C >> 3);
637 OS << toOctal(C >> 0);
638 break;
639 }
640 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000641
Chris Lattner601ef332010-01-25 18:58:59 +0000642 OS << '"';
643}
644
645
Rafael Espindola64e1af82013-07-02 15:49:13 +0000646void MCAsmStreamer::EmitBytes(StringRef Data) {
Peter Collingbourne2f495b92013-04-17 21:18:16 +0000647 assert(getCurrentSection().first &&
648 "Cannot emit contents before setting section!");
Chris Lattnerded9af632010-01-23 00:15:00 +0000649 if (Data.empty()) return;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000650
Chris Lattnerded9af632010-01-23 00:15:00 +0000651 if (Data.size() == 1) {
Rafael Espindola64e1af82013-07-02 15:49:13 +0000652 OS << MAI->getData8bitsDirective();
Chris Lattnerded9af632010-01-23 00:15:00 +0000653 OS << (unsigned)(unsigned char)Data[0];
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000654 EmitEOL();
Chris Lattnerded9af632010-01-23 00:15:00 +0000655 return;
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000656 }
Chris Lattnerded9af632010-01-23 00:15:00 +0000657
658 // If the data ends with 0 and the target supports .asciz, use it, otherwise
659 // use .ascii
Bill Wendlingbc07a892013-06-18 07:20:20 +0000660 if (MAI->getAscizDirective() && Data.back() == 0) {
661 OS << MAI->getAscizDirective();
Chris Lattnerded9af632010-01-23 00:15:00 +0000662 Data = Data.substr(0, Data.size()-1);
663 } else {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000664 OS << MAI->getAsciiDirective();
Chris Lattnerded9af632010-01-23 00:15:00 +0000665 }
666
Chris Lattner601ef332010-01-25 18:58:59 +0000667 PrintQuotedString(Data, OS);
Chris Lattnerded9af632010-01-23 00:15:00 +0000668 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000669}
670
Rafael Espindola64e1af82013-07-02 15:49:13 +0000671void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size) {
672 EmitValue(MCConstantExpr::Create(Value, getContext()), Size);
Rafael Espindola4c70eea2010-12-03 02:54:21 +0000673}
674
Rafael Espindola64e1af82013-07-02 15:49:13 +0000675void MCAsmStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size) {
David Majnemer522d3db2014-02-01 07:19:38 +0000676 assert(Size <= 8 && "Invalid size");
Peter Collingbourne2f495b92013-04-17 21:18:16 +0000677 assert(getCurrentSection().first &&
678 "Cannot emit contents before setting section!");
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000679 const char *Directive = 0;
680 switch (Size) {
681 default: break;
Rafael Espindola64e1af82013-07-02 15:49:13 +0000682 case 1: Directive = MAI->getData8bitsDirective(); break;
683 case 2: Directive = MAI->getData16bitsDirective(); break;
684 case 4: Directive = MAI->getData32bitsDirective(); break;
David Majnemer522d3db2014-02-01 07:19:38 +0000685 case 8: Directive = MAI->getData64bitsDirective(); break;
686 }
687
688 if (!Directive) {
Rafael Espindolae5e1f9a2010-11-28 23:22:44 +0000689 int64_t IntValue;
690 if (!Value->EvaluateAsAbsolute(IntValue))
691 report_fatal_error("Don't know how to emit this value.");
David Majnemer522d3db2014-02-01 07:19:38 +0000692
693 // We couldn't handle the requested integer size so we fallback by breaking
694 // the request down into several, smaller, integers. Since sizes greater
695 // than eight are invalid and size equivalent to eight should have been
696 // handled earlier, we use four bytes as our largest piece of granularity.
697 bool IsLittleEndian = MAI->isLittleEndian();
698 for (unsigned Emitted = 0; Emitted != Size;) {
699 unsigned Remaining = Size - Emitted;
700 // The size of our partial emission must be a power of two less than
701 // eight.
702 unsigned EmissionSize = PowerOf2Floor(Remaining);
703 if (EmissionSize > 4)
704 EmissionSize = 4;
705 // Calculate the byte offset of our partial emission taking into account
706 // the endianness of the target.
707 unsigned ByteOffset =
708 IsLittleEndian ? Emitted : (Remaining - EmissionSize);
709 uint64_t ValueToEmit = IntValue >> (ByteOffset * 8);
710 // We truncate our partial emission to fit within the bounds of the
711 // emission domain. This produces nicer output and silences potential
712 // truncation warnings when round tripping through another assembler.
713 ValueToEmit &= ~0ULL >> (64 - EmissionSize * 8);
714 EmitIntValue(ValueToEmit, EmissionSize);
715 Emitted += EmissionSize;
Chris Lattner45eeffc2010-01-20 06:45:39 +0000716 }
717 return;
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000718 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000719
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000720 assert(Directive && "Invalid size for machine code value!");
Chris Lattner3cde7602010-01-25 21:28:50 +0000721 OS << Directive << *Value;
Chris Lattner38e92192010-01-22 07:29:22 +0000722 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000723}
724
Rafael Espindola6aea5922011-04-21 23:39:26 +0000725void MCAsmStreamer::EmitULEB128Value(const MCExpr *Value) {
Rafael Espindola92ca9332010-11-19 04:10:13 +0000726 int64_t IntValue;
727 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindola6aea5922011-04-21 23:39:26 +0000728 EmitULEB128IntValue(IntValue);
Rafael Espindola92ca9332010-11-19 04:10:13 +0000729 return;
730 }
Bill Wendlingbc07a892013-06-18 07:20:20 +0000731 assert(MAI->hasLEB128() && "Cannot print a .uleb");
Rafael Espindola38d07562010-11-04 18:17:08 +0000732 OS << ".uleb128 " << *Value;
Rafael Espindola5e874982010-11-02 17:22:24 +0000733 EmitEOL();
734}
735
Rafael Espindola6aea5922011-04-21 23:39:26 +0000736void MCAsmStreamer::EmitSLEB128Value(const MCExpr *Value) {
Rafael Espindola92ca9332010-11-19 04:10:13 +0000737 int64_t IntValue;
738 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindola6aea5922011-04-21 23:39:26 +0000739 EmitSLEB128IntValue(IntValue);
Rafael Espindola92ca9332010-11-19 04:10:13 +0000740 return;
741 }
Bill Wendlingbc07a892013-06-18 07:20:20 +0000742 assert(MAI->hasLEB128() && "Cannot print a .sleb");
Rafael Espindola38d07562010-11-04 18:17:08 +0000743 OS << ".sleb128 " << *Value;
Rafael Espindola5e874982010-11-02 17:22:24 +0000744 EmitEOL();
745}
746
Akira Hatanakaf0b08442012-02-03 04:33:00 +0000747void MCAsmStreamer::EmitGPRel64Value(const MCExpr *Value) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000748 assert(MAI->getGPRel64Directive() != 0);
749 OS << MAI->getGPRel64Directive() << *Value;
Akira Hatanakaf0b08442012-02-03 04:33:00 +0000750 EmitEOL();
751}
752
Chris Lattner3cde7602010-01-25 21:28:50 +0000753void MCAsmStreamer::EmitGPRel32Value(const MCExpr *Value) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000754 assert(MAI->getGPRel32Directive() != 0);
755 OS << MAI->getGPRel32Directive() << *Value;
Chris Lattner3cde7602010-01-25 21:28:50 +0000756 EmitEOL();
757}
758
759
Chris Lattner4340cb32010-01-19 18:52:28 +0000760/// EmitFill - Emit NumBytes bytes worth of the value specified by
761/// FillValue. This implements directives such as '.space'.
Rafael Espindola64e1af82013-07-02 15:49:13 +0000762void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue) {
Chris Lattnered89f602010-01-19 18:58:52 +0000763 if (NumBytes == 0) return;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000764
Rafael Espindola64e1af82013-07-02 15:49:13 +0000765 if (const char *ZeroDirective = MAI->getZeroDirective()) {
766 OS << ZeroDirective << NumBytes;
767 if (FillValue != 0)
768 OS << ',' << (int)FillValue;
769 EmitEOL();
770 return;
771 }
Chris Lattnerc35681b2010-01-19 19:46:13 +0000772
773 // Emit a byte at a time.
Rafael Espindola64e1af82013-07-02 15:49:13 +0000774 MCStreamer::EmitFill(NumBytes, FillValue);
Chris Lattner4340cb32010-01-19 18:52:28 +0000775}
776
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000777void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
778 unsigned ValueSize,
779 unsigned MaxBytesToEmit) {
Chris Lattner37b72342009-08-19 06:12:02 +0000780 // Some assemblers don't support non-power of two alignments, so we always
781 // emit alignments as a power of two if possible.
782 if (isPowerOf2_32(ByteAlignment)) {
Chris Lattner78b23b02009-08-19 06:35:36 +0000783 switch (ValueSize) {
784 default: llvm_unreachable("Invalid size for machine code value!");
Bill Wendlingbc07a892013-06-18 07:20:20 +0000785 case 1: OS << MAI->getAlignDirective(); break;
Chris Lattnere9a75a62009-08-22 21:43:10 +0000786 // FIXME: use MAI for this!
Chris Lattner78b23b02009-08-19 06:35:36 +0000787 case 2: OS << ".p2alignw "; break;
788 case 4: OS << ".p2alignl "; break;
789 case 8: llvm_unreachable("Unsupported alignment size!");
790 }
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 Espindola0a017a62010-12-10 07:39:47 +0000859 if (UseLoc) {
Rafael Espindolab58867c2010-11-19 02:26:16 +0000860 OS << "\t.file\t" << FileNo << ' ';
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000861 if (!Directory.empty()) {
862 PrintQuotedString(Directory, OS);
863 OS << ' ';
864 }
Rafael Espindolab58867c2010-11-19 02:26:16 +0000865 PrintQuotedString(Filename, OS);
866 EmitEOL();
Manman Ren1e427202013-03-07 01:42:00 +0000867 // All .file will belong to a single CUID.
868 CUID = 0;
Rafael Espindolab58867c2010-11-19 02:26:16 +0000869 }
Manman Ren1e427202013-03-07 01:42:00 +0000870 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Directory, Filename,
871 CUID);
Rafael Espindolac653a892010-11-16 21:20:32 +0000872}
873
874void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
875 unsigned Column, unsigned Flags,
876 unsigned Isa,
Devang Patel17740e72011-04-18 20:26:49 +0000877 unsigned Discriminator,
878 StringRef FileName) {
Rafael Espindolab58867c2010-11-19 02:26:16 +0000879 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
Devang Patel17740e72011-04-18 20:26:49 +0000880 Isa, Discriminator, FileName);
Rafael Espindola0a017a62010-12-10 07:39:47 +0000881 if (!UseLoc)
Rafael Espindolab58867c2010-11-19 02:26:16 +0000882 return;
883
Rafael Espindolac653a892010-11-16 21:20:32 +0000884 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
885 if (Flags & DWARF2_FLAG_BASIC_BLOCK)
886 OS << " basic_block";
887 if (Flags & DWARF2_FLAG_PROLOGUE_END)
888 OS << " prologue_end";
889 if (Flags & DWARF2_FLAG_EPILOGUE_BEGIN)
890 OS << " epilogue_begin";
891
892 unsigned OldFlags = getContext().getCurrentDwarfLoc().getFlags();
893 if ((Flags & DWARF2_FLAG_IS_STMT) != (OldFlags & DWARF2_FLAG_IS_STMT)) {
894 OS << " is_stmt ";
895
896 if (Flags & DWARF2_FLAG_IS_STMT)
897 OS << "1";
898 else
899 OS << "0";
900 }
901
902 if (Isa)
903 OS << "isa " << Isa;
904 if (Discriminator)
905 OS << "discriminator " << Discriminator;
Devang Patel17740e72011-04-18 20:26:49 +0000906
907 if (IsVerboseAsm) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000908 OS.PadToColumn(MAI->getCommentColumn());
909 OS << MAI->getCommentString() << ' ' << FileName << ':'
Devang Patel17740e72011-04-18 20:26:49 +0000910 << Line << ':' << Column;
911 }
Rafael Espindolac653a892010-11-16 21:20:32 +0000912 EmitEOL();
Chris Lattner601ef332010-01-25 18:58:59 +0000913}
914
Rafael Espindola5645bad2013-10-16 01:05:45 +0000915void MCAsmStreamer::EmitIdent(StringRef IdentString) {
916 assert(MAI->hasIdentDirective() && ".ident directive not supported");
917 OS << "\t.ident\t";
918 PrintQuotedString(IdentString, OS);
919 EmitEOL();
920}
921
Rafael Espindolaec53aa92011-05-10 13:39:48 +0000922void MCAsmStreamer::EmitCFISections(bool EH, bool Debug) {
923 MCStreamer::EmitCFISections(EH, Debug);
924
925 if (!UseCFI)
926 return;
927
928 OS << "\t.cfi_sections ";
929 if (EH) {
930 OS << ".eh_frame";
931 if (Debug)
932 OS << ", .debug_frame";
933 } else if (Debug) {
934 OS << ".debug_frame";
935 }
936
937 EmitEOL();
938}
939
Rafael Espindola38241202012-01-07 22:42:19 +0000940void MCAsmStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) {
941 if (!UseCFI) {
942 RecordProcStart(Frame);
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000943 return;
Rafael Espindola38241202012-01-07 22:42:19 +0000944 }
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000945
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000946 OS << "\t.cfi_startproc";
David Majnemere035cf92014-01-27 17:20:25 +0000947 if (Frame.IsSimple)
948 OS << " simple";
Rafael Espindola3c227b02010-11-22 14:27:24 +0000949 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000950}
951
Rafael Espindolaf28213c2012-01-09 00:17:29 +0000952void MCAsmStreamer::EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) {
953 if (!UseCFI) {
954 RecordProcEnd(Frame);
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000955 return;
Rafael Espindolaf28213c2012-01-09 00:17:29 +0000956 }
957
958 // Put a dummy non-null value in Frame.End to mark that this frame has been
959 // closed.
960 Frame.End = (MCSymbol *) 1;
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000961
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000962 OS << "\t.cfi_endproc";
Rafael Espindola3c227b02010-11-22 14:27:24 +0000963 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000964}
965
Rafael Espindola08600bc2011-05-30 20:20:15 +0000966void MCAsmStreamer::EmitRegisterName(int64_t Register) {
Bill Wendlingbc07a892013-06-18 07:20:20 +0000967 if (InstPrinter && !MAI->useDwarfRegNumForCFI()) {
968 const MCRegisterInfo *MRI = getContext().getRegisterInfo();
969 unsigned LLVMRegister = MRI->getLLVMRegNum(Register, true);
Rafael Espindolad6860522011-06-02 02:34:55 +0000970 InstPrinter->printRegName(OS, LLVMRegister);
Rafael Espindola08600bc2011-05-30 20:20:15 +0000971 } else {
972 OS << Register;
973 }
974}
975
Rafael Espindola539d96f2011-04-12 23:59:07 +0000976void MCAsmStreamer::EmitCFIDefCfa(int64_t Register, int64_t Offset) {
Rafael Espindola6c961e12011-04-29 21:41:06 +0000977 MCStreamer::EmitCFIDefCfa(Register, Offset);
978
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000979 if (!UseCFI)
980 return;
981
Rafael Espindola08600bc2011-05-30 20:20:15 +0000982 OS << "\t.cfi_def_cfa ";
983 EmitRegisterName(Register);
984 OS << ", " << Offset;
Rafael Espindola6c961e12011-04-29 21:41:06 +0000985 EmitEOL();
Rafael Espindola539d96f2011-04-12 23:59:07 +0000986}
987
988void MCAsmStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
989 MCStreamer::EmitCFIDefCfaOffset(Offset);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000990
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000991 if (!UseCFI)
992 return;
993
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000994 OS << "\t.cfi_def_cfa_offset " << Offset;
Rafael Espindola3c227b02010-11-22 14:27:24 +0000995 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000996}
997
Rafael Espindola539d96f2011-04-12 23:59:07 +0000998void MCAsmStreamer::EmitCFIDefCfaRegister(int64_t Register) {
999 MCStreamer::EmitCFIDefCfaRegister(Register);
Rafael Espindola3c227b02010-11-22 14:27:24 +00001000
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001001 if (!UseCFI)
1002 return;
1003
Rafael Espindola08600bc2011-05-30 20:20:15 +00001004 OS << "\t.cfi_def_cfa_register ";
1005 EmitRegisterName(Register);
Rafael Espindola3c227b02010-11-22 14:27:24 +00001006 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +00001007}
1008
Rafael Espindola539d96f2011-04-12 23:59:07 +00001009void MCAsmStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
1010 this->MCStreamer::EmitCFIOffset(Register, Offset);
Rafael Espindola3c227b02010-11-22 14:27:24 +00001011
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001012 if (!UseCFI)
1013 return;
1014
Rafael Espindola08600bc2011-05-30 20:20:15 +00001015 OS << "\t.cfi_offset ";
1016 EmitRegisterName(Register);
1017 OS << ", " << Offset;
Rafael Espindola3c227b02010-11-22 14:27:24 +00001018 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +00001019}
1020
Rafael Espindola539d96f2011-04-12 23:59:07 +00001021void MCAsmStreamer::EmitCFIPersonality(const MCSymbol *Sym,
Rafael Espindola2ac83552010-12-27 00:36:05 +00001022 unsigned Encoding) {
Rafael Espindola539d96f2011-04-12 23:59:07 +00001023 MCStreamer::EmitCFIPersonality(Sym, Encoding);
Rafael Espindola3c227b02010-11-22 14:27:24 +00001024
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001025 if (!UseCFI)
1026 return;
1027
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +00001028 OS << "\t.cfi_personality " << Encoding << ", " << *Sym;
Rafael Espindola3c227b02010-11-22 14:27:24 +00001029 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +00001030}
1031
Rafael Espindola539d96f2011-04-12 23:59:07 +00001032void MCAsmStreamer::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) {
1033 MCStreamer::EmitCFILsda(Sym, Encoding);
Rafael Espindola3c227b02010-11-22 14:27:24 +00001034
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001035 if (!UseCFI)
1036 return;
1037
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +00001038 OS << "\t.cfi_lsda " << Encoding << ", " << *Sym;
Rafael Espindola3c227b02010-11-22 14:27:24 +00001039 EmitEOL();
Rafael Espindola539d96f2011-04-12 23:59:07 +00001040}
Rafael Espindola3c227b02010-11-22 14:27:24 +00001041
Rafael Espindola539d96f2011-04-12 23:59:07 +00001042void MCAsmStreamer::EmitCFIRememberState() {
1043 MCStreamer::EmitCFIRememberState();
1044
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001045 if (!UseCFI)
1046 return;
1047
Rafael Espindola539d96f2011-04-12 23:59:07 +00001048 OS << "\t.cfi_remember_state";
1049 EmitEOL();
1050}
1051
1052void MCAsmStreamer::EmitCFIRestoreState() {
1053 MCStreamer::EmitCFIRestoreState();
1054
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001055 if (!UseCFI)
1056 return;
1057
Rafael Espindola539d96f2011-04-12 23:59:07 +00001058 OS << "\t.cfi_restore_state";
1059 EmitEOL();
1060}
1061
1062void MCAsmStreamer::EmitCFISameValue(int64_t Register) {
1063 MCStreamer::EmitCFISameValue(Register);
1064
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001065 if (!UseCFI)
1066 return;
1067
Rafael Espindola08600bc2011-05-30 20:20:15 +00001068 OS << "\t.cfi_same_value ";
1069 EmitRegisterName(Register);
Rafael Espindola539d96f2011-04-12 23:59:07 +00001070 EmitEOL();
1071}
1072
1073void MCAsmStreamer::EmitCFIRelOffset(int64_t Register, int64_t Offset) {
1074 MCStreamer::EmitCFIRelOffset(Register, Offset);
1075
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001076 if (!UseCFI)
1077 return;
1078
Rafael Espindola08600bc2011-05-30 20:20:15 +00001079 OS << "\t.cfi_rel_offset ";
1080 EmitRegisterName(Register);
1081 OS << ", " << Offset;
Rafael Espindola539d96f2011-04-12 23:59:07 +00001082 EmitEOL();
1083}
1084
1085void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) {
1086 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
1087
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001088 if (!UseCFI)
1089 return;
1090
Rafael Espindola539d96f2011-04-12 23:59:07 +00001091 OS << "\t.cfi_adjust_cfa_offset " << Adjustment;
1092 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +00001093}
1094
Rafael Espindola3c47e372012-01-23 21:51:52 +00001095void MCAsmStreamer::EmitCFISignalFrame() {
1096 MCStreamer::EmitCFISignalFrame();
1097
1098 if (!UseCFI)
1099 return;
1100
Eric Christopher368461c2012-05-31 00:53:18 +00001101 OS << "\t.cfi_signal_frame";
Rafael Espindola3c47e372012-01-23 21:51:52 +00001102 EmitEOL();
1103}
1104
Rafael Espindola9bb24782012-11-23 16:59:41 +00001105void MCAsmStreamer::EmitCFIUndefined(int64_t Register) {
1106 MCStreamer::EmitCFIUndefined(Register);
1107
1108 if (!UseCFI)
1109 return;
1110
1111 OS << "\t.cfi_undefined " << Register;
1112 EmitEOL();
1113}
1114
Rafael Espindolacdb9a532012-11-25 15:14:49 +00001115void MCAsmStreamer::EmitCFIRegister(int64_t Register1, int64_t Register2) {
1116 MCStreamer::EmitCFIRegister(Register1, Register2);
1117
1118 if (!UseCFI)
1119 return;
1120
1121 OS << "\t.cfi_register " << Register1 << ", " << Register2;
1122 EmitEOL();
1123}
1124
Venkatraman Govindaraju3816d432013-09-26 14:49:40 +00001125void MCAsmStreamer::EmitCFIWindowSave() {
1126 MCStreamer::EmitCFIWindowSave();
1127
1128 if (!UseCFI)
1129 return;
1130
1131 OS << "\t.cfi_window_save";
1132 EmitEOL();
1133}
1134
Charles Davisc7250fa2011-05-22 21:12:15 +00001135void MCAsmStreamer::EmitWin64EHStartProc(const MCSymbol *Symbol) {
Charles Davis9a115a42011-05-20 18:19:22 +00001136 MCStreamer::EmitWin64EHStartProc(Symbol);
1137
Charles Davis4cd88562011-05-19 17:46:39 +00001138 OS << ".seh_proc " << *Symbol;
Charles Davis8d9c9902011-05-18 04:58:05 +00001139 EmitEOL();
1140}
1141
Charles Davis27117af2011-05-18 22:13:51 +00001142void MCAsmStreamer::EmitWin64EHEndProc() {
Charles Davis9a115a42011-05-20 18:19:22 +00001143 MCStreamer::EmitWin64EHEndProc();
1144
Charles Davis4cd88562011-05-19 17:46:39 +00001145 OS << "\t.seh_endproc";
Charles Davis8d9c9902011-05-18 04:58:05 +00001146 EmitEOL();
1147}
1148
Charles Davis27117af2011-05-18 22:13:51 +00001149void MCAsmStreamer::EmitWin64EHStartChained() {
Charles Davis9a115a42011-05-20 18:19:22 +00001150 MCStreamer::EmitWin64EHStartChained();
1151
Charles Davis4cd88562011-05-19 17:46:39 +00001152 OS << "\t.seh_startchained";
Charles Davis77e06102011-05-18 20:54:10 +00001153 EmitEOL();
1154}
1155
Charles Davis27117af2011-05-18 22:13:51 +00001156void MCAsmStreamer::EmitWin64EHEndChained() {
Charles Davis9a115a42011-05-20 18:19:22 +00001157 MCStreamer::EmitWin64EHEndChained();
1158
Charles Davis4cd88562011-05-19 17:46:39 +00001159 OS << "\t.seh_endchained";
Charles Davis77e06102011-05-18 20:54:10 +00001160 EmitEOL();
1161}
1162
Charles Davis4cd88562011-05-19 17:46:39 +00001163void MCAsmStreamer::EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
1164 bool Except) {
Charles Davis9a115a42011-05-20 18:19:22 +00001165 MCStreamer::EmitWin64EHHandler(Sym, Unwind, Except);
1166
Charles Davis4cd88562011-05-19 17:46:39 +00001167 OS << "\t.seh_handler " << *Sym;
1168 if (Unwind)
1169 OS << ", @unwind";
1170 if (Except)
1171 OS << ", @except";
Charles Davis77e06102011-05-18 20:54:10 +00001172 EmitEOL();
1173}
1174
Evan Cheng76792992011-07-20 05:58:47 +00001175static const MCSection *getWin64EHTableSection(StringRef suffix,
1176 MCContext &context) {
1177 // FIXME: This doesn't belong in MCObjectFileInfo. However,
1178 /// this duplicate code in MCWin64EH.cpp.
1179 if (suffix == "")
1180 return context.getObjectFileInfo()->getXDataSection();
1181 return context.getCOFFSection((".xdata"+suffix).str(),
1182 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
1183 COFF::IMAGE_SCN_MEM_READ |
1184 COFF::IMAGE_SCN_MEM_WRITE,
1185 SectionKind::getDataRel());
1186}
1187
Charles Davis4cd88562011-05-19 17:46:39 +00001188void MCAsmStreamer::EmitWin64EHHandlerData() {
Charles Davis9a115a42011-05-20 18:19:22 +00001189 MCStreamer::EmitWin64EHHandlerData();
1190
Charles Davis2f6ecea2011-05-25 21:43:45 +00001191 // Switch sections. Don't call SwitchSection directly, because that will
1192 // cause the section switch to be visible in the emitted assembly.
1193 // We only do this so the section switch that terminates the handler
1194 // data block is visible.
Charles Davis03eef622011-05-27 19:09:24 +00001195 MCWin64EHUnwindInfo *CurFrame = getCurrentW64UnwindInfo();
1196 StringRef suffix=MCWin64EHUnwindEmitter::GetSectionSuffix(CurFrame->Function);
Evan Cheng76792992011-07-20 05:58:47 +00001197 const MCSection *xdataSect = getWin64EHTableSection(suffix, getContext());
Charles Davis2f6ecea2011-05-25 21:43:45 +00001198 if (xdataSect)
1199 SwitchSectionNoChange(xdataSect);
1200
Charles Davis4cd88562011-05-19 17:46:39 +00001201 OS << "\t.seh_handlerdata";
Charles Davis77e06102011-05-18 20:54:10 +00001202 EmitEOL();
1203}
1204
Charles Davis7e6e8952011-05-19 19:35:55 +00001205void MCAsmStreamer::EmitWin64EHPushReg(unsigned Register) {
Charles Davis9a115a42011-05-20 18:19:22 +00001206 MCStreamer::EmitWin64EHPushReg(Register);
1207
Charles Davis4cd88562011-05-19 17:46:39 +00001208 OS << "\t.seh_pushreg " << Register;
Charles Davis8d9c9902011-05-18 04:58:05 +00001209 EmitEOL();
1210}
1211
Charles Davis7e6e8952011-05-19 19:35:55 +00001212void MCAsmStreamer::EmitWin64EHSetFrame(unsigned Register, unsigned Offset) {
Charles Davis9a115a42011-05-20 18:19:22 +00001213 MCStreamer::EmitWin64EHSetFrame(Register, Offset);
1214
Charles Davis4cd88562011-05-19 17:46:39 +00001215 OS << "\t.seh_setframe " << Register << ", " << Offset;
Charles Davis8d9c9902011-05-18 04:58:05 +00001216 EmitEOL();
1217}
1218
Charles Davis7e6e8952011-05-19 19:35:55 +00001219void MCAsmStreamer::EmitWin64EHAllocStack(unsigned Size) {
Charles Davis9a115a42011-05-20 18:19:22 +00001220 MCStreamer::EmitWin64EHAllocStack(Size);
1221
Charles Davis4cd88562011-05-19 17:46:39 +00001222 OS << "\t.seh_stackalloc " << Size;
Charles Davis8d9c9902011-05-18 04:58:05 +00001223 EmitEOL();
1224}
1225
Charles Davis7e6e8952011-05-19 19:35:55 +00001226void MCAsmStreamer::EmitWin64EHSaveReg(unsigned Register, unsigned Offset) {
Charles Davis9a115a42011-05-20 18:19:22 +00001227 MCStreamer::EmitWin64EHSaveReg(Register, Offset);
1228
Charles Davis4cd88562011-05-19 17:46:39 +00001229 OS << "\t.seh_savereg " << Register << ", " << Offset;
1230 EmitEOL();
1231}
1232
Charles Davis7e6e8952011-05-19 19:35:55 +00001233void MCAsmStreamer::EmitWin64EHSaveXMM(unsigned Register, unsigned Offset) {
Charles Davis9a115a42011-05-20 18:19:22 +00001234 MCStreamer::EmitWin64EHSaveXMM(Register, Offset);
1235
Charles Davis4cd88562011-05-19 17:46:39 +00001236 OS << "\t.seh_savexmm " << Register << ", " << Offset;
Charles Davis8d9c9902011-05-18 04:58:05 +00001237 EmitEOL();
1238}
1239
Charles Davis27117af2011-05-18 22:13:51 +00001240void MCAsmStreamer::EmitWin64EHPushFrame(bool Code) {
Charles Davis9a115a42011-05-20 18:19:22 +00001241 MCStreamer::EmitWin64EHPushFrame(Code);
1242
Charles Davis4cd88562011-05-19 17:46:39 +00001243 OS << "\t.seh_pushframe";
Charles Davis8d9c9902011-05-18 04:58:05 +00001244 if (Code)
Charles Davis4cd88562011-05-19 17:46:39 +00001245 OS << " @code";
Charles Davis8d9c9902011-05-18 04:58:05 +00001246 EmitEOL();
1247}
1248
Charles Davis27117af2011-05-18 22:13:51 +00001249void MCAsmStreamer::EmitWin64EHEndProlog(void) {
Charles Davis9a115a42011-05-20 18:19:22 +00001250 MCStreamer::EmitWin64EHEndProlog();
1251
Charles Davis4cd88562011-05-19 17:46:39 +00001252 OS << "\t.seh_endprologue";
Charles Davis8d9c9902011-05-18 04:58:05 +00001253 EmitEOL();
1254}
1255
David Woodhouse9784cef2014-01-28 23:13:07 +00001256void MCAsmStreamer::AddEncodingComment(const MCInst &Inst,
1257 const MCSubtargetInfo &STI) {
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001258 raw_ostream &OS = GetCommentOS();
1259 SmallString<256> Code;
1260 SmallVector<MCFixup, 4> Fixups;
1261 raw_svector_ostream VecOS(Code);
David Woodhouse9784cef2014-01-28 23:13:07 +00001262 Emitter->EncodeInstruction(Inst, VecOS, Fixups, STI);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001263 VecOS.flush();
Chris Lattner601ef332010-01-25 18:58:59 +00001264
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001265 // If we are showing fixups, create symbolic markers in the encoded
1266 // representation. We do this by making a per-bit map to the fixup item index,
1267 // then trying to display it as nicely as possible.
Daniel Dunbar75c9a4e2010-02-10 01:41:14 +00001268 SmallVector<uint8_t, 64> FixupMap;
1269 FixupMap.resize(Code.size() * 8);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001270 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
1271 FixupMap[i] = 0;
1272
1273 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1274 MCFixup &F = Fixups[i];
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +00001275 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001276 for (unsigned j = 0; j != Info.TargetSize; ++j) {
1277 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j;
1278 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
1279 FixupMap[Index] = 1 + i;
1280 }
1281 }
1282
Evan Cheng15bc70f2011-07-08 22:49:42 +00001283 // FIXME: Note the fixup comments for Thumb2 are completely bogus since the
Evan Cheng52899a92011-01-13 23:27:39 +00001284 // high order halfword of a 32-bit Thumb2 instruction is emitted first.
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001285 OS << "encoding: [";
1286 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
1287 if (i)
1288 OS << ',';
1289
1290 // See if all bits are the same map entry.
1291 uint8_t MapEntry = FixupMap[i * 8 + 0];
1292 for (unsigned j = 1; j != 8; ++j) {
1293 if (FixupMap[i * 8 + j] == MapEntry)
1294 continue;
1295
1296 MapEntry = uint8_t(~0U);
1297 break;
1298 }
1299
1300 if (MapEntry != uint8_t(~0U)) {
1301 if (MapEntry == 0) {
1302 OS << format("0x%02x", uint8_t(Code[i]));
1303 } else {
Evan Cheng0447d302011-01-13 21:45:26 +00001304 if (Code[i]) {
Evan Cheng52899a92011-01-13 23:27:39 +00001305 // FIXME: Some of the 8 bits require fix up.
Evan Cheng0447d302011-01-13 21:45:26 +00001306 OS << format("0x%02x", uint8_t(Code[i])) << '\''
1307 << char('A' + MapEntry - 1) << '\'';
1308 } else
1309 OS << char('A' + MapEntry - 1);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001310 }
1311 } else {
1312 // Otherwise, write out in binary.
1313 OS << "0b";
Jay Foad61ea0e42011-06-23 09:09:15 +00001314 for (unsigned j = 8; j--;) {
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001315 unsigned Bit = (Code[i] >> j) & 1;
NAKAMURA Takumiaf669802011-03-27 01:44:40 +00001316
Chris Lattner9e7d8c02010-11-15 05:56:19 +00001317 unsigned FixupBit;
Bill Wendlingbc07a892013-06-18 07:20:20 +00001318 if (MAI->isLittleEndian())
Chris Lattner9e7d8c02010-11-15 05:56:19 +00001319 FixupBit = i * 8 + j;
1320 else
1321 FixupBit = i * 8 + (7-j);
NAKAMURA Takumiaf669802011-03-27 01:44:40 +00001322
Jay Foad61ea0e42011-06-23 09:09:15 +00001323 if (uint8_t MapEntry = FixupMap[FixupBit]) {
1324 assert(Bit == 0 && "Encoder wrote into fixed up bit!");
1325 OS << char('A' + MapEntry - 1);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001326 } else
1327 OS << Bit;
1328 }
1329 }
1330 }
1331 OS << "]\n";
1332
1333 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1334 MCFixup &F = Fixups[i];
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +00001335 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001336 OS << " fixup " << char('A' + i) << " - " << "offset: " << F.getOffset()
Daniel Dunbar60547442010-02-10 04:47:08 +00001337 << ", value: " << *F.getValue() << ", kind: " << Info.Name << "\n";
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001338 }
1339}
1340
David Woodhousee6c13e42014-01-28 23:12:42 +00001341void MCAsmStreamer::EmitInstruction(const MCInst &Inst, const MCSubtargetInfo &STI) {
Peter Collingbourne2f495b92013-04-17 21:18:16 +00001342 assert(getCurrentSection().first &&
1343 "Cannot emit contents before setting section!");
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001344
1345 // Show the encoding in a comment if we have a code emitter.
1346 if (Emitter)
David Woodhouse9784cef2014-01-28 23:13:07 +00001347 AddEncodingComment(Inst, STI);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001348
Chris Lattner89261502010-02-09 00:54:51 +00001349 // Show the MCInst if enabled.
Daniel Dunbar3627af52010-05-26 15:18:13 +00001350 if (ShowInst) {
Bill Wendlingbc07a892013-06-18 07:20:20 +00001351 Inst.dump_pretty(GetCommentOS(), MAI, InstPrinter.get(), "\n ");
Daniel Dunbar3627af52010-05-26 15:18:13 +00001352 GetCommentOS() << "\n";
1353 }
1354
Daniel Dunbar04047fb2010-03-22 21:49:34 +00001355 // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
Daniel Dunbare3ee3322010-02-03 18:18:30 +00001356 if (InstPrinter)
Owen Andersona0c3b972011-09-15 23:38:46 +00001357 InstPrinter->printInst(&Inst, OS, "");
Daniel Dunbare3ee3322010-02-03 18:18:30 +00001358 else
Bill Wendlingbc07a892013-06-18 07:20:20 +00001359 Inst.print(OS, MAI);
Chris Lattnercfa5ebc32010-01-22 07:36:39 +00001360 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +00001361}
1362
Eli Benderskyf483ff92012-12-20 19:05:53 +00001363void MCAsmStreamer::EmitBundleAlignMode(unsigned AlignPow2) {
1364 OS << "\t.bundle_align_mode " << AlignPow2;
1365 EmitEOL();
1366}
1367
Eli Bendersky802b6282013-01-07 21:51:08 +00001368void MCAsmStreamer::EmitBundleLock(bool AlignToEnd) {
Eli Benderskyf483ff92012-12-20 19:05:53 +00001369 OS << "\t.bundle_lock";
Eli Bendersky802b6282013-01-07 21:51:08 +00001370 if (AlignToEnd)
1371 OS << " align_to_end";
Eli Benderskyf483ff92012-12-20 19:05:53 +00001372 EmitEOL();
1373}
1374
1375void MCAsmStreamer::EmitBundleUnlock() {
1376 OS << "\t.bundle_unlock";
1377 EmitEOL();
1378}
1379
Jim Grosbach6ebd7282010-09-22 18:18:30 +00001380/// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner8a87fb72010-04-03 21:35:55 +00001381/// the specified string in the output .s file. This capability is
1382/// indicated by the hasRawTextSupport() predicate.
David Blaikied8c5b4e2013-10-24 22:43:10 +00001383void MCAsmStreamer::EmitRawTextImpl(StringRef String) {
Chris Lattneraca014e2010-04-03 22:06:56 +00001384 if (!String.empty() && String.back() == '\n')
1385 String = String.substr(0, String.size()-1);
Chris Lattner8a87fb72010-04-03 21:35:55 +00001386 OS << String;
Chris Lattneraca014e2010-04-03 22:06:56 +00001387 EmitEOL();
Chris Lattner8a87fb72010-04-03 21:35:55 +00001388}
1389
Rafael Espindola07082092012-01-07 03:13:18 +00001390void MCAsmStreamer::FinishImpl() {
Rafael Espindolac22c85c2012-02-28 21:13:05 +00001391 // FIXME: This header is duplicated with MCObjectStreamer
Rafael Espindolab58867c2010-11-19 02:26:16 +00001392 // Dump out the dwarf file & directory tables and line tables.
Rafael Espindolac7ecbfb2012-03-03 14:24:15 +00001393 const MCSymbol *LineSectionSymbol = NULL;
Rafael Espindola0a017a62010-12-10 07:39:47 +00001394 if (getContext().hasDwarfFiles() && !UseLoc)
Rafael Espindolac22c85c2012-02-28 21:13:05 +00001395 LineSectionSymbol = MCDwarfFileTable::Emit(this);
Rafael Espindola750cb612011-05-01 04:49:54 +00001396
Kevin Enderbye7739d42011-12-09 18:09:40 +00001397 // If we are generating dwarf for assembly source files dump out the sections.
1398 if (getContext().getGenDwarfForAssembly())
Rafael Espindolac22c85c2012-02-28 21:13:05 +00001399 MCGenDwarfInfo::Emit(this, LineSectionSymbol);
Kevin Enderbye7739d42011-12-09 18:09:40 +00001400
Rafael Espindolab6089d62011-05-10 03:14:15 +00001401 if (!UseCFI)
Bill Wendling550c76d2013-09-09 19:48:37 +00001402 EmitFrames(AsmBackend.get(), false);
Daniel Dunbar9faf2732009-06-24 01:03:06 +00001403}
Bill Wendling550c76d2013-09-09 19:48:37 +00001404
Chris Lattner38e92192010-01-22 07:29:22 +00001405MCStreamer *llvm::createAsmStreamer(MCContext &Context,
1406 formatted_raw_ostream &OS,
Rafael Espindolaa17151a2013-10-08 13:08:17 +00001407 bool isVerboseAsm, bool useLoc, bool useCFI,
1408 bool useDwarfDirectory, MCInstPrinter *IP,
1409 MCCodeEmitter *CE, MCAsmBackend *MAB,
1410 bool ShowInst) {
Rafael Espindola24ea09e2014-01-26 06:06:37 +00001411 return new MCAsmStreamer(Context, OS, isVerboseAsm, useLoc,
Rafael Espindolaa17151a2013-10-08 13:08:17 +00001412 useCFI, useDwarfDirectory, IP, CE, MAB, ShowInst);
Daniel Dunbar9faf2732009-06-24 01:03:06 +00001413}