MySQL 8.4.0
Source Code Documentation
sp_branch_instr Class Referenceabstract

An interface for all SP-instructions with destinations that need to be updated by the SP-optimizer. More...

#include <sp_instr.h>

Inheritance diagram for sp_branch_instr:
[legend]

Public Member Functions

virtual void set_destination (uint old_dest, uint new_dest)=0
 Update the destination; used by the SP-instruction-optimizer. More...
 
virtual void backpatch (uint dest)=0
 Update all instruction with the given label in the backpatch list to the specified instruction pointer. More...
 
virtual ~sp_branch_instr ()=default
 

Detailed Description

An interface for all SP-instructions with destinations that need to be updated by the SP-optimizer.

Constructor & Destructor Documentation

◆ ~sp_branch_instr()

virtual sp_branch_instr::~sp_branch_instr ( )
virtualdefault

Member Function Documentation

◆ backpatch()

virtual void sp_branch_instr::backpatch ( uint  dest)
pure virtual

Update all instruction with the given label in the backpatch list to the specified instruction pointer.

Parameters
destdestination instruction pointer.

Implemented in sp_instr_jump, sp_lex_branch_instr, sp_instr_hpush_jump, and sp_instr_set_case_expr.

◆ set_destination()

virtual void sp_branch_instr::set_destination ( uint  old_dest,
uint  new_dest 
)
pure virtual

Update the destination; used by the SP-instruction-optimizer.

Parameters
old_destcurrent (old) destination (instruction pointer).
new_destnew destination (instruction pointer).

Implemented in sp_instr_jump, sp_lex_branch_instr, and sp_instr_set_case_expr.


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