LLVM 17.0.0git
Public Types | Public Member Functions | Static Public Member Functions | List of all members
llvm::MCCFIInstruction Class Reference

#include "llvm/MC/MCDwarf.h"

Public Types

enum  OpType {
  OpSameValue , OpRememberState , OpRestoreState , OpOffset ,
  OpLLVMDefAspaceCfa , OpDefCfaRegister , OpDefCfaOffset , OpDefCfa ,
  OpRelOffset , OpAdjustCfaOffset , OpEscape , OpRestore ,
  OpUndefined , OpRegister , OpWindowSave , OpNegateRAState ,
  OpGnuArgsSize
}
 

Public Member Functions

OpType getOperation () const
 
MCSymbolgetLabel () const
 
unsigned getRegister () const
 
unsigned getRegister2 () const
 
unsigned getAddressSpace () const
 
int getOffset () const
 
StringRef getValues () const
 
StringRef getComment () const
 

Static Public Member Functions

static MCCFIInstruction cfiDefCfa (MCSymbol *L, unsigned Register, int Offset)
 .cfi_def_cfa defines a rule for computing CFA as: take address from Register and add Offset to it.
 
static MCCFIInstruction createDefCfaRegister (MCSymbol *L, unsigned Register)
 .cfi_def_cfa_register modifies a rule for computing CFA.
 
static MCCFIInstruction cfiDefCfaOffset (MCSymbol *L, int Offset)
 .cfi_def_cfa_offset modifies a rule for computing CFA.
 
static MCCFIInstruction createAdjustCfaOffset (MCSymbol *L, int Adjustment)
 .cfi_adjust_cfa_offset Same as .cfi_def_cfa_offset, but Offset is a relative value that is added/subtracted from the previous offset.
 
static MCCFIInstruction createLLVMDefAspaceCfa (MCSymbol *L, unsigned Register, int Offset, unsigned AddressSpace)
 .cfi_llvm_def_aspace_cfa defines the rule for computing the CFA to be the result of evaluating the DWARF operation expression DW_OP_constu AS; DW_OP_aspace_bregx R, B as a location description.
 
static MCCFIInstruction createOffset (MCSymbol *L, unsigned Register, int Offset)
 .cfi_offset Previous value of Register is saved at offset Offset from CFA.
 
static MCCFIInstruction createRelOffset (MCSymbol *L, unsigned Register, int Offset)
 .cfi_rel_offset Previous value of Register is saved at offset Offset from the current CFA register.
 
static MCCFIInstruction createRegister (MCSymbol *L, unsigned Register1, unsigned Register2)
 .cfi_register Previous value of Register1 is saved in register Register2.
 
static MCCFIInstruction createWindowSave (MCSymbol *L)
 .cfi_window_save SPARC register window is saved.
 
static MCCFIInstruction createNegateRAState (MCSymbol *L)
 .cfi_negate_ra_state AArch64 negate RA state.
 
static MCCFIInstruction createRestore (MCSymbol *L, unsigned Register)
 .cfi_restore says that the rule for Register is now the same as it was at the beginning of the function, after all initial instructions added by .cfi_startproc were executed.
 
static MCCFIInstruction createUndefined (MCSymbol *L, unsigned Register)
 .cfi_undefined From now on the previous value of Register can't be restored anymore.
 
static MCCFIInstruction createSameValue (MCSymbol *L, unsigned Register)
 .cfi_same_value Current value of Register is the same as in the previous frame.
 
static MCCFIInstruction createRememberState (MCSymbol *L)
 .cfi_remember_state Save all current rules for all registers.
 
static MCCFIInstruction createRestoreState (MCSymbol *L)
 .cfi_restore_state Restore the previously saved state.
 
static MCCFIInstruction createEscape (MCSymbol *L, StringRef Vals, StringRef Comment="")
 .cfi_escape Allows the user to add arbitrary bytes to the unwind info.
 
static MCCFIInstruction createGnuArgsSize (MCSymbol *L, int Size)
 A special wrapper for .cfi_escape that indicates GNU_ARGS_SIZE.
 

Detailed Description

Definition at line 479 of file MCDwarf.h.

Member Enumeration Documentation

◆ OpType

Enumerator
OpSameValue 
OpRememberState 
OpRestoreState 
OpOffset 
OpLLVMDefAspaceCfa 
OpDefCfaRegister 
OpDefCfaOffset 
OpDefCfa 
OpRelOffset 
OpAdjustCfaOffset 
OpEscape 
OpRestore 
OpUndefined 
OpRegister 
OpWindowSave 
OpNegateRAState 
OpGnuArgsSize 

