blob: d5d08e8f69fbc1a7a937f9a5e5f891a59dcf6b5d [file] [log] [blame]
Daniel Dunbara11af532009-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 Dunbar8c2eebe2009-08-31 08:08:38 +000011#include "llvm/MC/MCAsmInfo.h"
Daniel Dunbar4a0abd82009-08-27 00:51:57 +000012#include "llvm/MC/MCCodeEmitter.h"
Daniel Dunbara11af532009-06-24 01:03:06 +000013#include "llvm/MC/MCContext.h"
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +000014#include "llvm/MC/MCExpr.h"
Daniel Dunbar2761fc42010-12-16 03:20:06 +000015#include "llvm/MC/MCFixupKindInfo.h"
Daniel Dunbarabde2982009-07-01 06:35:03 +000016#include "llvm/MC/MCInst.h"
Chris Lattner90edac02009-09-14 03:02:37 +000017#include "llvm/MC/MCInstPrinter.h"
Chris Lattnerf9bdedd2009-08-10 18:15:01 +000018#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbara11af532009-06-24 01:03:06 +000019#include "llvm/MC/MCSymbol.h"
Chris Lattner4c42a6d2010-03-19 05:48:53 +000020#include "llvm/ADT/OwningPtr.h"
Chris Lattner86e22112010-01-22 07:29:22 +000021#include "llvm/ADT/SmallString.h"
Bill Wendling916a94b2011-06-17 20:35:21 +000022#include "llvm/ADT/StringExtras.h"
Chris Lattner86e22112010-01-22 07:29:22 +000023#include "llvm/ADT/Twine.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000024#include "llvm/Support/ErrorHandling.h"
Chris Lattner663c2d22009-08-19 06:12:02 +000025#include "llvm/Support/MathExtras.h"
Daniel Dunbar4a0abd82009-08-27 00:51:57 +000026#include "llvm/Support/Format.h"
Chris Lattner86e22112010-01-22 07:29:22 +000027#include "llvm/Support/FormattedStream.h"
Daniel Dunbar745dacc2010-12-16 03:05:59 +000028#include "llvm/Target/TargetAsmBackend.h"
Rafael Espindola89b93722010-12-10 07:39:47 +000029#include "llvm/Target/TargetAsmInfo.h"
Daniel Dunbar745dacc2010-12-16 03:05:59 +000030#include "llvm/Target/TargetLoweringObjectFile.h"
Nick Lewycky476b2422010-12-19 20:43:38 +000031#include <cctype>
Daniel Dunbara11af532009-06-24 01:03:06 +000032using namespace llvm;
33
34namespace {
35
Chris Lattner46a947d2009-08-17 04:17:34 +000036class MCAsmStreamer : public MCStreamer {
Bill Wendling916a94b2011-06-17 20:35:21 +000037protected:
Chris Lattner86e22112010-01-22 07:29:22 +000038 formatted_raw_ostream &OS;
Chris Lattner33adcfb2009-08-22 21:43:10 +000039 const MCAsmInfo &MAI;
Bill Wendling916a94b2011-06-17 20:35:21 +000040private:
Chris Lattner4c42a6d2010-03-19 05:48:53 +000041 OwningPtr<MCInstPrinter> InstPrinter;
Benjamin Kramer1abcd062010-07-29 17:48:06 +000042 OwningPtr<MCCodeEmitter> Emitter;
Daniel Dunbar745dacc2010-12-16 03:05:59 +000043 OwningPtr<TargetAsmBackend> AsmBackend;
Jim Grosbach00545e12010-09-22 18:16:55 +000044
Chris Lattner86e22112010-01-22 07:29:22 +000045 SmallString<128> CommentToEmit;
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000046 raw_svector_ostream CommentStream;
Daniel Dunbar9dee8e32010-02-03 18:18:30 +000047
Daniel Dunbar9dee8e32010-02-03 18:18:30 +000048 unsigned IsVerboseAsm : 1;
49 unsigned ShowInst : 1;
Rafael Espindola89b93722010-12-10 07:39:47 +000050 unsigned UseLoc : 1;
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +000051 unsigned UseCFI : 1;
Daniel Dunbar9dee8e32010-02-03 18:18:30 +000052
Rafael Espindola277abc82011-04-30 16:34:57 +000053 enum EHSymbolFlags { EHGlobal = 1,
54 EHWeakDefinition = 1 << 1,
55 EHPrivateExtern = 1 << 2 };
56 DenseMap<const MCSymbol*, unsigned> FlagMap;
57
Rafael Espindola5d4918d2010-12-04 03:21:47 +000058 bool needsSet(const MCExpr *Value);
59
Rafael Espindola6e032942011-05-30 20:20:15 +000060 void EmitRegisterName(int64_t Register);
61
Chris Lattner46a947d2009-08-17 04:17:34 +000062public:
Chris Lattner86e22112010-01-22 07:29:22 +000063 MCAsmStreamer(MCContext &Context, formatted_raw_ostream &os,
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +000064 bool isVerboseAsm, bool useLoc, bool useCFI,
Daniel Dunbar745dacc2010-12-16 03:05:59 +000065 MCInstPrinter *printer, MCCodeEmitter *emitter,
66 TargetAsmBackend *asmbackend,
67 bool showInst)
Chris Lattnerfdab14b2010-03-12 18:28:53 +000068 : MCStreamer(Context), OS(os), MAI(Context.getAsmInfo()),
Daniel Dunbar745dacc2010-12-16 03:05:59 +000069 InstPrinter(printer), Emitter(emitter), AsmBackend(asmbackend),
70 CommentStream(CommentToEmit), IsVerboseAsm(isVerboseAsm),
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +000071 ShowInst(showInst), UseLoc(useLoc), UseCFI(useCFI) {
Chris Lattner5d672cf2010-02-10 00:10:18 +000072 if (InstPrinter && IsVerboseAsm)
73 InstPrinter->setCommentStream(CommentStream);
74 }
Chris Lattner46a947d2009-08-17 04:17:34 +000075 ~MCAsmStreamer() {}
Daniel Dunbara11af532009-06-24 01:03:06 +000076
Chris Lattner86e22112010-01-22 07:29:22 +000077 inline void EmitEOL() {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000078 // If we don't have any comments, just emit a \n.
79 if (!IsVerboseAsm) {
Chris Lattner86e22112010-01-22 07:29:22 +000080 OS << '\n';
81 return;
82 }
83 EmitCommentsAndEOL();
84 }
85 void EmitCommentsAndEOL();
Chris Lattner56591ab2010-02-02 23:37:42 +000086
87 /// isVerboseAsm - Return true if this streamer supports verbose assembly at
88 /// all.
89 virtual bool isVerboseAsm() const { return IsVerboseAsm; }
Jim Grosbach00545e12010-09-22 18:16:55 +000090
Chris Lattner91bead72010-04-03 21:35:55 +000091 /// hasRawTextSupport - We support EmitRawText.
92 virtual bool hasRawTextSupport() const { return true; }
Daniel Dunbar6b716532010-02-09 23:00:14 +000093
Chris Lattnerd32c7cf2010-01-22 18:21:35 +000094 /// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner86e22112010-01-22 07:29:22 +000095 /// file if applicable as a QoI issue to make the output of the compiler
96 /// more readable. This only affects the MCAsmStreamer, and only when
97 /// verbose assembly output is enabled.
Chris Lattnerd32c7cf2010-01-22 18:21:35 +000098 virtual void AddComment(const Twine &T);
Daniel Dunbar6b716532010-02-09 23:00:14 +000099
100 /// AddEncodingComment - Add a comment showing the encoding of an instruction.
101 virtual void AddEncodingComment(const MCInst &Inst);
102
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000103 /// GetCommentOS - Return a raw_ostream that comments can be written to.
104 /// Unlike AddComment, you are required to terminate comments with \n if you
105 /// use this method.
106 virtual raw_ostream &GetCommentOS() {
107 if (!IsVerboseAsm)
108 return nulls(); // Discard comments unless in verbose asm mode.
109 return CommentStream;
110 }
Daniel Dunbar6b716532010-02-09 23:00:14 +0000111
Chris Lattner0fd90fd2010-01-22 19:52:01 +0000112 /// AddBlankLine - Emit a blank line to a .s file to pretty it up.
113 virtual void AddBlankLine() {
114 EmitEOL();
115 }
Daniel Dunbar6b716532010-02-09 23:00:14 +0000116
Chris Lattner46a947d2009-08-17 04:17:34 +0000117 /// @name MCStreamer Interface
118 /// @{
Daniel Dunbara11af532009-06-24 01:03:06 +0000119
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000120 virtual void ChangeSection(const MCSection *Section);
Daniel Dunbara11af532009-06-24 01:03:06 +0000121
Rafael Espindolad80781b2010-09-15 21:48:40 +0000122 virtual void InitSections() {
123 // FIXME, this is MachO specific, but the testsuite
124 // expects this.
125 SwitchSection(getContext().getMachOSection("__TEXT", "__text",
126 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
127 0, SectionKind::getText()));
128 }
129
Chris Lattner46a947d2009-08-17 04:17:34 +0000130 virtual void EmitLabel(MCSymbol *Symbol);
Rafael Espindola277abc82011-04-30 16:34:57 +0000131 virtual void EmitEHSymAttributes(const MCSymbol *Symbol,
132 MCSymbol *EHSymbol);
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000133 virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
Jim Grosbachce792992010-11-05 22:08:08 +0000134 virtual void EmitThumbFunc(MCSymbol *Func);
Daniel Dunbara11af532009-06-24 01:03:06 +0000135
Daniel Dunbar821e3332009-08-31 08:09:28 +0000136 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
Rafael Espindola484291c2010-11-01 14:28:48 +0000137 virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
Rafael Espindola32a006e2010-12-03 00:55:40 +0000138 virtual void EmitDwarfAdvanceLineAddr(int64_t LineDelta,
139 const MCSymbol *LastLabel,
Evan Cheng672b93a2011-07-14 05:43:07 +0000140 const MCSymbol *Label,
141 unsigned PointerSize);
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000142 virtual void EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
143 const MCSymbol *Label);
Daniel Dunbara11af532009-06-24 01:03:06 +0000144
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000145 virtual void EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
Kevin Enderbya5c78322009-07-13 21:03:15 +0000146
Chris Lattner46a947d2009-08-17 04:17:34 +0000147 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
Chris Lattnerb54b9dd2010-05-08 19:54:22 +0000148 virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol);
149 virtual void EmitCOFFSymbolStorageClass(int StorageClass);
150 virtual void EmitCOFFSymbolType(int Type);
151 virtual void EndCOFFSymbolDef();
Chris Lattner99328ad2010-01-25 07:52:13 +0000152 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
Chris Lattner9eb158d2010-01-23 07:47:02 +0000153 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000154 unsigned ByteAlignment);
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000155
Chris Lattner9eb158d2010-01-23 07:47:02 +0000156 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
157 ///
158 /// @param Symbol - The common symbol to emit.
159 /// @param Size - The size of the common symbol.
160 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size);
Jim Grosbach00545e12010-09-22 18:16:55 +0000161
Daniel Dunbar8751b942009-08-28 05:48:22 +0000162 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000163 unsigned Size = 0, unsigned ByteAlignment = 0);
Kevin Enderby71148242009-07-14 21:35:03 +0000164
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000165 virtual void EmitTBSSSymbol (const MCSection *Section, MCSymbol *Symbol,
166 uint64_t Size, unsigned ByteAlignment = 0);
Jim Grosbach00545e12010-09-22 18:16:55 +0000167
Chris Lattneraaec2052010-01-19 19:46:13 +0000168 virtual void EmitBytes(StringRef Data, unsigned AddrSpace);
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000169
Rafael Espindola89b93722010-12-10 07:39:47 +0000170 virtual void EmitValueImpl(const MCExpr *Value, unsigned Size,
Rafael Espindoladebd7e42011-05-01 03:50:49 +0000171 unsigned AddrSpace);
Rafael Espindola2df042c2010-12-03 02:54:21 +0000172 virtual void EmitIntValue(uint64_t Value, unsigned Size,
173 unsigned AddrSpace = 0);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000174
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000175 virtual void EmitULEB128Value(const MCExpr *Value);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000176
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000177 virtual void EmitSLEB128Value(const MCExpr *Value);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000178
Chris Lattner718fb592010-01-25 21:28:50 +0000179 virtual void EmitGPRel32Value(const MCExpr *Value);
Jim Grosbach00545e12010-09-22 18:16:55 +0000180
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000181
Chris Lattneraaec2052010-01-19 19:46:13 +0000182 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue,
183 unsigned AddrSpace);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000184
Chris Lattner46a947d2009-08-17 04:17:34 +0000185 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
186 unsigned ValueSize = 1,
187 unsigned MaxBytesToEmit = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000188
Kevin Enderby6e720482010-02-23 18:26:34 +0000189 virtual void EmitCodeAlignment(unsigned ByteAlignment,
190 unsigned MaxBytesToEmit = 0);
191
Daniel Dunbar821e3332009-08-31 08:09:28 +0000192 virtual void EmitValueToOffset(const MCExpr *Offset,
Chris Lattner46a947d2009-08-17 04:17:34 +0000193 unsigned char Value = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000194
Chris Lattnera6594fc2010-01-25 18:58:59 +0000195 virtual void EmitFileDirective(StringRef Filename);
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000196 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Filename);
197 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
198 unsigned Column, unsigned Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +0000199 unsigned Isa, unsigned Discriminator,
200 StringRef FileName);
Chris Lattnera6594fc2010-01-25 18:58:59 +0000201
Rafael Espindola713c4bf2011-05-10 13:39:48 +0000202 virtual void EmitCFISections(bool EH, bool Debug);
Rafael Espindola066c2f42011-04-12 23:59:07 +0000203 virtual void EmitCFIStartProc();
204 virtual void EmitCFIEndProc();
205 virtual void EmitCFIDefCfa(int64_t Register, int64_t Offset);
206 virtual void EmitCFIDefCfaOffset(int64_t Offset);
207 virtual void EmitCFIDefCfaRegister(int64_t Register);
208 virtual void EmitCFIOffset(int64_t Register, int64_t Offset);
209 virtual void EmitCFIPersonality(const MCSymbol *Sym, unsigned Encoding);
210 virtual void EmitCFILsda(const MCSymbol *Sym, unsigned Encoding);
211 virtual void EmitCFIRememberState();
212 virtual void EmitCFIRestoreState();
213 virtual void EmitCFISameValue(int64_t Register);
214 virtual void EmitCFIRelOffset(int64_t Register, int64_t Offset);
215 virtual void EmitCFIAdjustCfaOffset(int64_t Adjustment);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000216
Charles Davisfbc539f2011-05-22 21:12:15 +0000217 virtual void EmitWin64EHStartProc(const MCSymbol *Symbol);
Charles Davis0e30f022011-05-18 04:58:05 +0000218 virtual void EmitWin64EHEndProc();
Charles Davisf0709012011-05-18 20:54:10 +0000219 virtual void EmitWin64EHStartChained();
220 virtual void EmitWin64EHEndChained();
Charles Davis440596f2011-05-19 17:46:39 +0000221 virtual void EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
222 bool Except);
223 virtual void EmitWin64EHHandlerData();
Charles Davisc3b16282011-05-19 19:35:55 +0000224 virtual void EmitWin64EHPushReg(unsigned Register);
225 virtual void EmitWin64EHSetFrame(unsigned Register, unsigned Offset);
226 virtual void EmitWin64EHAllocStack(unsigned Size);
227 virtual void EmitWin64EHSaveReg(unsigned Register, unsigned Offset);
228 virtual void EmitWin64EHSaveXMM(unsigned Register, unsigned Offset);
Charles Davis0e30f022011-05-18 04:58:05 +0000229 virtual void EmitWin64EHPushFrame(bool Code);
230 virtual void EmitWin64EHEndProlog();
231
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000232 virtual void EmitFnStart();
233 virtual void EmitFnEnd();
234 virtual void EmitCantUnwind();
235 virtual void EmitPersonality(const MCSymbol *Personality);
236 virtual void EmitHandlerData();
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000237 virtual void EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset = 0);
238 virtual void EmitPad(int64_t Offset);
239 virtual void EmitRegSave(const SmallVectorImpl<unsigned> &RegList, bool);
240
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000241
Chris Lattnera6594fc2010-01-25 18:58:59 +0000242 virtual void EmitInstruction(const MCInst &Inst);
Jim Grosbach00545e12010-09-22 18:16:55 +0000243
Jim Grosbachbd4ec842010-09-22 18:18:30 +0000244 /// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +0000245 /// the specified string in the output .s file. This capability is
246 /// indicated by the hasRawTextSupport() predicate.
247 virtual void EmitRawText(StringRef String);
Jim Grosbach00545e12010-09-22 18:16:55 +0000248
Chris Lattner46a947d2009-08-17 04:17:34 +0000249 virtual void Finish();
Jim Grosbach00545e12010-09-22 18:16:55 +0000250
Chris Lattner46a947d2009-08-17 04:17:34 +0000251 /// @}
252};
Daniel Dunbar84a29262009-06-24 19:25:34 +0000253
Chris Lattner46a947d2009-08-17 04:17:34 +0000254} // end anonymous namespace.
Daniel Dunbara11af532009-06-24 01:03:06 +0000255
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000256/// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner86e22112010-01-22 07:29:22 +0000257/// file if applicable as a QoI issue to make the output of the compiler
258/// more readable. This only affects the MCAsmStreamer, and only when
259/// verbose assembly output is enabled.
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000260void MCAsmStreamer::AddComment(const Twine &T) {
Chris Lattner86e22112010-01-22 07:29:22 +0000261 if (!IsVerboseAsm) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000262
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000263 // Make sure that CommentStream is flushed.
264 CommentStream.flush();
Jim Grosbach00545e12010-09-22 18:16:55 +0000265
Chris Lattner86e22112010-01-22 07:29:22 +0000266 T.toVector(CommentToEmit);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000267 // Each comment goes on its own line.
268 CommentToEmit.push_back('\n');
Jim Grosbach00545e12010-09-22 18:16:55 +0000269
Chris Lattner14ca1772010-01-22 21:16:10 +0000270 // Tell the comment stream that the vector changed underneath it.
271 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000272}
273
274void MCAsmStreamer::EmitCommentsAndEOL() {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000275 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) {
276 OS << '\n';
277 return;
278 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000279
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000280 CommentStream.flush();
Chris Lattner86e22112010-01-22 07:29:22 +0000281 StringRef Comments = CommentToEmit.str();
Jim Grosbach00545e12010-09-22 18:16:55 +0000282
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000283 assert(Comments.back() == '\n' &&
284 "Comment array not newline terminated");
285 do {
Chris Lattner86e22112010-01-22 07:29:22 +0000286 // Emit a line of comments.
287 OS.PadToColumn(MAI.getCommentColumn());
288 size_t Position = Comments.find('\n');
289 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
Jim Grosbach00545e12010-09-22 18:16:55 +0000290
Chris Lattner86e22112010-01-22 07:29:22 +0000291 Comments = Comments.substr(Position+1);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000292 } while (!Comments.empty());
Jim Grosbach00545e12010-09-22 18:16:55 +0000293
Chris Lattner14ca1772010-01-22 21:16:10 +0000294 CommentToEmit.clear();
295 // Tell the comment stream that the vector changed underneath it.
296 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000297}
298
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000299static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
300 assert(Bytes && "Invalid size!");
301 return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
302}
303
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000304void MCAsmStreamer::ChangeSection(const MCSection *Section) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000305 assert(Section && "Cannot switch to a null section!");
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000306 Section->PrintSwitchToSection(MAI, OS);
Daniel Dunbara11af532009-06-24 01:03:06 +0000307}
308
Rafael Espindola277abc82011-04-30 16:34:57 +0000309void MCAsmStreamer::EmitEHSymAttributes(const MCSymbol *Symbol,
310 MCSymbol *EHSymbol) {
311 if (UseCFI)
312 return;
313
314 unsigned Flags = FlagMap.lookup(Symbol);
315
316 if (Flags & EHGlobal)
317 EmitSymbolAttribute(EHSymbol, MCSA_Global);
318 if (Flags & EHWeakDefinition)
319 EmitSymbolAttribute(EHSymbol, MCSA_WeakDefinition);
320 if (Flags & EHPrivateExtern)
321 EmitSymbolAttribute(EHSymbol, MCSA_PrivateExtern);
322}
323
Daniel Dunbara11af532009-06-24 01:03:06 +0000324void MCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
Daniel Dunbar8906ff12009-08-22 07:22:36 +0000325 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Rafael Espindolaed708f92011-04-27 15:21:19 +0000326 MCStreamer::EmitLabel(Symbol);
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000327
Chris Lattnere07b75e2010-09-22 22:19:53 +0000328 OS << *Symbol << MAI.getLabelSuffix();
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000329 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000330}
331
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000332void MCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
Kevin Enderbyf96db462009-07-16 17:56:39 +0000333 switch (Flag) {
Daniel Dunbar011e4db2009-08-13 23:36:34 +0000334 default: assert(0 && "Invalid flag!");
Jason W Kimafd1cc22010-09-30 02:45:56 +0000335 case MCAF_SyntaxUnified: OS << "\t.syntax unified"; break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000336 case MCAF_SubsectionsViaSymbols: OS << ".subsections_via_symbols"; break;
Jim Grosbachce792992010-11-05 22:08:08 +0000337 case MCAF_Code16: OS << "\t.code\t16"; break;
Jim Grosbachba219572010-11-05 22:40:09 +0000338 case MCAF_Code32: OS << "\t.code\t32"; break;
Kevin Enderbyf96db462009-07-16 17:56:39 +0000339 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000340 EmitEOL();
Kevin Enderbya5c78322009-07-13 21:03:15 +0000341}
342
Jim Grosbachce792992010-11-05 22:08:08 +0000343void MCAsmStreamer::EmitThumbFunc(MCSymbol *Func) {
344 // This needs to emit to a temporary string to get properly quoted
345 // MCSymbols when they have spaces in them.
346 OS << "\t.thumb_func";
Rafael Espindola64695402011-05-16 16:17:21 +0000347 // Only Mach-O hasSubsectionsViaSymbols()
348 if (MAI.hasSubsectionsViaSymbols())
Jim Grosbachce792992010-11-05 22:08:08 +0000349 OS << '\t' << *Func;
350 EmitEOL();
351}
352
Daniel Dunbar821e3332009-08-31 08:09:28 +0000353void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000354 OS << *Symbol << " = " << *Value;
355 EmitEOL();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000356
357 // FIXME: Lift context changes into super class.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000358 Symbol->setVariableValue(Value);
Daniel Dunbara11af532009-06-24 01:03:06 +0000359}
360
Rafael Espindola484291c2010-11-01 14:28:48 +0000361void MCAsmStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
362 OS << ".weakref " << *Alias << ", " << *Symbol;
363 EmitEOL();
364}
365
Rafael Espindola32a006e2010-12-03 00:55:40 +0000366void MCAsmStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
367 const MCSymbol *LastLabel,
Evan Cheng672b93a2011-07-14 05:43:07 +0000368 const MCSymbol *Label,
369 unsigned PointerSize) {
370 EmitDwarfSetLineAddr(LineDelta, Label, PointerSize);
Rafael Espindola32a006e2010-12-03 00:55:40 +0000371}
372
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000373void MCAsmStreamer::EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
374 const MCSymbol *Label) {
375 EmitIntValue(dwarf::DW_CFA_advance_loc4, 1);
376 const MCExpr *AddrDelta = BuildSymbolDiff(getContext(), Label, LastLabel);
Rafael Espindolaa6f26782011-05-19 21:40:34 +0000377 AddrDelta = ForceExpAbs(AddrDelta);
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000378 EmitValue(AddrDelta, 4);
379}
380
381
Daniel Dunbarfffff912009-10-16 01:34:54 +0000382void MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000383 MCSymbolAttr Attribute) {
Daniel Dunbara11af532009-06-24 01:03:06 +0000384 switch (Attribute) {
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000385 case MCSA_Invalid: assert(0 && "Invalid symbol attribute");
Chris Lattnered0ab152010-01-25 18:30:45 +0000386 case MCSA_ELF_TypeFunction: /// .type _foo, STT_FUNC # aka @function
387 case MCSA_ELF_TypeIndFunction: /// .type _foo, STT_GNU_IFUNC
388 case MCSA_ELF_TypeObject: /// .type _foo, STT_OBJECT # aka @object
389 case MCSA_ELF_TypeTLS: /// .type _foo, STT_TLS # aka @tls_object
390 case MCSA_ELF_TypeCommon: /// .type _foo, STT_COMMON # aka @common
391 case MCSA_ELF_TypeNoType: /// .type _foo, STT_NOTYPE # aka @notype
Rafael Espindolae9c0ff22010-11-13 04:55:06 +0000392 case MCSA_ELF_TypeGnuUniqueObject: /// .type _foo, @gnu_unique_object
Chris Lattnered0ab152010-01-25 18:30:45 +0000393 assert(MAI.hasDotTypeDotSizeDirective() && "Symbol Attr not supported");
Dan Gohman523d70e2010-02-04 01:42:13 +0000394 OS << "\t.type\t" << *Symbol << ','
Chris Lattnered0ab152010-01-25 18:30:45 +0000395 << ((MAI.getCommentString()[0] != '@') ? '@' : '%');
396 switch (Attribute) {
397 default: assert(0 && "Unknown ELF .type");
398 case MCSA_ELF_TypeFunction: OS << "function"; break;
399 case MCSA_ELF_TypeIndFunction: OS << "gnu_indirect_function"; break;
400 case MCSA_ELF_TypeObject: OS << "object"; break;
401 case MCSA_ELF_TypeTLS: OS << "tls_object"; break;
402 case MCSA_ELF_TypeCommon: OS << "common"; break;
403 case MCSA_ELF_TypeNoType: OS << "no_type"; break;
Rafael Espindolae9c0ff22010-11-13 04:55:06 +0000404 case MCSA_ELF_TypeGnuUniqueObject: OS << "gnu_unique_object"; break;
Chris Lattnered0ab152010-01-25 18:30:45 +0000405 }
406 EmitEOL();
407 return;
408 case MCSA_Global: // .globl/.global
409 OS << MAI.getGlobalDirective();
Rafael Espindola277abc82011-04-30 16:34:57 +0000410 FlagMap[Symbol] |= EHGlobal;
Chris Lattnered0ab152010-01-25 18:30:45 +0000411 break;
Chris Lattner61abd7b2010-06-21 20:35:01 +0000412 case MCSA_Hidden: OS << "\t.hidden\t"; break;
413 case MCSA_IndirectSymbol: OS << "\t.indirect_symbol\t"; break;
414 case MCSA_Internal: OS << "\t.internal\t"; break;
415 case MCSA_LazyReference: OS << "\t.lazy_reference\t"; break;
416 case MCSA_Local: OS << "\t.local\t"; break;
417 case MCSA_NoDeadStrip: OS << "\t.no_dead_strip\t"; break;
Kevin Enderbye8e98d72010-11-19 18:39:33 +0000418 case MCSA_SymbolResolver: OS << "\t.symbol_resolver\t"; break;
Rafael Espindola277abc82011-04-30 16:34:57 +0000419 case MCSA_PrivateExtern:
420 OS << "\t.private_extern\t";
421 FlagMap[Symbol] |= EHPrivateExtern;
422 break;
Chris Lattner61abd7b2010-06-21 20:35:01 +0000423 case MCSA_Protected: OS << "\t.protected\t"; break;
424 case MCSA_Reference: OS << "\t.reference\t"; break;
425 case MCSA_Weak: OS << "\t.weak\t"; break;
Rafael Espindola277abc82011-04-30 16:34:57 +0000426 case MCSA_WeakDefinition:
427 OS << "\t.weak_definition\t";
428 FlagMap[Symbol] |= EHWeakDefinition;
429 break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000430 // .weak_reference
431 case MCSA_WeakReference: OS << MAI.getWeakRefDirective(); break;
Kevin Enderbyf59cac52010-07-08 17:22:42 +0000432 case MCSA_WeakDefAutoPrivate: OS << "\t.weak_def_can_be_hidden\t"; break;
Daniel Dunbara11af532009-06-24 01:03:06 +0000433 }
434
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000435 OS << *Symbol;
436 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000437}
438
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000439void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000440 OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
441 EmitEOL();
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000442}
443
Chris Lattnerb54b9dd2010-05-08 19:54:22 +0000444void MCAsmStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {
445 OS << "\t.def\t " << *Symbol << ';';
446 EmitEOL();
447}
448
449void MCAsmStreamer::EmitCOFFSymbolStorageClass (int StorageClass) {
450 OS << "\t.scl\t" << StorageClass << ';';
451 EmitEOL();
452}
453
454void MCAsmStreamer::EmitCOFFSymbolType (int Type) {
455 OS << "\t.type\t" << Type << ';';
456 EmitEOL();
457}
458
459void MCAsmStreamer::EndCOFFSymbolDef() {
460 OS << "\t.endef";
461 EmitEOL();
462}
463
Chris Lattner99328ad2010-01-25 07:52:13 +0000464void MCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
465 assert(MAI.hasDotTypeDotSizeDirective());
466 OS << "\t.size\t" << *Symbol << ", " << *Value << '\n';
467}
468
Chris Lattner9eb158d2010-01-23 07:47:02 +0000469void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000470 unsigned ByteAlignment) {
Chris Lattner9eb158d2010-01-23 07:47:02 +0000471 OS << "\t.comm\t" << *Symbol << ',' << Size;
Chris Lattner6559d762010-01-25 07:29:13 +0000472 if (ByteAlignment != 0) {
Rafael Espindola2e2563b2010-01-26 20:21:43 +0000473 if (MAI.getCOMMDirectiveAlignmentIsInBytes())
Chris Lattner4ed54382010-01-19 06:01:04 +0000474 OS << ',' << ByteAlignment;
475 else
476 OS << ',' << Log2_32(ByteAlignment);
477 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000478 EmitEOL();
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000479}
480
Chris Lattner9eb158d2010-01-23 07:47:02 +0000481/// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
482///
483/// @param Symbol - The common symbol to emit.
484/// @param Size - The size of the common symbol.
485void MCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size) {
486 assert(MAI.hasLCOMMDirective() && "Doesn't have .lcomm, can't emit it!");
487 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
488 EmitEOL();
489}
490
Daniel Dunbar8751b942009-08-28 05:48:22 +0000491void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000492 unsigned Size, unsigned ByteAlignment) {
Daniel Dunbar011e4db2009-08-13 23:36:34 +0000493 // Note: a .zerofill directive does not switch sections.
Chris Lattner93b6db32009-08-08 23:39:42 +0000494 OS << ".zerofill ";
Jim Grosbach00545e12010-09-22 18:16:55 +0000495
Chris Lattner93b6db32009-08-08 23:39:42 +0000496 // This is a mach-o specific directive.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000497 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
Daniel Dunbar12de0df2009-08-14 18:51:45 +0000498 OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
Jim Grosbach00545e12010-09-22 18:16:55 +0000499
Chris Lattner9be3fee2009-07-10 22:20:30 +0000500 if (Symbol != NULL) {
Chris Lattner10b318b2010-01-17 21:43:43 +0000501 OS << ',' << *Symbol << ',' << Size;
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000502 if (ByteAlignment != 0)
503 OS << ',' << Log2_32(ByteAlignment);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000504 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000505 EmitEOL();
Chris Lattner9be3fee2009-07-10 22:20:30 +0000506}
507
Eric Christopherd04d98d2010-05-17 02:13:02 +0000508// .tbss sym, size, align
509// This depends that the symbol has already been mangled from the original,
510// e.g. _a.
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000511void MCAsmStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
512 uint64_t Size, unsigned ByteAlignment) {
Eric Christopher482eba02010-05-14 01:50:28 +0000513 assert(Symbol != NULL && "Symbol shouldn't be NULL!");
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000514 // Instead of using the Section we'll just use the shortcut.
515 // This is a mach-o specific directive and section.
Eric Christopherd04d98d2010-05-17 02:13:02 +0000516 OS << ".tbss " << *Symbol << ", " << Size;
Jim Grosbach00545e12010-09-22 18:16:55 +0000517
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000518 // Output align if we have it. We default to 1 so don't bother printing
519 // that.
520 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
Jim Grosbach00545e12010-09-22 18:16:55 +0000521
Eric Christopher482eba02010-05-14 01:50:28 +0000522 EmitEOL();
523}
524
Chris Lattner12e555c2010-01-23 00:15:00 +0000525static inline char toOctal(int X) { return (X&7)+'0'; }
526
Chris Lattnera6594fc2010-01-25 18:58:59 +0000527static void PrintQuotedString(StringRef Data, raw_ostream &OS) {
528 OS << '"';
Jim Grosbach00545e12010-09-22 18:16:55 +0000529
Chris Lattnera6594fc2010-01-25 18:58:59 +0000530 for (unsigned i = 0, e = Data.size(); i != e; ++i) {
531 unsigned char C = Data[i];
532 if (C == '"' || C == '\\') {
533 OS << '\\' << (char)C;
534 continue;
535 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000536
Chris Lattnera6594fc2010-01-25 18:58:59 +0000537 if (isprint((unsigned char)C)) {
538 OS << (char)C;
539 continue;
540 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000541
Chris Lattnera6594fc2010-01-25 18:58:59 +0000542 switch (C) {
543 case '\b': OS << "\\b"; break;
544 case '\f': OS << "\\f"; break;
545 case '\n': OS << "\\n"; break;
546 case '\r': OS << "\\r"; break;
547 case '\t': OS << "\\t"; break;
548 default:
549 OS << '\\';
550 OS << toOctal(C >> 6);
551 OS << toOctal(C >> 3);
552 OS << toOctal(C >> 0);
553 break;
554 }
555 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000556
Chris Lattnera6594fc2010-01-25 18:58:59 +0000557 OS << '"';
558}
559
560
Chris Lattneraaec2052010-01-19 19:46:13 +0000561void MCAsmStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000562 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Chris Lattner12e555c2010-01-23 00:15:00 +0000563 if (Data.empty()) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000564
Chris Lattner12e555c2010-01-23 00:15:00 +0000565 if (Data.size() == 1) {
566 OS << MAI.getData8bitsDirective(AddrSpace);
567 OS << (unsigned)(unsigned char)Data[0];
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000568 EmitEOL();
Chris Lattner12e555c2010-01-23 00:15:00 +0000569 return;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000570 }
Chris Lattner12e555c2010-01-23 00:15:00 +0000571
572 // If the data ends with 0 and the target supports .asciz, use it, otherwise
573 // use .ascii
574 if (MAI.getAscizDirective() && Data.back() == 0) {
575 OS << MAI.getAscizDirective();
576 Data = Data.substr(0, Data.size()-1);
577 } else {
578 OS << MAI.getAsciiDirective();
579 }
580
Chris Lattnera6594fc2010-01-25 18:58:59 +0000581 OS << ' ';
582 PrintQuotedString(Data, OS);
Chris Lattner12e555c2010-01-23 00:15:00 +0000583 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000584}
585
Rafael Espindola2df042c2010-12-03 02:54:21 +0000586void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size,
587 unsigned AddrSpace) {
588 EmitValue(MCConstantExpr::Create(Value, getContext()), Size, AddrSpace);
589}
590
Rafael Espindola89b93722010-12-10 07:39:47 +0000591void MCAsmStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size,
Rafael Espindoladebd7e42011-05-01 03:50:49 +0000592 unsigned AddrSpace) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000593 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000594 const char *Directive = 0;
595 switch (Size) {
596 default: break;
597 case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
598 case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
599 case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000600 case 8:
601 Directive = MAI.getData64bitsDirective(AddrSpace);
602 // If the target doesn't support 64-bit data, emit as two 32-bit halves.
603 if (Directive) break;
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000604 int64_t IntValue;
605 if (!Value->EvaluateAsAbsolute(IntValue))
606 report_fatal_error("Don't know how to emit this value.");
Evan Cheng1be0e272011-07-15 02:09:41 +0000607 if (getContext().getAsmInfo().isLittleEndian()) {
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000608 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
609 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000610 } else {
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000611 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
612 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000613 }
614 return;
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000615 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000616
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000617 assert(Directive && "Invalid size for machine code value!");
Chris Lattner718fb592010-01-25 21:28:50 +0000618 OS << Directive << *Value;
Chris Lattner86e22112010-01-22 07:29:22 +0000619 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000620}
621
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000622void MCAsmStreamer::EmitULEB128Value(const MCExpr *Value) {
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000623 int64_t IntValue;
624 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000625 EmitULEB128IntValue(IntValue);
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000626 return;
627 }
Rafael Espindola73873452010-11-04 18:17:08 +0000628 assert(MAI.hasLEB128() && "Cannot print a .uleb");
629 OS << ".uleb128 " << *Value;
Rafael Espindola3ff57092010-11-02 17:22:24 +0000630 EmitEOL();
631}
632
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000633void MCAsmStreamer::EmitSLEB128Value(const MCExpr *Value) {
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000634 int64_t IntValue;
635 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000636 EmitSLEB128IntValue(IntValue);
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000637 return;
638 }
Rafael Espindola73873452010-11-04 18:17:08 +0000639 assert(MAI.hasLEB128() && "Cannot print a .sleb");
640 OS << ".sleb128 " << *Value;
Rafael Espindola3ff57092010-11-02 17:22:24 +0000641 EmitEOL();
642}
643
Chris Lattner718fb592010-01-25 21:28:50 +0000644void MCAsmStreamer::EmitGPRel32Value(const MCExpr *Value) {
645 assert(MAI.getGPRel32Directive() != 0);
646 OS << MAI.getGPRel32Directive() << *Value;
647 EmitEOL();
648}
649
650
Chris Lattner6113b3d2010-01-19 18:52:28 +0000651/// EmitFill - Emit NumBytes bytes worth of the value specified by
652/// FillValue. This implements directives such as '.space'.
Chris Lattneraaec2052010-01-19 19:46:13 +0000653void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
654 unsigned AddrSpace) {
Chris Lattner8a6d7ac2010-01-19 18:58:52 +0000655 if (NumBytes == 0) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000656
Chris Lattneraaec2052010-01-19 19:46:13 +0000657 if (AddrSpace == 0)
658 if (const char *ZeroDirective = MAI.getZeroDirective()) {
659 OS << ZeroDirective << NumBytes;
660 if (FillValue != 0)
661 OS << ',' << (int)FillValue;
Chris Lattner86e22112010-01-22 07:29:22 +0000662 EmitEOL();
Chris Lattneraaec2052010-01-19 19:46:13 +0000663 return;
664 }
665
666 // Emit a byte at a time.
667 MCStreamer::EmitFill(NumBytes, FillValue, AddrSpace);
Chris Lattner6113b3d2010-01-19 18:52:28 +0000668}
669
Daniel Dunbar84a29262009-06-24 19:25:34 +0000670void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
671 unsigned ValueSize,
672 unsigned MaxBytesToEmit) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000673 // Some assemblers don't support non-power of two alignments, so we always
674 // emit alignments as a power of two if possible.
675 if (isPowerOf2_32(ByteAlignment)) {
Chris Lattner6e579c62009-08-19 06:35:36 +0000676 switch (ValueSize) {
677 default: llvm_unreachable("Invalid size for machine code value!");
Chris Lattner33adcfb2009-08-22 21:43:10 +0000678 case 1: OS << MAI.getAlignDirective(); break;
679 // FIXME: use MAI for this!
Chris Lattner6e579c62009-08-19 06:35:36 +0000680 case 2: OS << ".p2alignw "; break;
681 case 4: OS << ".p2alignl "; break;
682 case 8: llvm_unreachable("Unsupported alignment size!");
683 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000684
Chris Lattner33adcfb2009-08-22 21:43:10 +0000685 if (MAI.getAlignmentIsInBytes())
Chris Lattner663c2d22009-08-19 06:12:02 +0000686 OS << ByteAlignment;
687 else
688 OS << Log2_32(ByteAlignment);
Daniel Dunbar84a29262009-06-24 19:25:34 +0000689
Chris Lattner663c2d22009-08-19 06:12:02 +0000690 if (Value || MaxBytesToEmit) {
Chris Lattner579531c2009-09-03 04:01:10 +0000691 OS << ", 0x";
692 OS.write_hex(truncateToSize(Value, ValueSize));
Chris Lattner663c2d22009-08-19 06:12:02 +0000693
Jim Grosbach00545e12010-09-22 18:16:55 +0000694 if (MaxBytesToEmit)
Chris Lattner663c2d22009-08-19 06:12:02 +0000695 OS << ", " << MaxBytesToEmit;
696 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000697 EmitEOL();
Chris Lattner663c2d22009-08-19 06:12:02 +0000698 return;
699 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000700
Chris Lattner663c2d22009-08-19 06:12:02 +0000701 // Non-power of two alignment. This is not widely supported by assemblers.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000702 // FIXME: Parameterize this based on MAI.
Daniel Dunbar84a29262009-06-24 19:25:34 +0000703 switch (ValueSize) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000704 default: llvm_unreachable("Invalid size for machine code value!");
705 case 1: OS << ".balign"; break;
706 case 2: OS << ".balignw"; break;
707 case 4: OS << ".balignl"; break;
708 case 8: llvm_unreachable("Unsupported alignment size!");
Daniel Dunbar84a29262009-06-24 19:25:34 +0000709 }
710
Chris Lattner663c2d22009-08-19 06:12:02 +0000711 OS << ' ' << ByteAlignment;
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000712 OS << ", " << truncateToSize(Value, ValueSize);
Jim Grosbach00545e12010-09-22 18:16:55 +0000713 if (MaxBytesToEmit)
Daniel Dunbar84a29262009-06-24 19:25:34 +0000714 OS << ", " << MaxBytesToEmit;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000715 EmitEOL();
Daniel Dunbar84a29262009-06-24 19:25:34 +0000716}
717
Kevin Enderby6e720482010-02-23 18:26:34 +0000718void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
719 unsigned MaxBytesToEmit) {
Chris Lattnerec167fd2010-02-23 18:44:31 +0000720 // Emit with a text fill value.
721 EmitValueToAlignment(ByteAlignment, MAI.getTextAlignFillValue(),
722 1, MaxBytesToEmit);
Kevin Enderby6e720482010-02-23 18:26:34 +0000723}
724
Daniel Dunbar821e3332009-08-31 08:09:28 +0000725void MCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbar84a29262009-06-24 19:25:34 +0000726 unsigned char Value) {
727 // FIXME: Verify that Offset is associated with the current section.
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000728 OS << ".org " << *Offset << ", " << (unsigned) Value;
729 EmitEOL();
Daniel Dunbar84a29262009-06-24 19:25:34 +0000730}
731
Chris Lattnera6594fc2010-01-25 18:58:59 +0000732
733void MCAsmStreamer::EmitFileDirective(StringRef Filename) {
734 assert(MAI.hasSingleParameterDotFile());
735 OS << "\t.file\t";
736 PrintQuotedString(Filename, OS);
737 EmitEOL();
738}
739
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000740bool MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Filename){
Rafael Espindola89b93722010-12-10 07:39:47 +0000741 if (UseLoc) {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000742 OS << "\t.file\t" << FileNo << ' ';
743 PrintQuotedString(Filename, OS);
744 EmitEOL();
745 }
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000746 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Filename);
747}
748
749void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
750 unsigned Column, unsigned Flags,
751 unsigned Isa,
Devang Patel3f3bf932011-04-18 20:26:49 +0000752 unsigned Discriminator,
753 StringRef FileName) {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000754 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +0000755 Isa, Discriminator, FileName);
Rafael Espindola89b93722010-12-10 07:39:47 +0000756 if (!UseLoc)
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000757 return;
758
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000759 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
760 if (Flags & DWARF2_FLAG_BASIC_BLOCK)
761 OS << " basic_block";
762 if (Flags & DWARF2_FLAG_PROLOGUE_END)
763 OS << " prologue_end";
764 if (Flags & DWARF2_FLAG_EPILOGUE_BEGIN)
765 OS << " epilogue_begin";
766
767 unsigned OldFlags = getContext().getCurrentDwarfLoc().getFlags();
768 if ((Flags & DWARF2_FLAG_IS_STMT) != (OldFlags & DWARF2_FLAG_IS_STMT)) {
769 OS << " is_stmt ";
770
771 if (Flags & DWARF2_FLAG_IS_STMT)
772 OS << "1";
773 else
774 OS << "0";
775 }
776
777 if (Isa)
778 OS << "isa " << Isa;
779 if (Discriminator)
780 OS << "discriminator " << Discriminator;
Devang Patel3f3bf932011-04-18 20:26:49 +0000781
782 if (IsVerboseAsm) {
783 OS.PadToColumn(MAI.getCommentColumn());
784 OS << MAI.getCommentString() << ' ' << FileName << ':'
785 << Line << ':' << Column;
786 }
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000787 EmitEOL();
Chris Lattnera6594fc2010-01-25 18:58:59 +0000788}
789
Rafael Espindola713c4bf2011-05-10 13:39:48 +0000790void MCAsmStreamer::EmitCFISections(bool EH, bool Debug) {
791 MCStreamer::EmitCFISections(EH, Debug);
792
793 if (!UseCFI)
794 return;
795
796 OS << "\t.cfi_sections ";
797 if (EH) {
798 OS << ".eh_frame";
799 if (Debug)
800 OS << ", .debug_frame";
801 } else if (Debug) {
802 OS << ".debug_frame";
803 }
804
805 EmitEOL();
806}
807
Rafael Espindola066c2f42011-04-12 23:59:07 +0000808void MCAsmStreamer::EmitCFIStartProc() {
809 MCStreamer::EmitCFIStartProc();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000810
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000811 if (!UseCFI)
812 return;
813
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000814 OS << "\t.cfi_startproc";
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000815 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000816}
817
Rafael Espindola066c2f42011-04-12 23:59:07 +0000818void MCAsmStreamer::EmitCFIEndProc() {
819 MCStreamer::EmitCFIEndProc();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000820
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000821 if (!UseCFI)
822 return;
823
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000824 OS << "\t.cfi_endproc";
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000825 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000826}
827
Rafael Espindola6e032942011-05-30 20:20:15 +0000828void MCAsmStreamer::EmitRegisterName(int64_t Register) {
Akira Hatanaka3014b2f2011-07-07 20:30:33 +0000829 if (InstPrinter && !MAI.useDwarfRegNumForCFI()) {
Evan Cheng1be0e272011-07-15 02:09:41 +0000830 const TargetAsmInfo &TAI = getContext().getTargetAsmInfo();
831 unsigned LLVMRegister = TAI.getLLVMRegNum(Register, true);
Rafael Espindolacde4ce42011-06-02 02:34:55 +0000832 InstPrinter->printRegName(OS, LLVMRegister);
Rafael Espindola6e032942011-05-30 20:20:15 +0000833 } else {
834 OS << Register;
835 }
836}
837
Rafael Espindola066c2f42011-04-12 23:59:07 +0000838void MCAsmStreamer::EmitCFIDefCfa(int64_t Register, int64_t Offset) {
Rafael Espindola7f46b082011-04-29 21:41:06 +0000839 MCStreamer::EmitCFIDefCfa(Register, Offset);
840
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000841 if (!UseCFI)
842 return;
843
Rafael Espindola6e032942011-05-30 20:20:15 +0000844 OS << "\t.cfi_def_cfa ";
845 EmitRegisterName(Register);
846 OS << ", " << Offset;
Rafael Espindola7f46b082011-04-29 21:41:06 +0000847 EmitEOL();
Rafael Espindola066c2f42011-04-12 23:59:07 +0000848}
849
850void MCAsmStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
851 MCStreamer::EmitCFIDefCfaOffset(Offset);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000852
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000853 if (!UseCFI)
854 return;
855
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000856 OS << "\t.cfi_def_cfa_offset " << Offset;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000857 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000858}
859
Rafael Espindola066c2f42011-04-12 23:59:07 +0000860void MCAsmStreamer::EmitCFIDefCfaRegister(int64_t Register) {
861 MCStreamer::EmitCFIDefCfaRegister(Register);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000862
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000863 if (!UseCFI)
864 return;
865
Rafael Espindola6e032942011-05-30 20:20:15 +0000866 OS << "\t.cfi_def_cfa_register ";
867 EmitRegisterName(Register);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000868 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000869}
870
Rafael Espindola066c2f42011-04-12 23:59:07 +0000871void MCAsmStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
872 this->MCStreamer::EmitCFIOffset(Register, Offset);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000873
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000874 if (!UseCFI)
875 return;
876
Rafael Espindola6e032942011-05-30 20:20:15 +0000877 OS << "\t.cfi_offset ";
878 EmitRegisterName(Register);
879 OS << ", " << Offset;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000880 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000881}
882
Rafael Espindola066c2f42011-04-12 23:59:07 +0000883void MCAsmStreamer::EmitCFIPersonality(const MCSymbol *Sym,
Rafael Espindola3a83c402010-12-27 00:36:05 +0000884 unsigned Encoding) {
Rafael Espindola066c2f42011-04-12 23:59:07 +0000885 MCStreamer::EmitCFIPersonality(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000886
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000887 if (!UseCFI)
888 return;
889
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000890 OS << "\t.cfi_personality " << Encoding << ", " << *Sym;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000891 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000892}
893
Rafael Espindola066c2f42011-04-12 23:59:07 +0000894void MCAsmStreamer::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) {
895 MCStreamer::EmitCFILsda(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000896
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000897 if (!UseCFI)
898 return;
899
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000900 OS << "\t.cfi_lsda " << Encoding << ", " << *Sym;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000901 EmitEOL();
Rafael Espindola066c2f42011-04-12 23:59:07 +0000902}
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000903
Rafael Espindola066c2f42011-04-12 23:59:07 +0000904void MCAsmStreamer::EmitCFIRememberState() {
905 MCStreamer::EmitCFIRememberState();
906
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000907 if (!UseCFI)
908 return;
909
Rafael Espindola066c2f42011-04-12 23:59:07 +0000910 OS << "\t.cfi_remember_state";
911 EmitEOL();
912}
913
914void MCAsmStreamer::EmitCFIRestoreState() {
915 MCStreamer::EmitCFIRestoreState();
916
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000917 if (!UseCFI)
918 return;
919
Rafael Espindola066c2f42011-04-12 23:59:07 +0000920 OS << "\t.cfi_restore_state";
921 EmitEOL();
922}
923
924void MCAsmStreamer::EmitCFISameValue(int64_t Register) {
925 MCStreamer::EmitCFISameValue(Register);
926
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000927 if (!UseCFI)
928 return;
929
Rafael Espindola6e032942011-05-30 20:20:15 +0000930 OS << "\t.cfi_same_value ";
931 EmitRegisterName(Register);
Rafael Espindola066c2f42011-04-12 23:59:07 +0000932 EmitEOL();
933}
934
935void MCAsmStreamer::EmitCFIRelOffset(int64_t Register, int64_t Offset) {
936 MCStreamer::EmitCFIRelOffset(Register, Offset);
937
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000938 if (!UseCFI)
939 return;
940
Rafael Espindola6e032942011-05-30 20:20:15 +0000941 OS << "\t.cfi_rel_offset ";
942 EmitRegisterName(Register);
943 OS << ", " << Offset;
Rafael Espindola066c2f42011-04-12 23:59:07 +0000944 EmitEOL();
945}
946
947void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) {
948 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
949
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000950 if (!UseCFI)
951 return;
952
Rafael Espindola066c2f42011-04-12 23:59:07 +0000953 OS << "\t.cfi_adjust_cfa_offset " << Adjustment;
954 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000955}
956
Charles Davisfbc539f2011-05-22 21:12:15 +0000957void MCAsmStreamer::EmitWin64EHStartProc(const MCSymbol *Symbol) {
Charles Daviscde87e22011-05-20 18:19:22 +0000958 MCStreamer::EmitWin64EHStartProc(Symbol);
959
Charles Davis440596f2011-05-19 17:46:39 +0000960 OS << ".seh_proc " << *Symbol;
Charles Davis0e30f022011-05-18 04:58:05 +0000961 EmitEOL();
962}
963
Charles Davis8b3e5e52011-05-18 22:13:51 +0000964void MCAsmStreamer::EmitWin64EHEndProc() {
Charles Daviscde87e22011-05-20 18:19:22 +0000965 MCStreamer::EmitWin64EHEndProc();
966
Charles Davis440596f2011-05-19 17:46:39 +0000967 OS << "\t.seh_endproc";
Charles Davis0e30f022011-05-18 04:58:05 +0000968 EmitEOL();
969}
970
Charles Davis8b3e5e52011-05-18 22:13:51 +0000971void MCAsmStreamer::EmitWin64EHStartChained() {
Charles Daviscde87e22011-05-20 18:19:22 +0000972 MCStreamer::EmitWin64EHStartChained();
973
Charles Davis440596f2011-05-19 17:46:39 +0000974 OS << "\t.seh_startchained";
Charles Davisf0709012011-05-18 20:54:10 +0000975 EmitEOL();
976}
977
Charles Davis8b3e5e52011-05-18 22:13:51 +0000978void MCAsmStreamer::EmitWin64EHEndChained() {
Charles Daviscde87e22011-05-20 18:19:22 +0000979 MCStreamer::EmitWin64EHEndChained();
980
Charles Davis440596f2011-05-19 17:46:39 +0000981 OS << "\t.seh_endchained";
Charles Davisf0709012011-05-18 20:54:10 +0000982 EmitEOL();
983}
984
Charles Davis440596f2011-05-19 17:46:39 +0000985void MCAsmStreamer::EmitWin64EHHandler(const MCSymbol *Sym, bool Unwind,
986 bool Except) {
Charles Daviscde87e22011-05-20 18:19:22 +0000987 MCStreamer::EmitWin64EHHandler(Sym, Unwind, Except);
988
Charles Davis440596f2011-05-19 17:46:39 +0000989 OS << "\t.seh_handler " << *Sym;
990 if (Unwind)
991 OS << ", @unwind";
992 if (Except)
993 OS << ", @except";
Charles Davisf0709012011-05-18 20:54:10 +0000994 EmitEOL();
995}
996
Charles Davis440596f2011-05-19 17:46:39 +0000997void MCAsmStreamer::EmitWin64EHHandlerData() {
Charles Daviscde87e22011-05-20 18:19:22 +0000998 MCStreamer::EmitWin64EHHandlerData();
999
Charles Davis410ef2b2011-05-25 21:43:45 +00001000 // Switch sections. Don't call SwitchSection directly, because that will
1001 // cause the section switch to be visible in the emitted assembly.
1002 // We only do this so the section switch that terminates the handler
1003 // data block is visible.
Charles Davis7b06b732011-05-27 19:09:24 +00001004 MCWin64EHUnwindInfo *CurFrame = getCurrentW64UnwindInfo();
1005 StringRef suffix=MCWin64EHUnwindEmitter::GetSectionSuffix(CurFrame->Function);
Charles Davis410ef2b2011-05-25 21:43:45 +00001006 const MCSection *xdataSect =
Charles Davis7b06b732011-05-27 19:09:24 +00001007 getContext().getTargetAsmInfo().getWin64EHTableSection(suffix);
Charles Davis410ef2b2011-05-25 21:43:45 +00001008 if (xdataSect)
1009 SwitchSectionNoChange(xdataSect);
1010
Charles Davis440596f2011-05-19 17:46:39 +00001011 OS << "\t.seh_handlerdata";
Charles Davisf0709012011-05-18 20:54:10 +00001012 EmitEOL();
1013}
1014
Charles Davisc3b16282011-05-19 19:35:55 +00001015void MCAsmStreamer::EmitWin64EHPushReg(unsigned Register) {
Charles Daviscde87e22011-05-20 18:19:22 +00001016 MCStreamer::EmitWin64EHPushReg(Register);
1017
Charles Davis440596f2011-05-19 17:46:39 +00001018 OS << "\t.seh_pushreg " << Register;
Charles Davis0e30f022011-05-18 04:58:05 +00001019 EmitEOL();
1020}
1021
Charles Davisc3b16282011-05-19 19:35:55 +00001022void MCAsmStreamer::EmitWin64EHSetFrame(unsigned Register, unsigned Offset) {
Charles Daviscde87e22011-05-20 18:19:22 +00001023 MCStreamer::EmitWin64EHSetFrame(Register, Offset);
1024
Charles Davis440596f2011-05-19 17:46:39 +00001025 OS << "\t.seh_setframe " << Register << ", " << Offset;
Charles Davis0e30f022011-05-18 04:58:05 +00001026 EmitEOL();
1027}
1028
Charles Davisc3b16282011-05-19 19:35:55 +00001029void MCAsmStreamer::EmitWin64EHAllocStack(unsigned Size) {
Charles Daviscde87e22011-05-20 18:19:22 +00001030 MCStreamer::EmitWin64EHAllocStack(Size);
1031
Charles Davis440596f2011-05-19 17:46:39 +00001032 OS << "\t.seh_stackalloc " << Size;
Charles Davis0e30f022011-05-18 04:58:05 +00001033 EmitEOL();
1034}
1035
Charles Davisc3b16282011-05-19 19:35:55 +00001036void MCAsmStreamer::EmitWin64EHSaveReg(unsigned Register, unsigned Offset) {
Charles Daviscde87e22011-05-20 18:19:22 +00001037 MCStreamer::EmitWin64EHSaveReg(Register, Offset);
1038
Charles Davis440596f2011-05-19 17:46:39 +00001039 OS << "\t.seh_savereg " << Register << ", " << Offset;
1040 EmitEOL();
1041}
1042
Charles Davisc3b16282011-05-19 19:35:55 +00001043void MCAsmStreamer::EmitWin64EHSaveXMM(unsigned Register, unsigned Offset) {
Charles Daviscde87e22011-05-20 18:19:22 +00001044 MCStreamer::EmitWin64EHSaveXMM(Register, Offset);
1045
Charles Davis440596f2011-05-19 17:46:39 +00001046 OS << "\t.seh_savexmm " << Register << ", " << Offset;
Charles Davis0e30f022011-05-18 04:58:05 +00001047 EmitEOL();
1048}
1049
Charles Davis8b3e5e52011-05-18 22:13:51 +00001050void MCAsmStreamer::EmitWin64EHPushFrame(bool Code) {
Charles Daviscde87e22011-05-20 18:19:22 +00001051 MCStreamer::EmitWin64EHPushFrame(Code);
1052
Charles Davis440596f2011-05-19 17:46:39 +00001053 OS << "\t.seh_pushframe";
Charles Davis0e30f022011-05-18 04:58:05 +00001054 if (Code)
Charles Davis440596f2011-05-19 17:46:39 +00001055 OS << " @code";
Charles Davis0e30f022011-05-18 04:58:05 +00001056 EmitEOL();
1057}
1058
Charles Davis8b3e5e52011-05-18 22:13:51 +00001059void MCAsmStreamer::EmitWin64EHEndProlog(void) {
Charles Daviscde87e22011-05-20 18:19:22 +00001060 MCStreamer::EmitWin64EHEndProlog();
1061
Charles Davis440596f2011-05-19 17:46:39 +00001062 OS << "\t.seh_endprologue";
Charles Davis0e30f022011-05-18 04:58:05 +00001063 EmitEOL();
1064}
1065
Daniel Dunbar6b716532010-02-09 23:00:14 +00001066void MCAsmStreamer::AddEncodingComment(const MCInst &Inst) {
1067 raw_ostream &OS = GetCommentOS();
1068 SmallString<256> Code;
1069 SmallVector<MCFixup, 4> Fixups;
1070 raw_svector_ostream VecOS(Code);
1071 Emitter->EncodeInstruction(Inst, VecOS, Fixups);
1072 VecOS.flush();
Chris Lattnera6594fc2010-01-25 18:58:59 +00001073
Daniel Dunbar6b716532010-02-09 23:00:14 +00001074 // If we are showing fixups, create symbolic markers in the encoded
1075 // representation. We do this by making a per-bit map to the fixup item index,
1076 // then trying to display it as nicely as possible.
Daniel Dunbar5532cf42010-02-10 01:41:14 +00001077 SmallVector<uint8_t, 64> FixupMap;
1078 FixupMap.resize(Code.size() * 8);
Daniel Dunbar6b716532010-02-09 23:00:14 +00001079 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
1080 FixupMap[i] = 0;
1081
1082 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1083 MCFixup &F = Fixups[i];
Daniel Dunbar2761fc42010-12-16 03:20:06 +00001084 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar6b716532010-02-09 23:00:14 +00001085 for (unsigned j = 0; j != Info.TargetSize; ++j) {
1086 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j;
1087 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
1088 FixupMap[Index] = 1 + i;
1089 }
1090 }
1091
Evan Cheng5c2eef62011-07-08 22:49:42 +00001092 // FIXME: Note the fixup comments for Thumb2 are completely bogus since the
Evan Cheng8fbbd1c2011-01-13 23:27:39 +00001093 // high order halfword of a 32-bit Thumb2 instruction is emitted first.
Daniel Dunbar6b716532010-02-09 23:00:14 +00001094 OS << "encoding: [";
1095 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
1096 if (i)
1097 OS << ',';
1098
1099 // See if all bits are the same map entry.
1100 uint8_t MapEntry = FixupMap[i * 8 + 0];
1101 for (unsigned j = 1; j != 8; ++j) {
1102 if (FixupMap[i * 8 + j] == MapEntry)
1103 continue;
1104
1105 MapEntry = uint8_t(~0U);
1106 break;
1107 }
1108
1109 if (MapEntry != uint8_t(~0U)) {
1110 if (MapEntry == 0) {
1111 OS << format("0x%02x", uint8_t(Code[i]));
1112 } else {
Evan Cheng82caf1a2011-01-13 21:45:26 +00001113 if (Code[i]) {
Evan Cheng8fbbd1c2011-01-13 23:27:39 +00001114 // FIXME: Some of the 8 bits require fix up.
Evan Cheng82caf1a2011-01-13 21:45:26 +00001115 OS << format("0x%02x", uint8_t(Code[i])) << '\''
1116 << char('A' + MapEntry - 1) << '\'';
1117 } else
1118 OS << char('A' + MapEntry - 1);
Daniel Dunbar6b716532010-02-09 23:00:14 +00001119 }
1120 } else {
1121 // Otherwise, write out in binary.
1122 OS << "0b";
Jay Foad95c3e482011-06-23 09:09:15 +00001123 for (unsigned j = 8; j--;) {
Daniel Dunbar6b716532010-02-09 23:00:14 +00001124 unsigned Bit = (Code[i] >> j) & 1;
NAKAMURA Takumid6451512011-03-27 01:44:40 +00001125
Chris Lattner3170a3b2010-11-15 05:56:19 +00001126 unsigned FixupBit;
Evan Cheng1be0e272011-07-15 02:09:41 +00001127 if (getContext().getAsmInfo().isLittleEndian())
Chris Lattner3170a3b2010-11-15 05:56:19 +00001128 FixupBit = i * 8 + j;
1129 else
1130 FixupBit = i * 8 + (7-j);
NAKAMURA Takumid6451512011-03-27 01:44:40 +00001131
Jay Foad95c3e482011-06-23 09:09:15 +00001132 if (uint8_t MapEntry = FixupMap[FixupBit]) {
1133 assert(Bit == 0 && "Encoder wrote into fixed up bit!");
1134 OS << char('A' + MapEntry - 1);
Daniel Dunbar6b716532010-02-09 23:00:14 +00001135 } else
1136 OS << Bit;
1137 }
1138 }
1139 }
1140 OS << "]\n";
1141
1142 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
1143 MCFixup &F = Fixups[i];
Daniel Dunbar2761fc42010-12-16 03:20:06 +00001144 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar6b716532010-02-09 23:00:14 +00001145 OS << " fixup " << char('A' + i) << " - " << "offset: " << F.getOffset()
Daniel Dunbar5d5a1e12010-02-10 04:47:08 +00001146 << ", value: " << *F.getValue() << ", kind: " << Info.Name << "\n";
Daniel Dunbar6b716532010-02-09 23:00:14 +00001147 }
1148}
1149
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +00001150void MCAsmStreamer::EmitFnStart() {
1151 OS << "\t.fnstart";
1152 EmitEOL();
1153}
1154
1155void MCAsmStreamer::EmitFnEnd() {
1156 OS << "\t.fnend";
1157 EmitEOL();
1158}
1159
1160void MCAsmStreamer::EmitCantUnwind() {
1161 OS << "\t.cantunwind";
1162 EmitEOL();
1163}
1164
1165void MCAsmStreamer::EmitHandlerData() {
1166 OS << "\t.handlerdata";
1167 EmitEOL();
1168}
1169
1170void MCAsmStreamer::EmitPersonality(const MCSymbol *Personality) {
1171 OS << "\t.personality " << Personality->getName();
1172 EmitEOL();
1173}
1174
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001175void MCAsmStreamer::EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset) {
Rafael Espindolacde4ce42011-06-02 02:34:55 +00001176 OS << "\t.setfp\t";
1177 InstPrinter->printRegName(OS, FpReg);
1178 OS << ", ";
1179 InstPrinter->printRegName(OS, SpReg);
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001180 if (Offset)
1181 OS << ", #" << Offset;
1182 EmitEOL();
1183}
1184
1185void MCAsmStreamer::EmitPad(int64_t Offset) {
1186 OS << "\t.pad\t#" << Offset;
1187 EmitEOL();
1188}
1189
1190void MCAsmStreamer::EmitRegSave(const SmallVectorImpl<unsigned> &RegList,
1191 bool isVector) {
1192 assert(RegList.size() && "RegList should not be empty");
1193 if (isVector)
1194 OS << "\t.vsave\t{";
1195 else
1196 OS << "\t.save\t{";
1197
Rafael Espindolacde4ce42011-06-02 02:34:55 +00001198 InstPrinter->printRegName(OS, RegList[0]);
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001199
Rafael Espindolacde4ce42011-06-02 02:34:55 +00001200 for (unsigned i = 1, e = RegList.size(); i != e; ++i) {
1201 OS << ", ";
1202 InstPrinter->printRegName(OS, RegList[i]);
1203 }
Anton Korobeynikov57caad72011-03-05 18:43:32 +00001204
1205 OS << "}";
1206 EmitEOL();
1207}
1208
Daniel Dunbar6b716532010-02-09 23:00:14 +00001209void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +00001210 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Daniel Dunbar6b716532010-02-09 23:00:14 +00001211
1212 // Show the encoding in a comment if we have a code emitter.
1213 if (Emitter)
1214 AddEncodingComment(Inst);
1215
Chris Lattner30d9a642010-02-09 00:54:51 +00001216 // Show the MCInst if enabled.
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +00001217 if (ShowInst) {
Daniel Dunbar67c076c2010-03-22 21:49:34 +00001218 Inst.dump_pretty(GetCommentOS(), &MAI, InstPrinter.get(), "\n ");
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +00001219 GetCommentOS() << "\n";
1220 }
1221
Daniel Dunbar67c076c2010-03-22 21:49:34 +00001222 // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001223 if (InstPrinter)
Chris Lattnerd3740872010-04-04 05:04:31 +00001224 InstPrinter->printInst(&Inst, OS);
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001225 else
1226 Inst.print(OS, &MAI);
Chris Lattner7d1e49c2010-01-22 07:36:39 +00001227 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +00001228}
1229
Jim Grosbachbd4ec842010-09-22 18:18:30 +00001230/// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +00001231/// the specified string in the output .s file. This capability is
1232/// indicated by the hasRawTextSupport() predicate.
1233void MCAsmStreamer::EmitRawText(StringRef String) {
Chris Lattnerd5928dc2010-04-03 22:06:56 +00001234 if (!String.empty() && String.back() == '\n')
1235 String = String.substr(0, String.size()-1);
Chris Lattner91bead72010-04-03 21:35:55 +00001236 OS << String;
Chris Lattnerd5928dc2010-04-03 22:06:56 +00001237 EmitEOL();
Chris Lattner91bead72010-04-03 21:35:55 +00001238}
1239
Daniel Dunbara11af532009-06-24 01:03:06 +00001240void MCAsmStreamer::Finish() {
Rafael Espindola195a0ce2010-11-19 02:26:16 +00001241 // Dump out the dwarf file & directory tables and line tables.
Rafael Espindola89b93722010-12-10 07:39:47 +00001242 if (getContext().hasDwarfFiles() && !UseLoc)
1243 MCDwarfFileTable::Emit(this);
Rafael Espindola5426a9e2011-05-01 04:49:54 +00001244
Rafael Espindolac25dad82011-05-10 03:14:15 +00001245 if (!UseCFI)
1246 EmitFrames(false);
Daniel Dunbara11af532009-06-24 01:03:06 +00001247}
Chris Lattner86e22112010-01-22 07:29:22 +00001248MCStreamer *llvm::createAsmStreamer(MCContext &Context,
1249 formatted_raw_ostream &OS,
Rafael Espindola89b93722010-12-10 07:39:47 +00001250 bool isVerboseAsm, bool useLoc,
Bill Wendling916a94b2011-06-17 20:35:21 +00001251 bool useCFI, MCInstPrinter *IP,
1252 MCCodeEmitter *CE, TargetAsmBackend *TAB,
Bill Wendlinge266ce62011-06-17 20:55:01 +00001253 bool ShowInst) {
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001254 return new MCAsmStreamer(Context, OS, isVerboseAsm, useLoc, useCFI,
Daniel Dunbar745dacc2010-12-16 03:05:59 +00001255 IP, CE, TAB, ShowInst);
Daniel Dunbara11af532009-06-24 01:03:06 +00001256}