blob: f6753e3d1e12d6205e377c83263d59ea499f44e2 [file] [log] [blame]
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +00001//===- lib/MC/MCObjectStreamer.cpp - Object File MCStreamer Interface -----===//
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/MCObjectStreamer.h"
11
Michael J. Spencer8067adc2010-07-19 06:13:10 +000012#include "llvm/Support/ErrorHandling.h"
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +000013#include "llvm/MC/MCAssembler.h"
Benjamin Kramer1abcd062010-07-29 17:48:06 +000014#include "llvm/MC/MCCodeEmitter.h"
Rafael Espindolaf89671d2010-11-01 16:27:31 +000015#include "llvm/MC/MCDwarf.h"
Michael J. Spencer8067adc2010-07-19 06:13:10 +000016#include "llvm/MC/MCExpr.h"
Rafael Espindolaea4afa92010-11-28 17:18:55 +000017#include "llvm/MC/MCSymbol.h"
Benjamin Kramer1abcd062010-07-29 17:48:06 +000018#include "llvm/Target/TargetAsmBackend.h"
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +000019using namespace llvm;
20
21MCObjectStreamer::MCObjectStreamer(MCContext &Context, TargetAsmBackend &TAB,
Rafael Espindola59ff3c92010-09-22 22:27:05 +000022 raw_ostream &_OS, MCCodeEmitter *_Emitter,
23 bool _PadSectionToAlignment)
Daniel Dunbar83b46712010-06-16 20:04:25 +000024 : MCStreamer(Context), Assembler(new MCAssembler(Context, TAB,
Rafael Espindola59ff3c92010-09-22 22:27:05 +000025 *_Emitter,
26 _PadSectionToAlignment,
27 _OS)),
Daniel Dunbar83b46712010-06-16 20:04:25 +000028 CurSectionData(0)
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +000029{
30}
31
32MCObjectStreamer::~MCObjectStreamer() {
Benjamin Kramer1abcd062010-07-29 17:48:06 +000033 delete &Assembler->getBackend();
34 delete &Assembler->getEmitter();
Daniel Dunbar8dc68ab2010-06-16 20:04:22 +000035 delete Assembler;
36}
Daniel Dunbar83b46712010-06-16 20:04:25 +000037
Michael J. Spencer8067adc2010-07-19 06:13:10 +000038MCFragment *MCObjectStreamer::getCurrentFragment() const {
39 assert(getCurrentSectionData() && "No current section!");
40
41 if (!getCurrentSectionData()->empty())
42 return &getCurrentSectionData()->getFragmentList().back();
43
44 return 0;
45}
46
47MCDataFragment *MCObjectStreamer::getOrCreateDataFragment() const {
48 MCDataFragment *F = dyn_cast_or_null<MCDataFragment>(getCurrentFragment());
49 if (!F)
50 F = new MCDataFragment(getCurrentSectionData());
51 return F;
52}
53
54const MCExpr *MCObjectStreamer::AddValueSymbols(const MCExpr *Value) {
55 switch (Value->getKind()) {
56 case MCExpr::Target: llvm_unreachable("Can't handle target exprs yet!");
57 case MCExpr::Constant:
58 break;
59
60 case MCExpr::Binary: {
61 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Value);
62 AddValueSymbols(BE->getLHS());
63 AddValueSymbols(BE->getRHS());
64 break;
65 }
66
67 case MCExpr::SymbolRef:
68 Assembler->getOrCreateSymbolData(cast<MCSymbolRefExpr>(Value)->getSymbol());
69 break;
70
71 case MCExpr::Unary:
72 AddValueSymbols(cast<MCUnaryExpr>(Value)->getSubExpr());
73 break;
74 }
75
76 return Value;
77}
78
Rafael Espindola6f950232010-11-28 23:08:47 +000079void MCObjectStreamer::EmitValue(const MCExpr *Value, unsigned Size,
Devang Patelee4854f2010-12-02 21:32:30 +000080 unsigned AddrSpace, bool UseSet) {
Rafael Espindola6f950232010-11-28 23:08:47 +000081 assert(AddrSpace == 0 && "Address space must be 0!");
82 MCDataFragment *DF = getOrCreateDataFragment();
83
84 // Avoid fixups when possible.
85 int64_t AbsValue;
86 if (AddValueSymbols(Value)->EvaluateAsAbsolute(AbsValue)) {
87 // FIXME: Endianness assumption.
88 for (unsigned i = 0; i != Size; ++i)
89 DF->getContents().push_back(uint8_t(AbsValue >> (i * 8)));
90 } else {
91 DF->addFixup(MCFixup::Create(DF->getContents().size(),
92 AddValueSymbols(Value),
93 MCFixup::getKindForSize(Size, false)));
94 DF->getContents().resize(DF->getContents().size() + Size, 0);
95 }
96}
97
Rafael Espindolaea4afa92010-11-28 17:18:55 +000098void MCObjectStreamer::EmitLabel(MCSymbol *Symbol) {
99 assert(!Symbol->isVariable() && "Cannot emit a variable symbol!");
100 assert(CurSection && "Cannot emit before setting section!");
101
102 Symbol->setSection(*CurSection);
103
104 MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
105
106 // FIXME: This is wasteful, we don't necessarily need to create a data
107 // fragment. Instead, we should mark the symbol as pointing into the data
108 // fragment if it exists, otherwise we should just queue the label and set its
109 // fragment pointer when we emit the next fragment.
110 MCDataFragment *F = getOrCreateDataFragment();
111 assert(!SD.getFragment() && "Unexpected fragment on symbol data!");
112 SD.setFragment(F);
113 SD.setOffset(F->getContents().size());
114}
115
Rafael Espindola3ff57092010-11-02 17:22:24 +0000116void MCObjectStreamer::EmitULEB128Value(const MCExpr *Value,
117 unsigned AddrSpace) {
Rafael Espindola660b5fc2010-12-03 01:19:49 +0000118 int64_t IntValue;
119 if (Value->EvaluateAsAbsolute(IntValue, &getAssembler())) {
120 EmitULEB128IntValue(IntValue, AddrSpace);
121 return;
122 }
Rafael Espindola3ff57092010-11-02 17:22:24 +0000123 new MCLEBFragment(*Value, false, getCurrentSectionData());
124}
125
126void MCObjectStreamer::EmitSLEB128Value(const MCExpr *Value,
127 unsigned AddrSpace) {
Rafael Espindola660b5fc2010-12-03 01:19:49 +0000128 int64_t IntValue;
129 if (Value->EvaluateAsAbsolute(IntValue, &getAssembler())) {
130 EmitSLEB128IntValue(IntValue, AddrSpace);
131 return;
132 }
Rafael Espindola3ff57092010-11-02 17:22:24 +0000133 new MCLEBFragment(*Value, true, getCurrentSectionData());
134}
135
Rafael Espindola484291c2010-11-01 14:28:48 +0000136void MCObjectStreamer::EmitWeakReference(MCSymbol *Alias,
137 const MCSymbol *Symbol) {
138 report_fatal_error("This file format doesn't support weak aliases.");
139}
140
Daniel Dunbar83b46712010-06-16 20:04:25 +0000141void MCObjectStreamer::SwitchSection(const MCSection *Section) {
142 assert(Section && "Cannot switch to a null section!");
143
144 // If already in this section, then this is a noop.
145 if (Section == CurSection) return;
146
Benjamin Kramer1674b0b2010-09-02 18:53:37 +0000147 PrevSection = CurSection;
Daniel Dunbar83b46712010-06-16 20:04:25 +0000148 CurSection = Section;
149 CurSectionData = &getAssembler().getOrCreateSectionData(*Section);
150}
151
Rafael Espindolaf89671d2010-11-01 16:27:31 +0000152void MCObjectStreamer::EmitInstruction(const MCInst &Inst) {
153 // Scan for values.
154 for (unsigned i = Inst.getNumOperands(); i--; )
155 if (Inst.getOperand(i).isExpr())
156 AddValueSymbols(Inst.getOperand(i).getExpr());
157
158 getCurrentSectionData()->setHasInstructions(true);
159
160 // Now that a machine instruction has been assembled into this section, make
161 // a line entry for any .loc directive that has been seen.
162 MCLineEntry::Make(this, getCurrentSection());
163
164 // If this instruction doesn't need relaxation, just emit it as data.
165 if (!getAssembler().getBackend().MayNeedRelaxation(Inst)) {
166 EmitInstToData(Inst);
167 return;
168 }
169
170 // Otherwise, if we are relaxing everything, relax the instruction as much as
171 // possible and emit it as data.
172 if (getAssembler().getRelaxAll()) {
173 MCInst Relaxed;
174 getAssembler().getBackend().RelaxInstruction(Inst, Relaxed);
175 while (getAssembler().getBackend().MayNeedRelaxation(Relaxed))
176 getAssembler().getBackend().RelaxInstruction(Relaxed, Relaxed);
177 EmitInstToData(Relaxed);
178 return;
179 }
180
181 // Otherwise emit to a separate fragment.
182 EmitInstToFragment(Inst);
183}
184
Rafael Espindoladedb0452010-12-02 05:44:06 +0000185void MCObjectStreamer::EmitInstToFragment(const MCInst &Inst) {
186 MCInstFragment *IF = new MCInstFragment(Inst, getCurrentSectionData());
187
188 raw_svector_ostream VecOS(IF->getCode());
189 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, IF->getFixups());
190}
191
Rafael Espindola32a006e2010-12-03 00:55:40 +0000192void MCObjectStreamer::EmitDwarfAdvanceLineAddr(int64_t LineDelta,
193 const MCSymbol *LastLabel,
194 const MCSymbol *Label) {
195 if (!LastLabel) {
196 int PointerSize = getAssembler().getBackend().getPointerSize();
197 EmitDwarfSetLineAddr(LineDelta, Label, PointerSize);
198 return;
199 }
200 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
201 const MCExpr *LabelRef =
202 MCSymbolRefExpr::Create(Label, Variant, getContext());
203 const MCExpr *LastLabelRef =
204 MCSymbolRefExpr::Create(LastLabel, Variant, getContext());
205 const MCExpr *AddrDelta =
206 MCBinaryExpr::Create(MCBinaryExpr::Sub, LabelRef, LastLabelRef,
207 getContext());
208 int64_t Res;
209 if (AddrDelta->EvaluateAsAbsolute(Res, &getAssembler())) {
210 MCDwarfLineAddr::Emit(this, LineDelta, Res);
211 return;
212 }
213 new MCDwarfLineAddrFragment(LineDelta, *AddrDelta, getCurrentSectionData());
214}
215
Rafael Espindolae2393052010-12-02 05:59:38 +0000216void MCObjectStreamer::EmitValueToOffset(const MCExpr *Offset,
217 unsigned char Value) {
218 new MCOrgFragment(*Offset, Value, getCurrentSectionData());
219}
220
Daniel Dunbar83b46712010-06-16 20:04:25 +0000221void MCObjectStreamer::Finish() {
222 getAssembler().Finish();
223}