blob: 373df4b2bf72daaa52879a58af8946b95e2773d2 [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"
Daniel Dunbar73da11e2009-08-31 08:08:38 +000011#include "llvm/MC/MCAsmInfo.h"
Daniel Dunbar65105172009-08-27 00:51:57 +000012#include "llvm/MC/MCCodeEmitter.h"
Daniel Dunbar9faf2732009-06-24 01:03:06 +000013#include "llvm/MC/MCContext.h"
Daniel Dunbar73da11e2009-08-31 08:08:38 +000014#include "llvm/MC/MCExpr.h"
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +000015#include "llvm/MC/MCFixupKindInfo.h"
Daniel Dunbar23a72aa2009-07-01 06:35:03 +000016#include "llvm/MC/MCInst.h"
Chris Lattner11b2fc92009-09-14 03:02:37 +000017#include "llvm/MC/MCInstPrinter.h"
Evan Cheng2833ad12011-07-26 20:57:44 +000018#include "llvm/MC/MCObjectFileInfo.h"
Evan Chengd60fa58b2011-07-18 20:57:22 +000019#include "llvm/MC/MCRegisterInfo.h"
Evan Cheng76792992011-07-20 05:58:47 +000020#include "llvm/MC/MCSectionCOFF.h"
Chris Lattner6c203912009-08-10 18:15:01 +000021#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbar9faf2732009-06-24 01:03:06 +000022#include "llvm/MC/MCSymbol.h"
Evan Cheng5928e692011-07-25 23:24:55 +000023#include "llvm/MC/MCAsmBackend.h"
Chris Lattner90a78592010-03-19 05:48:53 +000024#include "llvm/ADT/OwningPtr.h"
Chris Lattner38e92192010-01-22 07:29:22 +000025#include "llvm/ADT/SmallString.h"
Bill Wendlinge3031142011-06-17 20:35:21 +000026#include "llvm/ADT/StringExtras.h"
Chris Lattner38e92192010-01-22 07:29:22 +000027#include "llvm/ADT/Twine.h"
Torok Edwin56d06592009-07-11 20:10:48 +000028#include "llvm/Support/ErrorHandling.h"
Chris Lattner37b72342009-08-19 06:12:02 +000029#include "llvm/Support/MathExtras.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"
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() {
130 // FIXME, this is MachO specific, but the testsuite
131 // expects this.
132 SwitchSection(getContext().getMachOSection("__TEXT", "__text",
133 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
134 0, SectionKind::getText()));
135 }
136
Chris Lattner962c5bd82009-08-17 04:17:34 +0000137 virtual void EmitLabel(MCSymbol *Symbol);
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000138 virtual void EmitEHSymAttributes(const MCSymbol *Symbol,
139 MCSymbol *EHSymbol);
Chris Lattner685508c2010-01-23 06:39:22 +0000140 virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000141 virtual void EmitDataRegion(MCDataRegionType Kind);
Jim Grosbach5a2c68d2010-11-05 22:08:08 +0000142 virtual void EmitThumbFunc(MCSymbol *Func);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000143
Daniel Dunbar897ffad2009-08-31 08:09:28 +0000144 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
Rafael Espindola16145972010-11-01 14:28:48 +0000145 virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
Rafael Espindola57ab7082010-12-03 00:55:40 +0000146 virtual void EmitDwarfAdvanceLineAddr(int64_t LineDelta,
147 const MCSymbol *LastLabel,
Evan Chengc7ac6902011-07-14 05:43:07 +0000148 const MCSymbol *Label,
149 unsigned PointerSize);
Rafael Espindola1d1eced2011-04-30 03:21:04 +0000150 virtual void EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
151 const MCSymbol *Label);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000152
Chris Lattner685508c2010-01-23 06:39:22 +0000153 virtual void EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
Kevin Enderbyc9d93ef2009-07-13 21:03:15 +0000154
Chris Lattner962c5bd82009-08-17 04:17:34 +0000155 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
Chris Lattner72afa952010-05-08 19:54:22 +0000156 virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol);
157 virtual void EmitCOFFSymbolStorageClass(int StorageClass);
158 virtual void EmitCOFFSymbolType(int Type);
159 virtual void EndCOFFSymbolDef();
Rafael Espindolad3df3d32011-12-17 01:14:52 +0000160 virtual void EmitCOFFSecRel32(MCSymbol const *Symbol);
Chris Lattner91dac6d2010-01-25 07:52:13 +0000161 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
Chris Lattnerb1301f72010-01-23 07:47:02 +0000162 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar6a715dc2009-08-30 06:17:16 +0000163 unsigned ByteAlignment);
Kevin Enderby4c21caa2009-07-14 18:17:10 +0000164
Chris Lattnerb1301f72010-01-23 07:47:02 +0000165 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
166 ///
167 /// @param Symbol - The common symbol to emit.
168 /// @param Size - The size of the common symbol.
Benjamin Kramer63970512011-09-01 23:04:27 +0000169 /// @param Size - The alignment of the common symbol in bytes.
170 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
171 unsigned ByteAlignment);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000172
Daniel Dunbarcf72e1c2009-08-28 05:48:22 +0000173 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
Evan Chengf5bd6c62012-06-22 20:14:46 +0000174 uint64_t Size = 0, unsigned ByteAlignment = 0);
Kevin Enderbycbe475d2009-07-14 21:35:03 +0000175
Eric Christopher5c87be72010-05-18 21:16:04 +0000176 virtual void EmitTBSSSymbol (const MCSection *Section, MCSymbol *Symbol,
177 uint64_t Size, unsigned ByteAlignment = 0);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000178
Chris Lattnerc35681b2010-01-19 19:46:13 +0000179 virtual void EmitBytes(StringRef Data, unsigned AddrSpace);
Chris Lattnera1e11f52009-07-07 20:30:46 +0000180
Rafael Espindola0a017a62010-12-10 07:39:47 +0000181 virtual void EmitValueImpl(const MCExpr *Value, unsigned Size,
Rafael Espindolafd057852011-05-01 03:50:49 +0000182 unsigned AddrSpace);
Rafael Espindola4c70eea2010-12-03 02:54:21 +0000183 virtual void EmitIntValue(uint64_t Value, unsigned Size,
184 unsigned AddrSpace = 0);
Rafael Espindola5e874982010-11-02 17:22:24 +0000185
Rafael Espindola6aea5922011-04-21 23:39:26 +0000186 virtual void EmitULEB128Value(const MCExpr *Value);
Rafael Espindola5e874982010-11-02 17:22:24 +0000187
Rafael Espindola6aea5922011-04-21 23:39:26 +0000188 virtual void EmitSLEB128Value(const MCExpr *Value);
Rafael Espindola5e874982010-11-02 17:22:24 +0000189
Akira Hatanakaf0b08442012-02-03 04:33:00 +0000190 virtual void EmitGPRel64Value(const MCExpr *Value);
191
Chris Lattner3cde7602010-01-25 21:28:50 +0000192 virtual void EmitGPRel32Value(const MCExpr *Value);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000193
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000194
Chris Lattnerc35681b2010-01-19 19:46:13 +0000195 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue,
196 unsigned AddrSpace);
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,
210 StringRef Filename);
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 Espindolaec53aa92011-05-10 13:39:48 +0000216 virtual void EmitCFISections(bool EH, bool Debug);
Rafael Espindola539d96f2011-04-12 23:59:07 +0000217 virtual void EmitCFIDefCfa(int64_t Register, int64_t Offset);
218 virtual void EmitCFIDefCfaOffset(int64_t Offset);
219 virtual void EmitCFIDefCfaRegister(int64_t Register);
220 virtual void EmitCFIOffset(int64_t Register, int64_t Offset);
221 virtual void EmitCFIPersonality(const MCSymbol *Sym, unsigned Encoding);
222 virtual void EmitCFILsda(const MCSymbol *Sym, unsigned Encoding);
223 virtual void EmitCFIRememberState();
224 virtual void EmitCFIRestoreState();
225 virtual void EmitCFISameValue(int64_t Register);
226 virtual void EmitCFIRelOffset(int64_t Register, int64_t Offset);
227 virtual void EmitCFIAdjustCfaOffset(int64_t Adjustment);
Rafael Espindola3c47e372012-01-23 21:51:52 +0000228 virtual void EmitCFISignalFrame();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000229
Charles Davisc7250fa2011-05-22 21:12:15 +0000230 virtual void EmitWin64EHStartProc(const MCSymbol *Symbol);
Charles Davis8d9c9902011-05-18 04:58:05 +0000231 virtual void EmitWin64EHEndProc();
Charles Davis77e06102011-05-18 20:54:10 +0000232 virtual void EmitWin64EHStartChained();
233 virtual void EmitWin64EHEndChained();
Charles Davis4cd88562011-05-19 17:46:39 +0000234 virtual void EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
235 bool Except);
236 virtual void EmitWin64EHHandlerData();
Charles Davis7e6e8952011-05-19 19:35:55 +0000237 virtual void EmitWin64EHPushReg(unsigned Register);
238 virtual void EmitWin64EHSetFrame(unsigned Register, unsigned Offset);
239 virtual void EmitWin64EHAllocStack(unsigned Size);
240 virtual void EmitWin64EHSaveReg(unsigned Register, unsigned Offset);
241 virtual void EmitWin64EHSaveXMM(unsigned Register, unsigned Offset);
Charles Davis8d9c9902011-05-18 04:58:05 +0000242 virtual void EmitWin64EHPushFrame(bool Code);
243 virtual void EmitWin64EHEndProlog();
244
Anton Korobeynikova7ec2dc2011-03-05 18:43:15 +0000245 virtual void EmitFnStart();
246 virtual void EmitFnEnd();
247 virtual void EmitCantUnwind();
248 virtual void EmitPersonality(const MCSymbol *Personality);
249 virtual void EmitHandlerData();
Anton Korobeynikove7410dd2011-03-05 18:43:32 +0000250 virtual void EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset = 0);
251 virtual void EmitPad(int64_t Offset);
252 virtual void EmitRegSave(const SmallVectorImpl<unsigned> &RegList, bool);
253
Anton Korobeynikova7ec2dc2011-03-05 18:43:15 +0000254
Chris Lattner601ef332010-01-25 18:58:59 +0000255 virtual void EmitInstruction(const MCInst &Inst);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000256
Jim Grosbach6ebd7282010-09-22 18:18:30 +0000257 /// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner8a87fb72010-04-03 21:35:55 +0000258 /// the specified string in the output .s file. This capability is
259 /// indicated by the hasRawTextSupport() predicate.
260 virtual void EmitRawText(StringRef String);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000261
Rafael Espindola07082092012-01-07 03:13:18 +0000262 virtual void FinishImpl();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000263
Chris Lattner962c5bd82009-08-17 04:17:34 +0000264 /// @}
265};
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000266
Chris Lattner962c5bd82009-08-17 04:17:34 +0000267} // end anonymous namespace.
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000268
Chris Lattnere1d8a312010-01-22 18:21:35 +0000269/// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner38e92192010-01-22 07:29:22 +0000270/// file if applicable as a QoI issue to make the output of the compiler
271/// more readable. This only affects the MCAsmStreamer, and only when
272/// verbose assembly output is enabled.
Chris Lattnere1d8a312010-01-22 18:21:35 +0000273void MCAsmStreamer::AddComment(const Twine &T) {
Chris Lattner38e92192010-01-22 07:29:22 +0000274 if (!IsVerboseAsm) return;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000275
Chris Lattner8fa0e352010-01-22 19:17:48 +0000276 // Make sure that CommentStream is flushed.
277 CommentStream.flush();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000278
Chris Lattner38e92192010-01-22 07:29:22 +0000279 T.toVector(CommentToEmit);
Chris Lattner8fa0e352010-01-22 19:17:48 +0000280 // Each comment goes on its own line.
281 CommentToEmit.push_back('\n');
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000282
Chris Lattner1386a882010-01-22 21:16:10 +0000283 // Tell the comment stream that the vector changed underneath it.
284 CommentStream.resync();
Chris Lattner38e92192010-01-22 07:29:22 +0000285}
286
287void MCAsmStreamer::EmitCommentsAndEOL() {
Chris Lattner8fa0e352010-01-22 19:17:48 +0000288 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) {
289 OS << '\n';
290 return;
291 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000292
Chris Lattner8fa0e352010-01-22 19:17:48 +0000293 CommentStream.flush();
Chris Lattner38e92192010-01-22 07:29:22 +0000294 StringRef Comments = CommentToEmit.str();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000295
Chris Lattner8fa0e352010-01-22 19:17:48 +0000296 assert(Comments.back() == '\n' &&
297 "Comment array not newline terminated");
298 do {
Chris Lattner38e92192010-01-22 07:29:22 +0000299 // Emit a line of comments.
300 OS.PadToColumn(MAI.getCommentColumn());
301 size_t Position = Comments.find('\n');
302 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000303
Chris Lattner38e92192010-01-22 07:29:22 +0000304 Comments = Comments.substr(Position+1);
Chris Lattner8fa0e352010-01-22 19:17:48 +0000305 } while (!Comments.empty());
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000306
Chris Lattner1386a882010-01-22 21:16:10 +0000307 CommentToEmit.clear();
308 // Tell the comment stream that the vector changed underneath it.
309 CommentStream.resync();
Chris Lattner38e92192010-01-22 07:29:22 +0000310}
311
Daniel Dunbar188e87f2009-06-25 21:03:18 +0000312static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
313 assert(Bytes && "Invalid size!");
314 return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
315}
316
Rafael Espindola58ac6e12011-02-16 01:08:29 +0000317void MCAsmStreamer::ChangeSection(const MCSection *Section) {
Chris Lattner4b7dadb2009-08-19 05:49:37 +0000318 assert(Section && "Cannot switch to a null section!");
Rafael Espindola58ac6e12011-02-16 01:08:29 +0000319 Section->PrintSwitchToSection(MAI, OS);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000320}
321
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000322void MCAsmStreamer::EmitEHSymAttributes(const MCSymbol *Symbol,
323 MCSymbol *EHSymbol) {
324 if (UseCFI)
325 return;
326
327 unsigned Flags = FlagMap.lookup(Symbol);
328
329 if (Flags & EHGlobal)
330 EmitSymbolAttribute(EHSymbol, MCSA_Global);
331 if (Flags & EHWeakDefinition)
332 EmitSymbolAttribute(EHSymbol, MCSA_WeakDefinition);
333 if (Flags & EHPrivateExtern)
334 EmitSymbolAttribute(EHSymbol, MCSA_PrivateExtern);
335}
336
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000337void MCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
Daniel Dunbar6860ac72009-08-22 07:22:36 +0000338 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Rafael Espindola27c0c9b2011-04-27 15:21:19 +0000339 MCStreamer::EmitLabel(Symbol);
Daniel Dunbarf782ebc2009-06-24 17:00:42 +0000340
Chris Lattner7bce0592010-09-22 22:19:53 +0000341 OS << *Symbol << MAI.getLabelSuffix();
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000342 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000343}
344
Chris Lattner685508c2010-01-23 06:39:22 +0000345void MCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
Kevin Enderbydd27e5e2009-07-16 17:56:39 +0000346 switch (Flag) {
Jason W Kim645f6c22010-09-30 02:45:56 +0000347 case MCAF_SyntaxUnified: OS << "\t.syntax unified"; break;
Chris Lattner685508c2010-01-23 06:39:22 +0000348 case MCAF_SubsectionsViaSymbols: OS << ".subsections_via_symbols"; break;
Evan Cheng481ebb02011-07-27 00:38:12 +0000349 case MCAF_Code16: OS << '\t'<< MAI.getCode16Directive(); break;
350 case MCAF_Code32: OS << '\t'<< MAI.getCode32Directive(); break;
351 case MCAF_Code64: OS << '\t'<< MAI.getCode64Directive(); break;
Kevin Enderbydd27e5e2009-07-16 17:56:39 +0000352 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000353 EmitEOL();
Kevin Enderbyc9d93ef2009-07-13 21:03:15 +0000354}
355
Jim Grosbach4b63d2a2012-05-18 19:12:01 +0000356void MCAsmStreamer::EmitDataRegion(MCDataRegionType Kind) {
357 MCContext &Ctx = getContext();
358 const MCAsmInfo &MAI = Ctx.getAsmInfo();
359 if (!MAI.doesSupportDataRegionDirectives())
360 return;
361 switch (Kind) {
362 case MCDR_DataRegion: OS << "\t.data_region"; break;
363 case MCDR_DataRegionJT8: OS << "\t.data_region jt8"; break;
364 case MCDR_DataRegionJT16: OS << "\t.data_region jt16"; break;
365 case MCDR_DataRegionJT32: OS << "\t.data_region jt32"; break;
366 case MCDR_DataRegionEnd: OS << "\t.end_data_region"; break;
367 }
368 EmitEOL();
369}
370
Jim Grosbach5a2c68d2010-11-05 22:08:08 +0000371void MCAsmStreamer::EmitThumbFunc(MCSymbol *Func) {
372 // This needs to emit to a temporary string to get properly quoted
373 // MCSymbols when they have spaces in them.
374 OS << "\t.thumb_func";
Rafael Espindolae90c1cb2011-05-16 16:17:21 +0000375 // Only Mach-O hasSubsectionsViaSymbols()
376 if (MAI.hasSubsectionsViaSymbols())
Jim Grosbach5a2c68d2010-11-05 22:08:08 +0000377 OS << '\t' << *Func;
378 EmitEOL();
379}
380
Daniel Dunbar897ffad2009-08-31 08:09:28 +0000381void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000382 OS << *Symbol << " = " << *Value;
383 EmitEOL();
Daniel Dunbard20cda02009-10-16 01:34:54 +0000384
385 // FIXME: Lift context changes into super class.
Daniel Dunbar7a989da2010-05-05 17:41:00 +0000386 Symbol->setVariableValue(Value);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000387}
388
Rafael Espindola16145972010-11-01 14:28:48 +0000389void MCAsmStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
390 OS << ".weakref " << *Alias << ", " << *Symbol;
391 EmitEOL();
392}
393
Rafael Espindola57ab7082010-12-03 00:55:40 +0000394void MCAsmStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
395 const MCSymbol *LastLabel,
Evan Chengc7ac6902011-07-14 05:43:07 +0000396 const MCSymbol *Label,
397 unsigned PointerSize) {
398 EmitDwarfSetLineAddr(LineDelta, Label, PointerSize);
Rafael Espindola57ab7082010-12-03 00:55:40 +0000399}
400
Rafael Espindola1d1eced2011-04-30 03:21:04 +0000401void MCAsmStreamer::EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
402 const MCSymbol *Label) {
403 EmitIntValue(dwarf::DW_CFA_advance_loc4, 1);
404 const MCExpr *AddrDelta = BuildSymbolDiff(getContext(), Label, LastLabel);
Rafael Espindola8e129292011-05-19 21:40:34 +0000405 AddrDelta = ForceExpAbs(AddrDelta);
Rafael Espindola1d1eced2011-04-30 03:21:04 +0000406 EmitValue(AddrDelta, 4);
407}
408
409
Daniel Dunbard20cda02009-10-16 01:34:54 +0000410void MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
Chris Lattner685508c2010-01-23 06:39:22 +0000411 MCSymbolAttr Attribute) {
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000412 switch (Attribute) {
Craig Toppera2886c22012-02-07 05:05:23 +0000413 case MCSA_Invalid: llvm_unreachable("Invalid symbol attribute");
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000414 case MCSA_ELF_TypeFunction: /// .type _foo, STT_FUNC # aka @function
415 case MCSA_ELF_TypeIndFunction: /// .type _foo, STT_GNU_IFUNC
416 case MCSA_ELF_TypeObject: /// .type _foo, STT_OBJECT # aka @object
417 case MCSA_ELF_TypeTLS: /// .type _foo, STT_TLS # aka @tls_object
418 case MCSA_ELF_TypeCommon: /// .type _foo, STT_COMMON # aka @common
419 case MCSA_ELF_TypeNoType: /// .type _foo, STT_NOTYPE # aka @notype
Rafael Espindola2d006b12010-11-13 04:55:06 +0000420 case MCSA_ELF_TypeGnuUniqueObject: /// .type _foo, @gnu_unique_object
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000421 assert(MAI.hasDotTypeDotSizeDirective() && "Symbol Attr not supported");
Dan Gohman77fe07a2010-02-04 01:42:13 +0000422 OS << "\t.type\t" << *Symbol << ','
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000423 << ((MAI.getCommentString()[0] != '@') ? '@' : '%');
424 switch (Attribute) {
Craig Toppera2886c22012-02-07 05:05:23 +0000425 default: llvm_unreachable("Unknown ELF .type");
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000426 case MCSA_ELF_TypeFunction: OS << "function"; break;
427 case MCSA_ELF_TypeIndFunction: OS << "gnu_indirect_function"; break;
428 case MCSA_ELF_TypeObject: OS << "object"; break;
429 case MCSA_ELF_TypeTLS: OS << "tls_object"; break;
430 case MCSA_ELF_TypeCommon: OS << "common"; break;
431 case MCSA_ELF_TypeNoType: OS << "no_type"; break;
Rafael Espindola2d006b12010-11-13 04:55:06 +0000432 case MCSA_ELF_TypeGnuUniqueObject: OS << "gnu_unique_object"; break;
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000433 }
434 EmitEOL();
435 return;
436 case MCSA_Global: // .globl/.global
437 OS << MAI.getGlobalDirective();
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000438 FlagMap[Symbol] |= EHGlobal;
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000439 break;
Chris Lattner79d20752010-06-21 20:35:01 +0000440 case MCSA_Hidden: OS << "\t.hidden\t"; break;
441 case MCSA_IndirectSymbol: OS << "\t.indirect_symbol\t"; break;
442 case MCSA_Internal: OS << "\t.internal\t"; break;
443 case MCSA_LazyReference: OS << "\t.lazy_reference\t"; break;
444 case MCSA_Local: OS << "\t.local\t"; break;
445 case MCSA_NoDeadStrip: OS << "\t.no_dead_strip\t"; break;
Kevin Enderby8be14412010-11-19 18:39:33 +0000446 case MCSA_SymbolResolver: OS << "\t.symbol_resolver\t"; break;
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000447 case MCSA_PrivateExtern:
448 OS << "\t.private_extern\t";
449 FlagMap[Symbol] |= EHPrivateExtern;
450 break;
Chris Lattner79d20752010-06-21 20:35:01 +0000451 case MCSA_Protected: OS << "\t.protected\t"; break;
452 case MCSA_Reference: OS << "\t.reference\t"; break;
453 case MCSA_Weak: OS << "\t.weak\t"; break;
Rafael Espindolabde52bc2011-04-30 16:34:57 +0000454 case MCSA_WeakDefinition:
455 OS << "\t.weak_definition\t";
456 FlagMap[Symbol] |= EHWeakDefinition;
457 break;
Chris Lattner685508c2010-01-23 06:39:22 +0000458 // .weak_reference
459 case MCSA_WeakReference: OS << MAI.getWeakRefDirective(); break;
Kevin Enderby082d0fd2010-07-08 17:22:42 +0000460 case MCSA_WeakDefAutoPrivate: OS << "\t.weak_def_can_be_hidden\t"; break;
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000461 }
462
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000463 OS << *Symbol;
464 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000465}
466
Kevin Enderby4c21caa2009-07-14 18:17:10 +0000467void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000468 OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
469 EmitEOL();
Kevin Enderby4c21caa2009-07-14 18:17:10 +0000470}
471
Chris Lattner72afa952010-05-08 19:54:22 +0000472void MCAsmStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {
473 OS << "\t.def\t " << *Symbol << ';';
474 EmitEOL();
475}
476
477void MCAsmStreamer::EmitCOFFSymbolStorageClass (int StorageClass) {
478 OS << "\t.scl\t" << StorageClass << ';';
479 EmitEOL();
480}
481
482void MCAsmStreamer::EmitCOFFSymbolType (int Type) {
483 OS << "\t.type\t" << Type << ';';
484 EmitEOL();
485}
486
487void MCAsmStreamer::EndCOFFSymbolDef() {
488 OS << "\t.endef";
489 EmitEOL();
490}
491
Rafael Espindolad3df3d32011-12-17 01:14:52 +0000492void MCAsmStreamer::EmitCOFFSecRel32(MCSymbol const *Symbol) {
493 OS << "\t.secrel32\t" << *Symbol << '\n';
494 EmitEOL();
495}
496
Chris Lattner91dac6d2010-01-25 07:52:13 +0000497void MCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
498 assert(MAI.hasDotTypeDotSizeDirective());
499 OS << "\t.size\t" << *Symbol << ", " << *Value << '\n';
500}
501
Chris Lattnerb1301f72010-01-23 07:47:02 +0000502void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar6a715dc2009-08-30 06:17:16 +0000503 unsigned ByteAlignment) {
Chris Lattnerb1301f72010-01-23 07:47:02 +0000504 OS << "\t.comm\t" << *Symbol << ',' << Size;
Chris Lattner0375d2f2010-01-25 07:29:13 +0000505 if (ByteAlignment != 0) {
Rafael Espindoladcb03f02010-01-26 20:21:43 +0000506 if (MAI.getCOMMDirectiveAlignmentIsInBytes())
Chris Lattner95b98952010-01-19 06:01:04 +0000507 OS << ',' << ByteAlignment;
508 else
509 OS << ',' << Log2_32(ByteAlignment);
510 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000511 EmitEOL();
Chris Lattnera1e11f52009-07-07 20:30:46 +0000512}
513
Chris Lattnerb1301f72010-01-23 07:47:02 +0000514/// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
515///
516/// @param Symbol - The common symbol to emit.
517/// @param Size - The size of the common symbol.
Benjamin Kramer63970512011-09-01 23:04:27 +0000518void MCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
519 unsigned ByteAlign) {
520 assert(MAI.getLCOMMDirectiveType() != LCOMM::None &&
521 "Doesn't have .lcomm, can't emit it!");
Chris Lattnerb1301f72010-01-23 07:47:02 +0000522 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
Benjamin Kramer63970512011-09-01 23:04:27 +0000523 if (ByteAlign > 1) {
524 assert(MAI.getLCOMMDirectiveType() == LCOMM::ByteAlignment &&
525 "Alignment not supported on .lcomm!");
526 OS << ',' << ByteAlign;
527 }
Chris Lattnerb1301f72010-01-23 07:47:02 +0000528 EmitEOL();
529}
530
Daniel Dunbarcf72e1c2009-08-28 05:48:22 +0000531void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Evan Chengf5bd6c62012-06-22 20:14:46 +0000532 uint64_t Size, unsigned ByteAlignment) {
Daniel Dunbaraba5fb82009-08-13 23:36:34 +0000533 // Note: a .zerofill directive does not switch sections.
Chris Lattner591105c2009-08-08 23:39:42 +0000534 OS << ".zerofill ";
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000535
Chris Lattner591105c2009-08-08 23:39:42 +0000536 // This is a mach-o specific directive.
Chris Lattnercb307a272009-08-10 01:39:42 +0000537 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
Daniel Dunbar563a7e82009-08-14 18:51:45 +0000538 OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000539
Chris Lattner07cadaf2009-07-10 22:20:30 +0000540 if (Symbol != NULL) {
Chris Lattner8b5d55e2010-01-17 21:43:43 +0000541 OS << ',' << *Symbol << ',' << Size;
Daniel Dunbar6a715dc2009-08-30 06:17:16 +0000542 if (ByteAlignment != 0)
543 OS << ',' << Log2_32(ByteAlignment);
Chris Lattner07cadaf2009-07-10 22:20:30 +0000544 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000545 EmitEOL();
Chris Lattner07cadaf2009-07-10 22:20:30 +0000546}
547
Eric Christopher68b1bbe2010-05-17 02:13:02 +0000548// .tbss sym, size, align
549// This depends that the symbol has already been mangled from the original,
550// e.g. _a.
Eric Christopher5c87be72010-05-18 21:16:04 +0000551void MCAsmStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
552 uint64_t Size, unsigned ByteAlignment) {
Eric Christopher9fb6bb02010-05-14 01:50:28 +0000553 assert(Symbol != NULL && "Symbol shouldn't be NULL!");
Eric Christopher5c87be72010-05-18 21:16:04 +0000554 // Instead of using the Section we'll just use the shortcut.
555 // This is a mach-o specific directive and section.
Eric Christopher68b1bbe2010-05-17 02:13:02 +0000556 OS << ".tbss " << *Symbol << ", " << Size;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000557
Eric Christopher5c87be72010-05-18 21:16:04 +0000558 // Output align if we have it. We default to 1 so don't bother printing
559 // that.
560 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000561
Eric Christopher9fb6bb02010-05-14 01:50:28 +0000562 EmitEOL();
563}
564
Chris Lattnerded9af632010-01-23 00:15:00 +0000565static inline char toOctal(int X) { return (X&7)+'0'; }
566
Chris Lattner601ef332010-01-25 18:58:59 +0000567static void PrintQuotedString(StringRef Data, raw_ostream &OS) {
568 OS << '"';
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000569
Chris Lattner601ef332010-01-25 18:58:59 +0000570 for (unsigned i = 0, e = Data.size(); i != e; ++i) {
571 unsigned char C = Data[i];
572 if (C == '"' || C == '\\') {
573 OS << '\\' << (char)C;
574 continue;
575 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000576
Chris Lattner601ef332010-01-25 18:58:59 +0000577 if (isprint((unsigned char)C)) {
578 OS << (char)C;
579 continue;
580 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000581
Chris Lattner601ef332010-01-25 18:58:59 +0000582 switch (C) {
583 case '\b': OS << "\\b"; break;
584 case '\f': OS << "\\f"; break;
585 case '\n': OS << "\\n"; break;
586 case '\r': OS << "\\r"; break;
587 case '\t': OS << "\\t"; break;
588 default:
589 OS << '\\';
590 OS << toOctal(C >> 6);
591 OS << toOctal(C >> 3);
592 OS << toOctal(C >> 0);
593 break;
594 }
595 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000596
Chris Lattner601ef332010-01-25 18:58:59 +0000597 OS << '"';
598}
599
600
Chris Lattnerc35681b2010-01-19 19:46:13 +0000601void MCAsmStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
Rafael Espindola58ac6e12011-02-16 01:08:29 +0000602 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Chris Lattnerded9af632010-01-23 00:15:00 +0000603 if (Data.empty()) return;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000604
Chris Lattnerded9af632010-01-23 00:15:00 +0000605 if (Data.size() == 1) {
606 OS << MAI.getData8bitsDirective(AddrSpace);
607 OS << (unsigned)(unsigned char)Data[0];
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000608 EmitEOL();
Chris Lattnerded9af632010-01-23 00:15:00 +0000609 return;
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000610 }
Chris Lattnerded9af632010-01-23 00:15:00 +0000611
612 // If the data ends with 0 and the target supports .asciz, use it, otherwise
613 // use .ascii
614 if (MAI.getAscizDirective() && Data.back() == 0) {
615 OS << MAI.getAscizDirective();
616 Data = Data.substr(0, Data.size()-1);
617 } else {
618 OS << MAI.getAsciiDirective();
619 }
620
Chris Lattner601ef332010-01-25 18:58:59 +0000621 OS << ' ';
622 PrintQuotedString(Data, OS);
Chris Lattnerded9af632010-01-23 00:15:00 +0000623 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000624}
625
Rafael Espindola4c70eea2010-12-03 02:54:21 +0000626void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size,
627 unsigned AddrSpace) {
628 EmitValue(MCConstantExpr::Create(Value, getContext()), Size, AddrSpace);
629}
630
Rafael Espindola0a017a62010-12-10 07:39:47 +0000631void MCAsmStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size,
Rafael Espindolafd057852011-05-01 03:50:49 +0000632 unsigned AddrSpace) {
Rafael Espindola58ac6e12011-02-16 01:08:29 +0000633 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000634 const char *Directive = 0;
635 switch (Size) {
636 default: break;
637 case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
638 case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
639 case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
Chris Lattner45eeffc2010-01-20 06:45:39 +0000640 case 8:
641 Directive = MAI.getData64bitsDirective(AddrSpace);
642 // If the target doesn't support 64-bit data, emit as two 32-bit halves.
643 if (Directive) break;
Rafael Espindolae5e1f9a2010-11-28 23:22:44 +0000644 int64_t IntValue;
645 if (!Value->EvaluateAsAbsolute(IntValue))
646 report_fatal_error("Don't know how to emit this value.");
Evan Chenga83b37a2011-07-15 02:09:41 +0000647 if (getContext().getAsmInfo().isLittleEndian()) {
Rafael Espindolae5e1f9a2010-11-28 23:22:44 +0000648 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
649 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
Chris Lattner45eeffc2010-01-20 06:45:39 +0000650 } else {
Rafael Espindolae5e1f9a2010-11-28 23:22:44 +0000651 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
652 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
Chris Lattner45eeffc2010-01-20 06:45:39 +0000653 }
654 return;
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000655 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000656
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000657 assert(Directive && "Invalid size for machine code value!");
Chris Lattner3cde7602010-01-25 21:28:50 +0000658 OS << Directive << *Value;
Chris Lattner38e92192010-01-22 07:29:22 +0000659 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000660}
661
Rafael Espindola6aea5922011-04-21 23:39:26 +0000662void MCAsmStreamer::EmitULEB128Value(const MCExpr *Value) {
Rafael Espindola92ca9332010-11-19 04:10:13 +0000663 int64_t IntValue;
664 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindola6aea5922011-04-21 23:39:26 +0000665 EmitULEB128IntValue(IntValue);
Rafael Espindola92ca9332010-11-19 04:10:13 +0000666 return;
667 }
Rafael Espindola38d07562010-11-04 18:17:08 +0000668 assert(MAI.hasLEB128() && "Cannot print a .uleb");
669 OS << ".uleb128 " << *Value;
Rafael Espindola5e874982010-11-02 17:22:24 +0000670 EmitEOL();
671}
672
Rafael Espindola6aea5922011-04-21 23:39:26 +0000673void MCAsmStreamer::EmitSLEB128Value(const MCExpr *Value) {
Rafael Espindola92ca9332010-11-19 04:10:13 +0000674 int64_t IntValue;
675 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindola6aea5922011-04-21 23:39:26 +0000676 EmitSLEB128IntValue(IntValue);
Rafael Espindola92ca9332010-11-19 04:10:13 +0000677 return;
678 }
Rafael Espindola38d07562010-11-04 18:17:08 +0000679 assert(MAI.hasLEB128() && "Cannot print a .sleb");
680 OS << ".sleb128 " << *Value;
Rafael Espindola5e874982010-11-02 17:22:24 +0000681 EmitEOL();
682}
683
Akira Hatanakaf0b08442012-02-03 04:33:00 +0000684void MCAsmStreamer::EmitGPRel64Value(const MCExpr *Value) {
685 assert(MAI.getGPRel64Directive() != 0);
686 OS << MAI.getGPRel64Directive() << *Value;
687 EmitEOL();
688}
689
Chris Lattner3cde7602010-01-25 21:28:50 +0000690void MCAsmStreamer::EmitGPRel32Value(const MCExpr *Value) {
691 assert(MAI.getGPRel32Directive() != 0);
692 OS << MAI.getGPRel32Directive() << *Value;
693 EmitEOL();
694}
695
696
Chris Lattner4340cb32010-01-19 18:52:28 +0000697/// EmitFill - Emit NumBytes bytes worth of the value specified by
698/// FillValue. This implements directives such as '.space'.
Chris Lattnerc35681b2010-01-19 19:46:13 +0000699void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
700 unsigned AddrSpace) {
Chris Lattnered89f602010-01-19 18:58:52 +0000701 if (NumBytes == 0) return;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000702
Chris Lattnerc35681b2010-01-19 19:46:13 +0000703 if (AddrSpace == 0)
704 if (const char *ZeroDirective = MAI.getZeroDirective()) {
705 OS << ZeroDirective << NumBytes;
706 if (FillValue != 0)
707 OS << ',' << (int)FillValue;
Chris Lattner38e92192010-01-22 07:29:22 +0000708 EmitEOL();
Chris Lattnerc35681b2010-01-19 19:46:13 +0000709 return;
710 }
711
712 // Emit a byte at a time.
713 MCStreamer::EmitFill(NumBytes, FillValue, AddrSpace);
Chris Lattner4340cb32010-01-19 18:52:28 +0000714}
715
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000716void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
717 unsigned ValueSize,
718 unsigned MaxBytesToEmit) {
Chris Lattner37b72342009-08-19 06:12:02 +0000719 // Some assemblers don't support non-power of two alignments, so we always
720 // emit alignments as a power of two if possible.
721 if (isPowerOf2_32(ByteAlignment)) {
Chris Lattner78b23b02009-08-19 06:35:36 +0000722 switch (ValueSize) {
723 default: llvm_unreachable("Invalid size for machine code value!");
Chris Lattnere9a75a62009-08-22 21:43:10 +0000724 case 1: OS << MAI.getAlignDirective(); break;
725 // FIXME: use MAI for this!
Chris Lattner78b23b02009-08-19 06:35:36 +0000726 case 2: OS << ".p2alignw "; break;
727 case 4: OS << ".p2alignl "; break;
728 case 8: llvm_unreachable("Unsupported alignment size!");
729 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000730
Chris Lattnere9a75a62009-08-22 21:43:10 +0000731 if (MAI.getAlignmentIsInBytes())
Chris Lattner37b72342009-08-19 06:12:02 +0000732 OS << ByteAlignment;
733 else
734 OS << Log2_32(ByteAlignment);
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000735
Chris Lattner37b72342009-08-19 06:12:02 +0000736 if (Value || MaxBytesToEmit) {
Chris Lattnerf16a1222009-09-03 04:01:10 +0000737 OS << ", 0x";
738 OS.write_hex(truncateToSize(Value, ValueSize));
Chris Lattner37b72342009-08-19 06:12:02 +0000739
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000740 if (MaxBytesToEmit)
Chris Lattner37b72342009-08-19 06:12:02 +0000741 OS << ", " << MaxBytesToEmit;
742 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000743 EmitEOL();
Chris Lattner37b72342009-08-19 06:12:02 +0000744 return;
745 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000746
Chris Lattner37b72342009-08-19 06:12:02 +0000747 // Non-power of two alignment. This is not widely supported by assemblers.
Chris Lattnere9a75a62009-08-22 21:43:10 +0000748 // FIXME: Parameterize this based on MAI.
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000749 switch (ValueSize) {
Chris Lattner37b72342009-08-19 06:12:02 +0000750 default: llvm_unreachable("Invalid size for machine code value!");
751 case 1: OS << ".balign"; break;
752 case 2: OS << ".balignw"; break;
753 case 4: OS << ".balignl"; break;
754 case 8: llvm_unreachable("Unsupported alignment size!");
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000755 }
756
Chris Lattner37b72342009-08-19 06:12:02 +0000757 OS << ' ' << ByteAlignment;
Daniel Dunbar188e87f2009-06-25 21:03:18 +0000758 OS << ", " << truncateToSize(Value, ValueSize);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000759 if (MaxBytesToEmit)
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000760 OS << ", " << MaxBytesToEmit;
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000761 EmitEOL();
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000762}
763
Kevin Enderbye83d74f2010-02-23 18:26:34 +0000764void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
765 unsigned MaxBytesToEmit) {
Chris Lattnereebaf6a2010-02-23 18:44:31 +0000766 // Emit with a text fill value.
767 EmitValueToAlignment(ByteAlignment, MAI.getTextAlignFillValue(),
768 1, MaxBytesToEmit);
Kevin Enderbye83d74f2010-02-23 18:26:34 +0000769}
770
Jim Grosbachb5912772012-01-27 00:37:08 +0000771bool MCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000772 unsigned char Value) {
773 // FIXME: Verify that Offset is associated with the current section.
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000774 OS << ".org " << *Offset << ", " << (unsigned) Value;
775 EmitEOL();
Jim Grosbachb5912772012-01-27 00:37:08 +0000776 return false;
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000777}
778
Chris Lattner601ef332010-01-25 18:58:59 +0000779
780void MCAsmStreamer::EmitFileDirective(StringRef Filename) {
781 assert(MAI.hasSingleParameterDotFile());
782 OS << "\t.file\t";
783 PrintQuotedString(Filename, OS);
784 EmitEOL();
785}
786
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000787bool MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Directory,
788 StringRef Filename) {
789 if (!UseDwarfDirectory && !Directory.empty()) {
790 if (sys::path::is_absolute(Filename))
791 return EmitDwarfFileDirective(FileNo, "", Filename);
792
793 SmallString<128> FullPathName = Directory;
794 sys::path::append(FullPathName, Filename);
795 return EmitDwarfFileDirective(FileNo, "", FullPathName);
796 }
797
Rafael Espindola0a017a62010-12-10 07:39:47 +0000798 if (UseLoc) {
Rafael Espindolab58867c2010-11-19 02:26:16 +0000799 OS << "\t.file\t" << FileNo << ' ';
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000800 if (!Directory.empty()) {
801 PrintQuotedString(Directory, OS);
802 OS << ' ';
803 }
Rafael Espindolab58867c2010-11-19 02:26:16 +0000804 PrintQuotedString(Filename, OS);
805 EmitEOL();
806 }
Nick Lewycky40f8f2f2011-10-17 23:05:28 +0000807 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Directory, Filename);
Rafael Espindolac653a892010-11-16 21:20:32 +0000808}
809
810void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
811 unsigned Column, unsigned Flags,
812 unsigned Isa,
Devang Patel17740e72011-04-18 20:26:49 +0000813 unsigned Discriminator,
814 StringRef FileName) {
Rafael Espindolab58867c2010-11-19 02:26:16 +0000815 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
Devang Patel17740e72011-04-18 20:26:49 +0000816 Isa, Discriminator, FileName);
Rafael Espindola0a017a62010-12-10 07:39:47 +0000817 if (!UseLoc)
Rafael Espindolab58867c2010-11-19 02:26:16 +0000818 return;
819
Rafael Espindolac653a892010-11-16 21:20:32 +0000820 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
821 if (Flags & DWARF2_FLAG_BASIC_BLOCK)
822 OS << " basic_block";
823 if (Flags & DWARF2_FLAG_PROLOGUE_END)
824 OS << " prologue_end";
825 if (Flags & DWARF2_FLAG_EPILOGUE_BEGIN)
826 OS << " epilogue_begin";
827
828 unsigned OldFlags = getContext().getCurrentDwarfLoc().getFlags();
829 if ((Flags & DWARF2_FLAG_IS_STMT) != (OldFlags & DWARF2_FLAG_IS_STMT)) {
830 OS << " is_stmt ";
831
832 if (Flags & DWARF2_FLAG_IS_STMT)
833 OS << "1";
834 else
835 OS << "0";
836 }
837
838 if (Isa)
839 OS << "isa " << Isa;
840 if (Discriminator)
841 OS << "discriminator " << Discriminator;
Devang Patel17740e72011-04-18 20:26:49 +0000842
843 if (IsVerboseAsm) {
844 OS.PadToColumn(MAI.getCommentColumn());
Jim Grosbachdc1e36e2012-05-11 01:41:30 +0000845 OS << MAI.getCommentString() << ' ' << FileName << ':'
Devang Patel17740e72011-04-18 20:26:49 +0000846 << Line << ':' << Column;
847 }
Rafael Espindolac653a892010-11-16 21:20:32 +0000848 EmitEOL();
Chris Lattner601ef332010-01-25 18:58:59 +0000849}
850
Rafael Espindolaec53aa92011-05-10 13:39:48 +0000851void MCAsmStreamer::EmitCFISections(bool EH, bool Debug) {
852 MCStreamer::EmitCFISections(EH, Debug);
853
854 if (!UseCFI)
855 return;
856
857 OS << "\t.cfi_sections ";
858 if (EH) {
859 OS << ".eh_frame";
860 if (Debug)
861 OS << ", .debug_frame";
862 } else if (Debug) {
863 OS << ".debug_frame";
864 }
865
866 EmitEOL();
867}
868
Rafael Espindola38241202012-01-07 22:42:19 +0000869void MCAsmStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) {
870 if (!UseCFI) {
871 RecordProcStart(Frame);
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000872 return;
Rafael Espindola38241202012-01-07 22:42:19 +0000873 }
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000874
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000875 OS << "\t.cfi_startproc";
Rafael Espindola3c227b02010-11-22 14:27:24 +0000876 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000877}
878
Rafael Espindolaf28213c2012-01-09 00:17:29 +0000879void MCAsmStreamer::EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) {
880 if (!UseCFI) {
881 RecordProcEnd(Frame);
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000882 return;
Rafael Espindolaf28213c2012-01-09 00:17:29 +0000883 }
884
885 // Put a dummy non-null value in Frame.End to mark that this frame has been
886 // closed.
887 Frame.End = (MCSymbol *) 1;
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000888
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000889 OS << "\t.cfi_endproc";
Rafael Espindola3c227b02010-11-22 14:27:24 +0000890 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000891}
892
Rafael Espindola08600bc2011-05-30 20:20:15 +0000893void MCAsmStreamer::EmitRegisterName(int64_t Register) {
Akira Hatanaka2f2d9cb2011-07-07 20:30:33 +0000894 if (InstPrinter && !MAI.useDwarfRegNumForCFI()) {
Evan Chengd60fa58b2011-07-18 20:57:22 +0000895 const MCRegisterInfo &MRI = getContext().getRegisterInfo();
896 unsigned LLVMRegister = MRI.getLLVMRegNum(Register, true);
Rafael Espindolad6860522011-06-02 02:34:55 +0000897 InstPrinter->printRegName(OS, LLVMRegister);
Rafael Espindola08600bc2011-05-30 20:20:15 +0000898 } else {
899 OS << Register;
900 }
901}
902
Rafael Espindola539d96f2011-04-12 23:59:07 +0000903void MCAsmStreamer::EmitCFIDefCfa(int64_t Register, int64_t Offset) {
Rafael Espindola6c961e12011-04-29 21:41:06 +0000904 MCStreamer::EmitCFIDefCfa(Register, Offset);
905
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000906 if (!UseCFI)
907 return;
908
Rafael Espindola08600bc2011-05-30 20:20:15 +0000909 OS << "\t.cfi_def_cfa ";
910 EmitRegisterName(Register);
911 OS << ", " << Offset;
Rafael Espindola6c961e12011-04-29 21:41:06 +0000912 EmitEOL();
Rafael Espindola539d96f2011-04-12 23:59:07 +0000913}
914
915void MCAsmStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
916 MCStreamer::EmitCFIDefCfaOffset(Offset);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000917
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000918 if (!UseCFI)
919 return;
920
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000921 OS << "\t.cfi_def_cfa_offset " << Offset;
Rafael Espindola3c227b02010-11-22 14:27:24 +0000922 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000923}
924
Rafael Espindola539d96f2011-04-12 23:59:07 +0000925void MCAsmStreamer::EmitCFIDefCfaRegister(int64_t Register) {
926 MCStreamer::EmitCFIDefCfaRegister(Register);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000927
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000928 if (!UseCFI)
929 return;
930
Rafael Espindola08600bc2011-05-30 20:20:15 +0000931 OS << "\t.cfi_def_cfa_register ";
932 EmitRegisterName(Register);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000933 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000934}
935
Rafael Espindola539d96f2011-04-12 23:59:07 +0000936void MCAsmStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
937 this->MCStreamer::EmitCFIOffset(Register, Offset);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000938
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000939 if (!UseCFI)
940 return;
941
Rafael Espindola08600bc2011-05-30 20:20:15 +0000942 OS << "\t.cfi_offset ";
943 EmitRegisterName(Register);
944 OS << ", " << Offset;
Rafael Espindola3c227b02010-11-22 14:27:24 +0000945 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000946}
947
Rafael Espindola539d96f2011-04-12 23:59:07 +0000948void MCAsmStreamer::EmitCFIPersonality(const MCSymbol *Sym,
Rafael Espindola2ac83552010-12-27 00:36:05 +0000949 unsigned Encoding) {
Rafael Espindola539d96f2011-04-12 23:59:07 +0000950 MCStreamer::EmitCFIPersonality(Sym, Encoding);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000951
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000952 if (!UseCFI)
953 return;
954
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000955 OS << "\t.cfi_personality " << Encoding << ", " << *Sym;
Rafael Espindola3c227b02010-11-22 14:27:24 +0000956 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000957}
958
Rafael Espindola539d96f2011-04-12 23:59:07 +0000959void MCAsmStreamer::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) {
960 MCStreamer::EmitCFILsda(Sym, Encoding);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000961
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000962 if (!UseCFI)
963 return;
964
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000965 OS << "\t.cfi_lsda " << Encoding << ", " << *Sym;
Rafael Espindola3c227b02010-11-22 14:27:24 +0000966 EmitEOL();
Rafael Espindola539d96f2011-04-12 23:59:07 +0000967}
Rafael Espindola3c227b02010-11-22 14:27:24 +0000968
Rafael Espindola539d96f2011-04-12 23:59:07 +0000969void MCAsmStreamer::EmitCFIRememberState() {
970 MCStreamer::EmitCFIRememberState();
971
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000972 if (!UseCFI)
973 return;
974
Rafael Espindola539d96f2011-04-12 23:59:07 +0000975 OS << "\t.cfi_remember_state";
976 EmitEOL();
977}
978
979void MCAsmStreamer::EmitCFIRestoreState() {
980 MCStreamer::EmitCFIRestoreState();
981
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000982 if (!UseCFI)
983 return;
984
Rafael Espindola539d96f2011-04-12 23:59:07 +0000985 OS << "\t.cfi_restore_state";
986 EmitEOL();
987}
988
989void MCAsmStreamer::EmitCFISameValue(int64_t Register) {
990 MCStreamer::EmitCFISameValue(Register);
991
Rafael Espindolaa3181d12011-04-30 03:44:37 +0000992 if (!UseCFI)
993 return;
994
Rafael Espindola08600bc2011-05-30 20:20:15 +0000995 OS << "\t.cfi_same_value ";
996 EmitRegisterName(Register);
Rafael Espindola539d96f2011-04-12 23:59:07 +0000997 EmitEOL();
998}
999
1000void MCAsmStreamer::EmitCFIRelOffset(int64_t Register, int64_t Offset) {
1001 MCStreamer::EmitCFIRelOffset(Register, Offset);
1002
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001003 if (!UseCFI)
1004 return;
1005
Rafael Espindola08600bc2011-05-30 20:20:15 +00001006 OS << "\t.cfi_rel_offset ";
1007 EmitRegisterName(Register);
1008 OS << ", " << Offset;
Rafael Espindola539d96f2011-04-12 23:59:07 +00001009 EmitEOL();
1010}
1011
1012void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) {
1013 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
1014
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001015 if (!UseCFI)
1016 return;
1017
Rafael Espindola539d96f2011-04-12 23:59:07 +00001018 OS << "\t.cfi_adjust_cfa_offset " << Adjustment;
1019 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +00001020}
1021
Rafael Espindola3c47e372012-01-23 21:51:52 +00001022void MCAsmStreamer::EmitCFISignalFrame() {
1023 MCStreamer::EmitCFISignalFrame();
1024
1025 if (!UseCFI)
1026 return;
1027
Eric Christopher368461c2012-05-31 00:53:18 +00001028 OS << "\t.cfi_signal_frame";
Rafael Espindola3c47e372012-01-23 21:51:52 +00001029 EmitEOL();
1030}
1031
Charles Davisc7250fa2011-05-22 21:12:15 +00001032void MCAsmStreamer::EmitWin64EHStartProc(const MCSymbol *Symbol) {
Charles Davis9a115a42011-05-20 18:19:22 +00001033 MCStreamer::EmitWin64EHStartProc(Symbol);
1034
Charles Davis4cd88562011-05-19 17:46:39 +00001035 OS << ".seh_proc " << *Symbol;
Charles Davis8d9c9902011-05-18 04:58:05 +00001036 EmitEOL();
1037}
1038
Charles Davis27117af2011-05-18 22:13:51 +00001039void MCAsmStreamer::EmitWin64EHEndProc() {
Charles Davis9a115a42011-05-20 18:19:22 +00001040 MCStreamer::EmitWin64EHEndProc();
1041
Charles Davis4cd88562011-05-19 17:46:39 +00001042 OS << "\t.seh_endproc";
Charles Davis8d9c9902011-05-18 04:58:05 +00001043 EmitEOL();
1044}
1045
Charles Davis27117af2011-05-18 22:13:51 +00001046void MCAsmStreamer::EmitWin64EHStartChained() {
Charles Davis9a115a42011-05-20 18:19:22 +00001047 MCStreamer::EmitWin64EHStartChained();
1048
Charles Davis4cd88562011-05-19 17:46:39 +00001049 OS << "\t.seh_startchained";
Charles Davis77e06102011-05-18 20:54:10 +00001050 EmitEOL();
1051}
1052
Charles Davis27117af2011-05-18 22:13:51 +00001053void MCAsmStreamer::EmitWin64EHEndChained() {
Charles Davis9a115a42011-05-20 18:19:22 +00001054 MCStreamer::EmitWin64EHEndChained();
1055
Charles Davis4cd88562011-05-19 17:46:39 +00001056 OS << "\t.seh_endchained";
Charles Davis77e06102011-05-18 20:54:10 +00001057 EmitEOL();
1058}
1059
Charles Davis4cd88562011-05-19 17:46:39 +00001060void MCAsmStreamer::EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
1061 bool Except) {
Charles Davis9a115a42011-05-20 18:19:22 +00001062 MCStreamer::EmitWin64EHHandler(Sym, Unwind, Except);
1063
Charles Davis4cd88562011-05-19 17:46:39 +00001064 OS << "\t.seh_handler " << *Sym;
1065 if (Unwind)
1066 OS << ", @unwind";
1067 if (Except)
1068 OS << ", @except";
Charles Davis77e06102011-05-18 20:54:10 +00001069 EmitEOL();
1070}
1071
Evan Cheng76792992011-07-20 05:58:47 +00001072static const MCSection *getWin64EHTableSection(StringRef suffix,
1073 MCContext &context) {
1074 // FIXME: This doesn't belong in MCObjectFileInfo. However,
1075 /// this duplicate code in MCWin64EH.cpp.
1076 if (suffix == "")
1077 return context.getObjectFileInfo()->getXDataSection();
1078 return context.getCOFFSection((".xdata"+suffix).str(),
1079 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA |
1080 COFF::IMAGE_SCN_MEM_READ |
1081 COFF::IMAGE_SCN_MEM_WRITE,
1082 SectionKind::getDataRel());
1083}
1084
Charles Davis4cd88562011-05-19 17:46:39 +00001085void MCAsmStreamer::EmitWin64EHHandlerData() {
Charles Davis9a115a42011-05-20 18:19:22 +00001086 MCStreamer::EmitWin64EHHandlerData();
1087
Charles Davis2f6ecea2011-05-25 21:43:45 +00001088 // Switch sections. Don't call SwitchSection directly, because that will
1089 // cause the section switch to be visible in the emitted assembly.
1090 // We only do this so the section switch that terminates the handler
1091 // data block is visible.
Charles Davis03eef622011-05-27 19:09:24 +00001092 MCWin64EHUnwindInfo *CurFrame = getCurrentW64UnwindInfo();
1093 StringRef suffix=MCWin64EHUnwindEmitter::GetSectionSuffix(CurFrame->Function);
Evan Cheng76792992011-07-20 05:58:47 +00001094 const MCSection *xdataSect = getWin64EHTableSection(suffix, getContext());
Charles Davis2f6ecea2011-05-25 21:43:45 +00001095 if (xdataSect)
1096 SwitchSectionNoChange(xdataSect);
1097
Charles Davis4cd88562011-05-19 17:46:39 +00001098 OS << "\t.seh_handlerdata";
Charles Davis77e06102011-05-18 20:54:10 +00001099 EmitEOL();
1100}
1101
Charles Davis7e6e8952011-05-19 19:35:55 +00001102void MCAsmStreamer::EmitWin64EHPushReg(unsigned Register) {
Charles Davis9a115a42011-05-20 18:19:22 +00001103 MCStreamer::EmitWin64EHPushReg(Register);
1104
Charles Davis4cd88562011-05-19 17:46:39 +00001105 OS << "\t.seh_pushreg " << Register;
Charles Davis8d9c9902011-05-18 04:58:05 +00001106 EmitEOL();
1107}
1108
Charles Davis7e6e8952011-05-19 19:35:55 +00001109void MCAsmStreamer::EmitWin64EHSetFrame(unsigned Register, unsigned Offset) {
Charles Davis9a115a42011-05-20 18:19:22 +00001110 MCStreamer::EmitWin64EHSetFrame(Register, Offset);
1111
Charles Davis4cd88562011-05-19 17:46:39 +00001112 OS << "\t.seh_setframe " << Register << ", " << Offset;
Charles Davis8d9c9902011-05-18 04:58:05 +00001113 EmitEOL();
1114}
1115
Charles Davis7e6e8952011-05-19 19:35:55 +00001116void MCAsmStreamer::EmitWin64EHAllocStack(unsigned Size) {
Charles Davis9a115a42011-05-20 18:19:22 +00001117 MCStreamer::EmitWin64EHAllocStack(Size);
1118
Charles Davis4cd88562011-05-19 17:46:39 +00001119 OS << "\t.seh_stackalloc " << Size;
Charles Davis8d9c9902011-05-18 04:58:05 +00001120 EmitEOL();
1121}
1122
Charles Davis7e6e8952011-05-19 19:35:55 +00001123void MCAsmStreamer::EmitWin64EHSaveReg(unsigned Register, unsigned Offset) {
Charles Davis9a115a42011-05-20 18:19:22 +00001124 MCStreamer::EmitWin64EHSaveReg(Register, Offset);
1125
Charles Davis4cd88562011-05-19 17:46:39 +00001126 OS << "\t.seh_savereg " << Register << ", " << Offset;
1127 EmitEOL();
1128}
1129
Charles Davis7e6e8952011-05-19 19:35:55 +00001130void MCAsmStreamer::EmitWin64EHSaveXMM(unsigned Register, unsigned Offset) {
Charles Davis9a115a42011-05-20 18:19:22 +00001131 MCStreamer::EmitWin64EHSaveXMM(Register, Offset);
1132
Charles Davis4cd88562011-05-19 17:46:39 +00001133 OS << "\t.seh_savexmm " << Register << ", " << Offset;
Charles Davis8d9c9902011-05-18 04:58:05 +00001134 EmitEOL();
1135}
1136
Charles Davis27117af2011-05-18 22:13:51 +00001137void MCAsmStreamer::EmitWin64EHPushFrame(bool Code) {
Charles Davis9a115a42011-05-20 18:19:22 +00001138 MCStreamer::EmitWin64EHPushFrame(Code);
1139
Charles Davis4cd88562011-05-19 17:46:39 +00001140 OS << "\t.seh_pushframe";
Charles Davis8d9c9902011-05-18 04:58:05 +00001141 if (Code)
Charles Davis4cd88562011-05-19 17:46:39 +00001142 OS << " @code";
Charles Davis8d9c9902011-05-18 04:58:05 +00001143 EmitEOL();
1144}
1145
Charles Davis27117af2011-05-18 22:13:51 +00001146void MCAsmStreamer::EmitWin64EHEndProlog(void) {
Charles Davis9a115a42011-05-20 18:19:22 +00001147 MCStreamer::EmitWin64EHEndProlog();
1148
Charles Davis4cd88562011-05-19 17:46:39 +00001149 OS << "\t.seh_endprologue";
Charles Davis8d9c9902011-05-18 04:58:05 +00001150 EmitEOL();
1151}
1152
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001153void MCAsmStreamer::AddEncodingComment(const MCInst &Inst) {
1154 raw_ostream &OS = GetCommentOS();
1155 SmallString<256> Code;
1156 SmallVector<MCFixup, 4> Fixups;
1157 raw_svector_ostream VecOS(Code);
1158 Emitter->EncodeInstruction(Inst, VecOS, Fixups);
1159 VecOS.flush();
Chris Lattner601ef332010-01-25 18:58:59 +00001160
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001161 // If we are showing fixups, create symbolic markers in the encoded
1162 // representation. We do this by making a per-bit map to the fixup item index,
1163 // then trying to display it as nicely as possible.
Daniel Dunbar75c9a4e2010-02-10 01:41:14 +00001164 SmallVector<uint8_t, 64> FixupMap;
1165 FixupMap.resize(Code.size() * 8);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001166 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
1167 FixupMap[i] = 0;
1168
1169 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1170 MCFixup &F = Fixups[i];
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +00001171 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001172 for (unsigned j = 0; j != Info.TargetSize; ++j) {
1173 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j;
1174 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
1175 FixupMap[Index] = 1 + i;
1176 }
1177 }
1178
Evan Cheng15bc70f2011-07-08 22:49:42 +00001179 // FIXME: Note the fixup comments for Thumb2 are completely bogus since the
Evan Cheng52899a92011-01-13 23:27:39 +00001180 // high order halfword of a 32-bit Thumb2 instruction is emitted first.
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001181 OS << "encoding: [";
1182 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
1183 if (i)
1184 OS << ',';
1185
1186 // See if all bits are the same map entry.
1187 uint8_t MapEntry = FixupMap[i * 8 + 0];
1188 for (unsigned j = 1; j != 8; ++j) {
1189 if (FixupMap[i * 8 + j] == MapEntry)
1190 continue;
1191
1192 MapEntry = uint8_t(~0U);
1193 break;
1194 }
1195
1196 if (MapEntry != uint8_t(~0U)) {
1197 if (MapEntry == 0) {
1198 OS << format("0x%02x", uint8_t(Code[i]));
1199 } else {
Evan Cheng0447d302011-01-13 21:45:26 +00001200 if (Code[i]) {
Evan Cheng52899a92011-01-13 23:27:39 +00001201 // FIXME: Some of the 8 bits require fix up.
Evan Cheng0447d302011-01-13 21:45:26 +00001202 OS << format("0x%02x", uint8_t(Code[i])) << '\''
1203 << char('A' + MapEntry - 1) << '\'';
1204 } else
1205 OS << char('A' + MapEntry - 1);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001206 }
1207 } else {
1208 // Otherwise, write out in binary.
1209 OS << "0b";
Jay Foad61ea0e42011-06-23 09:09:15 +00001210 for (unsigned j = 8; j--;) {
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001211 unsigned Bit = (Code[i] >> j) & 1;
NAKAMURA Takumiaf669802011-03-27 01:44:40 +00001212
Chris Lattner9e7d8c02010-11-15 05:56:19 +00001213 unsigned FixupBit;
Evan Chenga83b37a2011-07-15 02:09:41 +00001214 if (getContext().getAsmInfo().isLittleEndian())
Chris Lattner9e7d8c02010-11-15 05:56:19 +00001215 FixupBit = i * 8 + j;
1216 else
1217 FixupBit = i * 8 + (7-j);
NAKAMURA Takumiaf669802011-03-27 01:44:40 +00001218
Jay Foad61ea0e42011-06-23 09:09:15 +00001219 if (uint8_t MapEntry = FixupMap[FixupBit]) {
1220 assert(Bit == 0 && "Encoder wrote into fixed up bit!");
1221 OS << char('A' + MapEntry - 1);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001222 } else
1223 OS << Bit;
1224 }
1225 }
1226 }
1227 OS << "]\n";
1228
1229 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1230 MCFixup &F = Fixups[i];
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +00001231 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001232 OS << " fixup " << char('A' + i) << " - " << "offset: " << F.getOffset()
Daniel Dunbar60547442010-02-10 04:47:08 +00001233 << ", value: " << *F.getValue() << ", kind: " << Info.Name << "\n";
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001234 }
1235}
1236
Anton Korobeynikova7ec2dc2011-03-05 18:43:15 +00001237void MCAsmStreamer::EmitFnStart() {
1238 OS << "\t.fnstart";
1239 EmitEOL();
1240}
1241
1242void MCAsmStreamer::EmitFnEnd() {
1243 OS << "\t.fnend";
1244 EmitEOL();
1245}
1246
1247void MCAsmStreamer::EmitCantUnwind() {
1248 OS << "\t.cantunwind";
1249 EmitEOL();
1250}
1251
1252void MCAsmStreamer::EmitHandlerData() {
1253 OS << "\t.handlerdata";
1254 EmitEOL();
1255}
1256
1257void MCAsmStreamer::EmitPersonality(const MCSymbol *Personality) {
1258 OS << "\t.personality " << Personality->getName();
1259 EmitEOL();
1260}
1261
Anton Korobeynikove7410dd2011-03-05 18:43:32 +00001262void MCAsmStreamer::EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset) {
Rafael Espindolad6860522011-06-02 02:34:55 +00001263 OS << "\t.setfp\t";
1264 InstPrinter->printRegName(OS, FpReg);
1265 OS << ", ";
1266 InstPrinter->printRegName(OS, SpReg);
Anton Korobeynikove7410dd2011-03-05 18:43:32 +00001267 if (Offset)
1268 OS << ", #" << Offset;
1269 EmitEOL();
1270}
1271
1272void MCAsmStreamer::EmitPad(int64_t Offset) {
1273 OS << "\t.pad\t#" << Offset;
1274 EmitEOL();
1275}
1276
1277void MCAsmStreamer::EmitRegSave(const SmallVectorImpl<unsigned> &RegList,
1278 bool isVector) {
1279 assert(RegList.size() && "RegList should not be empty");
1280 if (isVector)
1281 OS << "\t.vsave\t{";
1282 else
1283 OS << "\t.save\t{";
1284
Rafael Espindolad6860522011-06-02 02:34:55 +00001285 InstPrinter->printRegName(OS, RegList[0]);
Anton Korobeynikove7410dd2011-03-05 18:43:32 +00001286
Rafael Espindolad6860522011-06-02 02:34:55 +00001287 for (unsigned i = 1, e = RegList.size(); i != e; ++i) {
1288 OS << ", ";
1289 InstPrinter->printRegName(OS, RegList[i]);
1290 }
Anton Korobeynikove7410dd2011-03-05 18:43:32 +00001291
1292 OS << "}";
1293 EmitEOL();
1294}
1295
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001296void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
Rafael Espindola58ac6e12011-02-16 01:08:29 +00001297 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Daniel Dunbar9a0a4612010-02-09 23:00:14 +00001298
1299 // Show the encoding in a comment if we have a code emitter.
1300 if (Emitter)
1301 AddEncodingComment(Inst);
1302
Chris Lattner89261502010-02-09 00:54:51 +00001303 // Show the MCInst if enabled.
Daniel Dunbar3627af52010-05-26 15:18:13 +00001304 if (ShowInst) {
Daniel Dunbar04047fb2010-03-22 21:49:34 +00001305 Inst.dump_pretty(GetCommentOS(), &MAI, InstPrinter.get(), "\n ");
Daniel Dunbar3627af52010-05-26 15:18:13 +00001306 GetCommentOS() << "\n";
1307 }
1308
Daniel Dunbar04047fb2010-03-22 21:49:34 +00001309 // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
Daniel Dunbare3ee3322010-02-03 18:18:30 +00001310 if (InstPrinter)
Owen Andersona0c3b972011-09-15 23:38:46 +00001311 InstPrinter->printInst(&Inst, OS, "");
Daniel Dunbare3ee3322010-02-03 18:18:30 +00001312 else
1313 Inst.print(OS, &MAI);
Chris Lattnercfa5ebc32010-01-22 07:36:39 +00001314 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +00001315}
1316
Jim Grosbach6ebd7282010-09-22 18:18:30 +00001317/// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner8a87fb72010-04-03 21:35:55 +00001318/// the specified string in the output .s file. This capability is
1319/// indicated by the hasRawTextSupport() predicate.
1320void MCAsmStreamer::EmitRawText(StringRef String) {
Chris Lattneraca014e2010-04-03 22:06:56 +00001321 if (!String.empty() && String.back() == '\n')
1322 String = String.substr(0, String.size()-1);
Chris Lattner8a87fb72010-04-03 21:35:55 +00001323 OS << String;
Chris Lattneraca014e2010-04-03 22:06:56 +00001324 EmitEOL();
Chris Lattner8a87fb72010-04-03 21:35:55 +00001325}
1326
Rafael Espindola07082092012-01-07 03:13:18 +00001327void MCAsmStreamer::FinishImpl() {
Rafael Espindolac22c85c2012-02-28 21:13:05 +00001328 // FIXME: This header is duplicated with MCObjectStreamer
Rafael Espindolab58867c2010-11-19 02:26:16 +00001329 // Dump out the dwarf file & directory tables and line tables.
Rafael Espindolac7ecbfb2012-03-03 14:24:15 +00001330 const MCSymbol *LineSectionSymbol = NULL;
Rafael Espindola0a017a62010-12-10 07:39:47 +00001331 if (getContext().hasDwarfFiles() && !UseLoc)
Rafael Espindolac22c85c2012-02-28 21:13:05 +00001332 LineSectionSymbol = MCDwarfFileTable::Emit(this);
Rafael Espindola750cb612011-05-01 04:49:54 +00001333
Kevin Enderbye7739d42011-12-09 18:09:40 +00001334 // If we are generating dwarf for assembly source files dump out the sections.
1335 if (getContext().getGenDwarfForAssembly())
Rafael Espindolac22c85c2012-02-28 21:13:05 +00001336 MCGenDwarfInfo::Emit(this, LineSectionSymbol);
Kevin Enderbye7739d42011-12-09 18:09:40 +00001337
Rafael Espindolab6089d62011-05-10 03:14:15 +00001338 if (!UseCFI)
1339 EmitFrames(false);
Daniel Dunbar9faf2732009-06-24 01:03:06 +00001340}
Chris Lattner38e92192010-01-22 07:29:22 +00001341MCStreamer *llvm::createAsmStreamer(MCContext &Context,
1342 formatted_raw_ostream &OS,
Rafael Espindola0a017a62010-12-10 07:39:47 +00001343 bool isVerboseAsm, bool useLoc,
Nick Lewycky40f8f2f2011-10-17 23:05:28 +00001344 bool useCFI, bool useDwarfDirectory,
1345 MCInstPrinter *IP, MCCodeEmitter *CE,
1346 MCAsmBackend *MAB, bool ShowInst) {
Rafael Espindolaa3181d12011-04-30 03:44:37 +00001347 return new MCAsmStreamer(Context, OS, isVerboseAsm, useLoc, useCFI,
Nick Lewycky40f8f2f2011-10-17 23:05:28 +00001348 useDwarfDirectory, IP, CE, MAB, ShowInst);
Daniel Dunbar9faf2732009-06-24 01:03:06 +00001349}