Definition at line 481 of file MCDwarf.h.

Member Function Documentation

◆ cfiDefCfa()

static MCCFIInstruction llvm::MCCFIInstruction::cfiDefCfa ( MCSymbol L,
unsigned  Register,
int  Offset 
)
inlinestatic

◆ cfiDefCfaOffset()

static MCCFIInstruction llvm::MCCFIInstruction::cfiDefCfaOffset ( MCSymbol L,
int  Offset 
)
inlinestatic

◆ createAdjustCfaOffset()

static MCCFIInstruction llvm::MCCFIInstruction::createAdjustCfaOffset ( MCSymbol L,
int  Adjustment 
)
inlinestatic

.cfi_adjust_cfa_offset Same as .cfi_def_cfa_offset, but Offset is a relative value that is added/subtracted from the previous offset.

Definition at line 554 of file MCDwarf.h.

References OpAdjustCfaOffset.

Referenced by llvm::MSP430FrameLowering::eliminateCallFramePseudoInstr(), llvm::M68kFrameLowering::eliminateCallFramePseudoInstr(), llvm::X86FrameLowering::eliminateCallFramePseudoInstr(), llvm::MCStreamer::emitCFIAdjustCfaOffset(), and ExpandMOVImmSExti8().

◆ createDefCfaRegister()

static MCCFIInstruction llvm::MCCFIInstruction::createDefCfaRegister ( MCSymbol L,
unsigned  Register 
)
inlinestatic

◆ createEscape()

static MCCFIInstruction llvm::MCCFIInstruction::createEscape ( MCSymbol L,
StringRef  Vals,
StringRef  Comment = "" 
)
inlinestatic

◆ createGnuArgsSize()

static MCCFIInstruction llvm::MCCFIInstruction::createGnuArgsSize ( MCSymbol L,
int  Size 
)
inlinestatic

A special wrapper for .cfi_escape that indicates GNU_ARGS_SIZE.

Definition at line 638 of file MCDwarf.h.

References OpGnuArgsSize, and Size.

Referenced by llvm::M68kFrameLowering::eliminateCallFramePseudoInstr(), llvm::X86FrameLowering::eliminateCallFramePseudoInstr(), and llvm::MCStreamer::emitCFIGnuArgsSize().

◆ createLLVMDefAspaceCfa()

static MCCFIInstruction llvm::MCCFIInstruction::createLLVMDefAspaceCfa ( MCSymbol L,
unsigned  Register,
int  Offset,
unsigned  AddressSpace 
)
inlinestatic

.cfi_llvm_def_aspace_cfa defines the rule for computing the CFA to be the result of evaluating the DWARF operation expression DW_OP_constu AS; DW_OP_aspace_bregx R, B as a location description.

Definition at line 562 of file MCDwarf.h.

References Offset, and OpLLVMDefAspaceCfa.

Referenced by llvm::MCStreamer::emitCFILLVMDefAspaceCfa().

◆ createNegateRAState()

static MCCFIInstruction llvm::MCCFIInstruction::createNegateRAState ( MCSymbol L)
inlinestatic

◆ createOffset()

static MCCFIInstruction llvm::MCCFIInstruction::createOffset ( MCSymbol L,
unsigned  Register,
int  Offset 
)
inlinestatic

◆ createRegister()

static MCCFIInstruction llvm::MCCFIInstruction::createRegister ( MCSymbol L,
unsigned  Register1,
unsigned  Register2 
)
inlinestatic

.cfi_register Previous value of Register1 is saved in register Register2.

Definition at line 586 of file MCDwarf.h.

References OpRegister, and Register2.

Referenced by llvm::MCStreamer::emitCFIRegister(), llvm::PPCFrameLowering::emitPrologue(), and llvm::SparcFrameLowering::emitPrologue().

◆ createRelOffset()

static MCCFIInstruction llvm::MCCFIInstruction::createRelOffset ( MCSymbol L,
unsigned  Register,
int  Offset 
)
inlinestatic

.cfi_rel_offset Previous value of Register is saved at offset Offset from the current CFA register.

This is transformed to .cfi_offset using the known displacement of the CFA register from the CFA.

Definition at line 579 of file MCDwarf.h.

References Offset, and OpRelOffset.

Referenced by llvm::MCStreamer::emitCFIRelOffset().

◆ createRememberState()

static MCCFIInstruction llvm::MCCFIInstruction::createRememberState ( MCSymbol L)
inlinestatic

.cfi_remember_state Save all current rules for all registers.

