LLVM  3.7.0
Public Member Functions | List of all members
llvm::MCAsmLayout Class Reference

Encapsulates the layout of an assembly file at a particular point in time. More...

#include <MCAsmLayout.h>

Public Member Functions

 MCAsmLayout (MCAssembler &Assembler)
 
MCAssemblergetAssembler () const
 Get the assembler object this is a layout for. More...
 
void invalidateFragmentsFrom (MCFragment *F)
 Invalidate the fragments starting with F because it has been resized. More...
 
void layoutFragment (MCFragment *Fragment)
 Perform layout for a single fragment, assuming that the previous fragment has already been laid out correctly, and the parent section has been initialized. More...
 
Section Access (in layout order)
llvm::SmallVectorImpl
< MCSection * > & 
getSectionOrder ()
 
const llvm::SmallVectorImpl
< MCSection * > & 
getSectionOrder () const
 
Fragment Layout Data
uint64_t getFragmentOffset (const MCFragment *F) const
 Get the offset of the given fragment inside its containing section. More...
 
Utility Functions
uint64_t getSectionAddressSize (const MCSection *Sec) const
 Get the address space size of the given section, as it effects layout. More...
 
uint64_t getSectionFileSize (const MCSection *Sec) const
 Get the data size of the given section, as emitted to the object file. More...
 
bool getSymbolOffset (const MCSymbol &S, uint64_t &Val) const
 Get the offset of the given symbol, as computed in the current layout. More...
 
uint64_t getSymbolOffset (const MCSymbol &S) const
 Variant that reports a fatal error if the offset is not computable. More...
 
const MCSymbolgetBaseSymbol (const MCSymbol &Symbol) const
 If this symbol is equivalent to A + Constant, return A. More...
 

Detailed Description

Encapsulates the layout of an assembly file at a particular point in time.

Assembly may require computing multiple layouts for a particular assembly file as part of the relaxation process. This class encapsulates the layout at a single point in time in such a way that it is always possible to efficiently compute the exact address of any symbol in the assembly file, even during the relaxation process.

Definition at line 29 of file MCAsmLayout.h.

Constructor & Destructor Documentation

MCAsmLayout::MCAsmLayout ( MCAssembler Assembler)

Definition at line 67 of file MCAssembler.cpp.

References llvm::MCAssembler::begin(), and llvm::MCAssembler::end().

Member Function Documentation

MCAssembler& llvm::MCAsmLayout::getAssembler ( ) const
inline
const MCSymbol * MCAsmLayout::getBaseSymbol ( const MCSymbol Symbol) const
uint64_t MCAsmLayout::getFragmentOffset ( const MCFragment F) const

Get the offset of the given fragment inside its containing section.

Definition at line 114 of file MCAssembler.cpp.

Referenced by llvm::MCAssembler::computeFragmentSize(), getFixupOffset(), llvm::MachObjectWriter::getFragmentAddress(), getLabelOffset(), and getSectionAddressSize().

uint64_t MCAsmLayout::getSectionAddressSize ( const MCSection Sec) const

Get the address space size of the given section, as it effects layout.

This may differ from the size reported by

See Also
getSectionSize() by not including section tail padding.

Definition at line 207 of file MCAssembler.cpp.

References llvm::iplist< NodeTy, Traits >::back(), llvm::MCAssembler::computeFragmentSize(), getAssembler(), llvm::MCSection::getFragmentList(), and getFragmentOffset().

Referenced by llvm::MachObjectWriter::computeSectionAddresses(), llvm::MachObjectWriter::getPaddingSize(), getSectionFileSize(), llvm::MachObjectWriter::writeObject(), llvm::MachObjectWriter::writeSection(), and llvm::MCAssembler::writeSectionData().

uint64_t MCAsmLayout::getSectionFileSize ( const MCSection Sec) const

Get the data size of the given section, as emitted to the object file.

This may include additional padding, or be 0 for virtual sections.

Definition at line 213 of file MCAssembler.cpp.

References getSectionAddressSize(), and llvm::MCSection::isVirtualSection().

Referenced by llvm::MachObjectWriter::writeObject(), llvm::MachObjectWriter::writeSection(), and llvm::MCAssembler::writeSectionData().

llvm::SmallVectorImpl<MCSection *>& llvm::MCAsmLayout::getSectionOrder ( )
inline
const llvm::SmallVectorImpl<MCSection *>& llvm::MCAsmLayout::getSectionOrder ( ) const
inline

Definition at line 67 of file MCAsmLayout.h.

bool MCAsmLayout::getSymbolOffset ( const MCSymbol S,
uint64_t &  Val 
) const

Get the offset of the given symbol, as computed in the current layout.

Returns
True on success.

Definition at line 166 of file MCAssembler.cpp.

References getSymbolOffsetImpl().

Referenced by llvm::MachObjectWriter::getSymbolAddress(), and getSymbolValue().

uint64_t MCAsmLayout::getSymbolOffset ( const MCSymbol S) const

Variant that reports a fatal error if the offset is not computable.

Definition at line 170 of file MCAssembler.cpp.

References getSymbolOffsetImpl().

void MCAsmLayout::invalidateFragmentsFrom ( MCFragment F)

Invalidate the fragments starting with F because it has been resized.

The fragment's size should have already been updated, but its bundle padding will be recomputed.

Definition at line 88 of file MCAssembler.cpp.

References llvm::MCFragment::getParent(), and llvm::ilist_node< NodeTy >::getPrevNode().

void MCAsmLayout::layoutFragment ( MCFragment Fragment)

The documentation for this class was generated from the following files: