blob: b711db319302945d3a59974aec5b6724a0f21db8 [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- MCAsmLayout.h - Assembly Layout Object -------------------*- C++ -*-===//
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#ifndef LLVM_MC_MCASMLAYOUT_H
11#define LLVM_MC_MCASMLAYOUT_H
12
13#include "llvm/ADT/DenseMap.h"
14#include "llvm/ADT/SmallVector.h"
15
16namespace llvm {
17class MCAssembler;
18class MCFragment;
19class MCSection;
20class MCSymbol;
21
22/// Encapsulates the layout of an assembly file at a particular point in time.
23///
24/// Assembly may require computing multiple layouts for a particular assembly
25/// file as part of the relaxation process. This class encapsulates the layout
26/// at a single point in time in such a way that it is always possible to
27/// efficiently compute the exact address of any symbol in the assembly file,
28/// even during the relaxation process.
29class MCAsmLayout {
30 MCAssembler &Assembler;
31
32 /// List of sections in layout order.
33 llvm::SmallVector<MCSection *, 16> SectionOrder;
34
35 /// The last fragment which was laid out, or 0 if nothing has been laid
36 /// out. Fragments are always laid out in order, so all fragments with a
37 /// lower ordinal will be valid.
38 mutable DenseMap<const MCSection *, MCFragment *> LastValidFragment;
39
Andrew Scullcdfcccc2018-10-05 20:58:37 +010040 /// Make sure that the layout for the given fragment is valid, lazily
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010041 /// computing it if necessary.
42 void ensureValid(const MCFragment *F) const;
43
Andrew Scullcdfcccc2018-10-05 20:58:37 +010044 /// Is the layout for this fragment valid?
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010045 bool isFragmentValid(const MCFragment *F) const;
46
47public:
48 MCAsmLayout(MCAssembler &Assembler);
49
50 /// Get the assembler object this is a layout for.
51 MCAssembler &getAssembler() const { return Assembler; }
52
Andrew Scullcdfcccc2018-10-05 20:58:37 +010053 /// Invalidate the fragments starting with F because it has been
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010054 /// resized. The fragment's size should have already been updated, but
55 /// its bundle padding will be recomputed.
56 void invalidateFragmentsFrom(MCFragment *F);
57
Andrew Scullcdfcccc2018-10-05 20:58:37 +010058 /// Perform layout for a single fragment, assuming that the previous
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010059 /// fragment has already been laid out correctly, and the parent section has
60 /// been initialized.
61 void layoutFragment(MCFragment *Fragment);
62
63 /// \name Section Access (in layout order)
64 /// @{
65
66 llvm::SmallVectorImpl<MCSection *> &getSectionOrder() { return SectionOrder; }
67 const llvm::SmallVectorImpl<MCSection *> &getSectionOrder() const {
68 return SectionOrder;
69 }
70
71 /// @}
72 /// \name Fragment Layout Data
73 /// @{
74
Andrew Scullcdfcccc2018-10-05 20:58:37 +010075 /// Get the offset of the given fragment inside its containing section.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010076 uint64_t getFragmentOffset(const MCFragment *F) const;
77
78 /// @}
79 /// \name Utility Functions
80 /// @{
81
Andrew Scullcdfcccc2018-10-05 20:58:37 +010082 /// Get the address space size of the given section, as it effects
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010083 /// layout. This may differ from the size reported by \see getSectionSize() by
84 /// not including section tail padding.
85 uint64_t getSectionAddressSize(const MCSection *Sec) const;
86
Andrew Scullcdfcccc2018-10-05 20:58:37 +010087 /// Get the data size of the given section, as emitted to the object
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010088 /// file. This may include additional padding, or be 0 for virtual sections.
89 uint64_t getSectionFileSize(const MCSection *Sec) const;
90
Andrew Scullcdfcccc2018-10-05 20:58:37 +010091 /// Get the offset of the given symbol, as computed in the current
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010092 /// layout.
93 /// \return True on success.
94 bool getSymbolOffset(const MCSymbol &S, uint64_t &Val) const;
95
Andrew Scullcdfcccc2018-10-05 20:58:37 +010096 /// Variant that reports a fatal error if the offset is not computable.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010097 uint64_t getSymbolOffset(const MCSymbol &S) const;
98
Andrew Scullcdfcccc2018-10-05 20:58:37 +010099 /// If this symbol is equivalent to A + Constant, return A.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100100 const MCSymbol *getBaseSymbol(const MCSymbol &Symbol) const;
101
102 /// @}
103};
104
105} // end namespace llvm
106
107#endif