Definition at line 621 of file MCDwarf.h.

References OpRememberState.

Referenced by llvm::MCStreamer::emitCFIRememberState(), and llvm::CFIFixup::runOnMachineFunction().

◆ createRestore()

static MCCFIInstruction llvm::MCCFIInstruction::createRestore ( MCSymbol L,
unsigned  Register 
)
inlinestatic

.cfi_restore says that the rule for Register is now the same as it was at the beginning of the function, after all initial instructions added by .cfi_startproc were executed.

Definition at line 604 of file MCDwarf.h.

References OpRestore.

Referenced by llvm::MSP430FrameLowering::emitCalleeSavedFrameMoves(), llvm::X86FrameLowering::emitCalleeSavedFrameMoves(), emitCalleeSavedRestores(), llvm::MCStreamer::emitCFIRestore(), llvm::MSP430FrameLowering::emitEpilogue(), llvm::X86FrameLowering::emitEpilogue(), emitSCSEpilogue(), and emitShadowCallStackEpilogue().

◆ createRestoreState()

static MCCFIInstruction llvm::MCCFIInstruction::createRestoreState ( MCSymbol L)
inlinestatic

.cfi_restore_state Restore the previously saved state.

Definition at line 626 of file MCDwarf.h.

References OpRestoreState.

Referenced by llvm::MCStreamer::emitCFIRestoreState(), and llvm::CFIFixup::runOnMachineFunction().

◆ createSameValue()

static MCCFIInstruction llvm::MCCFIInstruction::createSameValue ( MCSymbol L,
unsigned  Register 
)
inlinestatic

.cfi_same_value Current value of Register is the same as in the previous frame.

I.e., no restoration is needed.

Definition at line 616 of file MCDwarf.h.

References OpSameValue.

Referenced by llvm::ARMFrameLowering::adjustForSegmentedStacks(), llvm::MCStreamer::emitCFISameValue(), and insertCFISameValue().

◆ createUndefined()

static MCCFIInstruction llvm::MCCFIInstruction::createUndefined ( MCSymbol L,
unsigned  Register 
)
inlinestatic

.cfi_undefined From now on the previous value of Register can't be restored anymore.

Definition at line 610 of file MCDwarf.h.

References OpUndefined.

Referenced by llvm::MCStreamer::emitCFIUndefined().

◆ createWindowSave()

static MCCFIInstruction llvm::MCCFIInstruction::createWindowSave ( MCSymbol L)
inlinestatic

.cfi_window_save SPARC register window is saved.

Definition at line 592 of file MCDwarf.h.

References OpWindowSave.

Referenced by llvm::MCStreamer::emitCFIWindowSave(), and llvm::SparcFrameLowering::emitPrologue().

◆ getAddressSpace()

unsigned llvm::MCCFIInstruction::getAddressSpace ( ) const
inline

Definition at line 659 of file MCDwarf.h.

References assert(), Operation, and OpLLVMDefAspaceCfa.

Referenced by llvm::AsmPrinter::emitCFIInstruction(), and printCFI().

◆ getComment()

StringRef llvm::MCCFIInstruction::getComment ( ) const
inline

Definition at line 677 of file MCDwarf.h.

Referenced by llvm::AsmPrinter::emitCFIInstruction().

◆ getLabel()

MCSymbol * llvm::MCCFIInstruction::getLabel ( ) const
inline

Definition at line 643 of file MCDwarf.h.

Referenced by printCFI().

◆ getOffset()

int llvm::MCCFIInstruction::getOffset ( ) const
inline

◆ getOperation()

OpType llvm::MCCFIInstruction::getOperation ( ) const
inline

◆ getRegister()

unsigned llvm::MCCFIInstruction::getRegister ( ) const
inline

◆ getRegister2()

unsigned llvm::MCCFIInstruction::getRegister2 ( ) const
inline

Definition at line 654 of file MCDwarf.h.

References assert(), Operation, OpRegister, and Register2.

Referenced by llvm::AsmPrinter::emitCFIInstruction(), and printCFI().

◆ getValues()

StringRef llvm::MCCFIInstruction::getValues ( ) const
inline

Definition at line 672 of file MCDwarf.h.

References assert(), Operation, and OpEscape.

Referenced by llvm::AsmPrinter::emitCFIInstruction(), and printCFI().

Member Data Documentation

◆ Offset

int llvm::MCCFIInstruction::Offset

◆ Register2

unsigned llvm::MCCFIInstruction::Register2

Definition at line 507 of file MCDwarf.h.

Referenced by createRegister(), and getRegister2().


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