blob: a71174a77b04b3acf62bfd55ffef836cbffe1e43 [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"
11
Daniel Dunbara11af532009-06-24 01:03:06 +000012#include "llvm/MC/MCContext.h"
Daniel Dunbarabde2982009-07-01 06:35:03 +000013#include "llvm/MC/MCInst.h"
Daniel Dunbara11af532009-06-24 01:03:06 +000014#include "llvm/MC/MCSection.h"
15#include "llvm/MC/MCSymbol.h"
16#include "llvm/MC/MCValue.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000017#include "llvm/Support/ErrorHandling.h"
Daniel Dunbara11af532009-06-24 01:03:06 +000018#include "llvm/Support/raw_ostream.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000019
Daniel Dunbara11af532009-06-24 01:03:06 +000020using namespace llvm;
21
22namespace {
23
24 class MCAsmStreamer : public MCStreamer {
25 raw_ostream &OS;
26
27 MCSection *CurSection;
28
29 public:
30 MCAsmStreamer(MCContext &Context, raw_ostream &_OS)
Torok Edwin48de5d82009-06-29 19:59:10 +000031 : MCStreamer(Context), OS(_OS), CurSection(0) {}
Daniel Dunbara11af532009-06-24 01:03:06 +000032 ~MCAsmStreamer() {}
33
34 /// @name MCStreamer Interface
35 /// @{
36
37 virtual void SwitchSection(MCSection *Section);
38
39 virtual void EmitLabel(MCSymbol *Symbol);
40
Kevin Enderbyf96db462009-07-16 17:56:39 +000041 virtual void EmitAssemblerFlag(AssemblerFlag Flag);
Kevin Enderbya5c78322009-07-13 21:03:15 +000042
Daniel Dunbara11af532009-06-24 01:03:06 +000043 virtual void EmitAssignment(MCSymbol *Symbol, const MCValue &Value,
44 bool MakeAbsolute = false);
45
46 virtual void EmitSymbolAttribute(MCSymbol *Symbol, SymbolAttr Attribute);
47
Kevin Enderby95cf30c2009-07-14 18:17:10 +000048 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
49
Kevin Enderby71148242009-07-14 21:35:03 +000050 virtual void EmitLocalSymbol(MCSymbol *Symbol, const MCValue &Value);
51
Chris Lattner4e4db7a2009-07-07 20:30:46 +000052 virtual void EmitCommonSymbol(MCSymbol *Symbol, unsigned Size,
Chris Lattner1fc3d752009-07-09 17:25:12 +000053 unsigned Pow2Alignment, bool IsLocal);
Chris Lattner4e4db7a2009-07-07 20:30:46 +000054
Chris Lattner9be3fee2009-07-10 22:20:30 +000055 virtual void EmitZerofill(MCSection *Section, MCSymbol *Symbol = NULL,
56 unsigned Size = 0, unsigned Pow2Alignment = 0);
57
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +000058 virtual void EmitBytes(const StringRef &Data);
Daniel Dunbara11af532009-06-24 01:03:06 +000059
60 virtual void EmitValue(const MCValue &Value, unsigned Size);
61
Daniel Dunbar84a29262009-06-24 19:25:34 +000062 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
63 unsigned ValueSize = 1,
64 unsigned MaxBytesToEmit = 0);
65
66 virtual void EmitValueToOffset(const MCValue &Offset,
67 unsigned char Value = 0);
68
Daniel Dunbara11af532009-06-24 01:03:06 +000069 virtual void EmitInstruction(const MCInst &Inst);
70
71 virtual void Finish();
72
73 /// @}
74 };
75
76}
77
Daniel Dunbarad4555c2009-07-31 23:04:32 +000078/// NeedsQuoting - Return true if the string \arg Str needs quoting, i.e., it
79/// does not match [a-zA-Z_.][a-zA-Z0-9_.]*.
80//
81// FIXME: This could be more permissive, do we care?
82static inline bool NeedsQuoting(const StringRef &Str) {
83 if (Str.empty())
84 return true;
85
86 // Check that first character is in [a-zA-Z_.].
87 if (!((Str[0] >= 'a' && Str[0] <= 'z') ||
88 (Str[0] >= 'A' && Str[0] <= 'Z') ||
89 (Str[0] == '_' || Str[0] == '.')))
90 return true;
91
92 // Check subsequent characters are in [a-zA-Z0-9_.].
93 for (unsigned i = 1, e = Str.size(); i != e; ++i)
94 if (!((Str[i] >= 'a' && Str[i] <= 'z') ||
95 (Str[i] >= 'A' && Str[i] <= 'Z') ||
96 (Str[i] >= '0' && Str[i] <= '9') ||
97 (Str[i] == '_' || Str[i] == '.')))
98 return true;
99
100 return false;
101}
102
103/// Allow printing sections directly to a raw_ostream with proper quoting.
104static inline raw_ostream &operator<<(raw_ostream &os, const MCSection *S) {
105 if (NeedsQuoting(S->getName()))
106 return os << '"' << S->getName() << '"';
107 return os << S->getName();
108}
109
110/// Allow printing symbols directly to a raw_ostream with proper quoting.
111static inline raw_ostream &operator<<(raw_ostream &os, const MCSymbol *S) {
112 if (NeedsQuoting(S->getName()))
113 return os << '"' << S->getName() << '"';
114 return os << S->getName();
115}
116
Daniel Dunbara11af532009-06-24 01:03:06 +0000117/// Allow printing values directly to a raw_ostream.
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000118static inline raw_ostream &operator<<(raw_ostream &os, const MCValue &Value) {
Daniel Dunbara11af532009-06-24 01:03:06 +0000119 if (Value.getSymA()) {
Daniel Dunbarad4555c2009-07-31 23:04:32 +0000120 os << Value.getSymA();
Daniel Dunbara11af532009-06-24 01:03:06 +0000121 if (Value.getSymB())
Daniel Dunbarad4555c2009-07-31 23:04:32 +0000122 os << " - " << Value.getSymB();
Daniel Dunbar7908a6a2009-06-29 19:51:00 +0000123 if (Value.getConstant())
124 os << " + " << Value.getConstant();
Daniel Dunbara11af532009-06-24 01:03:06 +0000125 } else {
126 assert(!Value.getSymB() && "Invalid machine code value!");
Daniel Dunbar7908a6a2009-06-29 19:51:00 +0000127 os << Value.getConstant();
Daniel Dunbara11af532009-06-24 01:03:06 +0000128 }
129
130 return os;
131}
132
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000133static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) {
134 assert(Bytes && "Invalid size!");
135 return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
136}
137
138static inline MCValue truncateToSize(const MCValue &Value, unsigned Bytes) {
139 return MCValue::get(Value.getSymA(), Value.getSymB(),
Daniel Dunbar7908a6a2009-06-29 19:51:00 +0000140 truncateToSize(Value.getConstant(), Bytes));
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000141}
142
Daniel Dunbara11af532009-06-24 01:03:06 +0000143void MCAsmStreamer::SwitchSection(MCSection *Section) {
144 if (Section != CurSection) {
145 CurSection = Section;
146
147 // FIXME: Really we would like the segment, flags, etc. to be separate
148 // values instead of embedded in the name. Not all assemblers understand all
149 // this stuff though.
Daniel Dunbarad4555c2009-07-31 23:04:32 +0000150 OS << ".section " << Section << "\n";
Daniel Dunbara11af532009-06-24 01:03:06 +0000151 }
152}
153
154void MCAsmStreamer::EmitLabel(MCSymbol *Symbol) {
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000155 assert(Symbol->getSection() == 0 && "Cannot emit a symbol twice!");
156 assert(CurSection && "Cannot emit before setting section!");
157 assert(!getContext().GetSymbolValue(Symbol) &&
158 "Cannot emit symbol which was directly assigned to!");
159
Daniel Dunbarad4555c2009-07-31 23:04:32 +0000160 OS << Symbol << ":\n";
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000161 Symbol->setSection(CurSection);
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000162 Symbol->setExternal(false);
Daniel Dunbara11af532009-06-24 01:03:06 +0000163}
164
Kevin Enderbyf96db462009-07-16 17:56:39 +0000165void MCAsmStreamer::EmitAssemblerFlag(AssemblerFlag Flag) {
166 switch (Flag) {
167 case SubsectionsViaSymbols: OS << ".subsections_via_symbols"; break;
168 }
169 OS << '\n';
Kevin Enderbya5c78322009-07-13 21:03:15 +0000170}
171
Daniel Dunbara11af532009-06-24 01:03:06 +0000172void MCAsmStreamer::EmitAssignment(MCSymbol *Symbol, const MCValue &Value,
173 bool MakeAbsolute) {
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000174 assert(!Symbol->getSection() && "Cannot assign to a label!");
175
Daniel Dunbara11af532009-06-24 01:03:06 +0000176 if (MakeAbsolute) {
Daniel Dunbarad4555c2009-07-31 23:04:32 +0000177 OS << ".set " << Symbol << ", " << Value << '\n';
Daniel Dunbara11af532009-06-24 01:03:06 +0000178 } else {
Daniel Dunbarad4555c2009-07-31 23:04:32 +0000179 OS << Symbol << " = " << Value << '\n';
Daniel Dunbara11af532009-06-24 01:03:06 +0000180 }
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000181
182 getContext().SetSymbolValue(Symbol, Value);
Daniel Dunbara11af532009-06-24 01:03:06 +0000183}
184
185void MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
186 SymbolAttr Attribute) {
187 switch (Attribute) {
188 case Global: OS << ".globl"; break;
Daniel Dunbard814b212009-06-24 16:36:52 +0000189 case Hidden: OS << ".hidden"; break;
190 case IndirectSymbol: OS << ".indirect_symbol"; break;
191 case Internal: OS << ".internal"; break;
192 case LazyReference: OS << ".lazy_reference"; break;
193 case NoDeadStrip: OS << ".no_dead_strip"; break;
Daniel Dunbara11af532009-06-24 01:03:06 +0000194 case PrivateExtern: OS << ".private_extern"; break;
Daniel Dunbard814b212009-06-24 16:36:52 +0000195 case Protected: OS << ".protected"; break;
196 case Reference: OS << ".reference"; break;
197 case Weak: OS << ".weak"; break;
198 case WeakDefinition: OS << ".weak_definition"; break;
199 case WeakReference: OS << ".weak_reference"; break;
Daniel Dunbara11af532009-06-24 01:03:06 +0000200 }
201
Daniel Dunbarad4555c2009-07-31 23:04:32 +0000202 OS << ' ' << Symbol << '\n';
Daniel Dunbara11af532009-06-24 01:03:06 +0000203}
204
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000205void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Daniel Dunbarad4555c2009-07-31 23:04:32 +0000206 OS << ".desc" << ' ' << Symbol << ',' << DescValue << '\n';
Kevin Enderby95cf30c2009-07-14 18:17:10 +0000207}
208
Kevin Enderby71148242009-07-14 21:35:03 +0000209void MCAsmStreamer::EmitLocalSymbol(MCSymbol *Symbol, const MCValue &Value) {
Daniel Dunbarad4555c2009-07-31 23:04:32 +0000210 OS << ".lsym" << ' ' << Symbol << ',' << Value << '\n';
Kevin Enderby71148242009-07-14 21:35:03 +0000211}
212
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000213void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, unsigned Size,
Chris Lattner1fc3d752009-07-09 17:25:12 +0000214 unsigned Pow2Alignment, bool IsLocal) {
215 if (IsLocal)
216 OS << ".lcomm";
217 else
218 OS << ".comm";
Daniel Dunbarad4555c2009-07-31 23:04:32 +0000219 OS << ' ' << Symbol << ',' << Size;
Chris Lattner4e4db7a2009-07-07 20:30:46 +0000220 if (Pow2Alignment != 0)
221 OS << ',' << Pow2Alignment;
222 OS << '\n';
223}
224
Chris Lattner9be3fee2009-07-10 22:20:30 +0000225void MCAsmStreamer::EmitZerofill(MCSection *Section, MCSymbol *Symbol,
226 unsigned Size, unsigned Pow2Alignment) {
227 // Note: a .zerofill directive does not switch sections
228 // FIXME: Really we would like the segment and section names as well as the
229 // section type to be separate values instead of embedded in the name. Not
230 // all assemblers understand all this stuff though.
Daniel Dunbarad4555c2009-07-31 23:04:32 +0000231 OS << ".zerofill " << Section;
Chris Lattner9be3fee2009-07-10 22:20:30 +0000232 if (Symbol != NULL) {
Daniel Dunbarad4555c2009-07-31 23:04:32 +0000233 OS << ',' << Symbol << ',' << Size;
Chris Lattner9be3fee2009-07-10 22:20:30 +0000234 if (Pow2Alignment != 0)
235 OS << ',' << Pow2Alignment;
236 }
237 OS << '\n';
238}
239
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000240void MCAsmStreamer::EmitBytes(const StringRef &Data) {
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000241 assert(CurSection && "Cannot emit contents before setting section!");
Daniel Dunbar9a7e2cc2009-07-27 21:49:56 +0000242 for (unsigned i = 0, e = Data.size(); i != e; ++i)
Daniel Dunbara11af532009-06-24 01:03:06 +0000243 OS << ".byte " << (unsigned) Data[i] << '\n';
Daniel Dunbara11af532009-06-24 01:03:06 +0000244}
245
246void MCAsmStreamer::EmitValue(const MCValue &Value, unsigned Size) {
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000247 assert(CurSection && "Cannot emit contents before setting section!");
Daniel Dunbara11af532009-06-24 01:03:06 +0000248 // Need target hooks to know how to print this.
249 switch (Size) {
250 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000251 llvm_unreachable("Invalid size for machine code value!");
Daniel Dunbara11af532009-06-24 01:03:06 +0000252 case 1: OS << ".byte"; break;
Daniel Dunbarf5e75a12009-06-24 16:05:35 +0000253 case 2: OS << ".short"; break;
Daniel Dunbara11af532009-06-24 01:03:06 +0000254 case 4: OS << ".long"; break;
255 case 8: OS << ".quad"; break;
256 }
257
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000258 OS << ' ' << truncateToSize(Value, Size) << '\n';
Daniel Dunbara11af532009-06-24 01:03:06 +0000259}
260
Daniel Dunbar84a29262009-06-24 19:25:34 +0000261void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
262 unsigned ValueSize,
263 unsigned MaxBytesToEmit) {
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000264 // Some assemblers don't support .balign, so we always emit as .p2align if
265 // this is a power of two. Otherwise we assume the client knows the target
266 // supports .balign and use that.
Daniel Dunbar84a29262009-06-24 19:25:34 +0000267 unsigned Pow2 = Log2_32(ByteAlignment);
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000268 bool IsPow2 = (1U << Pow2) == ByteAlignment;
Daniel Dunbar84a29262009-06-24 19:25:34 +0000269
270 switch (ValueSize) {
271 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000272 llvm_unreachable("Invalid size for machine code value!");
Daniel Dunbar84a29262009-06-24 19:25:34 +0000273 case 8:
Torok Edwinc23197a2009-07-14 16:55:14 +0000274 llvm_unreachable("Unsupported alignment size!");
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000275 case 1: OS << (IsPow2 ? ".p2align" : ".balign"); break;
276 case 2: OS << (IsPow2 ? ".p2alignw" : ".balignw"); break;
277 case 4: OS << (IsPow2 ? ".p2alignl" : ".balignl"); break;
Daniel Dunbar84a29262009-06-24 19:25:34 +0000278 }
279
Daniel Dunbarc29dfa72009-06-29 23:46:59 +0000280 OS << ' ' << (IsPow2 ? Pow2 : ByteAlignment);
Daniel Dunbar84a29262009-06-24 19:25:34 +0000281
Daniel Dunbar304f6a42009-06-25 21:03:18 +0000282 OS << ", " << truncateToSize(Value, ValueSize);
Daniel Dunbar84a29262009-06-24 19:25:34 +0000283 if (MaxBytesToEmit)
284 OS << ", " << MaxBytesToEmit;
285 OS << '\n';
286}
287
288void MCAsmStreamer::EmitValueToOffset(const MCValue &Offset,
289 unsigned char Value) {
290 // FIXME: Verify that Offset is associated with the current section.
291 OS << ".org " << Offset << ", " << (unsigned) Value << '\n';
292}
293
Daniel Dunbarabde2982009-07-01 06:35:03 +0000294static raw_ostream &operator<<(raw_ostream &OS, const MCOperand &Op) {
295 if (Op.isReg())
296 return OS << "reg:" << Op.getReg();
297 if (Op.isImm())
298 return OS << "imm:" << Op.getImm();
299 if (Op.isMBBLabel())
300 return OS << "mbblabel:("
301 << Op.getMBBLabelFunction() << ", " << Op.getMBBLabelBlock();
302 assert(Op.isMCValue() && "Invalid operand!");
303 return OS << "val:" << Op.getMCValue();
304}
305
Daniel Dunbara11af532009-06-24 01:03:06 +0000306void MCAsmStreamer::EmitInstruction(const MCInst &Inst) {
Daniel Dunbar71d259b2009-06-24 17:00:42 +0000307 assert(CurSection && "Cannot emit contents before setting section!");
Daniel Dunbarabde2982009-07-01 06:35:03 +0000308 // FIXME: Implement proper printing.
309 OS << "MCInst("
310 << "opcode=" << Inst.getOpcode() << ", "
311 << "operands=[";
312 for (unsigned i = 0, e = Inst.getNumOperands(); i != e; ++i) {
313 if (i)
314 OS << ", ";
315 OS << Inst.getOperand(i);
316 }
317 OS << "])\n";
Daniel Dunbara11af532009-06-24 01:03:06 +0000318}
319
320void MCAsmStreamer::Finish() {
321 OS.flush();
322}
323
324MCStreamer *llvm::createAsmStreamer(MCContext &Context, raw_ostream &OS) {
325 return new MCAsmStreamer(Context, OS);
326}