blob: b0b948e2b9c059b0589bc3ea63be9c086d070087 [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"
22#include "llvm/ADT/Twine.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000023#include "llvm/Support/ErrorHandling.h"
Chris Lattner663c2d22009-08-19 06:12:02 +000024#include "llvm/Support/MathExtras.h"
Daniel Dunbar4a0abd82009-08-27 00:51:57 +000025#include "llvm/Support/Format.h"
Chris Lattner86e22112010-01-22 07:29:22 +000026#include "llvm/Support/FormattedStream.h"
Daniel Dunbar745dacc2010-12-16 03:05:59 +000027#include "llvm/Target/TargetAsmBackend.h"
Rafael Espindola89b93722010-12-10 07:39:47 +000028#include "llvm/Target/TargetAsmInfo.h"
Daniel Dunbar745dacc2010-12-16 03:05:59 +000029#include "llvm/Target/TargetLoweringObjectFile.h"
Nick Lewycky476b2422010-12-19 20:43:38 +000030#include <cctype>
Daniel Dunbara11af532009-06-24 01:03:06 +000031using namespace llvm;
32
33namespace {
34
Chris Lattner46a947d2009-08-17 04:17:34 +000035class MCAsmStreamer : public MCStreamer {
Chris Lattner86e22112010-01-22 07:29:22 +000036 formatted_raw_ostream &OS;
Chris Lattner33adcfb2009-08-22 21:43:10 +000037 const MCAsmInfo &MAI;
Chris Lattner4c42a6d2010-03-19 05:48:53 +000038 OwningPtr<MCInstPrinter> InstPrinter;
Benjamin Kramer1abcd062010-07-29 17:48:06 +000039 OwningPtr<MCCodeEmitter> Emitter;
Daniel Dunbar745dacc2010-12-16 03:05:59 +000040 OwningPtr<TargetAsmBackend> AsmBackend;
Jim Grosbach00545e12010-09-22 18:16:55 +000041
Chris Lattner86e22112010-01-22 07:29:22 +000042 SmallString<128> CommentToEmit;
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000043 raw_svector_ostream CommentStream;
Daniel Dunbar9dee8e32010-02-03 18:18:30 +000044
Daniel Dunbar9dee8e32010-02-03 18:18:30 +000045 unsigned IsVerboseAsm : 1;
46 unsigned ShowInst : 1;
Rafael Espindola89b93722010-12-10 07:39:47 +000047 unsigned UseLoc : 1;
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +000048 unsigned UseCFI : 1;
Daniel Dunbar9dee8e32010-02-03 18:18:30 +000049
Rafael Espindola5d4918d2010-12-04 03:21:47 +000050 bool needsSet(const MCExpr *Value);
51
Chris Lattner46a947d2009-08-17 04:17:34 +000052public:
Chris Lattner86e22112010-01-22 07:29:22 +000053 MCAsmStreamer(MCContext &Context, formatted_raw_ostream &os,
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +000054 bool isVerboseAsm, bool useLoc, bool useCFI,
Daniel Dunbar745dacc2010-12-16 03:05:59 +000055 MCInstPrinter *printer, MCCodeEmitter *emitter,
56 TargetAsmBackend *asmbackend,
57 bool showInst)
Chris Lattnerfdab14b2010-03-12 18:28:53 +000058 : MCStreamer(Context), OS(os), MAI(Context.getAsmInfo()),
Daniel Dunbar745dacc2010-12-16 03:05:59 +000059 InstPrinter(printer), Emitter(emitter), AsmBackend(asmbackend),
60 CommentStream(CommentToEmit), IsVerboseAsm(isVerboseAsm),
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +000061 ShowInst(showInst), UseLoc(useLoc), UseCFI(useCFI) {
Chris Lattner5d672cf2010-02-10 00:10:18 +000062 if (InstPrinter && IsVerboseAsm)
63 InstPrinter->setCommentStream(CommentStream);
64 }
Chris Lattner46a947d2009-08-17 04:17:34 +000065 ~MCAsmStreamer() {}
Daniel Dunbara11af532009-06-24 01:03:06 +000066
Chris Lattner86e22112010-01-22 07:29:22 +000067 inline void EmitEOL() {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +000068 // If we don't have any comments, just emit a \n.
69 if (!IsVerboseAsm) {
Chris Lattner86e22112010-01-22 07:29:22 +000070 OS << '\n';
71 return;
72 }
73 EmitCommentsAndEOL();
74 }
75 void EmitCommentsAndEOL();
Chris Lattner56591ab2010-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 Grosbach00545e12010-09-22 18:16:55 +000080
Chris Lattner91bead72010-04-03 21:35:55 +000081 /// hasRawTextSupport - We support EmitRawText.
82 virtual bool hasRawTextSupport() const { return true; }
Daniel Dunbar6b716532010-02-09 23:00:14 +000083
Chris Lattnerd32c7cf2010-01-22 18:21:35 +000084 /// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner86e22112010-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 Lattnerd32c7cf2010-01-22 18:21:35 +000088 virtual void AddComment(const Twine &T);
Daniel Dunbar6b716532010-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 Lattnerd79d9dc2010-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 Dunbar6b716532010-02-09 23:00:14 +0000101
Chris Lattner0fd90fd2010-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 Dunbar6b716532010-02-09 23:00:14 +0000106
Chris Lattner46a947d2009-08-17 04:17:34 +0000107 /// @name MCStreamer Interface
108 /// @{
Daniel Dunbara11af532009-06-24 01:03:06 +0000109
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000110 virtual void ChangeSection(const MCSection *Section);
Daniel Dunbara11af532009-06-24 01:03:06 +0000111
Rafael Espindolad80781b2010-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 Lattner46a947d2009-08-17 04:17:34 +0000120 virtual void EmitLabel(MCSymbol *Symbol);
Daniel Dunbara11af532009-06-24 01:03:06 +0000121
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000122 virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
Jim Grosbachce792992010-11-05 22:08:08 +0000123 virtual void EmitThumbFunc(MCSymbol *Func);
Daniel Dunbara11af532009-06-24 01:03:06 +0000124
Daniel Dunbar821e3332009-08-31 08:09:28 +0000125 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
Rafael Espindola484291c2010-11-01 14:28:48 +0000126 virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
Rafael Espindola32a006e2010-12-03 00:55:40 +0000127 virtual void EmitDwarfAdvanceLineAddr(int64_t LineDelta,
128 const MCSymbol *LastLabel,
129 const MCSymbol *Label);
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000130 virtual void EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
131 const MCSymbol *Label);
Daniel Dunbara11af532009-06-24 01:03:06 +0000132
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000133 virtual void EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
Kevin Enderbya5c78322009-07-13 21:03:15 +0000134
Chris Lattner46a947d2009-08-17 04:17:34 +0000135 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
Chris Lattnerb54b9dd2010-05-08 19:54:22 +0000136 virtual void BeginCOFFSymbolDef(const MCSymbol *Symbol);
137 virtual void EmitCOFFSymbolStorageClass(int StorageClass);
138 virtual void EmitCOFFSymbolType(int Type);
139 virtual void EndCOFFSymbolDef();
Chris Lattner99328ad2010-01-25 07:52:13 +0000140 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
Chris Lattner9eb158d2010-01-23 07:47:02 +0000141 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000142 unsigned ByteAlignment);
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000143
Chris Lattner9eb158d2010-01-23 07:47:02 +0000144 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
145 ///
146 /// @param Symbol - The common symbol to emit.
147 /// @param Size - The size of the common symbol.
148 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size);
Jim Grosbach00545e12010-09-22 18:16:55 +0000149
Daniel Dunbar8751b942009-08-28 05:48:22 +0000150 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol = 0,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000151 unsigned Size = 0, unsigned ByteAlignment = 0);
Kevin Enderby71148242009-07-14 21:35:03 +0000152
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000153 virtual void EmitTBSSSymbol (const MCSection *Section, MCSymbol *Symbol,
154 uint64_t Size, unsigned ByteAlignment = 0);
Jim Grosbach00545e12010-09-22 18:16:55 +0000155
Chris Lattneraaec2052010-01-19 19:46:13 +0000156 virtual void EmitBytes(StringRef Data, unsigned AddrSpace);
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000157
Rafael Espindola89b93722010-12-10 07:39:47 +0000158 virtual void EmitValueImpl(const MCExpr *Value, unsigned Size,
159 bool isPCRel, unsigned AddrSpace);
Rafael Espindola2df042c2010-12-03 02:54:21 +0000160 virtual void EmitIntValue(uint64_t Value, unsigned Size,
161 unsigned AddrSpace = 0);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000162
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000163 virtual void EmitULEB128Value(const MCExpr *Value);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000164
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000165 virtual void EmitSLEB128Value(const MCExpr *Value);
Rafael Espindola3ff57092010-11-02 17:22:24 +0000166
Chris Lattner718fb592010-01-25 21:28:50 +0000167 virtual void EmitGPRel32Value(const MCExpr *Value);
Jim Grosbach00545e12010-09-22 18:16:55 +0000168
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000169
Chris Lattneraaec2052010-01-19 19:46:13 +0000170 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue,
171 unsigned AddrSpace);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000172
Chris Lattner46a947d2009-08-17 04:17:34 +0000173 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
174 unsigned ValueSize = 1,
175 unsigned MaxBytesToEmit = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000176
Kevin Enderby6e720482010-02-23 18:26:34 +0000177 virtual void EmitCodeAlignment(unsigned ByteAlignment,
178 unsigned MaxBytesToEmit = 0);
179
Daniel Dunbar821e3332009-08-31 08:09:28 +0000180 virtual void EmitValueToOffset(const MCExpr *Offset,
Chris Lattner46a947d2009-08-17 04:17:34 +0000181 unsigned char Value = 0);
Daniel Dunbara11af532009-06-24 01:03:06 +0000182
Chris Lattnera6594fc2010-01-25 18:58:59 +0000183 virtual void EmitFileDirective(StringRef Filename);
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000184 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Filename);
185 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
186 unsigned Column, unsigned Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +0000187 unsigned Isa, unsigned Discriminator,
188 StringRef FileName);
Chris Lattnera6594fc2010-01-25 18:58:59 +0000189
Rafael Espindola066c2f42011-04-12 23:59:07 +0000190 virtual void EmitCFIStartProc();
191 virtual void EmitCFIEndProc();
192 virtual void EmitCFIDefCfa(int64_t Register, int64_t Offset);
193 virtual void EmitCFIDefCfaOffset(int64_t Offset);
194 virtual void EmitCFIDefCfaRegister(int64_t Register);
195 virtual void EmitCFIOffset(int64_t Register, int64_t Offset);
196 virtual void EmitCFIPersonality(const MCSymbol *Sym, unsigned Encoding);
197 virtual void EmitCFILsda(const MCSymbol *Sym, unsigned Encoding);
198 virtual void EmitCFIRememberState();
199 virtual void EmitCFIRestoreState();
200 virtual void EmitCFISameValue(int64_t Register);
201 virtual void EmitCFIRelOffset(int64_t Register, int64_t Offset);
202 virtual void EmitCFIAdjustCfaOffset(int64_t Adjustment);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000203
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000204 virtual void EmitFnStart();
205 virtual void EmitFnEnd();
206 virtual void EmitCantUnwind();
207 virtual void EmitPersonality(const MCSymbol *Personality);
208 virtual void EmitHandlerData();
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000209 virtual void EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset = 0);
210 virtual void EmitPad(int64_t Offset);
211 virtual void EmitRegSave(const SmallVectorImpl<unsigned> &RegList, bool);
212
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000213
Chris Lattnera6594fc2010-01-25 18:58:59 +0000214 virtual void EmitInstruction(const MCInst &Inst);
Jim Grosbach00545e12010-09-22 18:16:55 +0000215
Jim Grosbachbd4ec842010-09-22 18:18:30 +0000216 /// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +0000217 /// the specified string in the output .s file. This capability is
218 /// indicated by the hasRawTextSupport() predicate.
219 virtual void EmitRawText(StringRef String);
Jim Grosbach00545e12010-09-22 18:16:55 +0000220
Chris Lattner46a947d2009-08-17 04:17:34 +0000221 virtual void Finish();
Jim Grosbach00545e12010-09-22 18:16:55 +0000222
Chris Lattner46a947d2009-08-17 04:17:34 +0000223 /// @}
224};
Daniel Dunbar84a29262009-06-24 19:25:34 +0000225
Chris Lattner46a947d2009-08-17 04:17:34 +0000226} // end anonymous namespace.
Daniel Dunbara11af532009-06-24 01:03:06 +0000227
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000228/// AddComment - Add a comment that can be emitted to the generated .s
Chris Lattner86e22112010-01-22 07:29:22 +0000229/// file if applicable as a QoI issue to make the output of the compiler
230/// more readable. This only affects the MCAsmStreamer, and only when
231/// verbose assembly output is enabled.
Chris Lattnerd32c7cf2010-01-22 18:21:35 +0000232void MCAsmStreamer::AddComment(const Twine &T) {
Chris Lattner86e22112010-01-22 07:29:22 +0000233 if (!IsVerboseAsm) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000234
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000235 // Make sure that CommentStream is flushed.
236 CommentStream.flush();
Jim Grosbach00545e12010-09-22 18:16:55 +0000237
Chris Lattner86e22112010-01-22 07:29:22 +0000238 T.toVector(CommentToEmit);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000239 // Each comment goes on its own line.
240 CommentToEmit.push_back('\n');
Jim Grosbach00545e12010-09-22 18:16:55 +0000241
Chris Lattner14ca1772010-01-22 21:16:10 +0000242 // Tell the comment stream that the vector changed underneath it.
243 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000244}
245
246void MCAsmStreamer::EmitCommentsAndEOL() {
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000247 if (CommentToEmit.empty() && CommentStream.GetNumBytesInBuffer() == 0) {
248 OS << '\n';
249 return;
250 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000251
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000252 CommentStream.flush();
Chris Lattner86e22112010-01-22 07:29:22 +0000253 StringRef Comments = CommentToEmit.str();
Jim Grosbach00545e12010-09-22 18:16:55 +0000254
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000255 assert(Comments.back() == '\n' &&
256 "Comment array not newline terminated");
257 do {
Chris Lattner86e22112010-01-22 07:29:22 +0000258 // Emit a line of comments.
259 OS.PadToColumn(MAI.getCommentColumn());
260 size_t Position = Comments.find('\n');
261 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
Jim Grosbach00545e12010-09-22 18:16:55 +0000262
Chris Lattner86e22112010-01-22 07:29:22 +0000263 Comments = Comments.substr(Position+1);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000264 } while (!Comments.empty());
Jim Grosbach00545e12010-09-22 18:16:55 +0000265
Chris Lattner14ca1772010-01-22 21:16:10 +0000266 CommentToEmit.clear();
267 // Tell the comment stream that the vector changed underneath it.
268 CommentStream.resync();
Chris Lattner86e22112010-01-22 07:29:22 +0000269}
270
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000271static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
272 assert(Bytes && "Invalid size!");
273 return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
274}
275
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000276void MCAsmStreamer::ChangeSection(const MCSection *Section) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000277 assert(Section && "Cannot switch to a null section!");
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000278 Section->PrintSwitchToSection(MAI, OS);
Daniel Dunbara11af532009-06-24 01:03:06 +0000279}
280
281void MCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
Daniel Dunbar8906ff12009-08-22 07:22:36 +0000282 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Rafael Espindolaed708f92011-04-27 15:21:19 +0000283 MCStreamer::EmitLabel(Symbol);
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000284
Chris Lattnere07b75e2010-09-22 22:19:53 +0000285 OS << *Symbol << MAI.getLabelSuffix();
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000286 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000287}
288
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000289void MCAsmStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
Kevin Enderbyf96db462009-07-16 17:56:39 +0000290 switch (Flag) {
Daniel Dunbar011e4db2009-08-13 23:36:34 +0000291 default: assert(0 && "Invalid flag!");
Jason W Kimafd1cc22010-09-30 02:45:56 +0000292 case MCAF_SyntaxUnified: OS << "\t.syntax unified"; break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000293 case MCAF_SubsectionsViaSymbols: OS << ".subsections_via_symbols"; break;
Jim Grosbachce792992010-11-05 22:08:08 +0000294 case MCAF_Code16: OS << "\t.code\t16"; break;
Jim Grosbachba219572010-11-05 22:40:09 +0000295 case MCAF_Code32: OS << "\t.code\t32"; break;
Kevin Enderbyf96db462009-07-16 17:56:39 +0000296 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000297 EmitEOL();
Kevin Enderbya5c78322009-07-13 21:03:15 +0000298}
299
Jim Grosbachce792992010-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 Dunbar821e3332009-08-31 08:09:28 +0000309void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000310 OS << *Symbol << " = " << *Value;
311 EmitEOL();
Daniel Dunbarfffff912009-10-16 01:34:54 +0000312
313 // FIXME: Lift context changes into super class.
Daniel Dunbar08a408a2010-05-05 17:41:00 +0000314 Symbol->setVariableValue(Value);
Daniel Dunbara11af532009-06-24 01:03:06 +0000315}
316
Rafael Espindola484291c2010-11-01 14:28:48 +0000317void MCAsmStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
318 OS << ".weakref " << *Alias << ", " << *Symbol;
319 EmitEOL();
320}
321
Rafael Espindola32a006e2010-12-03 00:55:40 +0000322void MCAsmStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
323 const MCSymbol *LastLabel,
324 const MCSymbol *Label) {
Rafael Espindola89b93722010-12-10 07:39:47 +0000325 EmitDwarfSetLineAddr(LineDelta, Label,
326 getContext().getTargetAsmInfo().getPointerSize());
Rafael Espindola32a006e2010-12-03 00:55:40 +0000327}
328
Rafael Espindolaa37bd1d2011-04-30 03:21:04 +0000329void MCAsmStreamer::EmitDwarfAdvanceFrameAddr(const MCSymbol *LastLabel,
330 const MCSymbol *Label) {
331 EmitIntValue(dwarf::DW_CFA_advance_loc4, 1);
332 const MCExpr *AddrDelta = BuildSymbolDiff(getContext(), Label, LastLabel);
333 AddrDelta = ForceExpAbs(this, getContext(), AddrDelta);
334 EmitValue(AddrDelta, 4);
335}
336
337
Daniel Dunbarfffff912009-10-16 01:34:54 +0000338void MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000339 MCSymbolAttr Attribute) {
Daniel Dunbara11af532009-06-24 01:03:06 +0000340 switch (Attribute) {
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000341 case MCSA_Invalid: assert(0 && "Invalid symbol attribute");
Chris Lattnered0ab152010-01-25 18:30:45 +0000342 case MCSA_ELF_TypeFunction: /// .type _foo, STT_FUNC # aka @function
343 case MCSA_ELF_TypeIndFunction: /// .type _foo, STT_GNU_IFUNC
344 case MCSA_ELF_TypeObject: /// .type _foo, STT_OBJECT # aka @object
345 case MCSA_ELF_TypeTLS: /// .type _foo, STT_TLS # aka @tls_object
346 case MCSA_ELF_TypeCommon: /// .type _foo, STT_COMMON # aka @common
347 case MCSA_ELF_TypeNoType: /// .type _foo, STT_NOTYPE # aka @notype
Rafael Espindolae9c0ff22010-11-13 04:55:06 +0000348 case MCSA_ELF_TypeGnuUniqueObject: /// .type _foo, @gnu_unique_object
Chris Lattnered0ab152010-01-25 18:30:45 +0000349 assert(MAI.hasDotTypeDotSizeDirective() && "Symbol Attr not supported");
Dan Gohman523d70e2010-02-04 01:42:13 +0000350 OS << "\t.type\t" << *Symbol << ','
Chris Lattnered0ab152010-01-25 18:30:45 +0000351 << ((MAI.getCommentString()[0] != '@') ? '@' : '%');
352 switch (Attribute) {
353 default: assert(0 && "Unknown ELF .type");
354 case MCSA_ELF_TypeFunction: OS << "function"; break;
355 case MCSA_ELF_TypeIndFunction: OS << "gnu_indirect_function"; break;
356 case MCSA_ELF_TypeObject: OS << "object"; break;
357 case MCSA_ELF_TypeTLS: OS << "tls_object"; break;
358 case MCSA_ELF_TypeCommon: OS << "common"; break;
359 case MCSA_ELF_TypeNoType: OS << "no_type"; break;
Rafael Espindolae9c0ff22010-11-13 04:55:06 +0000360 case MCSA_ELF_TypeGnuUniqueObject: OS << "gnu_unique_object"; break;
Chris Lattnered0ab152010-01-25 18:30:45 +0000361 }
362 EmitEOL();
363 return;
364 case MCSA_Global: // .globl/.global
365 OS << MAI.getGlobalDirective();
366 break;
Chris Lattner61abd7b2010-06-21 20:35:01 +0000367 case MCSA_Hidden: OS << "\t.hidden\t"; break;
368 case MCSA_IndirectSymbol: OS << "\t.indirect_symbol\t"; break;
369 case MCSA_Internal: OS << "\t.internal\t"; break;
370 case MCSA_LazyReference: OS << "\t.lazy_reference\t"; break;
371 case MCSA_Local: OS << "\t.local\t"; break;
372 case MCSA_NoDeadStrip: OS << "\t.no_dead_strip\t"; break;
Kevin Enderbye8e98d72010-11-19 18:39:33 +0000373 case MCSA_SymbolResolver: OS << "\t.symbol_resolver\t"; break;
Chris Lattner61abd7b2010-06-21 20:35:01 +0000374 case MCSA_PrivateExtern: OS << "\t.private_extern\t"; break;
375 case MCSA_Protected: OS << "\t.protected\t"; break;
376 case MCSA_Reference: OS << "\t.reference\t"; break;
377 case MCSA_Weak: OS << "\t.weak\t"; break;
378 case MCSA_WeakDefinition: OS << "\t.weak_definition\t"; break;
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000379 // .weak_reference
380 case MCSA_WeakReference: OS << MAI.getWeakRefDirective(); break;
Kevin Enderbyf59cac52010-07-08 17:22:42 +0000381 case MCSA_WeakDefAutoPrivate: OS << "\t.weak_def_can_be_hidden\t"; break;
Daniel Dunbara11af532009-06-24 01:03:06 +0000382 }
383
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000384 OS << *Symbol;
385 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000386}
387
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000388void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000389 OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
390 EmitEOL();
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000391}
392
Chris Lattnerb54b9dd2010-05-08 19:54:22 +0000393void MCAsmStreamer::BeginCOFFSymbolDef(const MCSymbol *Symbol) {
394 OS << "\t.def\t " << *Symbol << ';';
395 EmitEOL();
396}
397
398void MCAsmStreamer::EmitCOFFSymbolStorageClass (int StorageClass) {
399 OS << "\t.scl\t" << StorageClass << ';';
400 EmitEOL();
401}
402
403void MCAsmStreamer::EmitCOFFSymbolType (int Type) {
404 OS << "\t.type\t" << Type << ';';
405 EmitEOL();
406}
407
408void MCAsmStreamer::EndCOFFSymbolDef() {
409 OS << "\t.endef";
410 EmitEOL();
411}
412
Chris Lattner99328ad2010-01-25 07:52:13 +0000413void MCAsmStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
414 assert(MAI.hasDotTypeDotSizeDirective());
415 OS << "\t.size\t" << *Symbol << ", " << *Value << '\n';
416}
417
Chris Lattner9eb158d2010-01-23 07:47:02 +0000418void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000419 unsigned ByteAlignment) {
Chris Lattner9eb158d2010-01-23 07:47:02 +0000420 OS << "\t.comm\t" << *Symbol << ',' << Size;
Chris Lattner6559d762010-01-25 07:29:13 +0000421 if (ByteAlignment != 0) {
Rafael Espindola2e2563b2010-01-26 20:21:43 +0000422 if (MAI.getCOMMDirectiveAlignmentIsInBytes())
Chris Lattner4ed54382010-01-19 06:01:04 +0000423 OS << ',' << ByteAlignment;
424 else
425 OS << ',' << Log2_32(ByteAlignment);
426 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000427 EmitEOL();
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000428}
429
Chris Lattner9eb158d2010-01-23 07:47:02 +0000430/// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
431///
432/// @param Symbol - The common symbol to emit.
433/// @param Size - The size of the common symbol.
434void MCAsmStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size) {
435 assert(MAI.hasLCOMMDirective() && "Doesn't have .lcomm, can't emit it!");
436 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
437 EmitEOL();
438}
439
Daniel Dunbar8751b942009-08-28 05:48:22 +0000440void MCAsmStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000441 unsigned Size, unsigned ByteAlignment) {
Daniel Dunbar011e4db2009-08-13 23:36:34 +0000442 // Note: a .zerofill directive does not switch sections.
Chris Lattner93b6db32009-08-08 23:39:42 +0000443 OS << ".zerofill ";
Jim Grosbach00545e12010-09-22 18:16:55 +0000444
Chris Lattner93b6db32009-08-08 23:39:42 +0000445 // This is a mach-o specific directive.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000446 const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
Daniel Dunbar12de0df2009-08-14 18:51:45 +0000447 OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
Jim Grosbach00545e12010-09-22 18:16:55 +0000448
Chris Lattner9be3fee2009-07-10 22:20:30 +0000449 if (Symbol != NULL) {
Chris Lattner10b318b2010-01-17 21:43:43 +0000450 OS << ',' << *Symbol << ',' << Size;
Daniel Dunbar7092c7e2009-08-30 06:17:16 +0000451 if (ByteAlignment != 0)
452 OS << ',' << Log2_32(ByteAlignment);
Chris Lattner9be3fee2009-07-10 22:20:30 +0000453 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000454 EmitEOL();
Chris Lattner9be3fee2009-07-10 22:20:30 +0000455}
456
Eric Christopherd04d98d2010-05-17 02:13:02 +0000457// .tbss sym, size, align
458// This depends that the symbol has already been mangled from the original,
459// e.g. _a.
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000460void MCAsmStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
461 uint64_t Size, unsigned ByteAlignment) {
Eric Christopher482eba02010-05-14 01:50:28 +0000462 assert(Symbol != NULL && "Symbol shouldn't be NULL!");
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000463 // Instead of using the Section we'll just use the shortcut.
464 // This is a mach-o specific directive and section.
Eric Christopherd04d98d2010-05-17 02:13:02 +0000465 OS << ".tbss " << *Symbol << ", " << Size;
Jim Grosbach00545e12010-09-22 18:16:55 +0000466
Eric Christopher4d01cbe2010-05-18 21:16:04 +0000467 // Output align if we have it. We default to 1 so don't bother printing
468 // that.
469 if (ByteAlignment > 1) OS << ", " << Log2_32(ByteAlignment);
Jim Grosbach00545e12010-09-22 18:16:55 +0000470
Eric Christopher482eba02010-05-14 01:50:28 +0000471 EmitEOL();
472}
473
Chris Lattner12e555c2010-01-23 00:15:00 +0000474static inline char toOctal(int X) { return (X&7)+'0'; }
475
Chris Lattnera6594fc2010-01-25 18:58:59 +0000476static void PrintQuotedString(StringRef Data, raw_ostream &OS) {
477 OS << '"';
Jim Grosbach00545e12010-09-22 18:16:55 +0000478
Chris Lattnera6594fc2010-01-25 18:58:59 +0000479 for (unsigned i = 0, e = Data.size(); i != e; ++i) {
480 unsigned char C = Data[i];
481 if (C == '"' || C == '\\') {
482 OS << '\\' << (char)C;
483 continue;
484 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000485
Chris Lattnera6594fc2010-01-25 18:58:59 +0000486 if (isprint((unsigned char)C)) {
487 OS << (char)C;
488 continue;
489 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000490
Chris Lattnera6594fc2010-01-25 18:58:59 +0000491 switch (C) {
492 case '\b': OS << "\\b"; break;
493 case '\f': OS << "\\f"; break;
494 case '\n': OS << "\\n"; break;
495 case '\r': OS << "\\r"; break;
496 case '\t': OS << "\\t"; break;
497 default:
498 OS << '\\';
499 OS << toOctal(C >> 6);
500 OS << toOctal(C >> 3);
501 OS << toOctal(C >> 0);
502 break;
503 }
504 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000505
Chris Lattnera6594fc2010-01-25 18:58:59 +0000506 OS << '"';
507}
508
509
Chris Lattneraaec2052010-01-19 19:46:13 +0000510void MCAsmStreamer::EmitBytes(StringRef Data, unsigned AddrSpace) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000511 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Chris Lattner12e555c2010-01-23 00:15:00 +0000512 if (Data.empty()) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000513
Chris Lattner12e555c2010-01-23 00:15:00 +0000514 if (Data.size() == 1) {
515 OS << MAI.getData8bitsDirective(AddrSpace);
516 OS << (unsigned)(unsigned char)Data[0];
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000517 EmitEOL();
Chris Lattner12e555c2010-01-23 00:15:00 +0000518 return;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000519 }
Chris Lattner12e555c2010-01-23 00:15:00 +0000520
521 // If the data ends with 0 and the target supports .asciz, use it, otherwise
522 // use .ascii
523 if (MAI.getAscizDirective() && Data.back() == 0) {
524 OS << MAI.getAscizDirective();
525 Data = Data.substr(0, Data.size()-1);
526 } else {
527 OS << MAI.getAsciiDirective();
528 }
529
Chris Lattnera6594fc2010-01-25 18:58:59 +0000530 OS << ' ';
531 PrintQuotedString(Data, OS);
Chris Lattner12e555c2010-01-23 00:15:00 +0000532 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000533}
534
Rafael Espindola2df042c2010-12-03 02:54:21 +0000535void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size,
536 unsigned AddrSpace) {
537 EmitValue(MCConstantExpr::Create(Value, getContext()), Size, AddrSpace);
538}
539
Rafael Espindola89b93722010-12-10 07:39:47 +0000540void MCAsmStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size,
541 bool isPCRel, unsigned AddrSpace) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +0000542 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Rafael Espindola89b93722010-12-10 07:39:47 +0000543 assert(!isPCRel && "Cannot emit pc relative relocations!");
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000544 const char *Directive = 0;
545 switch (Size) {
546 default: break;
547 case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break;
548 case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break;
549 case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break;
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000550 case 8:
551 Directive = MAI.getData64bitsDirective(AddrSpace);
552 // If the target doesn't support 64-bit data, emit as two 32-bit halves.
553 if (Directive) break;
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000554 int64_t IntValue;
555 if (!Value->EvaluateAsAbsolute(IntValue))
556 report_fatal_error("Don't know how to emit this value.");
Rafael Espindola89b93722010-12-10 07:39:47 +0000557 if (getContext().getTargetAsmInfo().isLittleEndian()) {
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000558 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
559 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000560 } else {
Rafael Espindolaec0b4282010-11-28 23:22:44 +0000561 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
562 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
Chris Lattner5eaa54e2010-01-20 06:45:39 +0000563 }
564 return;
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000565 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000566
Chris Lattner32ae3fe2010-01-19 22:03:38 +0000567 assert(Directive && "Invalid size for machine code value!");
Chris Lattner718fb592010-01-25 21:28:50 +0000568 OS << Directive << *Value;
Chris Lattner86e22112010-01-22 07:29:22 +0000569 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +0000570}
571
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000572void MCAsmStreamer::EmitULEB128Value(const MCExpr *Value) {
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000573 int64_t IntValue;
574 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000575 EmitULEB128IntValue(IntValue);
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000576 return;
577 }
Rafael Espindola73873452010-11-04 18:17:08 +0000578 assert(MAI.hasLEB128() && "Cannot print a .uleb");
579 OS << ".uleb128 " << *Value;
Rafael Espindola3ff57092010-11-02 17:22:24 +0000580 EmitEOL();
581}
582
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000583void MCAsmStreamer::EmitSLEB128Value(const MCExpr *Value) {
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000584 int64_t IntValue;
585 if (Value->EvaluateAsAbsolute(IntValue)) {
Rafael Espindolae8cfbd82011-04-21 23:39:26 +0000586 EmitSLEB128IntValue(IntValue);
Rafael Espindolaa4b23ff2010-11-19 04:10:13 +0000587 return;
588 }
Rafael Espindola73873452010-11-04 18:17:08 +0000589 assert(MAI.hasLEB128() && "Cannot print a .sleb");
590 OS << ".sleb128 " << *Value;
Rafael Espindola3ff57092010-11-02 17:22:24 +0000591 EmitEOL();
592}
593
Chris Lattner718fb592010-01-25 21:28:50 +0000594void MCAsmStreamer::EmitGPRel32Value(const MCExpr *Value) {
595 assert(MAI.getGPRel32Directive() != 0);
596 OS << MAI.getGPRel32Directive() << *Value;
597 EmitEOL();
598}
599
600
Chris Lattner6113b3d2010-01-19 18:52:28 +0000601/// EmitFill - Emit NumBytes bytes worth of the value specified by
602/// FillValue. This implements directives such as '.space'.
Chris Lattneraaec2052010-01-19 19:46:13 +0000603void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue,
604 unsigned AddrSpace) {
Chris Lattner8a6d7ac2010-01-19 18:58:52 +0000605 if (NumBytes == 0) return;
Jim Grosbach00545e12010-09-22 18:16:55 +0000606
Chris Lattneraaec2052010-01-19 19:46:13 +0000607 if (AddrSpace == 0)
608 if (const char *ZeroDirective = MAI.getZeroDirective()) {
609 OS << ZeroDirective << NumBytes;
610 if (FillValue != 0)
611 OS << ',' << (int)FillValue;
Chris Lattner86e22112010-01-22 07:29:22 +0000612 EmitEOL();
Chris Lattneraaec2052010-01-19 19:46:13 +0000613 return;
614 }
615
616 // Emit a byte at a time.
617 MCStreamer::EmitFill(NumBytes, FillValue, AddrSpace);
Chris Lattner6113b3d2010-01-19 18:52:28 +0000618}
619
Daniel Dunbar84a29262009-06-24 19:25:34 +0000620void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
621 unsigned ValueSize,
622 unsigned MaxBytesToEmit) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000623 // Some assemblers don't support non-power of two alignments, so we always
624 // emit alignments as a power of two if possible.
625 if (isPowerOf2_32(ByteAlignment)) {
Chris Lattner6e579c62009-08-19 06:35:36 +0000626 switch (ValueSize) {
627 default: llvm_unreachable("Invalid size for machine code value!");
Chris Lattner33adcfb2009-08-22 21:43:10 +0000628 case 1: OS << MAI.getAlignDirective(); break;
629 // FIXME: use MAI for this!
Chris Lattner6e579c62009-08-19 06:35:36 +0000630 case 2: OS << ".p2alignw "; break;
631 case 4: OS << ".p2alignl "; break;
632 case 8: llvm_unreachable("Unsupported alignment size!");
633 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000634
Chris Lattner33adcfb2009-08-22 21:43:10 +0000635 if (MAI.getAlignmentIsInBytes())
Chris Lattner663c2d22009-08-19 06:12:02 +0000636 OS << ByteAlignment;
637 else
638 OS << Log2_32(ByteAlignment);
Daniel Dunbar84a29262009-06-24 19:25:34 +0000639
Chris Lattner663c2d22009-08-19 06:12:02 +0000640 if (Value || MaxBytesToEmit) {
Chris Lattner579531c2009-09-03 04:01:10 +0000641 OS << ", 0x";
642 OS.write_hex(truncateToSize(Value, ValueSize));
Chris Lattner663c2d22009-08-19 06:12:02 +0000643
Jim Grosbach00545e12010-09-22 18:16:55 +0000644 if (MaxBytesToEmit)
Chris Lattner663c2d22009-08-19 06:12:02 +0000645 OS << ", " << MaxBytesToEmit;
646 }
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000647 EmitEOL();
Chris Lattner663c2d22009-08-19 06:12:02 +0000648 return;
649 }
Jim Grosbach00545e12010-09-22 18:16:55 +0000650
Chris Lattner663c2d22009-08-19 06:12:02 +0000651 // Non-power of two alignment. This is not widely supported by assemblers.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000652 // FIXME: Parameterize this based on MAI.
Daniel Dunbar84a29262009-06-24 19:25:34 +0000653 switch (ValueSize) {
Chris Lattner663c2d22009-08-19 06:12:02 +0000654 default: llvm_unreachable("Invalid size for machine code value!");
655 case 1: OS << ".balign"; break;
656 case 2: OS << ".balignw"; break;
657 case 4: OS << ".balignl"; break;
658 case 8: llvm_unreachable("Unsupported alignment size!");
Daniel Dunbar84a29262009-06-24 19:25:34 +0000659 }
660
Chris Lattner663c2d22009-08-19 06:12:02 +0000661 OS << ' ' << ByteAlignment;
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000662 OS << ", " << truncateToSize(Value, ValueSize);
Jim Grosbach00545e12010-09-22 18:16:55 +0000663 if (MaxBytesToEmit)
Daniel Dunbar84a29262009-06-24 19:25:34 +0000664 OS << ", " << MaxBytesToEmit;
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000665 EmitEOL();
Daniel Dunbar84a29262009-06-24 19:25:34 +0000666}
667
Kevin Enderby6e720482010-02-23 18:26:34 +0000668void MCAsmStreamer::EmitCodeAlignment(unsigned ByteAlignment,
669 unsigned MaxBytesToEmit) {
Chris Lattnerec167fd2010-02-23 18:44:31 +0000670 // Emit with a text fill value.
671 EmitValueToAlignment(ByteAlignment, MAI.getTextAlignFillValue(),
672 1, MaxBytesToEmit);
Kevin Enderby6e720482010-02-23 18:26:34 +0000673}
674
Daniel Dunbar821e3332009-08-31 08:09:28 +0000675void MCAsmStreamer::EmitValueToOffset(const MCExpr *Offset,
Daniel Dunbar84a29262009-06-24 19:25:34 +0000676 unsigned char Value) {
677 // FIXME: Verify that Offset is associated with the current section.
Chris Lattner7d1e49c2010-01-22 07:36:39 +0000678 OS << ".org " << *Offset << ", " << (unsigned) Value;
679 EmitEOL();
Daniel Dunbar84a29262009-06-24 19:25:34 +0000680}
681
Chris Lattnera6594fc2010-01-25 18:58:59 +0000682
683void MCAsmStreamer::EmitFileDirective(StringRef Filename) {
684 assert(MAI.hasSingleParameterDotFile());
685 OS << "\t.file\t";
686 PrintQuotedString(Filename, OS);
687 EmitEOL();
688}
689
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000690bool MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Filename){
Rafael Espindola89b93722010-12-10 07:39:47 +0000691 if (UseLoc) {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000692 OS << "\t.file\t" << FileNo << ' ';
693 PrintQuotedString(Filename, OS);
694 EmitEOL();
695 }
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000696 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Filename);
697}
698
699void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
700 unsigned Column, unsigned Flags,
701 unsigned Isa,
Devang Patel3f3bf932011-04-18 20:26:49 +0000702 unsigned Discriminator,
703 StringRef FileName) {
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000704 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
Devang Patel3f3bf932011-04-18 20:26:49 +0000705 Isa, Discriminator, FileName);
Rafael Espindola89b93722010-12-10 07:39:47 +0000706 if (!UseLoc)
Rafael Espindola195a0ce2010-11-19 02:26:16 +0000707 return;
708
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000709 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
710 if (Flags & DWARF2_FLAG_BASIC_BLOCK)
711 OS << " basic_block";
712 if (Flags & DWARF2_FLAG_PROLOGUE_END)
713 OS << " prologue_end";
714 if (Flags & DWARF2_FLAG_EPILOGUE_BEGIN)
715 OS << " epilogue_begin";
716
717 unsigned OldFlags = getContext().getCurrentDwarfLoc().getFlags();
718 if ((Flags & DWARF2_FLAG_IS_STMT) != (OldFlags & DWARF2_FLAG_IS_STMT)) {
719 OS << " is_stmt ";
720
721 if (Flags & DWARF2_FLAG_IS_STMT)
722 OS << "1";
723 else
724 OS << "0";
725 }
726
727 if (Isa)
728 OS << "isa " << Isa;
729 if (Discriminator)
730 OS << "discriminator " << Discriminator;
Devang Patel3f3bf932011-04-18 20:26:49 +0000731
732 if (IsVerboseAsm) {
733 OS.PadToColumn(MAI.getCommentColumn());
734 OS << MAI.getCommentString() << ' ' << FileName << ':'
735 << Line << ':' << Column;
736 }
Rafael Espindolaaf6b58082010-11-16 21:20:32 +0000737 EmitEOL();
Chris Lattnera6594fc2010-01-25 18:58:59 +0000738}
739
Rafael Espindola066c2f42011-04-12 23:59:07 +0000740void MCAsmStreamer::EmitCFIStartProc() {
741 MCStreamer::EmitCFIStartProc();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000742
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000743 if (!UseCFI)
744 return;
745
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000746 OS << "\t.cfi_startproc";
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000747 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000748}
749
Rafael Espindola066c2f42011-04-12 23:59:07 +0000750void MCAsmStreamer::EmitCFIEndProc() {
751 MCStreamer::EmitCFIEndProc();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000752
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000753 if (!UseCFI)
754 return;
755
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000756 OS << "\t.cfi_endproc";
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000757 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000758}
759
Rafael Espindola066c2f42011-04-12 23:59:07 +0000760void MCAsmStreamer::EmitCFIDefCfa(int64_t Register, int64_t Offset) {
Rafael Espindola7f46b082011-04-29 21:41:06 +0000761 MCStreamer::EmitCFIDefCfa(Register, Offset);
762
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000763 if (!UseCFI)
764 return;
765
Rafael Espindola7f46b082011-04-29 21:41:06 +0000766 OS << ".cfi_def_cfa " << Register << ", " << Offset;
767 EmitEOL();
Rafael Espindola066c2f42011-04-12 23:59:07 +0000768}
769
770void MCAsmStreamer::EmitCFIDefCfaOffset(int64_t Offset) {
771 MCStreamer::EmitCFIDefCfaOffset(Offset);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000772
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000773 if (!UseCFI)
774 return;
775
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000776 OS << "\t.cfi_def_cfa_offset " << Offset;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000777 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000778}
779
Rafael Espindola066c2f42011-04-12 23:59:07 +0000780void MCAsmStreamer::EmitCFIDefCfaRegister(int64_t Register) {
781 MCStreamer::EmitCFIDefCfaRegister(Register);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000782
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000783 if (!UseCFI)
784 return;
785
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000786 OS << "\t.cfi_def_cfa_register " << Register;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000787 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000788}
789
Rafael Espindola066c2f42011-04-12 23:59:07 +0000790void MCAsmStreamer::EmitCFIOffset(int64_t Register, int64_t Offset) {
791 this->MCStreamer::EmitCFIOffset(Register, Offset);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000792
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000793 if (!UseCFI)
794 return;
795
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000796 OS << "\t.cfi_offset " << Register << ", " << Offset;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000797 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000798}
799
Rafael Espindola066c2f42011-04-12 23:59:07 +0000800void MCAsmStreamer::EmitCFIPersonality(const MCSymbol *Sym,
Rafael Espindola3a83c402010-12-27 00:36:05 +0000801 unsigned Encoding) {
Rafael Espindola066c2f42011-04-12 23:59:07 +0000802 MCStreamer::EmitCFIPersonality(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000803
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000804 if (!UseCFI)
805 return;
806
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000807 OS << "\t.cfi_personality " << Encoding << ", " << *Sym;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000808 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000809}
810
Rafael Espindola066c2f42011-04-12 23:59:07 +0000811void MCAsmStreamer::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) {
812 MCStreamer::EmitCFILsda(Sym, Encoding);
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000813
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000814 if (!UseCFI)
815 return;
816
Anton Korobeynikovc6585202011-01-14 21:57:39 +0000817 OS << "\t.cfi_lsda " << Encoding << ", " << *Sym;
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000818 EmitEOL();
Rafael Espindola066c2f42011-04-12 23:59:07 +0000819}
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000820
Rafael Espindola066c2f42011-04-12 23:59:07 +0000821void MCAsmStreamer::EmitCFIRememberState() {
822 MCStreamer::EmitCFIRememberState();
823
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000824 if (!UseCFI)
825 return;
826
Rafael Espindola066c2f42011-04-12 23:59:07 +0000827 OS << "\t.cfi_remember_state";
828 EmitEOL();
829}
830
831void MCAsmStreamer::EmitCFIRestoreState() {
832 MCStreamer::EmitCFIRestoreState();
833
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000834 if (!UseCFI)
835 return;
836
Rafael Espindola066c2f42011-04-12 23:59:07 +0000837 OS << "\t.cfi_restore_state";
838 EmitEOL();
839}
840
841void MCAsmStreamer::EmitCFISameValue(int64_t Register) {
842 MCStreamer::EmitCFISameValue(Register);
843
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000844 if (!UseCFI)
845 return;
846
Rafael Espindola066c2f42011-04-12 23:59:07 +0000847 OS << "\t.cfi_same_value " << Register;
848 EmitEOL();
849}
850
851void MCAsmStreamer::EmitCFIRelOffset(int64_t Register, int64_t Offset) {
852 MCStreamer::EmitCFIRelOffset(Register, Offset);
853
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000854 if (!UseCFI)
855 return;
856
Rafael Espindola066c2f42011-04-12 23:59:07 +0000857 OS << "\t.cfi_rel_offset " << Register << ", " << Offset;
858 EmitEOL();
859}
860
861void MCAsmStreamer::EmitCFIAdjustCfaOffset(int64_t Adjustment) {
862 MCStreamer::EmitCFIAdjustCfaOffset(Adjustment);
863
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +0000864 if (!UseCFI)
865 return;
866
Rafael Espindola066c2f42011-04-12 23:59:07 +0000867 OS << "\t.cfi_adjust_cfa_offset " << Adjustment;
868 EmitEOL();
Rafael Espindolacdfecc82010-11-22 14:27:24 +0000869}
870
Daniel Dunbar6b716532010-02-09 23:00:14 +0000871void MCAsmStreamer::AddEncodingComment(const MCInst &Inst) {
872 raw_ostream &OS = GetCommentOS();
873 SmallString<256> Code;
874 SmallVector<MCFixup, 4> Fixups;
875 raw_svector_ostream VecOS(Code);
876 Emitter->EncodeInstruction(Inst, VecOS, Fixups);
877 VecOS.flush();
Chris Lattnera6594fc2010-01-25 18:58:59 +0000878
Daniel Dunbar6b716532010-02-09 23:00:14 +0000879 // If we are showing fixups, create symbolic markers in the encoded
880 // representation. We do this by making a per-bit map to the fixup item index,
881 // then trying to display it as nicely as possible.
Daniel Dunbar5532cf42010-02-10 01:41:14 +0000882 SmallVector<uint8_t, 64> FixupMap;
883 FixupMap.resize(Code.size() * 8);
Daniel Dunbar6b716532010-02-09 23:00:14 +0000884 for (unsigned i = 0, e = Code.size() * 8; i != e; ++i)
885 FixupMap[i] = 0;
886
887 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
888 MCFixup &F = Fixups[i];
Daniel Dunbar2761fc42010-12-16 03:20:06 +0000889 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar6b716532010-02-09 23:00:14 +0000890 for (unsigned j = 0; j != Info.TargetSize; ++j) {
891 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j;
892 assert(Index < Code.size() * 8 && "Invalid offset in fixup!");
893 FixupMap[Index] = 1 + i;
894 }
895 }
896
Evan Cheng8fbbd1c2011-01-13 23:27:39 +0000897 // FIXME: Node the fixup comments for Thumb2 are completely bogus since the
898 // high order halfword of a 32-bit Thumb2 instruction is emitted first.
Daniel Dunbar6b716532010-02-09 23:00:14 +0000899 OS << "encoding: [";
900 for (unsigned i = 0, e = Code.size(); i != e; ++i) {
901 if (i)
902 OS << ',';
903
904 // See if all bits are the same map entry.
905 uint8_t MapEntry = FixupMap[i * 8 + 0];
906 for (unsigned j = 1; j != 8; ++j) {
907 if (FixupMap[i * 8 + j] == MapEntry)
908 continue;
909
910 MapEntry = uint8_t(~0U);
911 break;
912 }
913
914 if (MapEntry != uint8_t(~0U)) {
915 if (MapEntry == 0) {
916 OS << format("0x%02x", uint8_t(Code[i]));
917 } else {
Evan Cheng82caf1a2011-01-13 21:45:26 +0000918 if (Code[i]) {
Evan Cheng8fbbd1c2011-01-13 23:27:39 +0000919 // FIXME: Some of the 8 bits require fix up.
Evan Cheng82caf1a2011-01-13 21:45:26 +0000920 OS << format("0x%02x", uint8_t(Code[i])) << '\''
921 << char('A' + MapEntry - 1) << '\'';
922 } else
923 OS << char('A' + MapEntry - 1);
Daniel Dunbar6b716532010-02-09 23:00:14 +0000924 }
925 } else {
926 // Otherwise, write out in binary.
927 OS << "0b";
928 for (unsigned j = 8; j--;) {
929 unsigned Bit = (Code[i] >> j) & 1;
NAKAMURA Takumid6451512011-03-27 01:44:40 +0000930
Chris Lattner3170a3b2010-11-15 05:56:19 +0000931 unsigned FixupBit;
Rafael Espindola89b93722010-12-10 07:39:47 +0000932 if (getContext().getTargetAsmInfo().isLittleEndian())
Chris Lattner3170a3b2010-11-15 05:56:19 +0000933 FixupBit = i * 8 + j;
934 else
935 FixupBit = i * 8 + (7-j);
NAKAMURA Takumid6451512011-03-27 01:44:40 +0000936
Chris Lattner3170a3b2010-11-15 05:56:19 +0000937 if (uint8_t MapEntry = FixupMap[FixupBit]) {
Daniel Dunbar6b716532010-02-09 23:00:14 +0000938 assert(Bit == 0 && "Encoder wrote into fixed up bit!");
939 OS << char('A' + MapEntry - 1);
940 } else
941 OS << Bit;
942 }
943 }
944 }
945 OS << "]\n";
946
947 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
948 MCFixup &F = Fixups[i];
Daniel Dunbar2761fc42010-12-16 03:20:06 +0000949 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
Daniel Dunbar6b716532010-02-09 23:00:14 +0000950 OS << " fixup " << char('A' + i) << " - " << "offset: " << F.getOffset()
Daniel Dunbar5d5a1e12010-02-10 04:47:08 +0000951 << ", value: " << *F.getValue() << ", kind: " << Info.Name << "\n";
Daniel Dunbar6b716532010-02-09 23:00:14 +0000952 }
953}
954
Anton Korobeynikovb5e16af2011-03-05 18:43:15 +0000955void MCAsmStreamer::EmitFnStart() {
956 OS << "\t.fnstart";
957 EmitEOL();
958}
959
960void MCAsmStreamer::EmitFnEnd() {
961 OS << "\t.fnend";
962 EmitEOL();
963}
964
965void MCAsmStreamer::EmitCantUnwind() {
966 OS << "\t.cantunwind";
967 EmitEOL();
968}
969
970void MCAsmStreamer::EmitHandlerData() {
971 OS << "\t.handlerdata";
972 EmitEOL();
973}
974
975void MCAsmStreamer::EmitPersonality(const MCSymbol *Personality) {
976 OS << "\t.personality " << Personality->getName();
977 EmitEOL();
978}
979
Anton Korobeynikov57caad72011-03-05 18:43:32 +0000980void MCAsmStreamer::EmitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset) {
981 OS << "\t.setfp\t" << InstPrinter->getRegName(FpReg)
982 << ", " << InstPrinter->getRegName(SpReg);
983 if (Offset)
984 OS << ", #" << Offset;
985 EmitEOL();
986}
987
988void MCAsmStreamer::EmitPad(int64_t Offset) {
989 OS << "\t.pad\t#" << Offset;
990 EmitEOL();
991}
992
993void MCAsmStreamer::EmitRegSave(const SmallVectorImpl<unsigned> &RegList,
994 bool isVector) {
995 assert(RegList.size() && "RegList should not be empty");
996 if (isVector)
997 OS << "\t.vsave\t{";
998 else
999 OS << "\t.save\t{";
1000
1001 OS << InstPrinter->getRegName(RegList[0]);
1002
1003 for (unsigned i = 1, e = RegList.size(); i != e; ++i)
1004 OS << ", " << InstPrinter->getRegName(RegList[i]);
1005
1006 OS << "}";
1007 EmitEOL();
1008}
1009
Daniel Dunbar6b716532010-02-09 23:00:14 +00001010void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
Rafael Espindola7768a9d2011-02-16 01:08:29 +00001011 assert(getCurrentSection() && "Cannot emit contents before setting section!");
Daniel Dunbar6b716532010-02-09 23:00:14 +00001012
1013 // Show the encoding in a comment if we have a code emitter.
1014 if (Emitter)
1015 AddEncodingComment(Inst);
1016
Chris Lattner30d9a642010-02-09 00:54:51 +00001017 // Show the MCInst if enabled.
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +00001018 if (ShowInst) {
Daniel Dunbar67c076c2010-03-22 21:49:34 +00001019 Inst.dump_pretty(GetCommentOS(), &MAI, InstPrinter.get(), "\n ");
Daniel Dunbarc9adb8c2010-05-26 15:18:13 +00001020 GetCommentOS() << "\n";
1021 }
1022
Daniel Dunbar67c076c2010-03-22 21:49:34 +00001023 // If we have an AsmPrinter, use that to print, otherwise print the MCInst.
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001024 if (InstPrinter)
Chris Lattnerd3740872010-04-04 05:04:31 +00001025 InstPrinter->printInst(&Inst, OS);
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001026 else
1027 Inst.print(OS, &MAI);
Chris Lattner7d1e49c2010-01-22 07:36:39 +00001028 EmitEOL();
Daniel Dunbara11af532009-06-24 01:03:06 +00001029}
1030
Jim Grosbachbd4ec842010-09-22 18:18:30 +00001031/// EmitRawText - If this file is backed by an assembly streamer, this dumps
Chris Lattner91bead72010-04-03 21:35:55 +00001032/// the specified string in the output .s file. This capability is
1033/// indicated by the hasRawTextSupport() predicate.
1034void MCAsmStreamer::EmitRawText(StringRef String) {
Chris Lattnerd5928dc2010-04-03 22:06:56 +00001035 if (!String.empty() && String.back() == '\n')
1036 String = String.substr(0, String.size()-1);
Chris Lattner91bead72010-04-03 21:35:55 +00001037 OS << String;
Chris Lattnerd5928dc2010-04-03 22:06:56 +00001038 EmitEOL();
Chris Lattner91bead72010-04-03 21:35:55 +00001039}
1040
Daniel Dunbara11af532009-06-24 01:03:06 +00001041void MCAsmStreamer::Finish() {
Rafael Espindola195a0ce2010-11-19 02:26:16 +00001042 // Dump out the dwarf file & directory tables and line tables.
Rafael Espindola89b93722010-12-10 07:39:47 +00001043 if (getContext().hasDwarfFiles() && !UseLoc)
1044 MCDwarfFileTable::Emit(this);
Daniel Dunbara11af532009-06-24 01:03:06 +00001045}
Daniel Dunbar9dee8e32010-02-03 18:18:30 +00001046
Chris Lattner86e22112010-01-22 07:29:22 +00001047MCStreamer *llvm::createAsmStreamer(MCContext &Context,
1048 formatted_raw_ostream &OS,
Rafael Espindola89b93722010-12-10 07:39:47 +00001049 bool isVerboseAsm, bool useLoc,
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001050 bool useCFI,
Daniel Dunbar745dacc2010-12-16 03:05:59 +00001051 MCInstPrinter *IP, MCCodeEmitter *CE,
1052 TargetAsmBackend *TAB, bool ShowInst) {
Rafael Espindolaf1a5c7e2011-04-30 03:44:37 +00001053 return new MCAsmStreamer(Context, OS, isVerboseAsm, useLoc, useCFI,
Daniel Dunbar745dacc2010-12-16 03:05:59 +00001054 IP, CE, TAB, ShowInst);
Daniel Dunbara11af532009-06-24 01:03:06 +00001055}