blob: 80203cbe234e5daef634166251c8dce99532412d [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"
Chris Lattner6c203912009-08-10 18:15:01 +000018#include "llvm/MC/MCSectionMachO.h"
Daniel Dunbar9faf2732009-06-24 01:03:06 +000019#include "llvm/MC/MCSymbol.h"
Chris Lattner90a78592010-03-19 05:48:53 +000020#include "llvm/ADT/OwningPtr.h"
Chris Lattner38e92192010-01-22 07:29:22 +000021#include "llvm/ADT/SmallString.h"
22#include "llvm/ADT/Twine.h"
Torok Edwin56d06592009-07-11 20:10:48 +000023#include "llvm/Support/ErrorHandling.h"
Chris Lattner37b72342009-08-19 06:12:02 +000024#include "llvm/Support/MathExtras.h"
Daniel Dunbar65105172009-08-27 00:51:57 +000025#include "llvm/Support/Format.h"
Chris Lattner38e92192010-01-22 07:29:22 +000026#include "llvm/Support/FormattedStream.h"
Daniel Dunbarecd0c8a2010-12-16 03:05:59 +000027#include "llvm/Target/TargetAsmBackend.h"
Rafael Espindola0a017a62010-12-10 07:39:47 +000028#include "llvm/Target/TargetAsmInfo.h"
Daniel Dunbarecd0c8a2010-12-16 03:05:59 +000029#include "llvm/Target/TargetLoweringObjectFile.h"
Nick Lewycky0de20af2010-12-19 20:43:38 +000030#include <cctype>
Daniel Dunbar9faf2732009-06-24 01:03:06 +000031using namespace llvm;
32
33namespace {
34
Chris Lattner962c5bd82009-08-17 04:17:34 +000035class MCAsmStreamer : public MCStreamer {
Chris Lattner38e92192010-01-22 07:29:22 +000036 formatted_raw_ostream &OS;
Chris Lattnere9a75a62009-08-22 21:43:10 +000037 const MCAsmInfo &MAI;
Chris Lattner90a78592010-03-19 05:48:53 +000038 OwningPtr<MCInstPrinter> InstPrinter;
Benjamin Kramera3e0ddb2010-07-29 17:48:06 +000039 OwningPtr<MCCodeEmitter> Emitter;
Daniel Dunbarecd0c8a2010-12-16 03:05:59 +000040 OwningPtr<TargetAsmBackend> AsmBackend;
Jim Grosbach3bde49a2010-09-22 18:16:55 +000041
Chris Lattner38e92192010-01-22 07:29:22 +000042 SmallString<128> CommentToEmit;
Chris Lattner8fa0e352010-01-22 19:17:48 +000043 raw_svector_ostream CommentStream;
Daniel Dunbare3ee3322010-02-03 18:18:30 +000044
Daniel Dunbare3ee3322010-02-03 18:18:30 +000045 unsigned IsVerboseAsm : 1;
46 unsigned ShowInst : 1;
Rafael Espindola0a017a62010-12-10 07:39:47 +000047 unsigned UseLoc : 1;
Daniel Dunbare3ee3322010-02-03 18:18:30 +000048
Rafael Espindola1c8ac8f2010-12-04 03:21:47 +000049 bool needsSet(const MCExpr *Value);
50
Chris Lattner962c5bd82009-08-17 04:17:34 +000051public:
Chris Lattner38e92192010-01-22 07:29:22 +000052 MCAsmStreamer(MCContext &Context, formatted_raw_ostream &os,
Rafael Espindola0a017a62010-12-10 07:39:47 +000053 bool isVerboseAsm,
54 bool useLoc,
Daniel Dunbarecd0c8a2010-12-16 03:05:59 +000055 MCInstPrinter *printer, MCCodeEmitter *emitter,
56 TargetAsmBackend *asmbackend,
57 bool showInst)
Chris Lattnerac77bf52010-03-12 18:28:53 +000058 : MCStreamer(Context), OS(os), MAI(Context.getAsmInfo()),
Daniel Dunbarecd0c8a2010-12-16 03:05:59 +000059 InstPrinter(printer), Emitter(emitter), AsmBackend(asmbackend),
60 CommentStream(CommentToEmit), IsVerboseAsm(isVerboseAsm),
Rafael Espindola0a017a62010-12-10 07:39:47 +000061 ShowInst(showInst), UseLoc(useLoc) {
Chris Lattner482bf692010-02-10 00:10:18 +000062 if (InstPrinter && IsVerboseAsm)
63 InstPrinter->setCommentStream(CommentStream);
64 }
Chris Lattner962c5bd82009-08-17 04:17:34 +000065 ~MCAsmStreamer() {}
Daniel Dunbar9faf2732009-06-24 01:03:06 +000066
Chris Lattner38e92192010-01-22 07:29:22 +000067 inline void EmitEOL() {
Chris Lattner8fa0e352010-01-22 19:17:48 +000068 // If we don't have any comments, just emit a \n.
69 if (!IsVerboseAsm) {
Chris Lattner38e92192010-01-22 07:29:22 +000070 OS << '\n';
71 return;
72 }
73 EmitCommentsAndEOL();
74 }
75 void EmitCommentsAndEOL();
Chris Lattnerb0d44c32010-02-02 23:37:42 +000076
77 /// isVerboseAsm - Return true if this streamer supports verbose assembly at
78 /// all.
79 virtual bool isVerboseAsm() const { return IsVerboseAsm; }
Jim Grosbach3bde49a2010-09-22 18:16:55 +000080
Chris Lattner8a87fb72010-04-03 21:35:55 +000081 /// hasRawTextSupport - We support EmitRawText.
82 virtual bool hasRawTextSupport() const { return true; }
Daniel Dunbar9a0a4612010-02-09 23:00:14 +000083
Chris Lattnere1d8a312010-01-22 18:21:35 +000084 /// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner38e92192010-01-22 07:29:22 +000085 /// file if applicable as a QoI issue to make the output of the compiler
86 /// more readable. This only affects the MCAsmStreamer, and only when
87 /// verbose assembly output is enabled.
Chris Lattnere1d8a312010-01-22 18:21:35 +000088 virtual void AddComment(const Twine &T);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +000089
90 /// AddEncodingComment - Add a comment showing the encoding of an instruction.
91 virtual void AddEncodingComment(const MCInst &Inst);
92
Chris Lattner8fa0e352010-01-22 19:17:48 +000093 /// GetCommentOS - Return a raw_ostream that comments can be written to.
94 /// Unlike AddComment, you are required to terminate comments with \n if you
95 /// use this method.
96 virtual raw_ostream &GetCommentOS() {
97 if (!IsVerboseAsm)
98 return nulls(); // Discard comments unless in verbose asm mode.
99 return CommentStream;
100 }
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000101
Chris Lattnera3eee3c2010-01-22 19:52:01 +0000102 /// AddBlankLine - Emit a blank line to a .s file to pretty it up.
103 virtual void AddBlankLine() {
104 EmitEOL();
105 }
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000106
Chris Lattner962c5bd82009-08-17 04:17:34 +0000107 /// @name MCStreamer Interface
108 /// @{
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000109
Rafael Espindola58ac6e12011-02-16 01:08:29 +0000110 virtual void ChangeSection(const MCSection *Section);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000111
Rafael Espindolaf667d922010-09-15 21:48:40 +0000112 virtual void InitSections() {
113 // FIXME, this is MachO specific, but the testsuite
114 // expects this.
115 SwitchSection(getContext().getMachOSection("__TEXT", "__text",
116 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
117 0, SectionKind::getText()));
118 }
119
Chris Lattner962c5bd82009-08-17 04:17:34 +0000120 virtual void EmitLabel(MCSymbol *Symbol);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000121
Chris Lattner685508c2010-01-23 06:39:22 +0000122 virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
Jim Grosbach5a2c68d2010-11-05 22:08:08 +0000123 virtual void EmitThumbFunc(MCSymbol *Func);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000124
Daniel Dunbar897ffad2009-08-31 08:09:28 +0000125 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
Rafael Espindola16145972010-11-01 14:28:48 +0000126 virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
Rafael Espindola57ab7082010-12-03 00:55:40 +0000127 virtual void EmitDwarfAdvanceLineAddr(int64_t LineDelta,
128 const MCSymbol *LastLabel,
129 const MCSymbol *Label);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000130
Chris Lattner685508c2010-01-23 06:39:22 +0000131 virtual void EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
Kevin Enderbyc9d93ef2009-07-13 21:03:15 +0000132
Chris Lattner962c5bd82009-08-17 04:17:34 +0000133 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
Chris Lattner72afa952010-05-08 19:54:22 +0000134 virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol);
135 virtual void EmitCOFFSymbolStorageClass(int StorageClass);
136 virtual void EmitCOFFSymbolType(int Type);
137 virtual void EndCOFFSymbolDef();
Chris Lattner91dac6d2010-01-25 07:52:13 +0000138 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
Chris Lattnerb1301f72010-01-23 07:47:02 +0000139 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar6a715dc2009-08-30 06:17:16 +0000140 unsigned ByteAlignment);
Kevin Enderby4c21caa2009-07-14 18:17:10 +0000141
Chris Lattnerb1301f72010-01-23 07:47:02 +0000142 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
143 ///
144 /// @param Symbol - The common symbol to emit.
145 /// @param Size - The size of the common symbol.
146 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000147
Daniel Dunbarcf72e1c2009-08-28 05:48:22 +0000148 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
Daniel Dunbar6a715dc2009-08-30 06:17:16 +0000149 unsigned Size = 0, unsigned ByteAlignment = 0);
Kevin Enderbycbe475d2009-07-14 21:35:03 +0000150
Eric Christopher5c87be72010-05-18 21:16:04 +0000151 virtual void EmitTBSSSymbol (const MCSection *Section, MCSymbol *Symbol,
152 uint64_t Size, unsigned ByteAlignment = 0);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000153
Chris Lattnerc35681b2010-01-19 19:46:13 +0000154 virtual void EmitBytes(StringRef Data, unsigned AddrSpace);
Chris Lattnera1e11f52009-07-07 20:30:46 +0000155
Rafael Espindola0a017a62010-12-10 07:39:47 +0000156 virtual void EmitValueImpl(const MCExpr *Value, unsigned Size,
157 bool isPCRel, unsigned AddrSpace);
Rafael Espindola4c70eea2010-12-03 02:54:21 +0000158 virtual void EmitIntValue(uint64_t Value, unsigned Size,
159 unsigned AddrSpace = 0);
Rafael Espindola5e874982010-11-02 17:22:24 +0000160
Rafael Espindola6aea5922011-04-21 23:39:26 +0000161 virtual void EmitULEB128Value(const MCExpr *Value);
Rafael Espindola5e874982010-11-02 17:22:24 +0000162
Rafael Espindola6aea5922011-04-21 23:39:26 +0000163 virtual void EmitSLEB128Value(const MCExpr *Value);
Rafael Espindola5e874982010-11-02 17:22:24 +0000164
Chris Lattner3cde7602010-01-25 21:28:50 +0000165 virtual void EmitGPRel32Value(const MCExpr *Value);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000166
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000167
Chris Lattnerc35681b2010-01-19 19:46:13 +0000168 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue,
169 unsigned AddrSpace);
Chris Lattner07cadaf2009-07-10 22:20:30 +0000170
Chris Lattner962c5bd82009-08-17 04:17:34 +0000171 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
172 unsigned ValueSize = 1,
173 unsigned MaxBytesToEmit = 0);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000174
Kevin Enderbye83d74f2010-02-23 18:26:34 +0000175 virtual void EmitCodeAlignment(unsigned ByteAlignment,
176 unsigned MaxBytesToEmit = 0);
177
Daniel Dunbar897ffad2009-08-31 08:09:28 +0000178 virtual void EmitValueToOffset(const MCExpr *Offset,
Chris Lattner962c5bd82009-08-17 04:17:34 +0000179 unsigned char Value = 0);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000180
Chris Lattner601ef332010-01-25 18:58:59 +0000181 virtual void EmitFileDirective(StringRef Filename);
Rafael Espindolac653a892010-11-16 21:20:32 +0000182 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Filename);
183 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
184 unsigned Column, unsigned Flags,
Devang Patel17740e72011-04-18 20:26:49 +0000185 unsigned Isa, unsigned Discriminator,
186 StringRef FileName);
Chris Lattner601ef332010-01-25 18:58:59 +0000187
Rafael Espindola539d96f2011-04-12 23:59:07 +0000188 virtual void EmitCFIStartProc();
189 virtual void EmitCFIEndProc();
190 virtual void EmitCFIDefCfa(int64_t Register, int64_t Offset);
191 virtual void EmitCFIDefCfaOffset(int64_t Offset);
192 virtual void EmitCFIDefCfaRegister(int64_t Register);
193 virtual void EmitCFIOffset(int64_t Register, int64_t Offset);
194 virtual void EmitCFIPersonality(const MCSymbol *Sym, unsigned Encoding);
195 virtual void EmitCFILsda(const MCSymbol *Sym, unsigned Encoding);
196 virtual void EmitCFIRememberState();
197 virtual void EmitCFIRestoreState();
198 virtual void EmitCFISameValue(int64_t Register);
199 virtual void EmitCFIRelOffset(int64_t Register, int64_t Offset);
200 virtual void EmitCFIAdjustCfaOffset(int64_t Adjustment);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000201
Anton Korobeynikova7ec2dc2011-03-05 18:43:15 +0000202 virtual void EmitFnStart();
203 virtual void EmitFnEnd();
204 virtual void EmitCantUnwind();
205 virtual void EmitPersonality(const MCSymbol *Personality);
206 virtual void EmitHandlerData();
Anton Korobeynikove7410dd2011-03-05 18:43:32 +0000207 virtual void EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset = 0);
208 virtual void EmitPad(int64_t Offset);
209 virtual void EmitRegSave(const SmallVectorImpl<unsigned> &RegList, bool);
210
Anton Korobeynikova7ec2dc2011-03-05 18:43:15 +0000211
Chris Lattner601ef332010-01-25 18:58:59 +0000212 virtual void EmitInstruction(const MCInst &Inst);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000213
Jim Grosbach6ebd7282010-09-22 18:18:30 +0000214 /// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner8a87fb72010-04-03 21:35:55 +0000215 /// the specified string in the output .s file. This capability is
216 /// indicated by the hasRawTextSupport() predicate.
217 virtual void EmitRawText(StringRef String);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000218
Chris Lattner962c5bd82009-08-17 04:17:34 +0000219 virtual void Finish();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000220
Chris Lattner962c5bd82009-08-17 04:17:34 +0000221 /// @}
222};
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000223
Chris Lattner962c5bd82009-08-17 04:17:34 +0000224} // end anonymous namespace.
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000225
Chris Lattnere1d8a312010-01-22 18:21:35 +0000226/// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner38e92192010-01-22 07:29:22 +0000227/// file if applicable as a QoI issue to make the output of the compiler
228/// more readable. This only affects the MCAsmStreamer, and only when
229/// verbose assembly output is enabled.
Chris Lattnere1d8a312010-01-22 18:21:35 +0000230void MCAsmStreamer::AddComment(const Twine &T) {
Chris Lattner38e92192010-01-22 07:29:22 +0000231 if (!IsVerboseAsm) return;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000232
Chris Lattner8fa0e352010-01-22 19:17:48 +0000233 // Make sure that CommentStream is flushed.
234 CommentStream.flush();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000235
Chris Lattner38e92192010-01-22 07:29:22 +0000236 T.toVector(CommentToEmit);
Chris Lattner8fa0e352010-01-22 19:17:48 +0000237 // Each comment goes on its own line.
238 CommentToEmit.push_back('\n');
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000239
Chris Lattner1386a882010-01-22 21:16:10 +0000240 // Tell the comment stream that the vector changed underneath it.
241 CommentStream.resync();
Chris Lattner38e92192010-01-22 07:29:22 +0000242}
243
244void MCAsmStreamer::EmitCommentsAndEOL() {
Chris Lattner8fa0e352010-01-22 19:17:48 +0000245 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) {
246 OS << '\n';
247 return;
248 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000249
Chris Lattner8fa0e352010-01-22 19:17:48 +0000250 CommentStream.flush();
Chris Lattner38e92192010-01-22 07:29:22 +0000251 StringRef Comments = CommentToEmit.str();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000252
Chris Lattner8fa0e352010-01-22 19:17:48 +0000253 assert(Comments.back() == '\n' &&
254 "Comment array not newline terminated");
255 do {
Chris Lattner38e92192010-01-22 07:29:22 +0000256 // Emit a line of comments.
257 OS.PadToColumn(MAI.getCommentColumn());
258 size_t Position = Comments.find('\n');
259 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000260
Chris Lattner38e92192010-01-22 07:29:22 +0000261 Comments = Comments.substr(Position+1);
Chris Lattner8fa0e352010-01-22 19:17:48 +0000262 } while (!Comments.empty());
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000263
Chris Lattner1386a882010-01-22 21:16:10 +0000264 CommentToEmit.clear();
265 // Tell the comment stream that the vector changed underneath it.
266 CommentStream.resync();
Chris Lattner38e92192010-01-22 07:29:22 +0000267}
268
Daniel Dunbar188e87f2009-06-25 21:03:18 +0000269static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
270 assert(Bytes && "Invalid size!");
271 return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
272}
273
Rafael Espindola58ac6e12011-02-16 01:08:29 +0000274void MCAsmStreamer::ChangeSection(const MCSection *Section) {
Chris Lattner4b7dadb2009-08-19 05:49:37 +0000275 assert(Section && "Cannot switch to a null section!");
Rafael Espindola58ac6e12011-02-16 01:08:29 +0000276 Section->PrintSwitchToSection(MAI, OS);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000277}
278
279void MCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
Daniel Dunbar6860ac72009-08-22 07:22:36 +0000280 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Daniel Dunbardeb7ba92010-05-05 19:01:00 +0000281 assert(!Symbol->isVariable() && "Cannot emit a variable symbol!");
Rafael Espindola58ac6e12011-02-16 01:08:29 +0000282 assert(getCurrentSection() && "Cannot emit before setting section!");
Daniel Dunbarf782ebc2009-06-24 17:00:42 +0000283
Chris Lattner7bce0592010-09-22 22:19:53 +0000284 OS << *Symbol << MAI.getLabelSuffix();
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000285 EmitEOL();
Rafael Espindola58ac6e12011-02-16 01:08:29 +0000286 Symbol->setSection(*getCurrentSection());
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000287}
288
Chris Lattner685508c2010-01-23 06:39:22 +0000289void MCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
Kevin Enderbydd27e5e2009-07-16 17:56:39 +0000290 switch (Flag) {
Daniel Dunbaraba5fb82009-08-13 23:36:34 +0000291 default: assert(0 && "Invalid flag!");
Jason W Kim645f6c22010-09-30 02:45:56 +0000292 case MCAF_SyntaxUnified: OS << "\t.syntax unified"; break;
Chris Lattner685508c2010-01-23 06:39:22 +0000293 case MCAF_SubsectionsViaSymbols: OS << ".subsections_via_symbols"; break;
Jim Grosbach5a2c68d2010-11-05 22:08:08 +0000294 case MCAF_Code16: OS << "\t.code\t16"; break;
Jim Grosbachcbdf7ef2010-11-05 22:40:09 +0000295 case MCAF_Code32: OS << "\t.code\t32"; break;
Kevin Enderbydd27e5e2009-07-16 17:56:39 +0000296 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000297 EmitEOL();
Kevin Enderbyc9d93ef2009-07-13 21:03:15 +0000298}
299
Jim Grosbach5a2c68d2010-11-05 22:08:08 +0000300void MCAsmStreamer::EmitThumbFunc(MCSymbol *Func) {
301 // This needs to emit to a temporary string to get properly quoted
302 // MCSymbols when they have spaces in them.
303 OS << "\t.thumb_func";
304 if (Func)
305 OS << '\t' << *Func;
306 EmitEOL();
307}
308
Daniel Dunbar897ffad2009-08-31 08:09:28 +0000309void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000310 OS << *Symbol << " = " << *Value;
311 EmitEOL();
Daniel Dunbard20cda02009-10-16 01:34:54 +0000312
313 // FIXME: Lift context changes into super class.
Daniel Dunbar7a989da2010-05-05 17:41:00 +0000314 Symbol->setVariableValue(Value);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000315}
316
Rafael Espindola16145972010-11-01 14:28:48 +0000317void MCAsmStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
318 OS << ".weakref " << *Alias << ", " << *Symbol;
319 EmitEOL();
320}
321
Rafael Espindola57ab7082010-12-03 00:55:40 +0000322void MCAsmStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
323 const MCSymbol *LastLabel,
324 const MCSymbol *Label) {
Rafael Espindola0a017a62010-12-10 07:39:47 +0000325 EmitDwarfSetLineAddr(LineDelta, Label,
326 getContext().getTargetAsmInfo().getPointerSize());
Rafael Espindola57ab7082010-12-03 00:55:40 +0000327}
328
Daniel Dunbard20cda02009-10-16 01:34:54 +0000329void MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
Chris Lattner685508c2010-01-23 06:39:22 +0000330 MCSymbolAttr Attribute) {
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000331 switch (Attribute) {
Chris Lattner685508c2010-01-23 06:39:22 +0000332 case MCSA_Invalid: assert(0 && "Invalid symbol attribute");
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000333 case MCSA_ELF_TypeFunction: /// .type _foo, STT_FUNC # aka @function
334 case MCSA_ELF_TypeIndFunction: /// .type _foo, STT_GNU_IFUNC
335 case MCSA_ELF_TypeObject: /// .type _foo, STT_OBJECT # aka @object
336 case MCSA_ELF_TypeTLS: /// .type _foo, STT_TLS # aka @tls_object
337 case MCSA_ELF_TypeCommon: /// .type _foo, STT_COMMON # aka @common
338 case MCSA_ELF_TypeNoType: /// .type _foo, STT_NOTYPE # aka @notype
Rafael Espindola2d006b12010-11-13 04:55:06 +0000339 case MCSA_ELF_TypeGnuUniqueObject: /// .type _foo, @gnu_unique_object
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000340 assert(MAI.hasDotTypeDotSizeDirective() && "Symbol Attr not supported");
Dan Gohman77fe07a2010-02-04 01:42:13 +0000341 OS << "\t.type\t" << *Symbol << ','
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000342 << ((MAI.getCommentString()[0] != '@') ? '@' : '%');
343 switch (Attribute) {
344 default: assert(0 && "Unknown ELF .type");
345 case MCSA_ELF_TypeFunction: OS << "function"; break;
346 case MCSA_ELF_TypeIndFunction: OS << "gnu_indirect_function"; break;
347 case MCSA_ELF_TypeObject: OS << "object"; break;
348 case MCSA_ELF_TypeTLS: OS << "tls_object"; break;
349 case MCSA_ELF_TypeCommon: OS << "common"; break;
350 case MCSA_ELF_TypeNoType: OS << "no_type"; break;
Rafael Espindola2d006b12010-11-13 04:55:06 +0000351 case MCSA_ELF_TypeGnuUniqueObject: OS << "gnu_unique_object"; break;
Chris Lattnerbc8f6382010-01-25 18:30:45 +0000352 }
353 EmitEOL();
354 return;
355 case MCSA_Global: // .globl/.global
356 OS << MAI.getGlobalDirective();
357 break;
Chris Lattner79d20752010-06-21 20:35:01 +0000358 case MCSA_Hidden: OS << "\t.hidden\t"; break;
359 case MCSA_IndirectSymbol: OS << "\t.indirect_symbol\t"; break;
360 case MCSA_Internal: OS << "\t.internal\t"; break;
361 case MCSA_LazyReference: OS << "\t.lazy_reference\t"; break;
362 case MCSA_Local: OS << "\t.local\t"; break;
363 case MCSA_NoDeadStrip: OS << "\t.no_dead_strip\t"; break;
Kevin Enderby8be14412010-11-19 18:39:33 +0000364 case MCSA_SymbolResolver: OS << "\t.symbol_resolver\t"; break;
Chris Lattner79d20752010-06-21 20:35:01 +0000365 case MCSA_PrivateExtern: OS << "\t.private_extern\t"; break;
366 case MCSA_Protected: OS << "\t.protected\t"; break;
367 case MCSA_Reference: OS << "\t.reference\t"; break;
368 case MCSA_Weak: OS << "\t.weak\t"; break;
369 case MCSA_WeakDefinition: OS << "\t.weak_definition\t"; break;
Chris Lattner685508c2010-01-23 06:39:22 +0000370 // .weak_reference
371 case MCSA_WeakReference: OS << MAI.getWeakRefDirective(); break;
Kevin Enderby082d0fd2010-07-08 17:22:42 +0000372 case MCSA_WeakDefAutoPrivate: OS << "\t.weak_def_can_be_hidden\t"; break;
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000373 }
374
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000375 OS << *Symbol;
376 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000377}
378
Kevin Enderby4c21caa2009-07-14 18:17:10 +0000379void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000380 OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
381 EmitEOL();
Kevin Enderby4c21caa2009-07-14 18:17:10 +0000382}
383
Chris Lattner72afa952010-05-08 19:54:22 +0000384void MCAsmStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {
385 OS << "\t.def\t " << *Symbol << ';';
386 EmitEOL();
387}
388
389void MCAsmStreamer::EmitCOFFSymbolStorageClass (int StorageClass) {
390 OS << "\t.scl\t" << StorageClass << ';';
391 EmitEOL();
392}
393
394void MCAsmStreamer::EmitCOFFSymbolType (int Type) {
395 OS << "\t.type\t" << Type << ';';
396 EmitEOL();
397}
398
399void MCAsmStreamer::EndCOFFSymbolDef() {
400 OS << "\t.endef";
401 EmitEOL();
402}
403
Chris Lattner91dac6d2010-01-25 07:52:13 +0000404void MCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
405 assert(MAI.hasDotTypeDotSizeDirective());
406 OS << "\t.size\t" << *Symbol << ", " << *Value << '\n';
407}
408
Chris Lattnerb1301f72010-01-23 07:47:02 +0000409void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar6a715dc2009-08-30 06:17:16 +0000410 unsigned ByteAlignment) {
Chris Lattnerb1301f72010-01-23 07:47:02 +0000411 OS << "\t.comm\t" << *Symbol << ',' << Size;
Chris Lattner0375d2f2010-01-25 07:29:13 +0000412 if (ByteAlignment != 0) {
Rafael Espindoladcb03f02010-01-26 20:21:43 +0000413 if (MAI.getCOMMDirectiveAlignmentIsInBytes())
Chris Lattner95b98952010-01-19 06:01:04 +0000414 OS << ',' << ByteAlignment;
415 else
416 OS << ',' << Log2_32(ByteAlignment);
417 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000418 EmitEOL();
Chris Lattnera1e11f52009-07-07 20:30:46 +0000419}
420
Chris Lattnerb1301f72010-01-23 07:47:02 +0000421/// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
422///
423/// @param Symbol - The common symbol to emit.
424/// @param Size - The size of the common symbol.
425void MCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size) {
426 assert(MAI.hasLCOMMDirective() && "Doesn't have .lcomm, can't emit it!");
427 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
428 EmitEOL();
429}
430
Daniel Dunbarcf72e1c2009-08-28 05:48:22 +0000431void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Daniel Dunbar6a715dc2009-08-30 06:17:16 +0000432 unsigned Size, unsigned ByteAlignment) {
Daniel Dunbaraba5fb82009-08-13 23:36:34 +0000433 // Note: a .zerofill directive does not switch sections.
Chris Lattner591105c2009-08-08 23:39:42 +0000434 OS << ".zerofill ";
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000435
Chris Lattner591105c2009-08-08 23:39:42 +0000436 // This is a mach-o specific directive.
Chris Lattnercb307a272009-08-10 01:39:42 +0000437 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
Daniel Dunbar563a7e82009-08-14 18:51:45 +0000438 OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000439
Chris Lattner07cadaf2009-07-10 22:20:30 +0000440 if (Symbol != NULL) {
Chris Lattner8b5d55e2010-01-17 21:43:43 +0000441 OS << ',' << *Symbol << ',' << Size;
Daniel Dunbar6a715dc2009-08-30 06:17:16 +0000442 if (ByteAlignment != 0)
443 OS << ',' << Log2_32(ByteAlignment);
Chris Lattner07cadaf2009-07-10 22:20:30 +0000444 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000445 EmitEOL();
Chris Lattner07cadaf2009-07-10 22:20:30 +0000446}
447
Eric Christopher68b1bbe2010-05-17 02:13:02 +0000448// .tbss sym, size, align
449// This depends that the symbol has already been mangled from the original,
450// e.g. _a.
Eric Christopher5c87be72010-05-18 21:16:04 +0000451void MCAsmStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
452 uint64_t Size, unsigned ByteAlignment) {
Eric Christopher9fb6bb02010-05-14 01:50:28 +0000453 assert(Symbol != NULL && "Symbol shouldn't be NULL!");
Eric Christopher5c87be72010-05-18 21:16:04 +0000454 // Instead of using the Section we'll just use the shortcut.
455 // This is a mach-o specific directive and section.
Eric Christopher68b1bbe2010-05-17 02:13:02 +0000456 OS << ".tbss " << *Symbol << ", " << Size;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000457
Eric Christopher5c87be72010-05-18 21:16:04 +0000458 // Output align if we have it. We default to 1 so don't bother printing
459 // that.
460 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000461
Eric Christopher9fb6bb02010-05-14 01:50:28 +0000462 EmitEOL();
463}
464
Chris Lattnerded9af632010-01-23 00:15:00 +0000465static inline char toOctal(int X) { return (X&7)+'0'; }
466
Chris Lattner601ef332010-01-25 18:58:59 +0000467static void PrintQuotedString(StringRef Data, raw_ostream &OS) {
468 OS << '"';
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000469
Chris Lattner601ef332010-01-25 18:58:59 +0000470 for (unsigned i = 0, e = Data.size(); i != e; ++i) {
471 unsigned char C = Data[i];
472 if (C == '"' || C == '\\') {
473 OS << '\\' << (char)C;
474 continue;
475 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000476
Chris Lattner601ef332010-01-25 18:58:59 +0000477 if (isprint((unsigned char)C)) {
478 OS << (char)C;
479 continue;
480 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000481
Chris Lattner601ef332010-01-25 18:58:59 +0000482 switch (C) {
483 case '\b': OS << "\\b"; break;
484 case '\f': OS << "\\f"; break;
485 case '\n': OS << "\\n"; break;
486 case '\r': OS << "\\r"; break;
487 case '\t': OS << "\\t"; break;
488 default:
489 OS << '\\';
490 OS << toOctal(C >> 6);
491 OS << toOctal(C >> 3);
492 OS << toOctal(C >> 0);
493 break;
494 }
495 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000496
Chris Lattner601ef332010-01-25 18:58:59 +0000497 OS << '"';
498}
499
500
Chris Lattnerc35681b2010-01-19 19:46:13 +0000501void MCAsmStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
Rafael Espindola58ac6e12011-02-16 01:08:29 +0000502 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Chris Lattnerded9af632010-01-23 00:15:00 +0000503 if (Data.empty()) return;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000504
Chris Lattnerded9af632010-01-23 00:15:00 +0000505 if (Data.size() == 1) {
506 OS << MAI.getData8bitsDirective(AddrSpace);
507 OS << (unsigned)(unsigned char)Data[0];
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000508 EmitEOL();
Chris Lattnerded9af632010-01-23 00:15:00 +0000509 return;
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000510 }
Chris Lattnerded9af632010-01-23 00:15:00 +0000511
512 // If the data ends with 0 and the target supports .asciz, use it, otherwise
513 // use .ascii
514 if (MAI.getAscizDirective() && Data.back() == 0) {
515 OS << MAI.getAscizDirective();
516 Data = Data.substr(0, Data.size()-1);
517 } else {
518 OS << MAI.getAsciiDirective();
519 }
520
Chris Lattner601ef332010-01-25 18:58:59 +0000521 OS << ' ';
522 PrintQuotedString(Data, OS);
Chris Lattnerded9af632010-01-23 00:15:00 +0000523 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000524}
525
Rafael Espindola4c70eea2010-12-03 02:54:21 +0000526void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size,
527 unsigned AddrSpace) {
528 EmitValue(MCConstantExpr::Create(Value, getContext()), Size, AddrSpace);
529}
530
Rafael Espindola0a017a62010-12-10 07:39:47 +0000531void MCAsmStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size,
532 bool isPCRel, unsigned AddrSpace) {
Rafael Espindola58ac6e12011-02-16 01:08:29 +0000533 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Rafael Espindola0a017a62010-12-10 07:39:47 +0000534 assert(!isPCRel && "Cannot emit pc relative relocations!");
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000535 const char *Directive = 0;
536 switch (Size) {
537 default: break;
538 case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
539 case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
540 case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
Chris Lattner45eeffc2010-01-20 06:45:39 +0000541 case 8:
542 Directive = MAI.getData64bitsDirective(AddrSpace);
543 // If the target doesn't support 64-bit data, emit as two 32-bit halves.
544 if (Directive) break;
Rafael Espindolae5e1f9a2010-11-28 23:22:44 +0000545 int64_t IntValue;
546 if (!Value->EvaluateAsAbsolute(IntValue))
547 report_fatal_error("Don't know how to emit this value.");
Rafael Espindola0a017a62010-12-10 07:39:47 +0000548 if (getContext().getTargetAsmInfo().isLittleEndian()) {
Rafael Espindolae5e1f9a2010-11-28 23:22:44 +0000549 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
550 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
Chris Lattner45eeffc2010-01-20 06:45:39 +0000551 } else {
Rafael Espindolae5e1f9a2010-11-28 23:22:44 +0000552 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
553 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
Chris Lattner45eeffc2010-01-20 06:45:39 +0000554 }
555 return;
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000556 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000557
Chris Lattnerdc50e5d2010-01-19 22:03:38 +0000558 assert(Directive && "Invalid size for machine code value!");
Chris Lattner3cde7602010-01-25 21:28:50 +0000559 OS << Directive << *Value;
Chris Lattner38e92192010-01-22 07:29:22 +0000560 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000561}
562
Rafael Espindola6aea5922011-04-21 23:39:26 +0000563void MCAsmStreamer::EmitULEB128Value(const MCExpr *Value) {
Rafael Espindola92ca9332010-11-19 04:10:13 +0000564 int64_t IntValue;
565 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindola6aea5922011-04-21 23:39:26 +0000566 EmitULEB128IntValue(IntValue);
Rafael Espindola92ca9332010-11-19 04:10:13 +0000567 return;
568 }
Rafael Espindola38d07562010-11-04 18:17:08 +0000569 assert(MAI.hasLEB128() && "Cannot print a .uleb");
570 OS << ".uleb128 " << *Value;
Rafael Espindola5e874982010-11-02 17:22:24 +0000571 EmitEOL();
572}
573
Rafael Espindola6aea5922011-04-21 23:39:26 +0000574void MCAsmStreamer::EmitSLEB128Value(const MCExpr *Value) {
Rafael Espindola92ca9332010-11-19 04:10:13 +0000575 int64_t IntValue;
576 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindola6aea5922011-04-21 23:39:26 +0000577 EmitSLEB128IntValue(IntValue);
Rafael Espindola92ca9332010-11-19 04:10:13 +0000578 return;
579 }
Rafael Espindola38d07562010-11-04 18:17:08 +0000580 assert(MAI.hasLEB128() && "Cannot print a .sleb");
581 OS << ".sleb128 " << *Value;
Rafael Espindola5e874982010-11-02 17:22:24 +0000582 EmitEOL();
583}
584
Chris Lattner3cde7602010-01-25 21:28:50 +0000585void MCAsmStreamer::EmitGPRel32Value(const MCExpr *Value) {
586 assert(MAI.getGPRel32Directive() != 0);
587 OS << MAI.getGPRel32Directive() << *Value;
588 EmitEOL();
589}
590
591
Chris Lattner4340cb32010-01-19 18:52:28 +0000592/// EmitFill - Emit NumBytes bytes worth of the value specified by
593/// FillValue. This implements directives such as '.space'.
Chris Lattnerc35681b2010-01-19 19:46:13 +0000594void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
595 unsigned AddrSpace) {
Chris Lattnered89f602010-01-19 18:58:52 +0000596 if (NumBytes == 0) return;
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000597
Chris Lattnerc35681b2010-01-19 19:46:13 +0000598 if (AddrSpace == 0)
599 if (const char *ZeroDirective = MAI.getZeroDirective()) {
600 OS << ZeroDirective << NumBytes;
601 if (FillValue != 0)
602 OS << ',' << (int)FillValue;
Chris Lattner38e92192010-01-22 07:29:22 +0000603 EmitEOL();
Chris Lattnerc35681b2010-01-19 19:46:13 +0000604 return;
605 }
606
607 // Emit a byte at a time.
608 MCStreamer::EmitFill(NumBytes, FillValue, AddrSpace);
Chris Lattner4340cb32010-01-19 18:52:28 +0000609}
610
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000611void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
612 unsigned ValueSize,
613 unsigned MaxBytesToEmit) {
Chris Lattner37b72342009-08-19 06:12:02 +0000614 // Some assemblers don't support non-power of two alignments, so we always
615 // emit alignments as a power of two if possible.
616 if (isPowerOf2_32(ByteAlignment)) {
Chris Lattner78b23b02009-08-19 06:35:36 +0000617 switch (ValueSize) {
618 default: llvm_unreachable("Invalid size for machine code value!");
Chris Lattnere9a75a62009-08-22 21:43:10 +0000619 case 1: OS << MAI.getAlignDirective(); break;
620 // FIXME: use MAI for this!
Chris Lattner78b23b02009-08-19 06:35:36 +0000621 case 2: OS << ".p2alignw "; break;
622 case 4: OS << ".p2alignl "; break;
623 case 8: llvm_unreachable("Unsupported alignment size!");
624 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000625
Chris Lattnere9a75a62009-08-22 21:43:10 +0000626 if (MAI.getAlignmentIsInBytes())
Chris Lattner37b72342009-08-19 06:12:02 +0000627 OS << ByteAlignment;
628 else
629 OS << Log2_32(ByteAlignment);
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000630
Chris Lattner37b72342009-08-19 06:12:02 +0000631 if (Value || MaxBytesToEmit) {
Chris Lattnerf16a1222009-09-03 04:01:10 +0000632 OS << ", 0x";
633 OS.write_hex(truncateToSize(Value, ValueSize));
Chris Lattner37b72342009-08-19 06:12:02 +0000634
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000635 if (MaxBytesToEmit)
Chris Lattner37b72342009-08-19 06:12:02 +0000636 OS << ", " << MaxBytesToEmit;
637 }
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000638 EmitEOL();
Chris Lattner37b72342009-08-19 06:12:02 +0000639 return;
640 }
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000641
Chris Lattner37b72342009-08-19 06:12:02 +0000642 // Non-power of two alignment. This is not widely supported by assemblers.
Chris Lattnere9a75a62009-08-22 21:43:10 +0000643 // FIXME: Parameterize this based on MAI.
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000644 switch (ValueSize) {
Chris Lattner37b72342009-08-19 06:12:02 +0000645 default: llvm_unreachable("Invalid size for machine code value!");
646 case 1: OS << ".balign"; break;
647 case 2: OS << ".balignw"; break;
648 case 4: OS << ".balignl"; break;
649 case 8: llvm_unreachable("Unsupported alignment size!");
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000650 }
651
Chris Lattner37b72342009-08-19 06:12:02 +0000652 OS << ' ' << ByteAlignment;
Daniel Dunbar188e87f2009-06-25 21:03:18 +0000653 OS << ", " << truncateToSize(Value, ValueSize);
Jim Grosbach3bde49a2010-09-22 18:16:55 +0000654 if (MaxBytesToEmit)
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000655 OS << ", " << MaxBytesToEmit;
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000656 EmitEOL();
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000657}
658
Kevin Enderbye83d74f2010-02-23 18:26:34 +0000659void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
660 unsigned MaxBytesToEmit) {
Chris Lattnereebaf6a2010-02-23 18:44:31 +0000661 // Emit with a text fill value.
662 EmitValueToAlignment(ByteAlignment, MAI.getTextAlignFillValue(),
663 1, MaxBytesToEmit);
Kevin Enderbye83d74f2010-02-23 18:26:34 +0000664}
665
Daniel Dunbar897ffad2009-08-31 08:09:28 +0000666void MCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000667 unsigned char Value) {
668 // FIXME: Verify that Offset is associated with the current section.
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000669 OS << ".org " << *Offset << ", " << (unsigned) Value;
670 EmitEOL();
Daniel Dunbar71ea89d2009-06-24 19:25:34 +0000671}
672
Chris Lattner601ef332010-01-25 18:58:59 +0000673
674void MCAsmStreamer::EmitFileDirective(StringRef Filename) {
675 assert(MAI.hasSingleParameterDotFile());
676 OS << "\t.file\t";
677 PrintQuotedString(Filename, OS);
678 EmitEOL();
679}
680
Rafael Espindolac653a892010-11-16 21:20:32 +0000681bool MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Filename){
Rafael Espindola0a017a62010-12-10 07:39:47 +0000682 if (UseLoc) {
Rafael Espindolab58867c2010-11-19 02:26:16 +0000683 OS << "\t.file\t" << FileNo << ' ';
684 PrintQuotedString(Filename, OS);
685 EmitEOL();
686 }
Rafael Espindolac653a892010-11-16 21:20:32 +0000687 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Filename);
688}
689
690void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
691 unsigned Column, unsigned Flags,
692 unsigned Isa,
Devang Patel17740e72011-04-18 20:26:49 +0000693 unsigned Discriminator,
694 StringRef FileName) {
Rafael Espindolab58867c2010-11-19 02:26:16 +0000695 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
Devang Patel17740e72011-04-18 20:26:49 +0000696 Isa, Discriminator, FileName);
Rafael Espindola0a017a62010-12-10 07:39:47 +0000697 if (!UseLoc)
Rafael Espindolab58867c2010-11-19 02:26:16 +0000698 return;
699
Rafael Espindolac653a892010-11-16 21:20:32 +0000700 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
701 if (Flags & DWARF2_FLAG_BASIC_BLOCK)
702 OS << " basic_block";
703 if (Flags & DWARF2_FLAG_PROLOGUE_END)
704 OS << " prologue_end";
705 if (Flags & DWARF2_FLAG_EPILOGUE_BEGIN)
706 OS << " epilogue_begin";
707
708 unsigned OldFlags = getContext().getCurrentDwarfLoc().getFlags();
709 if ((Flags & DWARF2_FLAG_IS_STMT) != (OldFlags & DWARF2_FLAG_IS_STMT)) {
710 OS << " is_stmt ";
711
712 if (Flags & DWARF2_FLAG_IS_STMT)
713 OS << "1";
714 else
715 OS << "0";
716 }
717
718 if (Isa)
719 OS << "isa " << Isa;
720 if (Discriminator)
721 OS << "discriminator " << Discriminator;
Devang Patel17740e72011-04-18 20:26:49 +0000722
723 if (IsVerboseAsm) {
724 OS.PadToColumn(MAI.getCommentColumn());
725 OS << MAI.getCommentString() << ' ' << FileName << ':'
726 << Line << ':' << Column;
727 }
Rafael Espindolac653a892010-11-16 21:20:32 +0000728 EmitEOL();
Chris Lattner601ef332010-01-25 18:58:59 +0000729}
730
Rafael Espindola539d96f2011-04-12 23:59:07 +0000731void MCAsmStreamer::EmitCFIStartProc() {
732 MCStreamer::EmitCFIStartProc();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000733
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000734 OS << "\t.cfi_startproc";
Rafael Espindola3c227b02010-11-22 14:27:24 +0000735 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000736}
737
Rafael Espindola539d96f2011-04-12 23:59:07 +0000738void MCAsmStreamer::EmitCFIEndProc() {
739 MCStreamer::EmitCFIEndProc();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000740
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000741 OS << "\t.cfi_endproc";
Rafael Espindola3c227b02010-11-22 14:27:24 +0000742 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000743}
744
Rafael Espindola539d96f2011-04-12 23:59:07 +0000745void MCAsmStreamer::EmitCFIDefCfa(int64_t Register, int64_t Offset) {
746 abort();
747}
748
749void MCAsmStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
750 MCStreamer::EmitCFIDefCfaOffset(Offset);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000751
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000752 OS << "\t.cfi_def_cfa_offset " << Offset;
Rafael Espindola3c227b02010-11-22 14:27:24 +0000753 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000754}
755
Rafael Espindola539d96f2011-04-12 23:59:07 +0000756void MCAsmStreamer::EmitCFIDefCfaRegister(int64_t Register) {
757 MCStreamer::EmitCFIDefCfaRegister(Register);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000758
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000759 OS << "\t.cfi_def_cfa_register " << Register;
Rafael Espindola3c227b02010-11-22 14:27:24 +0000760 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000761}
762
Rafael Espindola539d96f2011-04-12 23:59:07 +0000763void MCAsmStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
764 this->MCStreamer::EmitCFIOffset(Register, Offset);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000765
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000766 OS << "\t.cfi_offset " << Register << ", " << Offset;
Rafael Espindola3c227b02010-11-22 14:27:24 +0000767 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000768}
769
Rafael Espindola539d96f2011-04-12 23:59:07 +0000770void MCAsmStreamer::EmitCFIPersonality(const MCSymbol *Sym,
Rafael Espindola2ac83552010-12-27 00:36:05 +0000771 unsigned Encoding) {
Rafael Espindola539d96f2011-04-12 23:59:07 +0000772 MCStreamer::EmitCFIPersonality(Sym, Encoding);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000773
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000774 OS << "\t.cfi_personality " << Encoding << ", " << *Sym;
Rafael Espindola3c227b02010-11-22 14:27:24 +0000775 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000776}
777
Rafael Espindola539d96f2011-04-12 23:59:07 +0000778void MCAsmStreamer::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) {
779 MCStreamer::EmitCFILsda(Sym, Encoding);
Rafael Espindola3c227b02010-11-22 14:27:24 +0000780
Anton Korobeynikove2bea1c2011-01-14 21:57:39 +0000781 OS << "\t.cfi_lsda " << Encoding << ", " << *Sym;
Rafael Espindola3c227b02010-11-22 14:27:24 +0000782 EmitEOL();
Rafael Espindola539d96f2011-04-12 23:59:07 +0000783}
Rafael Espindola3c227b02010-11-22 14:27:24 +0000784
Rafael Espindola539d96f2011-04-12 23:59:07 +0000785void MCAsmStreamer::EmitCFIRememberState() {
786 MCStreamer::EmitCFIRememberState();
787
788 OS << "\t.cfi_remember_state";
789 EmitEOL();
790}
791
792void MCAsmStreamer::EmitCFIRestoreState() {
793 MCStreamer::EmitCFIRestoreState();
794
795 OS << "\t.cfi_restore_state";
796 EmitEOL();
797}
798
799void MCAsmStreamer::EmitCFISameValue(int64_t Register) {
800 MCStreamer::EmitCFISameValue(Register);
801
802 OS << "\t.cfi_same_value " << Register;
803 EmitEOL();
804}
805
806void MCAsmStreamer::EmitCFIRelOffset(int64_t Register, int64_t Offset) {
807 MCStreamer::EmitCFIRelOffset(Register, Offset);
808
809 OS << "\t.cfi_rel_offset " << Register << ", " << Offset;
810 EmitEOL();
811}
812
813void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) {
814 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
815
816 OS << "\t.cfi_adjust_cfa_offset " << Adjustment;
817 EmitEOL();
Rafael Espindola3c227b02010-11-22 14:27:24 +0000818}
819
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000820void MCAsmStreamer::AddEncodingComment(const MCInst &Inst) {
821 raw_ostream &OS = GetCommentOS();
822 SmallString<256> Code;
823 SmallVector<MCFixup, 4> Fixups;
824 raw_svector_ostream VecOS(Code);
825 Emitter->EncodeInstruction(Inst, VecOS, Fixups);
826 VecOS.flush();
Chris Lattner601ef332010-01-25 18:58:59 +0000827
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000828 // If we are showing fixups, create symbolic markers in the encoded
829 // representation. We do this by making a per-bit map to the fixup item index,
830 // then trying to display it as nicely as possible.
Daniel Dunbar75c9a4e2010-02-10 01:41:14 +0000831 SmallVector<uint8_t, 64> FixupMap;
832 FixupMap.resize(Code.size() * 8);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000833 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
834 FixupMap[i] = 0;
835
836 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
837 MCFixup &F = Fixups[i];
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +0000838 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000839 for (unsigned j = 0; j != Info.TargetSize; ++j) {
840 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j;
841 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
842 FixupMap[Index] = 1 + i;
843 }
844 }
845
Evan Cheng52899a92011-01-13 23:27:39 +0000846 // FIXME: Node the fixup comments for Thumb2 are completely bogus since the
847 // high order halfword of a 32-bit Thumb2 instruction is emitted first.
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000848 OS << "encoding: [";
849 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
850 if (i)
851 OS << ',';
852
853 // See if all bits are the same map entry.
854 uint8_t MapEntry = FixupMap[i * 8 + 0];
855 for (unsigned j = 1; j != 8; ++j) {
856 if (FixupMap[i * 8 + j] == MapEntry)
857 continue;
858
859 MapEntry = uint8_t(~0U);
860 break;
861 }
862
863 if (MapEntry != uint8_t(~0U)) {
864 if (MapEntry == 0) {
865 OS << format("0x%02x", uint8_t(Code[i]));
866 } else {
Evan Cheng0447d302011-01-13 21:45:26 +0000867 if (Code[i]) {
Evan Cheng52899a92011-01-13 23:27:39 +0000868 // FIXME: Some of the 8 bits require fix up.
Evan Cheng0447d302011-01-13 21:45:26 +0000869 OS << format("0x%02x", uint8_t(Code[i])) << '\''
870 << char('A' + MapEntry - 1) << '\'';
871 } else
872 OS << char('A' + MapEntry - 1);
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000873 }
874 } else {
875 // Otherwise, write out in binary.
876 OS << "0b";
877 for (unsigned j = 8; j--;) {
878 unsigned Bit = (Code[i] >> j) & 1;
NAKAMURA Takumiaf669802011-03-27 01:44:40 +0000879
Chris Lattner9e7d8c02010-11-15 05:56:19 +0000880 unsigned FixupBit;
Rafael Espindola0a017a62010-12-10 07:39:47 +0000881 if (getContext().getTargetAsmInfo().isLittleEndian())
Chris Lattner9e7d8c02010-11-15 05:56:19 +0000882 FixupBit = i * 8 + j;
883 else
884 FixupBit = i * 8 + (7-j);
NAKAMURA Takumiaf669802011-03-27 01:44:40 +0000885
Chris Lattner9e7d8c02010-11-15 05:56:19 +0000886 if (uint8_t MapEntry = FixupMap[FixupBit]) {
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000887 assert(Bit == 0 && "Encoder wrote into fixed up bit!");
888 OS << char('A' + MapEntry - 1);
889 } else
890 OS << Bit;
891 }
892 }
893 }
894 OS << "]\n";
895
896 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
897 MCFixup &F = Fixups[i];
Daniel Dunbar0c9d9fd2010-12-16 03:20:06 +0000898 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000899 OS << " fixup " << char('A' + i) << " - " << "offset: " << F.getOffset()
Daniel Dunbar60547442010-02-10 04:47:08 +0000900 << ", value: " << *F.getValue() << ", kind: " << Info.Name << "\n";
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000901 }
902}
903
Anton Korobeynikova7ec2dc2011-03-05 18:43:15 +0000904void MCAsmStreamer::EmitFnStart() {
905 OS << "\t.fnstart";
906 EmitEOL();
907}
908
909void MCAsmStreamer::EmitFnEnd() {
910 OS << "\t.fnend";
911 EmitEOL();
912}
913
914void MCAsmStreamer::EmitCantUnwind() {
915 OS << "\t.cantunwind";
916 EmitEOL();
917}
918
919void MCAsmStreamer::EmitHandlerData() {
920 OS << "\t.handlerdata";
921 EmitEOL();
922}
923
924void MCAsmStreamer::EmitPersonality(const MCSymbol *Personality) {
925 OS << "\t.personality " << Personality->getName();
926 EmitEOL();
927}
928
Anton Korobeynikove7410dd2011-03-05 18:43:32 +0000929void MCAsmStreamer::EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset) {
930 OS << "\t.setfp\t" << InstPrinter->getRegName(FpReg)
931 << ", " << InstPrinter->getRegName(SpReg);
932 if (Offset)
933 OS << ", #" << Offset;
934 EmitEOL();
935}
936
937void MCAsmStreamer::EmitPad(int64_t Offset) {
938 OS << "\t.pad\t#" << Offset;
939 EmitEOL();
940}
941
942void MCAsmStreamer::EmitRegSave(const SmallVectorImpl<unsigned> &RegList,
943 bool isVector) {
944 assert(RegList.size() && "RegList should not be empty");
945 if (isVector)
946 OS << "\t.vsave\t{";
947 else
948 OS << "\t.save\t{";
949
950 OS << InstPrinter->getRegName(RegList[0]);
951
952 for (unsigned i = 1, e = RegList.size(); i != e; ++i)
953 OS << ", " << InstPrinter->getRegName(RegList[i]);
954
955 OS << "}";
956 EmitEOL();
957}
958
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000959void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
Rafael Espindola58ac6e12011-02-16 01:08:29 +0000960 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000961
Rafael Espindola0a017a62010-12-10 07:39:47 +0000962 if (!UseLoc)
Rafael Espindolab58867c2010-11-19 02:26:16 +0000963 MCLineEntry::Make(this, getCurrentSection());
964
Daniel Dunbar9a0a4612010-02-09 23:00:14 +0000965 // Show the encoding in a comment if we have a code emitter.
966 if (Emitter)
967 AddEncodingComment(Inst);
968
Chris Lattner89261502010-02-09 00:54:51 +0000969 // Show the MCInst if enabled.
Daniel Dunbar3627af52010-05-26 15:18:13 +0000970 if (ShowInst) {
Daniel Dunbar04047fb2010-03-22 21:49:34 +0000971 Inst.dump_pretty(GetCommentOS(), &MAI, InstPrinter.get(), "\n ");
Daniel Dunbar3627af52010-05-26 15:18:13 +0000972 GetCommentOS() << "\n";
973 }
974
Daniel Dunbar04047fb2010-03-22 21:49:34 +0000975 // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
Daniel Dunbare3ee3322010-02-03 18:18:30 +0000976 if (InstPrinter)
Chris Lattner70129162010-04-04 05:04:31 +0000977 InstPrinter->printInst(&Inst, OS);
Daniel Dunbare3ee3322010-02-03 18:18:30 +0000978 else
979 Inst.print(OS, &MAI);
Chris Lattnercfa5ebc32010-01-22 07:36:39 +0000980 EmitEOL();
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000981}
982
Jim Grosbach6ebd7282010-09-22 18:18:30 +0000983/// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner8a87fb72010-04-03 21:35:55 +0000984/// the specified string in the output .s file. This capability is
985/// indicated by the hasRawTextSupport() predicate.
986void MCAsmStreamer::EmitRawText(StringRef String) {
Chris Lattneraca014e2010-04-03 22:06:56 +0000987 if (!String.empty() && String.back() == '\n')
988 String = String.substr(0, String.size()-1);
Chris Lattner8a87fb72010-04-03 21:35:55 +0000989 OS << String;
Chris Lattneraca014e2010-04-03 22:06:56 +0000990 EmitEOL();
Chris Lattner8a87fb72010-04-03 21:35:55 +0000991}
992
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000993void MCAsmStreamer::Finish() {
Rafael Espindolab58867c2010-11-19 02:26:16 +0000994 // Dump out the dwarf file & directory tables and line tables.
Rafael Espindola0a017a62010-12-10 07:39:47 +0000995 if (getContext().hasDwarfFiles() && !UseLoc)
996 MCDwarfFileTable::Emit(this);
Daniel Dunbar9faf2732009-06-24 01:03:06 +0000997}
Daniel Dunbare3ee3322010-02-03 18:18:30 +0000998
Chris Lattner38e92192010-01-22 07:29:22 +0000999MCStreamer *llvm::createAsmStreamer(MCContext &Context,
1000 formatted_raw_ostream &OS,
Rafael Espindola0a017a62010-12-10 07:39:47 +00001001 bool isVerboseAsm, bool useLoc,
Daniel Dunbarecd0c8a2010-12-16 03:05:59 +00001002 MCInstPrinter *IP, MCCodeEmitter *CE,
1003 TargetAsmBackend *TAB, bool ShowInst) {
Rafael Espindola0a017a62010-12-10 07:39:47 +00001004 return new MCAsmStreamer(Context, OS, isVerboseAsm, useLoc,
Daniel Dunbarecd0c8a2010-12-16 03:05:59 +00001005 IP, CE, TAB, ShowInst);
Daniel Dunbar9faf2732009-06-24 01:03:06 +00001006}