blob: bfadfda47f2b996078cc035dad608e4830f08f02 [file] [log] [blame]
Chandler Carruth8d736232015-12-29 09:06:16 +00001//===- lib/MC/MCFragment.cpp - Assembler Fragment Implementation ----------===//
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/MCFragment.h"
11#include "llvm/ADT/StringExtras.h"
12#include "llvm/ADT/Twine.h"
13#include "llvm/MC/MCAsmBackend.h"
14#include "llvm/MC/MCAsmInfo.h"
15#include "llvm/MC/MCAsmLayout.h"
16#include "llvm/MC/MCContext.h"
17#include "llvm/MC/MCDwarf.h"
18#include "llvm/MC/MCExpr.h"
19#include "llvm/MC/MCFixupKindInfo.h"
20#include "llvm/MC/MCSection.h"
21#include "llvm/MC/MCSectionELF.h"
22#include "llvm/MC/MCSymbol.h"
23#include "llvm/MC/MCValue.h"
24#include "llvm/Support/ErrorHandling.h"
25#include "llvm/Support/LEB128.h"
26#include "llvm/Support/TargetRegistry.h"
27#include "llvm/Support/raw_ostream.h"
28#include <tuple>
29using namespace llvm;
30
31MCAsmLayout::MCAsmLayout(MCAssembler &Asm)
32 : Assembler(Asm), LastValidFragment()
33 {
34 // Compute the section layout order. Virtual sections must go last.
35 for (MCSection &Sec : Asm)
36 if (!Sec.isVirtualSection())
37 SectionOrder.push_back(&Sec);
38 for (MCSection &Sec : Asm)
39 if (Sec.isVirtualSection())
40 SectionOrder.push_back(&Sec);
41}
42
43bool MCAsmLayout::isFragmentValid(const MCFragment *F) const {
44 const MCSection *Sec = F->getParent();
45 const MCFragment *LastValid = LastValidFragment.lookup(Sec);
46 if (!LastValid)
47 return false;
48 assert(LastValid->getParent() == Sec);
49 return F->getLayoutOrder() <= LastValid->getLayoutOrder();
50}
51
52void MCAsmLayout::invalidateFragmentsFrom(MCFragment *F) {
53 // If this fragment wasn't already valid, we don't need to do anything.
54 if (!isFragmentValid(F))
55 return;
56
57 // Otherwise, reset the last valid fragment to the previous fragment
58 // (if this is the first fragment, it will be NULL).
59 LastValidFragment[F->getParent()] = F->getPrevNode();
60}
61
62void MCAsmLayout::ensureValid(const MCFragment *F) const {
63 MCSection *Sec = F->getParent();
64 MCSection::iterator I;
65 if (MCFragment *Cur = LastValidFragment[Sec])
66 I = ++MCSection::iterator(Cur);
67 else
68 I = Sec->begin();
69
70 // Advance the layout position until the fragment is valid.
71 while (!isFragmentValid(F)) {
72 assert(I != Sec->end() && "Layout bookkeeping error");
73 const_cast<MCAsmLayout *>(this)->layoutFragment(&*I);
74 ++I;
75 }
76}
77
78uint64_t MCAsmLayout::getFragmentOffset(const MCFragment *F) const {
79 ensureValid(F);
80 assert(F->Offset != ~UINT64_C(0) && "Address not set!");
81 return F->Offset;
82}
83
84// Simple getSymbolOffset helper for the non-varibale case.
85static bool getLabelOffset(const MCAsmLayout &Layout, const MCSymbol &S,
86 bool ReportError, uint64_t &Val) {
87 if (!S.getFragment()) {
88 if (ReportError)
89 report_fatal_error("unable to evaluate offset to undefined symbol '" +
90 S.getName() + "'");
91 return false;
92 }
93 Val = Layout.getFragmentOffset(S.getFragment()) + S.getOffset();
94 return true;
95}
96
97static bool getSymbolOffsetImpl(const MCAsmLayout &Layout, const MCSymbol &S,
98 bool ReportError, uint64_t &Val) {
99 if (!S.isVariable())
100 return getLabelOffset(Layout, S, ReportError, Val);
101
102 // If SD is a variable, evaluate it.
103 MCValue Target;
104 if (!S.getVariableValue()->evaluateAsValue(Target, Layout))
105 report_fatal_error("unable to evaluate offset for variable '" +
106 S.getName() + "'");
107
108 uint64_t Offset = Target.getConstant();
109
110 const MCSymbolRefExpr *A = Target.getSymA();
111 if (A) {
112 uint64_t ValA;
113 if (!getLabelOffset(Layout, A->getSymbol(), ReportError, ValA))
114 return false;
115 Offset += ValA;
116 }
117
118 const MCSymbolRefExpr *B = Target.getSymB();
119 if (B) {
120 uint64_t ValB;
121 if (!getLabelOffset(Layout, B->getSymbol(), ReportError, ValB))
122 return false;
123 Offset -= ValB;
124 }
125
126 Val = Offset;
127 return true;
128}
129
130bool MCAsmLayout::getSymbolOffset(const MCSymbol &S, uint64_t &Val) const {
131 return getSymbolOffsetImpl(*this, S, false, Val);
132}
133
134uint64_t MCAsmLayout::getSymbolOffset(const MCSymbol &S) const {
135 uint64_t Val;
136 getSymbolOffsetImpl(*this, S, true, Val);
137 return Val;
138}
139
140const MCSymbol *MCAsmLayout::getBaseSymbol(const MCSymbol &Symbol) const {
141 if (!Symbol.isVariable())
142 return &Symbol;
143
144 const MCExpr *Expr = Symbol.getVariableValue();
145 MCValue Value;
146 if (!Expr->evaluateAsValue(Value, *this)) {
147 Assembler.getContext().reportError(
148 SMLoc(), "expression could not be evaluated");
149 return nullptr;
150 }
151
152 const MCSymbolRefExpr *RefB = Value.getSymB();
153 if (RefB) {
154 Assembler.getContext().reportError(
155 SMLoc(), Twine("symbol '") + RefB->getSymbol().getName() +
156 "' could not be evaluated in a subtraction expression");
157 return nullptr;
158 }
159
160 const MCSymbolRefExpr *A = Value.getSymA();
161 if (!A)
162 return nullptr;
163
164 const MCSymbol &ASym = A->getSymbol();
165 const MCAssembler &Asm = getAssembler();
166 if (ASym.isCommon()) {
167 // FIXME: we should probably add a SMLoc to MCExpr.
168 Asm.getContext().reportError(SMLoc(),
169 "Common symbol '" + ASym.getName() +
170 "' cannot be used in assignment expr");
171 return nullptr;
172 }
173
174 return &ASym;
175}
176
177uint64_t MCAsmLayout::getSectionAddressSize(const MCSection *Sec) const {
178 // The size is the last fragment's end offset.
179 const MCFragment &F = Sec->getFragmentList().back();
180 return getFragmentOffset(&F) + getAssembler().computeFragmentSize(*this, F);
181}
182
183uint64_t MCAsmLayout::getSectionFileSize(const MCSection *Sec) const {
184 // Virtual sections have no file size.
185 if (Sec->isVirtualSection())
186 return 0;
187
188 // Otherwise, the file size is the same as the address space size.
189 return getSectionAddressSize(Sec);
190}
191
192uint64_t llvm::computeBundlePadding(const MCAssembler &Assembler,
193 const MCFragment *F,
194 uint64_t FOffset, uint64_t FSize) {
195 uint64_t BundleSize = Assembler.getBundleAlignSize();
196 assert(BundleSize > 0 &&
197 "computeBundlePadding should only be called if bundling is enabled");
198 uint64_t BundleMask = BundleSize - 1;
199 uint64_t OffsetInBundle = FOffset & BundleMask;
200 uint64_t EndOfFragment = OffsetInBundle + FSize;
201
202 // There are two kinds of bundling restrictions:
203 //
204 // 1) For alignToBundleEnd(), add padding to ensure that the fragment will
205 // *end* on a bundle boundary.
206 // 2) Otherwise, check if the fragment would cross a bundle boundary. If it
207 // would, add padding until the end of the bundle so that the fragment
208 // will start in a new one.
209 if (F->alignToBundleEnd()) {
210 // Three possibilities here:
211 //
212 // A) The fragment just happens to end at a bundle boundary, so we're good.
213 // B) The fragment ends before the current bundle boundary: pad it just
214 // enough to reach the boundary.
215 // C) The fragment ends after the current bundle boundary: pad it until it
216 // reaches the end of the next bundle boundary.
217 //
218 // Note: this code could be made shorter with some modulo trickery, but it's
219 // intentionally kept in its more explicit form for simplicity.
220 if (EndOfFragment == BundleSize)
221 return 0;
222 else if (EndOfFragment < BundleSize)
223 return BundleSize - EndOfFragment;
224 else { // EndOfFragment > BundleSize
225 return 2 * BundleSize - EndOfFragment;
226 }
227 } else if (OffsetInBundle > 0 && EndOfFragment > BundleSize)
228 return BundleSize - OffsetInBundle;
229 else
230 return 0;
231}
232
233/* *** */
234
235void ilist_node_traits<MCFragment>::deleteNode(MCFragment *V) {
236 V->destroy();
237}
238
239MCFragment::MCFragment() : Kind(FragmentType(~0)), HasInstructions(false),
240 AlignToBundleEnd(false), BundlePadding(0) {
241}
242
243MCFragment::~MCFragment() { }
244
245MCFragment::MCFragment(FragmentType Kind, bool HasInstructions,
246 uint8_t BundlePadding, MCSection *Parent)
247 : Kind(Kind), HasInstructions(HasInstructions), AlignToBundleEnd(false),
248 BundlePadding(BundlePadding), Parent(Parent), Atom(nullptr),
249 Offset(~UINT64_C(0)) {
250 if (Parent && !isDummy())
251 Parent->getFragmentList().push_back(this);
252}
253
254void MCFragment::destroy() {
255 // First check if we are the sentinal.
256 if (Kind == FragmentType(~0)) {
257 delete this;
258 return;
259 }
260
261 switch (Kind) {
262 case FT_Align:
263 delete cast<MCAlignFragment>(this);
264 return;
265 case FT_Data:
266 delete cast<MCDataFragment>(this);
267 return;
268 case FT_CompactEncodedInst:
269 delete cast<MCCompactEncodedInstFragment>(this);
270 return;
271 case FT_Fill:
272 delete cast<MCFillFragment>(this);
273 return;
274 case FT_Relaxable:
275 delete cast<MCRelaxableFragment>(this);
276 return;
277 case FT_Org:
278 delete cast<MCOrgFragment>(this);
279 return;
280 case FT_Dwarf:
281 delete cast<MCDwarfLineAddrFragment>(this);
282 return;
283 case FT_DwarfFrame:
284 delete cast<MCDwarfCallFrameFragment>(this);
285 return;
286 case FT_LEB:
287 delete cast<MCLEBFragment>(this);
288 return;
289 case FT_SafeSEH:
290 delete cast<MCSafeSEHFragment>(this);
291 return;
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000292 case FT_CVInlineLines:
293 delete cast<MCCVInlineLineTableFragment>(this);
294 return;
Chandler Carruth8d736232015-12-29 09:06:16 +0000295 case FT_Dummy:
296 delete cast<MCDummyFragment>(this);
297 return;
298 }
299}
300
301/* *** */
302
303// Debugging methods
304
305namespace llvm {
306
307raw_ostream &operator<<(raw_ostream &OS, const MCFixup &AF) {
308 OS << "<MCFixup" << " Offset:" << AF.getOffset()
309 << " Value:" << *AF.getValue()
310 << " Kind:" << AF.getKind() << ">";
311 return OS;
312}
313
314}
315
316#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Yaron Kereneb2a2542016-01-29 20:50:44 +0000317LLVM_DUMP_METHOD void MCFragment::dump() {
Chandler Carruth8d736232015-12-29 09:06:16 +0000318 raw_ostream &OS = llvm::errs();
319
320 OS << "<";
321 switch (getKind()) {
322 case MCFragment::FT_Align: OS << "MCAlignFragment"; break;
323 case MCFragment::FT_Data: OS << "MCDataFragment"; break;
324 case MCFragment::FT_CompactEncodedInst:
325 OS << "MCCompactEncodedInstFragment"; break;
326 case MCFragment::FT_Fill: OS << "MCFillFragment"; break;
327 case MCFragment::FT_Relaxable: OS << "MCRelaxableFragment"; break;
328 case MCFragment::FT_Org: OS << "MCOrgFragment"; break;
329 case MCFragment::FT_Dwarf: OS << "MCDwarfFragment"; break;
330 case MCFragment::FT_DwarfFrame: OS << "MCDwarfCallFrameFragment"; break;
331 case MCFragment::FT_LEB: OS << "MCLEBFragment"; break;
332 case MCFragment::FT_SafeSEH: OS << "MCSafeSEHFragment"; break;
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000333 case MCFragment::FT_CVInlineLines: OS << "MCCVInlineLineTableFragment"; break;
334 case MCFragment::FT_Dummy: OS << "MCDummyFragment"; break;
Chandler Carruth8d736232015-12-29 09:06:16 +0000335 }
336
337 OS << "<MCFragment " << (void*) this << " LayoutOrder:" << LayoutOrder
338 << " Offset:" << Offset
339 << " HasInstructions:" << hasInstructions()
340 << " BundlePadding:" << static_cast<unsigned>(getBundlePadding()) << ">";
341
342 switch (getKind()) {
343 case MCFragment::FT_Align: {
344 const MCAlignFragment *AF = cast<MCAlignFragment>(this);
345 if (AF->hasEmitNops())
346 OS << " (emit nops)";
347 OS << "\n ";
348 OS << " Alignment:" << AF->getAlignment()
349 << " Value:" << AF->getValue() << " ValueSize:" << AF->getValueSize()
350 << " MaxBytesToEmit:" << AF->getMaxBytesToEmit() << ">";
351 break;
352 }
353 case MCFragment::FT_Data: {
354 const MCDataFragment *DF = cast<MCDataFragment>(this);
355 OS << "\n ";
356 OS << " Contents:[";
357 const SmallVectorImpl<char> &Contents = DF->getContents();
358 for (unsigned i = 0, e = Contents.size(); i != e; ++i) {
359 if (i) OS << ",";
360 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
361 }
362 OS << "] (" << Contents.size() << " bytes)";
363
364 if (DF->fixup_begin() != DF->fixup_end()) {
365 OS << ",\n ";
366 OS << " Fixups:[";
367 for (MCDataFragment::const_fixup_iterator it = DF->fixup_begin(),
368 ie = DF->fixup_end(); it != ie; ++it) {
369 if (it != DF->fixup_begin()) OS << ",\n ";
370 OS << *it;
371 }
372 OS << "]";
373 }
374 break;
375 }
376 case MCFragment::FT_CompactEncodedInst: {
377 const MCCompactEncodedInstFragment *CEIF =
378 cast<MCCompactEncodedInstFragment>(this);
379 OS << "\n ";
380 OS << " Contents:[";
381 const SmallVectorImpl<char> &Contents = CEIF->getContents();
382 for (unsigned i = 0, e = Contents.size(); i != e; ++i) {
383 if (i) OS << ",";
384 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
385 }
386 OS << "] (" << Contents.size() << " bytes)";
387 break;
388 }
389 case MCFragment::FT_Fill: {
390 const MCFillFragment *FF = cast<MCFillFragment>(this);
Rafael Espindola1a7e8b42016-01-19 16:57:08 +0000391 OS << " Value:" << FF->getValue() << " Size:" << FF->getSize();
Chandler Carruth8d736232015-12-29 09:06:16 +0000392 break;
393 }
394 case MCFragment::FT_Relaxable: {
395 const MCRelaxableFragment *F = cast<MCRelaxableFragment>(this);
396 OS << "\n ";
397 OS << " Inst:";
398 F->getInst().dump_pretty(OS);
399 break;
400 }
401 case MCFragment::FT_Org: {
402 const MCOrgFragment *OF = cast<MCOrgFragment>(this);
403 OS << "\n ";
404 OS << " Offset:" << OF->getOffset() << " Value:" << OF->getValue();
405 break;
406 }
407 case MCFragment::FT_Dwarf: {
408 const MCDwarfLineAddrFragment *OF = cast<MCDwarfLineAddrFragment>(this);
409 OS << "\n ";
410 OS << " AddrDelta:" << OF->getAddrDelta()
411 << " LineDelta:" << OF->getLineDelta();
412 break;
413 }
414 case MCFragment::FT_DwarfFrame: {
415 const MCDwarfCallFrameFragment *CF = cast<MCDwarfCallFrameFragment>(this);
416 OS << "\n ";
417 OS << " AddrDelta:" << CF->getAddrDelta();
418 break;
419 }
420 case MCFragment::FT_LEB: {
421 const MCLEBFragment *LF = cast<MCLEBFragment>(this);
422 OS << "\n ";
423 OS << " Value:" << LF->getValue() << " Signed:" << LF->isSigned();
424 break;
425 }
426 case MCFragment::FT_SafeSEH: {
427 const MCSafeSEHFragment *F = cast<MCSafeSEHFragment>(this);
428 OS << "\n ";
429 OS << " Sym:" << F->getSymbol();
430 break;
431 }
Reid Kleckner1fcd6102016-02-02 17:41:18 +0000432 case MCFragment::FT_CVInlineLines: {
433 const auto *F = cast<MCCVInlineLineTableFragment>(this);
434 OS << "\n ";
435 OS << " Sym:" << *F->getFnStartSym();
436 break;
437 }
Chandler Carruth8d736232015-12-29 09:06:16 +0000438 case MCFragment::FT_Dummy:
439 break;
440 }
441 OS << ">";
442}
443
Yaron Kereneb2a2542016-01-29 20:50:44 +0000444LLVM_DUMP_METHOD void MCAssembler::dump() {
Chandler Carruth8d736232015-12-29 09:06:16 +0000445 raw_ostream &OS = llvm::errs();
446
447 OS << "<MCAssembler\n";
448 OS << " Sections:[\n ";
449 for (iterator it = begin(), ie = end(); it != ie; ++it) {
450 if (it != begin()) OS << ",\n ";
451 it->dump();
452 }
453 OS << "],\n";
454 OS << " Symbols:[";
455
456 for (symbol_iterator it = symbol_begin(), ie = symbol_end(); it != ie; ++it) {
457 if (it != symbol_begin()) OS << ",\n ";
458 OS << "(";
459 it->dump();
460 OS << ", Index:" << it->getIndex() << ", ";
461 OS << ")";
462 }
463 OS << "]>\n";
464}
465#endif