blob: 71919473a32a55e0d397b4e170167cbddea12593 [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"
Torok Edwin56d06592009-07-11 20:10:48 +000028#include "llvm/Support/ErrorHandling.h"
Daniel Dunbar65105172009-08-27 00:51:57 +000029#include "llvm/Support/Format.h"
Chris Lattner38e92192010-01-22 07:29:22 +000030#include "llvm/Support/FormattedStream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000031#include "llvm/Support/MathExtras.h"
Nick Lewycky40f8f2f2011-10-17 23:05:28 +000032#include "llvm/Support/PathV2.h"
Nick Lewycky0de20af2010-12-19 20:43:38 +000033#include <cctype>
Daniel Dunbar9faf2732009-06-24 01:03:06 +000034using namespace llvm;
35
36namespace {
37
Chris Lattner962c5bd82009-08-17 04:17:34 +000038class MCAsmStreamer : public MCStreamer {
Bill Wendlinge3031142011-06-17 20:35:21 +000039protected:
Chris Lattner38e92192010-01-22 07:29:22 +000040 formatted_raw_ostream &OS;
Chris Lattnere9a75a62009-08-22 21:43:10 +000041 const MCAsmInfo &MAI;
Bill Wendlinge3031142011-06-17 20:35:21 +000042private:
Chris Lattner90a78592010-03-19 05:48:53 +000043 OwningPtr<MCInstPrinter> InstPrinter;
Benjamin Kramera3e0ddb2010-07-29 17:48:06 +000044 OwningPtr<MCCodeEmitter> Emitter;
Evan Cheng5928e692011-07-25 23:24:55 +000045 OwningPtr<MCAsmBackend> AsmBackend;
Jim Grosbach3bde49a2010-09-22 18:16:55 +000046
Chris Lattner38e92192010-01-22 07:29:22 +000047 SmallString<128> CommentToEmit;
Chris Lattner8fa0e352010-01-22 19:17:48 +000048 raw_svector_ostream CommentStream;
Daniel Dunbare3ee3322010-02-03 18:18:30 +000049
Daniel Dunbare3ee3322010-02-03 18:18:30 +000050 unsigned IsVerboseAsm : 1;
51 unsigned ShowInst : 1;
Rafael Espindola0a017a62010-12-10 07:39:47 +000052 unsigned UseLoc : 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:
Chris Lattner38e92192010-01-22 07:29:22 +000068 MCAsmStreamer(MCContext &Context, formatted_raw_ostream &os,
Rafael Espindolaa3181d12011-04-30 03:44:37 +000069 bool isVerboseAsm, bool useLoc, bool useCFI,
Nick Lewycky40f8f2f2011-10-17 23:05:28 +000070 bool useDwarfDirectory,
Daniel Dunbarecd0c8a2010-12-16 03:05:59 +000071 MCInstPrinter *printer, MCCodeEmitter *emitter,
Evan Cheng5928e692011-07-25 23:24:55 +000072 MCAsmBackend *asmbackend,
Daniel Dunbarecd0c8a2010-12-16 03:05:59 +000073 bool showInst)
Chris Lattnerac77bf52010-03-12 18:28:53 +000074 : MCStreamer(Context), OS(os), MAI(Context.getAsmInfo()),
Daniel Dunbarecd0c8a2010-12-16 03:05:59 +000075 InstPrinter(printer), Emitter(emitter), AsmBackend(asmbackend),
76 CommentStream(CommentToEmit), IsVerboseAsm(isVerboseAsm),
Nick Lewycky40f8f2f2011-10-17 23:05:28 +000077 ShowInst(showInst), UseLoc(useLoc), UseCFI(useCFI),
78 UseDwarfDirectory(useDwarfDirectory) {
Chris Lattner482bf692010-02-10 00:10:18 +000079 if (InstPrinter && IsVerboseAsm)
80 InstPrinter->setCommentStream(CommentStream);
81 }
Chris Lattner962c5bd82009-08-17 04:17:34 +000082 ~MCAsmStreamer() {}
Daniel Dunbar9faf2732009-06-24 01:03:06 +000083
Chris Lattner38e92192010-01-22 07:29:22 +000084 inline void EmitEOL() {
Chris Lattner8fa0e352010-01-22 19:17:48 +000085 // If we don't have any comments, just emit a \n.
86 if (!IsVerboseAsm) {
Chris Lattner38e92192010-01-22 07:29:22 +000087 OS << '\n';
88 return;
89 }
90 EmitCommentsAndEOL();
91 }
92 void EmitCommentsAndEOL();
Chris Lattnerb0d44c32010-02-02 23:37:42 +000093
94 /// isVerboseAsm - Return true if this streamer supports verbose assembly at
95 /// all.
96 virtual bool isVerboseAsm() const { return IsVerboseAsm; }
Jim Grosbach3bde49a2010-09-22 18:16:55 +000097
Chris Lattner8a87fb72010-04-03 21:35:55 +000098 /// hasRawTextSupport - We support EmitRawText.
99 virtual bool hasRawTextSupport() const { return true; }
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000100
Chris Lattnere1d8a312010-01-22 18:21:35 +0000101 /// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner38e92192010-01-22 07:29:22 +0000102 /// file if applicable as a QoI issue to make the output of the compiler
103 /// more readable. This only affects the MCAsmStreamer, and only when
104 /// verbose assembly output is enabled.
Chris Lattnere1d8a312010-01-22 18:21:35 +0000105 virtual void AddComment(const Twine &T);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000106
107 /// AddEncodingComment - Add a comment showing the encoding of an instruction.
108 virtual void AddEncodingComment(const MCInst &Inst);
109
Chris Lattner8fa0e352010-01-22 19:17:48 +0000110 /// GetCommentOS - Return a raw_ostream that comments can be written to.
111 /// Unlike AddComment, you are required to terminate comments with \n if you
112 /// use this method.
113 virtual raw_ostream &GetCommentOS() {
114 if (!IsVerboseAsm)
115 return nulls(); // Discard comments unless in verbose asm mode.
116 return CommentStream;
117 }
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000118
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
Rafael Espindola58ac6e12011-02-16 01:08:29 +0000127 virtual void ChangeSection(const MCSection *Section);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000128
Rafael Espindolaf667d922010-09-15 21:48:40 +0000129 virtual void InitSections() {
Eli Benderskycbb25142013-01-14 19:04:57 +0000130 InitToTextSection();
131 }
132
133 virtual void InitToTextSection() {
Rafael Espindolaf667d922010-09-15 21:48:40 +0000134 // FIXME, this is MachO specific, but the testsuite
135 // expects this.
Eli Benderskycbb25142013-01-14 19:04:57 +0000136 SwitchSection(getContext().getMachOSection(
137 "__TEXT", "__text",
138 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
139 0, SectionKind::getText()));
Rafael Espindolaf667d922010-09-15 21:48:40 +0000140 }
141
Chris Lattner962c5bd82009-08-17 04:17:34 +0000142 virtual void EmitLabel(MCSymbol *Symbol);
Reed Kotleraee4d5d12012-12-16 04:00:45 +0000143 virtual void EmitDebugLabel(MCSymbol *Symbol);
144
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000145 virtual void EmitEHSymAttributes(const MCSymbol *Symbol,
146 MCSymbol *EHSymbol);
Chris Lattner685508c2010-01-23 06:39:22 +0000147 virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
Daniel Dunbar16004b82013-01-18 01:25:48 +0000148 virtual void EmitLinkerOptions(ArrayRef<std::string> Options);
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000149 virtual void EmitDataRegion(MCDataRegionType Kind);
Jim Grosbach5a2c68d2010-11-05 22:08:08 +0000150 virtual void EmitThumbFunc(MCSymbol *Func);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000151
Daniel Dunbar897ffad2009-08-31 08:09:28 +0000152 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
Rafael Espindola16145972010-11-01 14:28:48 +0000153 virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
Rafael Espindola57ab7082010-12-03 00:55:40 +0000154 virtual void EmitDwarfAdvanceLineAddr(int64_t LineDelta,
155 const MCSymbol *LastLabel,
Evan Chengc7ac6902011-07-14 05:43:07 +0000156 const MCSymbol *Label,
157 unsigned PointerSize);
Rafael Espindola1d1eced2011-04-30 03:21:04 +0000158 virtual void EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
159 const MCSymbol *Label);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000160
Chris Lattner685508c2010-01-23 06:39:22 +0000161 virtual void EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
Kevin Enderbyc9d93ef2009-07-13 21:03:15 +0000162
Chris Lattner962c5bd82009-08-17 04:17:34 +0000163 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
Chris Lattner72afa952010-05-08 19:54:22 +0000164 virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol);
165 virtual void EmitCOFFSymbolStorageClass(int StorageClass);
166 virtual void EmitCOFFSymbolType(int Type);
167 virtual void EndCOFFSymbolDef();
Rafael Espindolad3df3d32011-12-17 01:14:52 +0000168 virtual void EmitCOFFSecRel32(MCSymbol const *Symbol);
Chris Lattner91dac6d2010-01-25 07:52:13 +0000169 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
Chris Lattnerb1301f72010-01-23 07:47:02 +0000170 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar6a715dc2009-08-30 06:17:16 +0000171 unsigned ByteAlignment);
Kevin Enderby4c21caa2009-07-14 18:17:10 +0000172
Chris Lattnerb1301f72010-01-23 07:47:02 +0000173 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
174 ///
175 /// @param Symbol - The common symbol to emit.
176 /// @param Size - The size of the common symbol.
Dmitri Gribenko65340a62012-08-23 16:54:08 +0000177 /// @param ByteAlignment - The alignment of the common symbol in bytes.
Benjamin Kramer63970512011-09-01 23:04:27 +0000178 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
179 unsigned ByteAlignment);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000180
Daniel Dunbarcf72e1c2009-08-28 05:48:22 +0000181 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
Evan Chengf5bd6c62012-06-22 20:14:46 +0000182 uint64_t Size = 0, unsigned ByteAlignment = 0);
Kevin Enderbycbe475d2009-07-14 21:35:03 +0000183
Eric Christopher5c87be72010-05-18 21:16:04 +0000184 virtual void EmitTBSSSymbol (const MCSection *Section, MCSymbol *Symbol,
185 uint64_t Size, unsigned ByteAlignment = 0);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000186
Chris Lattnerc35681b2010-01-19 19:46:13 +0000187 virtual void EmitBytes(StringRef Data, unsigned AddrSpace);
Chris Lattnera1e11f52009-07-07 20:30:46 +0000188
Rafael Espindola0a017a62010-12-10 07:39:47 +0000189 virtual void EmitValueImpl(const MCExpr *Value, unsigned Size,
Rafael Espindolafd057852011-05-01 03:50:49 +0000190 unsigned AddrSpace);
Rafael Espindola4c70eea2010-12-03 02:54:21 +0000191 virtual void EmitIntValue(uint64_t Value, unsigned Size,
192 unsigned AddrSpace = 0);
Rafael Espindola5e874982010-11-02 17:22:24 +0000193
Rafael Espindola6aea5922011-04-21 23:39:26 +0000194 virtual void EmitULEB128Value(const MCExpr *Value);
Rafael Espindola5e874982010-11-02 17:22:24 +0000195
Rafael Espindola6aea5922011-04-21 23:39:26 +0000196 virtual void EmitSLEB128Value(const MCExpr *Value);
Rafael Espindola5e874982010-11-02 17:22:24 +0000197
Akira Hatanakaf0b08442012-02-03 04:33:00 +0000198 virtual void EmitGPRel64Value(const MCExpr *Value);
199
Chris Lattner3cde7602010-01-25 21:28:50 +0000200 virtual void EmitGPRel32Value(const MCExpr *Value);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000201
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000202
Chris Lattnerc35681b2010-01-19 19:46:13 +0000203 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue,
204 unsigned AddrSpace);
Chris Lattner07cadaf2009-07-10 22:20:30 +0000205
Chris Lattner962c5bd82009-08-17 04:17:34 +0000206 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
207 unsigned ValueSize = 1,
208 unsigned MaxBytesToEmit = 0);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000209
Kevin Enderbye83d74f2010-02-23 18:26:34 +0000210 virtual void EmitCodeAlignment(unsigned ByteAlignment,
211 unsigned MaxBytesToEmit = 0);
212
Jim Grosbachb5912772012-01-27 00:37:08 +0000213 virtual bool EmitValueToOffset(const MCExpr *Offset,
Chris Lattner962c5bd82009-08-17 04:17:34 +0000214 unsigned char Value = 0);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000215
Chris Lattner601ef332010-01-25 18:58:59 +0000216 virtual void EmitFileDirective(StringRef Filename);
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000217 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
218 StringRef Filename);
Rafael Espindolac653a892010-11-16 21:20:32 +0000219 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
220 unsigned Column, unsigned Flags,
Devang Patel17740e72011-04-18 20:26:49 +0000221 unsigned Isa, unsigned Discriminator,
222 StringRef FileName);
Chris Lattner601ef332010-01-25 18:58:59 +0000223
Rafael Espindolaec53aa92011-05-10 13:39:48 +0000224 virtual void EmitCFISections(bool EH, bool Debug);
Rafael Espindola539d96f2011-04-12 23:59:07 +0000225 virtual void EmitCFIDefCfa(int64_t Register, int64_t Offset);
226 virtual void EmitCFIDefCfaOffset(int64_t Offset);
227 virtual void EmitCFIDefCfaRegister(int64_t Register);
228 virtual void EmitCFIOffset(int64_t Register, int64_t Offset);
229 virtual void EmitCFIPersonality(const MCSymbol *Sym, unsigned Encoding);
230 virtual void EmitCFILsda(const MCSymbol *Sym, unsigned Encoding);
231 virtual void EmitCFIRememberState();
232 virtual void EmitCFIRestoreState();
233 virtual void EmitCFISameValue(int64_t Register);
234 virtual void EmitCFIRelOffset(int64_t Register, int64_t Offset);
235 virtual void EmitCFIAdjustCfaOffset(int64_t Adjustment);
Rafael Espindola3c47e372012-01-23 21:51:52 +0000236 virtual void EmitCFISignalFrame();
Rafael Espindola9bb24782012-11-23 16:59:41 +0000237 virtual void EmitCFIUndefined(int64_t Register);
Rafael Espindolacdb9a532012-11-25 15:14:49 +0000238 virtual void EmitCFIRegister(int64_t Register1, int64_t Register2);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000239
Charles Davisc7250fa2011-05-22 21:12:15 +0000240 virtual void EmitWin64EHStartProc(const MCSymbol *Symbol);
Charles Davis8d9c9902011-05-18 04:58:05 +0000241 virtual void EmitWin64EHEndProc();
Charles Davis77e06102011-05-18 20:54:10 +0000242 virtual void EmitWin64EHStartChained();
243 virtual void EmitWin64EHEndChained();
Charles Davis4cd88562011-05-19 17:46:39 +0000244 virtual void EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
245 bool Except);
246 virtual void EmitWin64EHHandlerData();
Charles Davis7e6e8952011-05-19 19:35:55 +0000247 virtual void EmitWin64EHPushReg(unsigned Register);
248 virtual void EmitWin64EHSetFrame(unsigned Register, unsigned Offset);
249 virtual void EmitWin64EHAllocStack(unsigned Size);
250 virtual void EmitWin64EHSaveReg(unsigned Register, unsigned Offset);
251 virtual void EmitWin64EHSaveXMM(unsigned Register, unsigned Offset);
Charles Davis8d9c9902011-05-18 04:58:05 +0000252 virtual void EmitWin64EHPushFrame(bool Code);
253 virtual void EmitWin64EHEndProlog();
254
Anton Korobeynikova7ec2dc2011-03-05 18:43:15 +0000255 virtual void EmitFnStart();
256 virtual void EmitFnEnd();
257 virtual void EmitCantUnwind();
258 virtual void EmitPersonality(const MCSymbol *Personality);
259 virtual void EmitHandlerData();
Anton Korobeynikove7410dd2011-03-05 18:43:32 +0000260 virtual void EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset = 0);
261 virtual void EmitPad(int64_t Offset);
262 virtual void EmitRegSave(const SmallVectorImpl<unsigned> &RegList, bool);
263
Adhemerval Zanellaef206f12012-10-15 15:43:14 +0000264 virtual void EmitTCEntry(const MCSymbol &S);
Anton Korobeynikova7ec2dc2011-03-05 18:43:15 +0000265
Chris Lattner601ef332010-01-25 18:58:59 +0000266 virtual void EmitInstruction(const MCInst &Inst);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000267
Eli Benderskyf483ff92012-12-20 19:05:53 +0000268 virtual void EmitBundleAlignMode(unsigned AlignPow2);
Eli Bendersky802b6282013-01-07 21:51:08 +0000269 virtual void EmitBundleLock(bool AlignToEnd);
Eli Benderskyf483ff92012-12-20 19:05:53 +0000270 virtual void EmitBundleUnlock();
271
Jim Grosbach6ebd7282010-09-22 18:18:30 +0000272 /// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner8a87fb72010-04-03 21:35:55 +0000273 /// the specified string in the output .s file. This capability is
274 /// indicated by the hasRawTextSupport() predicate.
275 virtual void EmitRawText(StringRef String);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000276
Rafael Espindola07082092012-01-07 03:13:18 +0000277 virtual void FinishImpl();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000278
Chris Lattner962c5bd82009-08-17 04:17:34 +0000279 /// @}
280};
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000281
Chris Lattner962c5bd82009-08-17 04:17:34 +0000282} // end anonymous namespace.
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000283
Chris Lattnere1d8a312010-01-22 18:21:35 +0000284/// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner38e92192010-01-22 07:29:22 +0000285/// file if applicable as a QoI issue to make the output of the compiler
286/// more readable. This only affects the MCAsmStreamer, and only when
287/// verbose assembly output is enabled.
Chris Lattnere1d8a312010-01-22 18:21:35 +0000288void MCAsmStreamer::AddComment(const Twine &T) {
Chris Lattner38e92192010-01-22 07:29:22 +0000289 if (!IsVerboseAsm) return;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000290
Chris Lattner8fa0e352010-01-22 19:17:48 +0000291 // Make sure that CommentStream is flushed.
292 CommentStream.flush();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000293
Chris Lattner38e92192010-01-22 07:29:22 +0000294 T.toVector(CommentToEmit);
Chris Lattner8fa0e352010-01-22 19:17:48 +0000295 // Each comment goes on its own line.
296 CommentToEmit.push_back('\n');
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000297
Chris Lattner1386a882010-01-22 21:16:10 +0000298 // Tell the comment stream that the vector changed underneath it.
299 CommentStream.resync();
Chris Lattner38e92192010-01-22 07:29:22 +0000300}
301
302void MCAsmStreamer::EmitCommentsAndEOL() {
Chris Lattner8fa0e352010-01-22 19:17:48 +0000303 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) {
304 OS << '\n';
305 return;
306 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000307
Chris Lattner8fa0e352010-01-22 19:17:48 +0000308 CommentStream.flush();
Chris Lattner38e92192010-01-22 07:29:22 +0000309 StringRef Comments = CommentToEmit.str();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000310
Chris Lattner8fa0e352010-01-22 19:17:48 +0000311 assert(Comments.back() == '\n' &&
312 "Comment array not newline terminated");
313 do {
Chris Lattner38e92192010-01-22 07:29:22 +0000314 // Emit a line of comments.
315 OS.PadToColumn(MAI.getCommentColumn());
316 size_t Position = Comments.find('\n');
317 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000318
Chris Lattner38e92192010-01-22 07:29:22 +0000319 Comments = Comments.substr(Position+1);
Chris Lattner8fa0e352010-01-22 19:17:48 +0000320 } while (!Comments.empty());
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000321
Chris Lattner1386a882010-01-22 21:16:10 +0000322 CommentToEmit.clear();
323 // Tell the comment stream that the vector changed underneath it.
324 CommentStream.resync();
Chris Lattner38e92192010-01-22 07:29:22 +0000325}
326
Daniel Dunbar188e87f2009-06-25 21:03:18 +0000327static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
328 assert(Bytes && "Invalid size!");
329 return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
330}
331
Rafael Espindola58ac6e12011-02-16 01:08:29 +0000332void MCAsmStreamer::ChangeSection(const MCSection *Section) {
Chris Lattner4b7dadb2009-08-19 05:49:37 +0000333 assert(Section && "Cannot switch to a null section!");
Rafael Espindola58ac6e12011-02-16 01:08:29 +0000334 Section->PrintSwitchToSection(MAI, OS);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000335}
336
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000337void MCAsmStreamer::EmitEHSymAttributes(const MCSymbol *Symbol,
338 MCSymbol *EHSymbol) {
339 if (UseCFI)
340 return;
341
342 unsigned Flags = FlagMap.lookup(Symbol);
343
344 if (Flags & EHGlobal)
345 EmitSymbolAttribute(EHSymbol, MCSA_Global);
346 if (Flags & EHWeakDefinition)
347 EmitSymbolAttribute(EHSymbol, MCSA_WeakDefinition);
348 if (Flags & EHPrivateExtern)
349 EmitSymbolAttribute(EHSymbol, MCSA_PrivateExtern);
350}
351
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000352void MCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
Daniel Dunbar6860ac72009-08-22 07:22:36 +0000353 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Rafael Espindola27c0c9b2011-04-27 15:21:19 +0000354 MCStreamer::EmitLabel(Symbol);
Daniel Dunbarf782ebc2009-06-24 17:00:42 +0000355
Chris Lattner7bce0592010-09-22 22:19:53 +0000356 OS << *Symbol << MAI.getLabelSuffix();
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000357 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000358}
359
Reed Kotleraee4d5d12012-12-16 04:00:45 +0000360void MCAsmStreamer::EmitDebugLabel(MCSymbol *Symbol) {
361 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
362 MCStreamer::EmitDebugLabel(Symbol);
363
364 OS << *Symbol << MAI.getDebugLabelSuffix();
365 EmitEOL();
366}
367
Chris Lattner685508c2010-01-23 06:39:22 +0000368void MCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
Kevin Enderbydd27e5e2009-07-16 17:56:39 +0000369 switch (Flag) {
Jason W Kim645f6c22010-09-30 02:45:56 +0000370 case MCAF_SyntaxUnified: OS << "\t.syntax unified"; break;
Chris Lattner685508c2010-01-23 06:39:22 +0000371 case MCAF_SubsectionsViaSymbols: OS << ".subsections_via_symbols"; break;
Evan Cheng481ebb02011-07-27 00:38:12 +0000372 case MCAF_Code16: OS << '\t'<< MAI.getCode16Directive(); break;
373 case MCAF_Code32: OS << '\t'<< MAI.getCode32Directive(); break;
374 case MCAF_Code64: OS << '\t'<< MAI.getCode64Directive(); break;
Kevin Enderbydd27e5e2009-07-16 17:56:39 +0000375 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000376 EmitEOL();
Kevin Enderbyc9d93ef2009-07-13 21:03:15 +0000377}
378
Daniel Dunbar16004b82013-01-18 01:25:48 +0000379void MCAsmStreamer::EmitLinkerOptions(ArrayRef<std::string> Options) {
380 assert(!Options.empty() && "At least one option is required!");
381 OS << "\t.linker_option \"" << Options[0] << '"';
382 for (ArrayRef<std::string>::iterator it = Options.begin() + 1,
383 ie = Options.end(); it != ie; ++it) {
384 OS << ", " << '"' << *it << '"';
385 }
Daniel Dunbar95856122013-01-18 19:37:00 +0000386 OS << "\n";
Daniel Dunbar16004b82013-01-18 01:25:48 +0000387}
388
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000389void MCAsmStreamer::EmitDataRegion(MCDataRegionType Kind) {
390 MCContext &Ctx = getContext();
391 const MCAsmInfo &MAI = Ctx.getAsmInfo();
392 if (!MAI.doesSupportDataRegionDirectives())
393 return;
394 switch (Kind) {
395 case MCDR_DataRegion: OS << "\t.data_region"; break;
396 case MCDR_DataRegionJT8: OS << "\t.data_region jt8"; break;
397 case MCDR_DataRegionJT16: OS << "\t.data_region jt16"; break;
398 case MCDR_DataRegionJT32: OS << "\t.data_region jt32"; break;
399 case MCDR_DataRegionEnd: OS << "\t.end_data_region"; break;
400 }
401 EmitEOL();
402}
403
Jim Grosbach5a2c68d2010-11-05 22:08:08 +0000404void MCAsmStreamer::EmitThumbFunc(MCSymbol *Func) {
405 // This needs to emit to a temporary string to get properly quoted
406 // MCSymbols when they have spaces in them.
407 OS << "\t.thumb_func";
Rafael Espindolae90c1cb2011-05-16 16:17:21 +0000408 // Only Mach-O hasSubsectionsViaSymbols()
409 if (MAI.hasSubsectionsViaSymbols())
Jim Grosbach5a2c68d2010-11-05 22:08:08 +0000410 OS << '\t' << *Func;
411 EmitEOL();
412}
413
Daniel Dunbar897ffad2009-08-31 08:09:28 +0000414void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000415 OS << *Symbol << " = " << *Value;
416 EmitEOL();
Daniel Dunbard20cda02009-10-16 01:34:54 +0000417
418 // FIXME: Lift context changes into super class.
Daniel Dunbar7a989da2010-05-05 17:41:00 +0000419 Symbol->setVariableValue(Value);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000420}
421
Rafael Espindola16145972010-11-01 14:28:48 +0000422void MCAsmStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
423 OS << ".weakref " << *Alias << ", " << *Symbol;
424 EmitEOL();
425}
426
Rafael Espindola57ab7082010-12-03 00:55:40 +0000427void MCAsmStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
428 const MCSymbol *LastLabel,
Evan Chengc7ac6902011-07-14 05:43:07 +0000429 const MCSymbol *Label,
430 unsigned PointerSize) {
431 EmitDwarfSetLineAddr(LineDelta, Label, PointerSize);
Rafael Espindola57ab7082010-12-03 00:55:40 +0000432}
433
Rafael Espindola1d1eced2011-04-30 03:21:04 +0000434void MCAsmStreamer::EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
435 const MCSymbol *Label) {
436 EmitIntValue(dwarf::DW_CFA_advance_loc4, 1);
437 const MCExpr *AddrDelta = BuildSymbolDiff(getContext(), Label, LastLabel);
Rafael Espindola8e129292011-05-19 21:40:34 +0000438 AddrDelta = ForceExpAbs(AddrDelta);
Rafael Espindola1d1eced2011-04-30 03:21:04 +0000439 EmitValue(AddrDelta, 4);
440}
441
442
Daniel Dunbard20cda02009-10-16 01:34:54 +0000443void MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
Chris Lattner685508c2010-01-23 06:39:22 +0000444 MCSymbolAttr Attribute) {
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000445 switch (Attribute) {
Craig Toppera2886c22012-02-07 05:05:23 +0000446 case MCSA_Invalid: llvm_unreachable("Invalid symbol attribute");
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000447 case MCSA_ELF_TypeFunction: /// .type _foo, STT_FUNC # aka @function
448 case MCSA_ELF_TypeIndFunction: /// .type _foo, STT_GNU_IFUNC
449 case MCSA_ELF_TypeObject: /// .type _foo, STT_OBJECT # aka @object
450 case MCSA_ELF_TypeTLS: /// .type _foo, STT_TLS # aka @tls_object
451 case MCSA_ELF_TypeCommon: /// .type _foo, STT_COMMON # aka @common
452 case MCSA_ELF_TypeNoType: /// .type _foo, STT_NOTYPE # aka @notype
Rafael Espindola2d006b12010-11-13 04:55:06 +0000453 case MCSA_ELF_TypeGnuUniqueObject: /// .type _foo, @gnu_unique_object
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000454 assert(MAI.hasDotTypeDotSizeDirective() && "Symbol Attr not supported");
Dan Gohman77fe07a2010-02-04 01:42:13 +0000455 OS << "\t.type\t" << *Symbol << ','
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000456 << ((MAI.getCommentString()[0] != '@') ? '@' : '%');
457 switch (Attribute) {
Craig Toppera2886c22012-02-07 05:05:23 +0000458 default: llvm_unreachable("Unknown ELF .type");
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000459 case MCSA_ELF_TypeFunction: OS << "function"; break;
460 case MCSA_ELF_TypeIndFunction: OS << "gnu_indirect_function"; break;
461 case MCSA_ELF_TypeObject: OS << "object"; break;
462 case MCSA_ELF_TypeTLS: OS << "tls_object"; break;
463 case MCSA_ELF_TypeCommon: OS << "common"; break;
464 case MCSA_ELF_TypeNoType: OS << "no_type"; break;
Rafael Espindola2d006b12010-11-13 04:55:06 +0000465 case MCSA_ELF_TypeGnuUniqueObject: OS << "gnu_unique_object"; break;
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000466 }
467 EmitEOL();
468 return;
469 case MCSA_Global: // .globl/.global
470 OS << MAI.getGlobalDirective();
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000471 FlagMap[Symbol] |= EHGlobal;
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000472 break;
Chris Lattner79d20752010-06-21 20:35:01 +0000473 case MCSA_Hidden: OS << "\t.hidden\t"; break;
474 case MCSA_IndirectSymbol: OS << "\t.indirect_symbol\t"; break;
475 case MCSA_Internal: OS << "\t.internal\t"; break;
476 case MCSA_LazyReference: OS << "\t.lazy_reference\t"; break;
477 case MCSA_Local: OS << "\t.local\t"; break;
478 case MCSA_NoDeadStrip: OS << "\t.no_dead_strip\t"; break;
Kevin Enderby8be14412010-11-19 18:39:33 +0000479 case MCSA_SymbolResolver: OS << "\t.symbol_resolver\t"; break;
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000480 case MCSA_PrivateExtern:
481 OS << "\t.private_extern\t";
482 FlagMap[Symbol] |= EHPrivateExtern;
483 break;
Chris Lattner79d20752010-06-21 20:35:01 +0000484 case MCSA_Protected: OS << "\t.protected\t"; break;
485 case MCSA_Reference: OS << "\t.reference\t"; break;
486 case MCSA_Weak: OS << "\t.weak\t"; break;
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000487 case MCSA_WeakDefinition:
488 OS << "\t.weak_definition\t";
489 FlagMap[Symbol] |= EHWeakDefinition;
490 break;
Chris Lattner685508c2010-01-23 06:39:22 +0000491 // .weak_reference
492 case MCSA_WeakReference: OS << MAI.getWeakRefDirective(); break;
Kevin Enderby082d0fd2010-07-08 17:22:42 +0000493 case MCSA_WeakDefAutoPrivate: OS << "\t.weak_def_can_be_hidden\t"; break;
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000494 }
495
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000496 OS << *Symbol;
497 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000498}
499
Kevin Enderby4c21caa2009-07-14 18:17:10 +0000500void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000501 OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
502 EmitEOL();
Kevin Enderby4c21caa2009-07-14 18:17:10 +0000503}
504
Chris Lattner72afa952010-05-08 19:54:22 +0000505void MCAsmStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {
506 OS << "\t.def\t " << *Symbol << ';';
507 EmitEOL();
508}
509
510void MCAsmStreamer::EmitCOFFSymbolStorageClass (int StorageClass) {
511 OS << "\t.scl\t" << StorageClass << ';';
512 EmitEOL();
513}
514
515void MCAsmStreamer::EmitCOFFSymbolType (int Type) {
516 OS << "\t.type\t" << Type << ';';
517 EmitEOL();
518}
519
520void MCAsmStreamer::EndCOFFSymbolDef() {
521 OS << "\t.endef";
522 EmitEOL();
523}
524
Rafael Espindolad3df3d32011-12-17 01:14:52 +0000525void MCAsmStreamer::EmitCOFFSecRel32(MCSymbol const *Symbol) {
526 OS << "\t.secrel32\t" << *Symbol << '\n';
527 EmitEOL();
528}
529
Chris Lattner91dac6d2010-01-25 07:52:13 +0000530void MCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
531 assert(MAI.hasDotTypeDotSizeDirective());
532 OS << "\t.size\t" << *Symbol << ", " << *Value << '\n';
533}
534
Chris Lattnerb1301f72010-01-23 07:47:02 +0000535void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar6a715dc2009-08-30 06:17:16 +0000536 unsigned ByteAlignment) {
Chris Lattnerb1301f72010-01-23 07:47:02 +0000537 OS << "\t.comm\t" << *Symbol << ',' << Size;
Chris Lattner0375d2f2010-01-25 07:29:13 +0000538 if (ByteAlignment != 0) {
Rafael Espindoladcb03f02010-01-26 20:21:43 +0000539 if (MAI.getCOMMDirectiveAlignmentIsInBytes())
Chris Lattner95b98952010-01-19 06:01:04 +0000540 OS << ',' << ByteAlignment;
541 else
542 OS << ',' << Log2_32(ByteAlignment);
543 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000544 EmitEOL();
Chris Lattnera1e11f52009-07-07 20:30:46 +0000545}
546
Chris Lattnerb1301f72010-01-23 07:47:02 +0000547/// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
548///
549/// @param Symbol - The common symbol to emit.
550/// @param Size - The size of the common symbol.
Benjamin Kramer63970512011-09-01 23:04:27 +0000551void MCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
552 unsigned ByteAlign) {
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) {
Benjamin Kramer68b9f052012-09-07 21:08:01 +0000555 switch (MAI.getLCOMMDirectiveAlignmentType()) {
556 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) {
Daniel Dunbaraba5fb82009-08-13 23:36:34 +0000572 // Note: a .zerofill directive does not switch sections.
Chris Lattner591105c2009-08-08 23:39:42 +0000573 OS << ".zerofill ";
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000574
Chris Lattner591105c2009-08-08 23:39:42 +0000575 // This is a mach-o specific directive.
Chris Lattnercb307a272009-08-10 01:39:42 +0000576 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
Daniel Dunbar563a7e82009-08-14 18:51:45 +0000577 OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000578
Chris Lattner07cadaf2009-07-10 22:20:30 +0000579 if (Symbol != NULL) {
Chris Lattner8b5d55e2010-01-17 21:43:43 +0000580 OS << ',' << *Symbol << ',' << Size;
Daniel Dunbar6a715dc2009-08-30 06:17:16 +0000581 if (ByteAlignment != 0)
582 OS << ',' << Log2_32(ByteAlignment);
Chris Lattner07cadaf2009-07-10 22:20:30 +0000583 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000584 EmitEOL();
Chris Lattner07cadaf2009-07-10 22:20:30 +0000585}
586
Eric Christopher68b1bbe2010-05-17 02:13:02 +0000587// .tbss sym, size, align
588// This depends that the symbol has already been mangled from the original,
589// e.g. _a.
Eric Christopher5c87be72010-05-18 21:16:04 +0000590void MCAsmStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
591 uint64_t Size, unsigned ByteAlignment) {
Eric Christopher9fb6bb02010-05-14 01:50:28 +0000592 assert(Symbol != NULL && "Symbol shouldn't be NULL!");
Eric Christopher5c87be72010-05-18 21:16:04 +0000593 // Instead of using the Section we'll just use the shortcut.
594 // This is a mach-o specific directive and section.
Eric Christopher68b1bbe2010-05-17 02:13:02 +0000595 OS << ".tbss " << *Symbol << ", " << Size;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000596
Eric Christopher5c87be72010-05-18 21:16:04 +0000597 // Output align if we have it. We default to 1 so don't bother printing
598 // that.
599 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000600
Eric Christopher9fb6bb02010-05-14 01:50:28 +0000601 EmitEOL();
602}
603
Chris Lattnerded9af632010-01-23 00:15:00 +0000604static inline char toOctal(int X) { return (X&7)+'0'; }
605
Chris Lattner601ef332010-01-25 18:58:59 +0000606static void PrintQuotedString(StringRef Data, raw_ostream &OS) {
607 OS << '"';
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000608
Chris Lattner601ef332010-01-25 18:58:59 +0000609 for (unsigned i = 0, e = Data.size(); i != e; ++i) {
610 unsigned char C = Data[i];
611 if (C == '"' || C == '\\') {
612 OS << '\\' << (char)C;
613 continue;
614 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000615
Chris Lattner601ef332010-01-25 18:58:59 +0000616 if (isprint((unsigned char)C)) {
617 OS << (char)C;
618 continue;
619 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000620
Chris Lattner601ef332010-01-25 18:58:59 +0000621 switch (C) {
622 case '\b': OS << "\\b"; break;
623 case '\f': OS << "\\f"; break;
624 case '\n': OS << "\\n"; break;
625 case '\r': OS << "\\r"; break;
626 case '\t': OS << "\\t"; break;
627 default:
628 OS << '\\';
629 OS << toOctal(C >> 6);
630 OS << toOctal(C >> 3);
631 OS << toOctal(C >> 0);
632 break;
633 }
634 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000635
Chris Lattner601ef332010-01-25 18:58:59 +0000636 OS << '"';
637}
638
639
Chris Lattnerc35681b2010-01-19 19:46:13 +0000640void MCAsmStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
Rafael Espindola58ac6e12011-02-16 01:08:29 +0000641 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Chris Lattnerded9af632010-01-23 00:15:00 +0000642 if (Data.empty()) return;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000643
Chris Lattnerded9af632010-01-23 00:15:00 +0000644 if (Data.size() == 1) {
645 OS << MAI.getData8bitsDirective(AddrSpace);
646 OS << (unsigned)(unsigned char)Data[0];
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000647 EmitEOL();
Chris Lattnerded9af632010-01-23 00:15:00 +0000648 return;
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000649 }
Chris Lattnerded9af632010-01-23 00:15:00 +0000650
651 // If the data ends with 0 and the target supports .asciz, use it, otherwise
652 // use .ascii
653 if (MAI.getAscizDirective() && Data.back() == 0) {
654 OS << MAI.getAscizDirective();
655 Data = Data.substr(0, Data.size()-1);
656 } else {
657 OS << MAI.getAsciiDirective();
658 }
659
Chris Lattner601ef332010-01-25 18:58:59 +0000660 OS << ' ';
661 PrintQuotedString(Data, OS);
Chris Lattnerded9af632010-01-23 00:15:00 +0000662 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000663}
664
Rafael Espindola4c70eea2010-12-03 02:54:21 +0000665void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size,
666 unsigned AddrSpace) {
667 EmitValue(MCConstantExpr::Create(Value, getContext()), Size, AddrSpace);
668}
669
Rafael Espindola0a017a62010-12-10 07:39:47 +0000670void MCAsmStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size,
Rafael Espindolafd057852011-05-01 03:50:49 +0000671 unsigned AddrSpace) {
Rafael Espindola58ac6e12011-02-16 01:08:29 +0000672 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000673 const char *Directive = 0;
674 switch (Size) {
675 default: break;
676 case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
677 case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
678 case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
Chris Lattner45eeffc2010-01-20 06:45:39 +0000679 case 8:
680 Directive = MAI.getData64bitsDirective(AddrSpace);
681 // If the target doesn't support 64-bit data, emit as two 32-bit halves.
682 if (Directive) break;
Rafael Espindolae5e1f9a2010-11-28 23:22:44 +0000683 int64_t IntValue;
684 if (!Value->EvaluateAsAbsolute(IntValue))
685 report_fatal_error("Don't know how to emit this value.");
Evan Chenga83b37a2011-07-15 02:09:41 +0000686 if (getContext().getAsmInfo().isLittleEndian()) {
Rafael Espindolae5e1f9a2010-11-28 23:22:44 +0000687 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
688 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
Chris Lattner45eeffc2010-01-20 06:45:39 +0000689 } else {
Rafael Espindolae5e1f9a2010-11-28 23:22:44 +0000690 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
691 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
Chris Lattner45eeffc2010-01-20 06:45:39 +0000692 }
693 return;
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000694 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000695
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000696 assert(Directive && "Invalid size for machine code value!");
Chris Lattner3cde7602010-01-25 21:28:50 +0000697 OS << Directive << *Value;
Chris Lattner38e92192010-01-22 07:29:22 +0000698 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000699}
700
Rafael Espindola6aea5922011-04-21 23:39:26 +0000701void MCAsmStreamer::EmitULEB128Value(const MCExpr *Value) {
Rafael Espindola92ca9332010-11-19 04:10:13 +0000702 int64_t IntValue;
703 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindola6aea5922011-04-21 23:39:26 +0000704 EmitULEB128IntValue(IntValue);
Rafael Espindola92ca9332010-11-19 04:10:13 +0000705 return;
706 }
Rafael Espindola38d07562010-11-04 18:17:08 +0000707 assert(MAI.hasLEB128() && "Cannot print a .uleb");
708 OS << ".uleb128 " << *Value;
Rafael Espindola5e874982010-11-02 17:22:24 +0000709 EmitEOL();
710}
711
Rafael Espindola6aea5922011-04-21 23:39:26 +0000712void MCAsmStreamer::EmitSLEB128Value(const MCExpr *Value) {
Rafael Espindola92ca9332010-11-19 04:10:13 +0000713 int64_t IntValue;
714 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindola6aea5922011-04-21 23:39:26 +0000715 EmitSLEB128IntValue(IntValue);
Rafael Espindola92ca9332010-11-19 04:10:13 +0000716 return;
717 }
Rafael Espindola38d07562010-11-04 18:17:08 +0000718 assert(MAI.hasLEB128() && "Cannot print a .sleb");
719 OS << ".sleb128 " << *Value;
Rafael Espindola5e874982010-11-02 17:22:24 +0000720 EmitEOL();
721}
722
Akira Hatanakaf0b08442012-02-03 04:33:00 +0000723void MCAsmStreamer::EmitGPRel64Value(const MCExpr *Value) {
724 assert(MAI.getGPRel64Directive() != 0);
725 OS << MAI.getGPRel64Directive() << *Value;
726 EmitEOL();
727}
728
Chris Lattner3cde7602010-01-25 21:28:50 +0000729void MCAsmStreamer::EmitGPRel32Value(const MCExpr *Value) {
730 assert(MAI.getGPRel32Directive() != 0);
731 OS << MAI.getGPRel32Directive() << *Value;
732 EmitEOL();
733}
734
735
Chris Lattner4340cb32010-01-19 18:52:28 +0000736/// EmitFill - Emit NumBytes bytes worth of the value specified by
737/// FillValue. This implements directives such as '.space'.
Chris Lattnerc35681b2010-01-19 19:46:13 +0000738void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
739 unsigned AddrSpace) {
Chris Lattnered89f602010-01-19 18:58:52 +0000740 if (NumBytes == 0) return;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000741
Chris Lattnerc35681b2010-01-19 19:46:13 +0000742 if (AddrSpace == 0)
743 if (const char *ZeroDirective = MAI.getZeroDirective()) {
744 OS << ZeroDirective << NumBytes;
745 if (FillValue != 0)
746 OS << ',' << (int)FillValue;
Chris Lattner38e92192010-01-22 07:29:22 +0000747 EmitEOL();
Chris Lattnerc35681b2010-01-19 19:46:13 +0000748 return;
749 }
750
751 // Emit a byte at a time.
752 MCStreamer::EmitFill(NumBytes, FillValue, AddrSpace);
Chris Lattner4340cb32010-01-19 18:52:28 +0000753}
754
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000755void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
756 unsigned ValueSize,
757 unsigned MaxBytesToEmit) {
Chris Lattner37b72342009-08-19 06:12:02 +0000758 // Some assemblers don't support non-power of two alignments, so we always
759 // emit alignments as a power of two if possible.
760 if (isPowerOf2_32(ByteAlignment)) {
Chris Lattner78b23b02009-08-19 06:35:36 +0000761 switch (ValueSize) {
762 default: llvm_unreachable("Invalid size for machine code value!");
Chris Lattnere9a75a62009-08-22 21:43:10 +0000763 case 1: OS << MAI.getAlignDirective(); break;
764 // FIXME: use MAI for this!
Chris Lattner78b23b02009-08-19 06:35:36 +0000765 case 2: OS << ".p2alignw "; break;
766 case 4: OS << ".p2alignl "; break;
767 case 8: llvm_unreachable("Unsupported alignment size!");
768 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000769
Chris Lattnere9a75a62009-08-22 21:43:10 +0000770 if (MAI.getAlignmentIsInBytes())
Chris Lattner37b72342009-08-19 06:12:02 +0000771 OS << ByteAlignment;
772 else
773 OS << Log2_32(ByteAlignment);
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000774
Chris Lattner37b72342009-08-19 06:12:02 +0000775 if (Value || MaxBytesToEmit) {
Chris Lattnerf16a1222009-09-03 04:01:10 +0000776 OS << ", 0x";
777 OS.write_hex(truncateToSize(Value, ValueSize));
Chris Lattner37b72342009-08-19 06:12:02 +0000778
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000779 if (MaxBytesToEmit)
Chris Lattner37b72342009-08-19 06:12:02 +0000780 OS << ", " << MaxBytesToEmit;
781 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000782 EmitEOL();
Chris Lattner37b72342009-08-19 06:12:02 +0000783 return;
784 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000785
Chris Lattner37b72342009-08-19 06:12:02 +0000786 // Non-power of two alignment. This is not widely supported by assemblers.
Chris Lattnere9a75a62009-08-22 21:43:10 +0000787 // FIXME: Parameterize this based on MAI.
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000788 switch (ValueSize) {
Chris Lattner37b72342009-08-19 06:12:02 +0000789 default: llvm_unreachable("Invalid size for machine code value!");
790 case 1: OS << ".balign"; break;
791 case 2: OS << ".balignw"; break;
792 case 4: OS << ".balignl"; break;
793 case 8: llvm_unreachable("Unsupported alignment size!");
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000794 }
795
Chris Lattner37b72342009-08-19 06:12:02 +0000796 OS << ' ' << ByteAlignment;
Daniel Dunbar188e87f2009-06-25 21:03:18 +0000797 OS << ", " << truncateToSize(Value, ValueSize);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000798 if (MaxBytesToEmit)
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000799 OS << ", " << MaxBytesToEmit;
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000800 EmitEOL();
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000801}
802
Kevin Enderbye83d74f2010-02-23 18:26:34 +0000803void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
804 unsigned MaxBytesToEmit) {
Chris Lattnereebaf6a2010-02-23 18:44:31 +0000805 // Emit with a text fill value.
806 EmitValueToAlignment(ByteAlignment, MAI.getTextAlignFillValue(),
807 1, MaxBytesToEmit);
Kevin Enderbye83d74f2010-02-23 18:26:34 +0000808}
809
Jim Grosbachb5912772012-01-27 00:37:08 +0000810bool MCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000811 unsigned char Value) {
812 // FIXME: Verify that Offset is associated with the current section.
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000813 OS << ".org " << *Offset << ", " << (unsigned) Value;
814 EmitEOL();
Jim Grosbachb5912772012-01-27 00:37:08 +0000815 return false;
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000816}
817
Chris Lattner601ef332010-01-25 18:58:59 +0000818
819void MCAsmStreamer::EmitFileDirective(StringRef Filename) {
820 assert(MAI.hasSingleParameterDotFile());
821 OS << "\t.file\t";
822 PrintQuotedString(Filename, OS);
823 EmitEOL();
824}
825
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000826bool MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
827 StringRef Filename) {
828 if (!UseDwarfDirectory && !Directory.empty()) {
829 if (sys::path::is_absolute(Filename))
830 return EmitDwarfFileDirective(FileNo, "", Filename);
831
832 SmallString<128> FullPathName = Directory;
833 sys::path::append(FullPathName, Filename);
834 return EmitDwarfFileDirective(FileNo, "", FullPathName);
835 }
836
Rafael Espindola0a017a62010-12-10 07:39:47 +0000837 if (UseLoc) {
Rafael Espindolab58867c2010-11-19 02:26:16 +0000838 OS << "\t.file\t" << FileNo << ' ';
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000839 if (!Directory.empty()) {
840 PrintQuotedString(Directory, OS);
841 OS << ' ';
842 }
Rafael Espindolab58867c2010-11-19 02:26:16 +0000843 PrintQuotedString(Filename, OS);
844 EmitEOL();
845 }
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000846 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Directory, Filename);
Rafael Espindolac653a892010-11-16 21:20:32 +0000847}
848
849void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
850 unsigned Column, unsigned Flags,
851 unsigned Isa,
Devang Patel17740e72011-04-18 20:26:49 +0000852 unsigned Discriminator,
853 StringRef FileName) {
Rafael Espindolab58867c2010-11-19 02:26:16 +0000854 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
Devang Patel17740e72011-04-18 20:26:49 +0000855 Isa, Discriminator, FileName);
Rafael Espindola0a017a62010-12-10 07:39:47 +0000856 if (!UseLoc)
Rafael Espindolab58867c2010-11-19 02:26:16 +0000857 return;
858
Rafael Espindolac653a892010-11-16 21:20:32 +0000859 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
860 if (Flags & DWARF2_FLAG_BASIC_BLOCK)
861 OS << " basic_block";
862 if (Flags & DWARF2_FLAG_PROLOGUE_END)
863 OS << " prologue_end";
864 if (Flags & DWARF2_FLAG_EPILOGUE_BEGIN)
865 OS << " epilogue_begin";
866
867 unsigned OldFlags = getContext().getCurrentDwarfLoc().getFlags();
868 if ((Flags & DWARF2_FLAG_IS_STMT) != (OldFlags & DWARF2_FLAG_IS_STMT)) {
869 OS << " is_stmt ";
870
871 if (Flags & DWARF2_FLAG_IS_STMT)
872 OS << "1";
873 else
874 OS << "0";
875 }
876
877 if (Isa)
878 OS << "isa " << Isa;
879 if (Discriminator)
880 OS << "discriminator " << Discriminator;
Devang Patel17740e72011-04-18 20:26:49 +0000881
882 if (IsVerboseAsm) {
883 OS.PadToColumn(MAI.getCommentColumn());
Jim Grosbachdc1e36e2012-05-11 01:41:30 +0000884 OS << MAI.getCommentString() << ' ' << FileName << ':'
Devang Patel17740e72011-04-18 20:26:49 +0000885 << Line << ':' << Column;
886 }
Rafael Espindolac653a892010-11-16 21:20:32 +0000887 EmitEOL();
Chris Lattner601ef332010-01-25 18:58:59 +0000888}
889
Rafael Espindolaec53aa92011-05-10 13:39:48 +0000890void MCAsmStreamer::EmitCFISections(bool EH, bool Debug) {
891 MCStreamer::EmitCFISections(EH, Debug);
892
893 if (!UseCFI)
894 return;
895
896 OS << "\t.cfi_sections ";
897 if (EH) {
898 OS << ".eh_frame";
899 if (Debug)
900 OS << ", .debug_frame";
901 } else if (Debug) {
902 OS << ".debug_frame";
903 }
904
905 EmitEOL();
906}
907
Rafael Espindola38241202012-01-07 22:42:19 +0000908void MCAsmStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) {
909 if (!UseCFI) {
910 RecordProcStart(Frame);
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000911 return;
Rafael Espindola38241202012-01-07 22:42:19 +0000912 }
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000913
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000914 OS << "\t.cfi_startproc";
Rafael Espindola3c227b02010-11-22 14:27:24 +0000915 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000916}
917
Rafael Espindolaf28213c2012-01-09 00:17:29 +0000918void MCAsmStreamer::EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) {
919 if (!UseCFI) {
920 RecordProcEnd(Frame);
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000921 return;
Rafael Espindolaf28213c2012-01-09 00:17:29 +0000922 }
923
924 // Put a dummy non-null value in Frame.End to mark that this frame has been
925 // closed.
926 Frame.End = (MCSymbol *) 1;
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000927
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000928 OS << "\t.cfi_endproc";
Rafael Espindola3c227b02010-11-22 14:27:24 +0000929 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000930}
931
Rafael Espindola08600bc2011-05-30 20:20:15 +0000932void MCAsmStreamer::EmitRegisterName(int64_t Register) {
Akira Hatanaka2f2d9cb2011-07-07 20:30:33 +0000933 if (InstPrinter && !MAI.useDwarfRegNumForCFI()) {
Evan Chengd60fa58b2011-07-18 20:57:22 +0000934 const MCRegisterInfo &MRI = getContext().getRegisterInfo();
935 unsigned LLVMRegister = MRI.getLLVMRegNum(Register, true);
Rafael Espindolad6860522011-06-02 02:34:55 +0000936 InstPrinter->printRegName(OS, LLVMRegister);
Rafael Espindola08600bc2011-05-30 20:20:15 +0000937 } else {
938 OS << Register;
939 }
940}
941
Rafael Espindola539d96f2011-04-12 23:59:07 +0000942void MCAsmStreamer::EmitCFIDefCfa(int64_t Register, int64_t Offset) {
Rafael Espindola6c961e12011-04-29 21:41:06 +0000943 MCStreamer::EmitCFIDefCfa(Register, Offset);
944
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000945 if (!UseCFI)
946 return;
947
Rafael Espindola08600bc2011-05-30 20:20:15 +0000948 OS << "\t.cfi_def_cfa ";
949 EmitRegisterName(Register);
950 OS << ", " << Offset;
Rafael Espindola6c961e12011-04-29 21:41:06 +0000951 EmitEOL();
Rafael Espindola539d96f2011-04-12 23:59:07 +0000952}
953
954void MCAsmStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
955 MCStreamer::EmitCFIDefCfaOffset(Offset);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000956
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000957 if (!UseCFI)
958 return;
959
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000960 OS << "\t.cfi_def_cfa_offset " << Offset;
Rafael Espindola3c227b02010-11-22 14:27:24 +0000961 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000962}
963
Rafael Espindola539d96f2011-04-12 23:59:07 +0000964void MCAsmStreamer::EmitCFIDefCfaRegister(int64_t Register) {
965 MCStreamer::EmitCFIDefCfaRegister(Register);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000966
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000967 if (!UseCFI)
968 return;
969
Rafael Espindola08600bc2011-05-30 20:20:15 +0000970 OS << "\t.cfi_def_cfa_register ";
971 EmitRegisterName(Register);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000972 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000973}
974
Rafael Espindola539d96f2011-04-12 23:59:07 +0000975void MCAsmStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
976 this->MCStreamer::EmitCFIOffset(Register, Offset);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000977
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000978 if (!UseCFI)
979 return;
980
Rafael Espindola08600bc2011-05-30 20:20:15 +0000981 OS << "\t.cfi_offset ";
982 EmitRegisterName(Register);
983 OS << ", " << Offset;
Rafael Espindola3c227b02010-11-22 14:27:24 +0000984 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000985}
986
Rafael Espindola539d96f2011-04-12 23:59:07 +0000987void MCAsmStreamer::EmitCFIPersonality(const MCSymbol *Sym,
Rafael Espindola2ac83552010-12-27 00:36:05 +0000988 unsigned Encoding) {
Rafael Espindola539d96f2011-04-12 23:59:07 +0000989 MCStreamer::EmitCFIPersonality(Sym, Encoding);
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_personality " << Encoding << ", " << *Sym;
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::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) {
999 MCStreamer::EmitCFILsda(Sym, Encoding);
Rafael Espindola3c227b02010-11-22 14:27:24 +00001000
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001001 if (!UseCFI)
1002 return;
1003
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +00001004 OS << "\t.cfi_lsda " << Encoding << ", " << *Sym;
Rafael Espindola3c227b02010-11-22 14:27:24 +00001005 EmitEOL();
Rafael Espindola539d96f2011-04-12 23:59:07 +00001006}
Rafael Espindola3c227b02010-11-22 14:27:24 +00001007
Rafael Espindola539d96f2011-04-12 23:59:07 +00001008void MCAsmStreamer::EmitCFIRememberState() {
1009 MCStreamer::EmitCFIRememberState();
1010
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001011 if (!UseCFI)
1012 return;
1013
Rafael Espindola539d96f2011-04-12 23:59:07 +00001014 OS << "\t.cfi_remember_state";
1015 EmitEOL();
1016}
1017
1018void MCAsmStreamer::EmitCFIRestoreState() {
1019 MCStreamer::EmitCFIRestoreState();
1020
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001021 if (!UseCFI)
1022 return;
1023
Rafael Espindola539d96f2011-04-12 23:59:07 +00001024 OS << "\t.cfi_restore_state";
1025 EmitEOL();
1026}
1027
1028void MCAsmStreamer::EmitCFISameValue(int64_t Register) {
1029 MCStreamer::EmitCFISameValue(Register);
1030
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001031 if (!UseCFI)
1032 return;
1033
Rafael Espindola08600bc2011-05-30 20:20:15 +00001034 OS << "\t.cfi_same_value ";
1035 EmitRegisterName(Register);
Rafael Espindola539d96f2011-04-12 23:59:07 +00001036 EmitEOL();
1037}
1038
1039void MCAsmStreamer::EmitCFIRelOffset(int64_t Register, int64_t Offset) {
1040 MCStreamer::EmitCFIRelOffset(Register, Offset);
1041
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001042 if (!UseCFI)
1043 return;
1044
Rafael Espindola08600bc2011-05-30 20:20:15 +00001045 OS << "\t.cfi_rel_offset ";
1046 EmitRegisterName(Register);
1047 OS << ", " << Offset;
Rafael Espindola539d96f2011-04-12 23:59:07 +00001048 EmitEOL();
1049}
1050
1051void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) {
1052 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
1053
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001054 if (!UseCFI)
1055 return;
1056
Rafael Espindola539d96f2011-04-12 23:59:07 +00001057 OS << "\t.cfi_adjust_cfa_offset " << Adjustment;
1058 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +00001059}
1060
Rafael Espindola3c47e372012-01-23 21:51:52 +00001061void MCAsmStreamer::EmitCFISignalFrame() {
1062 MCStreamer::EmitCFISignalFrame();
1063
1064 if (!UseCFI)
1065 return;
1066
Eric Christopher368461c2012-05-31 00:53:18 +00001067 OS << "\t.cfi_signal_frame";
Rafael Espindola3c47e372012-01-23 21:51:52 +00001068 EmitEOL();
1069}
1070
Rafael Espindola9bb24782012-11-23 16:59:41 +00001071void MCAsmStreamer::EmitCFIUndefined(int64_t Register) {
1072 MCStreamer::EmitCFIUndefined(Register);
1073
1074 if (!UseCFI)
1075 return;
1076
1077 OS << "\t.cfi_undefined " << Register;
1078 EmitEOL();
1079}
1080
Rafael Espindolacdb9a532012-11-25 15:14:49 +00001081void MCAsmStreamer::EmitCFIRegister(int64_t Register1, int64_t Register2) {
1082 MCStreamer::EmitCFIRegister(Register1, Register2);
1083
1084 if (!UseCFI)
1085 return;
1086
1087 OS << "\t.cfi_register " << Register1 << ", " << Register2;
1088 EmitEOL();
1089}
1090
Charles Davisc7250fa2011-05-22 21:12:15 +00001091void MCAsmStreamer::EmitWin64EHStartProc(const MCSymbol *Symbol) {
Charles Davis9a115a42011-05-20 18:19:22 +00001092 MCStreamer::EmitWin64EHStartProc(Symbol);
1093
Charles Davis4cd88562011-05-19 17:46:39 +00001094 OS << ".seh_proc " << *Symbol;
Charles Davis8d9c9902011-05-18 04:58:05 +00001095 EmitEOL();
1096}
1097
Charles Davis27117af2011-05-18 22:13:51 +00001098void MCAsmStreamer::EmitWin64EHEndProc() {
Charles Davis9a115a42011-05-20 18:19:22 +00001099 MCStreamer::EmitWin64EHEndProc();
1100
Charles Davis4cd88562011-05-19 17:46:39 +00001101 OS << "\t.seh_endproc";
Charles Davis8d9c9902011-05-18 04:58:05 +00001102 EmitEOL();
1103}
1104
Charles Davis27117af2011-05-18 22:13:51 +00001105void MCAsmStreamer::EmitWin64EHStartChained() {
Charles Davis9a115a42011-05-20 18:19:22 +00001106 MCStreamer::EmitWin64EHStartChained();
1107
Charles Davis4cd88562011-05-19 17:46:39 +00001108 OS << "\t.seh_startchained";
Charles Davis77e06102011-05-18 20:54:10 +00001109 EmitEOL();
1110}
1111
Charles Davis27117af2011-05-18 22:13:51 +00001112void MCAsmStreamer::EmitWin64EHEndChained() {
Charles Davis9a115a42011-05-20 18:19:22 +00001113 MCStreamer::EmitWin64EHEndChained();
1114
Charles Davis4cd88562011-05-19 17:46:39 +00001115 OS << "\t.seh_endchained";
Charles Davis77e06102011-05-18 20:54:10 +00001116 EmitEOL();
1117}
1118
Charles Davis4cd88562011-05-19 17:46:39 +00001119void MCAsmStreamer::EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
1120 bool Except) {
Charles Davis9a115a42011-05-20 18:19:22 +00001121 MCStreamer::EmitWin64EHHandler(Sym, Unwind, Except);
1122
Charles Davis4cd88562011-05-19 17:46:39 +00001123 OS << "\t.seh_handler " << *Sym;
1124 if (Unwind)
1125 OS << ", @unwind";
1126 if (Except)
1127 OS << ", @except";
Charles Davis77e06102011-05-18 20:54:10 +00001128 EmitEOL();
1129}
1130
Evan Cheng76792992011-07-20 05:58:47 +00001131static const MCSection *getWin64EHTableSection(StringRef suffix,
1132 MCContext &context) {
1133 // FIXME: This doesn't belong in MCObjectFileInfo. However,
1134 /// this duplicate code in MCWin64EH.cpp.
1135 if (suffix == "")
1136 return context.getObjectFileInfo()->getXDataSection();
1137 return context.getCOFFSection((".xdata"+suffix).str(),
1138 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
1139 COFF::IMAGE_SCN_MEM_READ |
1140 COFF::IMAGE_SCN_MEM_WRITE,
1141 SectionKind::getDataRel());
1142}
1143
Charles Davis4cd88562011-05-19 17:46:39 +00001144void MCAsmStreamer::EmitWin64EHHandlerData() {
Charles Davis9a115a42011-05-20 18:19:22 +00001145 MCStreamer::EmitWin64EHHandlerData();
1146
Charles Davis2f6ecea2011-05-25 21:43:45 +00001147 // Switch sections. Don't call SwitchSection directly, because that will
1148 // cause the section switch to be visible in the emitted assembly.
1149 // We only do this so the section switch that terminates the handler
1150 // data block is visible.
Charles Davis03eef622011-05-27 19:09:24 +00001151 MCWin64EHUnwindInfo *CurFrame = getCurrentW64UnwindInfo();
1152 StringRef suffix=MCWin64EHUnwindEmitter::GetSectionSuffix(CurFrame->Function);
Evan Cheng76792992011-07-20 05:58:47 +00001153 const MCSection *xdataSect = getWin64EHTableSection(suffix, getContext());
Charles Davis2f6ecea2011-05-25 21:43:45 +00001154 if (xdataSect)
1155 SwitchSectionNoChange(xdataSect);
1156
Charles Davis4cd88562011-05-19 17:46:39 +00001157 OS << "\t.seh_handlerdata";
Charles Davis77e06102011-05-18 20:54:10 +00001158 EmitEOL();
1159}
1160
Charles Davis7e6e8952011-05-19 19:35:55 +00001161void MCAsmStreamer::EmitWin64EHPushReg(unsigned Register) {
Charles Davis9a115a42011-05-20 18:19:22 +00001162 MCStreamer::EmitWin64EHPushReg(Register);
1163
Charles Davis4cd88562011-05-19 17:46:39 +00001164 OS << "\t.seh_pushreg " << Register;
Charles Davis8d9c9902011-05-18 04:58:05 +00001165 EmitEOL();
1166}
1167
Charles Davis7e6e8952011-05-19 19:35:55 +00001168void MCAsmStreamer::EmitWin64EHSetFrame(unsigned Register, unsigned Offset) {
Charles Davis9a115a42011-05-20 18:19:22 +00001169 MCStreamer::EmitWin64EHSetFrame(Register, Offset);
1170
Charles Davis4cd88562011-05-19 17:46:39 +00001171 OS << "\t.seh_setframe " << Register << ", " << Offset;
Charles Davis8d9c9902011-05-18 04:58:05 +00001172 EmitEOL();
1173}
1174
Charles Davis7e6e8952011-05-19 19:35:55 +00001175void MCAsmStreamer::EmitWin64EHAllocStack(unsigned Size) {
Charles Davis9a115a42011-05-20 18:19:22 +00001176 MCStreamer::EmitWin64EHAllocStack(Size);
1177
Charles Davis4cd88562011-05-19 17:46:39 +00001178 OS << "\t.seh_stackalloc " << Size;
Charles Davis8d9c9902011-05-18 04:58:05 +00001179 EmitEOL();
1180}
1181
Charles Davis7e6e8952011-05-19 19:35:55 +00001182void MCAsmStreamer::EmitWin64EHSaveReg(unsigned Register, unsigned Offset) {
Charles Davis9a115a42011-05-20 18:19:22 +00001183 MCStreamer::EmitWin64EHSaveReg(Register, Offset);
1184
Charles Davis4cd88562011-05-19 17:46:39 +00001185 OS << "\t.seh_savereg " << Register << ", " << Offset;
1186 EmitEOL();
1187}
1188
Charles Davis7e6e8952011-05-19 19:35:55 +00001189void MCAsmStreamer::EmitWin64EHSaveXMM(unsigned Register, unsigned Offset) {
Charles Davis9a115a42011-05-20 18:19:22 +00001190 MCStreamer::EmitWin64EHSaveXMM(Register, Offset);
1191
Charles Davis4cd88562011-05-19 17:46:39 +00001192 OS << "\t.seh_savexmm " << Register << ", " << Offset;
Charles Davis8d9c9902011-05-18 04:58:05 +00001193 EmitEOL();
1194}
1195
Charles Davis27117af2011-05-18 22:13:51 +00001196void MCAsmStreamer::EmitWin64EHPushFrame(bool Code) {
Charles Davis9a115a42011-05-20 18:19:22 +00001197 MCStreamer::EmitWin64EHPushFrame(Code);
1198
Charles Davis4cd88562011-05-19 17:46:39 +00001199 OS << "\t.seh_pushframe";
Charles Davis8d9c9902011-05-18 04:58:05 +00001200 if (Code)
Charles Davis4cd88562011-05-19 17:46:39 +00001201 OS << " @code";
Charles Davis8d9c9902011-05-18 04:58:05 +00001202 EmitEOL();
1203}
1204
Charles Davis27117af2011-05-18 22:13:51 +00001205void MCAsmStreamer::EmitWin64EHEndProlog(void) {
Charles Davis9a115a42011-05-20 18:19:22 +00001206 MCStreamer::EmitWin64EHEndProlog();
1207
Charles Davis4cd88562011-05-19 17:46:39 +00001208 OS << "\t.seh_endprologue";
Charles Davis8d9c9902011-05-18 04:58:05 +00001209 EmitEOL();
1210}
1211
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001212void MCAsmStreamer::AddEncodingComment(const MCInst &Inst) {
1213 raw_ostream &OS = GetCommentOS();
1214 SmallString<256> Code;
1215 SmallVector<MCFixup, 4> Fixups;
1216 raw_svector_ostream VecOS(Code);
1217 Emitter->EncodeInstruction(Inst, VecOS, Fixups);
1218 VecOS.flush();
Chris Lattner601ef332010-01-25 18:58:59 +00001219
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001220 // If we are showing fixups, create symbolic markers in the encoded
1221 // representation. We do this by making a per-bit map to the fixup item index,
1222 // then trying to display it as nicely as possible.
Daniel Dunbar75c9a4e2010-02-10 01:41:14 +00001223 SmallVector<uint8_t, 64> FixupMap;
1224 FixupMap.resize(Code.size() * 8);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001225 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
1226 FixupMap[i] = 0;
1227
1228 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1229 MCFixup &F = Fixups[i];
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +00001230 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001231 for (unsigned j = 0; j != Info.TargetSize; ++j) {
1232 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j;
1233 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
1234 FixupMap[Index] = 1 + i;
1235 }
1236 }
1237
Evan Cheng15bc70f2011-07-08 22:49:42 +00001238 // FIXME: Note the fixup comments for Thumb2 are completely bogus since the
Evan Cheng52899a92011-01-13 23:27:39 +00001239 // high order halfword of a 32-bit Thumb2 instruction is emitted first.
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001240 OS << "encoding: [";
1241 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
1242 if (i)
1243 OS << ',';
1244
1245 // See if all bits are the same map entry.
1246 uint8_t MapEntry = FixupMap[i * 8 + 0];
1247 for (unsigned j = 1; j != 8; ++j) {
1248 if (FixupMap[i * 8 + j] == MapEntry)
1249 continue;
1250
1251 MapEntry = uint8_t(~0U);
1252 break;
1253 }
1254
1255 if (MapEntry != uint8_t(~0U)) {
1256 if (MapEntry == 0) {
1257 OS << format("0x%02x", uint8_t(Code[i]));
1258 } else {
Evan Cheng0447d302011-01-13 21:45:26 +00001259 if (Code[i]) {
Evan Cheng52899a92011-01-13 23:27:39 +00001260 // FIXME: Some of the 8 bits require fix up.
Evan Cheng0447d302011-01-13 21:45:26 +00001261 OS << format("0x%02x", uint8_t(Code[i])) << '\''
1262 << char('A' + MapEntry - 1) << '\'';
1263 } else
1264 OS << char('A' + MapEntry - 1);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001265 }
1266 } else {
1267 // Otherwise, write out in binary.
1268 OS << "0b";
Jay Foad61ea0e42011-06-23 09:09:15 +00001269 for (unsigned j = 8; j--;) {
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001270 unsigned Bit = (Code[i] >> j) & 1;
NAKAMURA Takumiaf669802011-03-27 01:44:40 +00001271
Chris Lattner9e7d8c02010-11-15 05:56:19 +00001272 unsigned FixupBit;
Evan Chenga83b37a2011-07-15 02:09:41 +00001273 if (getContext().getAsmInfo().isLittleEndian())
Chris Lattner9e7d8c02010-11-15 05:56:19 +00001274 FixupBit = i * 8 + j;
1275 else
1276 FixupBit = i * 8 + (7-j);
NAKAMURA Takumiaf669802011-03-27 01:44:40 +00001277
Jay Foad61ea0e42011-06-23 09:09:15 +00001278 if (uint8_t MapEntry = FixupMap[FixupBit]) {
1279 assert(Bit == 0 && "Encoder wrote into fixed up bit!");
1280 OS << char('A' + MapEntry - 1);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001281 } else
1282 OS << Bit;
1283 }
1284 }
1285 }
1286 OS << "]\n";
1287
1288 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1289 MCFixup &F = Fixups[i];
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +00001290 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001291 OS << " fixup " << char('A' + i) << " - " << "offset: " << F.getOffset()
Daniel Dunbar60547442010-02-10 04:47:08 +00001292 << ", value: " << *F.getValue() << ", kind: " << Info.Name << "\n";
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001293 }
1294}
1295
Anton Korobeynikova7ec2dc2011-03-05 18:43:15 +00001296void MCAsmStreamer::EmitFnStart() {
1297 OS << "\t.fnstart";
1298 EmitEOL();
1299}
1300
1301void MCAsmStreamer::EmitFnEnd() {
1302 OS << "\t.fnend";
1303 EmitEOL();
1304}
1305
1306void MCAsmStreamer::EmitCantUnwind() {
1307 OS << "\t.cantunwind";
1308 EmitEOL();
1309}
1310
1311void MCAsmStreamer::EmitHandlerData() {
1312 OS << "\t.handlerdata";
1313 EmitEOL();
1314}
1315
1316void MCAsmStreamer::EmitPersonality(const MCSymbol *Personality) {
1317 OS << "\t.personality " << Personality->getName();
1318 EmitEOL();
1319}
1320
Anton Korobeynikove7410dd2011-03-05 18:43:32 +00001321void MCAsmStreamer::EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset) {
Rafael Espindolad6860522011-06-02 02:34:55 +00001322 OS << "\t.setfp\t";
1323 InstPrinter->printRegName(OS, FpReg);
1324 OS << ", ";
1325 InstPrinter->printRegName(OS, SpReg);
Anton Korobeynikove7410dd2011-03-05 18:43:32 +00001326 if (Offset)
1327 OS << ", #" << Offset;
1328 EmitEOL();
1329}
1330
1331void MCAsmStreamer::EmitPad(int64_t Offset) {
1332 OS << "\t.pad\t#" << Offset;
1333 EmitEOL();
1334}
1335
1336void MCAsmStreamer::EmitRegSave(const SmallVectorImpl<unsigned> &RegList,
1337 bool isVector) {
1338 assert(RegList.size() && "RegList should not be empty");
1339 if (isVector)
1340 OS << "\t.vsave\t{";
1341 else
1342 OS << "\t.save\t{";
1343
Rafael Espindolad6860522011-06-02 02:34:55 +00001344 InstPrinter->printRegName(OS, RegList[0]);
Anton Korobeynikove7410dd2011-03-05 18:43:32 +00001345
Rafael Espindolad6860522011-06-02 02:34:55 +00001346 for (unsigned i = 1, e = RegList.size(); i != e; ++i) {
1347 OS << ", ";
1348 InstPrinter->printRegName(OS, RegList[i]);
1349 }
Anton Korobeynikove7410dd2011-03-05 18:43:32 +00001350
1351 OS << "}";
1352 EmitEOL();
1353}
1354
Adhemerval Zanellaef206f12012-10-15 15:43:14 +00001355void MCAsmStreamer::EmitTCEntry(const MCSymbol &S) {
1356 OS << "\t.tc ";
1357 OS << S.getName();
1358 OS << "[TC],";
1359 OS << S.getName();
1360 EmitEOL();
1361}
1362
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001363void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
Rafael Espindola58ac6e12011-02-16 01:08:29 +00001364 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001365
1366 // Show the encoding in a comment if we have a code emitter.
1367 if (Emitter)
1368 AddEncodingComment(Inst);
1369
Chris Lattner89261502010-02-09 00:54:51 +00001370 // Show the MCInst if enabled.
Daniel Dunbar3627af52010-05-26 15:18:13 +00001371 if (ShowInst) {
Daniel Dunbar04047fb2010-03-22 21:49:34 +00001372 Inst.dump_pretty(GetCommentOS(), &MAI, InstPrinter.get(), "\n ");
Daniel Dunbar3627af52010-05-26 15:18:13 +00001373 GetCommentOS() << "\n";
1374 }
1375
Daniel Dunbar04047fb2010-03-22 21:49:34 +00001376 // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
Daniel Dunbare3ee3322010-02-03 18:18:30 +00001377 if (InstPrinter)
Owen Andersona0c3b972011-09-15 23:38:46 +00001378 InstPrinter->printInst(&Inst, OS, "");
Daniel Dunbare3ee3322010-02-03 18:18:30 +00001379 else
1380 Inst.print(OS, &MAI);
Chris Lattnercfa5ebc32010-01-22 07:36:39 +00001381 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +00001382}
1383
Eli Benderskyf483ff92012-12-20 19:05:53 +00001384void MCAsmStreamer::EmitBundleAlignMode(unsigned AlignPow2) {
1385 OS << "\t.bundle_align_mode " << AlignPow2;
1386 EmitEOL();
1387}
1388
Eli Bendersky802b6282013-01-07 21:51:08 +00001389void MCAsmStreamer::EmitBundleLock(bool AlignToEnd) {
Eli Benderskyf483ff92012-12-20 19:05:53 +00001390 OS << "\t.bundle_lock";
Eli Bendersky802b6282013-01-07 21:51:08 +00001391 if (AlignToEnd)
1392 OS << " align_to_end";
Eli Benderskyf483ff92012-12-20 19:05:53 +00001393 EmitEOL();
1394}
1395
1396void MCAsmStreamer::EmitBundleUnlock() {
1397 OS << "\t.bundle_unlock";
1398 EmitEOL();
1399}
1400
Jim Grosbach6ebd7282010-09-22 18:18:30 +00001401/// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner8a87fb72010-04-03 21:35:55 +00001402/// the specified string in the output .s file. This capability is
1403/// indicated by the hasRawTextSupport() predicate.
1404void MCAsmStreamer::EmitRawText(StringRef String) {
Chris Lattneraca014e2010-04-03 22:06:56 +00001405 if (!String.empty() && String.back() == '\n')
1406 String = String.substr(0, String.size()-1);
Chris Lattner8a87fb72010-04-03 21:35:55 +00001407 OS << String;
Chris Lattneraca014e2010-04-03 22:06:56 +00001408 EmitEOL();
Chris Lattner8a87fb72010-04-03 21:35:55 +00001409}
1410
Rafael Espindola07082092012-01-07 03:13:18 +00001411void MCAsmStreamer::FinishImpl() {
Rafael Espindolac22c85c2012-02-28 21:13:05 +00001412 // FIXME: This header is duplicated with MCObjectStreamer
Rafael Espindolab58867c2010-11-19 02:26:16 +00001413 // Dump out the dwarf file & directory tables and line tables.
Rafael Espindolac7ecbfb2012-03-03 14:24:15 +00001414 const MCSymbol *LineSectionSymbol = NULL;
Rafael Espindola0a017a62010-12-10 07:39:47 +00001415 if (getContext().hasDwarfFiles() && !UseLoc)
Rafael Espindolac22c85c2012-02-28 21:13:05 +00001416 LineSectionSymbol = MCDwarfFileTable::Emit(this);
Rafael Espindola750cb612011-05-01 04:49:54 +00001417
Kevin Enderbye7739d42011-12-09 18:09:40 +00001418 // If we are generating dwarf for assembly source files dump out the sections.
1419 if (getContext().getGenDwarfForAssembly())
Rafael Espindolac22c85c2012-02-28 21:13:05 +00001420 MCGenDwarfInfo::Emit(this, LineSectionSymbol);
Kevin Enderbye7739d42011-12-09 18:09:40 +00001421
Rafael Espindolab6089d62011-05-10 03:14:15 +00001422 if (!UseCFI)
1423 EmitFrames(false);
Daniel Dunbar9faf2732009-06-24 01:03:06 +00001424}
Chris Lattner38e92192010-01-22 07:29:22 +00001425MCStreamer *llvm::createAsmStreamer(MCContext &Context,
1426 formatted_raw_ostream &OS,
Rafael Espindola0a017a62010-12-10 07:39:47 +00001427 bool isVerboseAsm, bool useLoc,
Nick Lewycky40f8f2f2011-10-17 23:05:28 +00001428 bool useCFI, bool useDwarfDirectory,
1429 MCInstPrinter *IP, MCCodeEmitter *CE,
1430 MCAsmBackend *MAB, bool ShowInst) {
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001431 return new MCAsmStreamer(Context, OS, isVerboseAsm, useLoc, useCFI,
Nick Lewycky40f8f2f2011-10-17 23:05:28 +00001432 useDwarfDirectory, IP, CE, MAB, ShowInst);
Daniel Dunbar9faf2732009-06-24 01:03:06 +00001433}