LLVM 19.0.0git
Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
llvm::MCEncodedFragment Class Reference

Interface implemented by fragments that contain encoded instructions and/or data. More...

#include "llvm/MC/MCFragment.h"

Inheritance diagram for llvm::MCEncodedFragment:
Inheritance graph
[legend]

Public Member Functions

bool alignToBundleEnd () const
 Should this fragment be placed at the end of an aligned bundle?
 
void setAlignToBundleEnd (bool V)
 
uint8_t getBundlePadding () const
 Get the padding size that must be inserted before this fragment.
 
void setBundlePadding (uint8_t N)
 Set the padding size for this fragment.
 
const MCSubtargetInfogetSubtargetInfo () const
 Retrieve the MCSubTargetInfo in effect when the instruction was encoded.
 
void setHasInstructions (const MCSubtargetInfo &STI)
 Record that the fragment contains instructions with the MCSubtargetInfo in effect when the instruction was encoded.
 
- Public Member Functions inherited from llvm::MCFragment
 MCFragment ()=delete
 
 MCFragment (const MCFragment &)=delete
 
MCFragmentoperator= (const MCFragment &)=delete
 
void destroy ()
 Destroys the current fragment.
 
FragmentType getKind () const
 
MCSectiongetParent () const
 
void setParent (MCSection *Value)
 
const MCSymbolgetAtom () const
 
void setAtom (const MCSymbol *Value)
 
unsigned getLayoutOrder () const
 
void setLayoutOrder (unsigned Value)
 
bool hasInstructions () const
 Does this fragment have instructions emitted into it? By default this is false, but specific fragment types may set it to true.
 
void dump () const
 
void setSubsectionNumber (unsigned Value)
 
unsigned getSubsectionNumber () const
 
- Public Member Functions inherited from llvm::ilist_node_with_parent< MCFragment, MCSection >
MCFragmentgetPrevNode ()
 
const MCFragmentgetPrevNode () const
 Get the previous node, or nullptr for the list head.
 
MCFragmentgetNextNode ()
 Get the next node, or nullptr for the list tail.
 
const MCFragmentgetNextNode () const
 Get the next node, or nullptr for the list tail.
 
- Public Member Functions inherited from llvm::ilist_node_impl< ilist_detail::compute_node_options< T, Options... >::type >
self_iterator getIterator ()
 
const_self_iterator getIterator () const
 
reverse_self_iterator getReverseIterator ()
 
const_reverse_self_iterator getReverseIterator () const
 
bool isSentinel () const
 Check whether this is the sentinel node.
 

Static Public Member Functions

static bool classof (const MCFragment *F)
 

Protected Member Functions

 MCEncodedFragment (MCFragment::FragmentType FType, bool HasInstructions, MCSection *Sec)
 
- Protected Member Functions inherited from llvm::MCFragment
 MCFragment (FragmentType Kind, bool HasInstructions, MCSection *Parent=nullptr)
 
- Protected Member Functions inherited from llvm::ilist_node_with_parent< MCFragment, MCSection >
 ilist_node_with_parent ()=default
 
- Protected Member Functions inherited from llvm::ilist_node_impl< ilist_detail::compute_node_options< T, Options... >::type >
 ilist_node_impl ()=default
 

Protected Attributes

const MCSubtargetInfoSTI = nullptr
 The MCSubtargetInfo in effect when the instruction was encoded.
 
- Protected Attributes inherited from llvm::MCFragment
bool HasInstructions
 
bool LinkerRelaxable = false
 

Additional Inherited Members

- Public Types inherited from llvm::MCFragment
enum  FragmentType : uint8_t {
  FT_Align , FT_Data , FT_CompactEncodedInst , FT_Fill ,
  FT_Nops , FT_Relaxable , FT_Org , FT_Dwarf ,
  FT_DwarfFrame , FT_LEB , FT_BoundaryAlign , FT_SymbolId ,
  FT_CVInlineLines , FT_CVDefRange , FT_PseudoProbe , FT_Dummy
}
 
- Protected Types inherited from llvm::ilist_node_impl< ilist_detail::compute_node_options< T, Options... >::type >
using self_iterator = typename ilist_select_iterator_type< OptionsT::has_iterator_bits, ilist_detail::compute_node_options< T, Options... >::type, false, false >::type
 
using const_self_iterator = typename ilist_select_iterator_type< OptionsT::has_iterator_bits, ilist_detail::compute_node_options< T, Options... >::type, false, true >::type
 
using reverse_self_iterator = typename ilist_select_iterator_type< OptionsT::has_iterator_bits, ilist_detail::compute_node_options< T, Options... >::type, true, false >::type
 
using const_reverse_self_iterator = typename ilist_select_iterator_type< OptionsT::has_iterator_bits, ilist_detail::compute_node_options< T, Options... >::type, true, true >::type
 

Detailed Description

Interface implemented by fragments that contain encoded instructions and/or data.

Definition at line 125 of file MCFragment.h.

Constructor & Destructor Documentation

◆ MCEncodedFragment()

llvm::MCEncodedFragment::MCEncodedFragment ( MCFragment::FragmentType  FType,
bool  HasInstructions,
MCSection Sec 
)
inlineprotected

Definition at line 132 of file MCFragment.h.

Member Function Documentation

◆ alignToBundleEnd()

bool llvm::MCEncodedFragment::alignToBundleEnd ( ) const
inline

Should this fragment be placed at the end of an aligned bundle?

Definition at line 157 of file MCFragment.h.

Referenced by llvm::MCAssembler::writeFragmentPadding().

◆ classof()

static bool llvm::MCEncodedFragment::classof ( const MCFragment F)
inlinestatic

◆ getBundlePadding()

uint8_t llvm::MCEncodedFragment::getBundlePadding ( ) const
inline

Get the padding size that must be inserted before this fragment.

Used for bundling. By default, no padding is inserted. Note that padding size is restricted to 8 bits. This is an optimization to reduce the amount of space used for each fragment. In practice, larger padding should never be required.

Definition at line 165 of file MCFragment.h.

Referenced by llvm::MCAssembler::writeFragmentPadding().

◆ getSubtargetInfo()

const MCSubtargetInfo * llvm::MCEncodedFragment::getSubtargetInfo ( ) const
inline

Retrieve the MCSubTargetInfo in effect when the instruction was encoded.

Guaranteed to be non-null if hasInstructions() == true

Definition at line 173 of file MCFragment.h.

References STI.

Referenced by llvm::MCAssembler::layout(), and llvm::MCAssembler::writeFragmentPadding().

◆ setAlignToBundleEnd()

void llvm::MCEncodedFragment::setAlignToBundleEnd ( bool  V)
inline

Definition at line 158 of file MCFragment.h.

Referenced by llvm::MCELFStreamer::emitBundleUnlock().

◆ setBundlePadding()

void llvm::MCEncodedFragment::setBundlePadding ( uint8_t  N)
inline

Set the padding size for this fragment.

By default it's a no-op, and only some fragments have a meaningful implementation.

Definition at line 169 of file MCFragment.h.

References N.

Referenced by llvm::MCAsmLayout::layoutFragment().

◆ setHasInstructions()

void llvm::MCEncodedFragment::setHasInstructions ( const MCSubtargetInfo STI)
inline

Record that the fragment contains instructions with the MCSubtargetInfo in effect when the instruction was encoded.

Definition at line 177 of file MCFragment.h.

References llvm::MCFragment::HasInstructions, and STI.

Member Data Documentation

◆ STI

const MCSubtargetInfo* llvm::MCEncodedFragment::STI = nullptr
protected

The MCSubtargetInfo in effect when the instruction was encoded.

It must be non-null for instructions.

Definition at line 138 of file MCFragment.h.

Referenced by getSubtargetInfo(), llvm::MCRelaxableFragment::MCRelaxableFragment(), and setHasInstructions().


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