Ruby  2.4.2p198(2017-09-14revision59899)
Public Types | Data Fields
rb_iseq_constant_body Struct Reference

#include <vm_core.h>

Public Types

enum  iseq_type {
  ISEQ_TYPE_TOP, ISEQ_TYPE_METHOD, ISEQ_TYPE_BLOCK, ISEQ_TYPE_CLASS,
  ISEQ_TYPE_RESCUE, ISEQ_TYPE_ENSURE, ISEQ_TYPE_EVAL, ISEQ_TYPE_MAIN,
  ISEQ_TYPE_DEFINED_GUARD
}
 

Data Fields

enum rb_iseq_constant_body::iseq_type type
 
unsigned int iseq_size
 
const VALUEiseq_encoded
 
struct {
   struct {
      unsigned int   has_lead: 1
 
      unsigned int   has_opt: 1
 
      unsigned int   has_rest: 1
 
      unsigned int   has_post: 1
 
      unsigned int   has_kw: 1
 
      unsigned int   has_kwrest: 1
 
      unsigned int   has_block: 1
 
      unsigned int   ambiguous_param0: 1
 
   }   flags
 
   unsigned int   size
 
   int   lead_num
 
   int   opt_num
 
   int   rest_start
 
   int   post_start
 
   int   post_num
 
   int   block_start
 
   const VALUE *   opt_table
 
   struct rb_iseq_param_keyword {
      int   num
 
      int   required_num
 
      int   bits_start
 
      int   rest_start
 
      const ID *   table
 
      const VALUE *   default_values
 
   }   keyword
 
param
 parameter information More...
 
rb_iseq_location_t location
 
const struct iseq_line_info_entryline_info_table
 
const IDlocal_table
 
const struct iseq_catch_table * catch_table
 
const struct rb_iseq_structparent_iseq
 
struct rb_iseq_structlocal_iseq
 
union iseq_inline_storage_entryis_entries
 
struct rb_call_infoci_entries
 
struct rb_call_cachecc_entries
 
VALUE mark_ary
 
unsigned int local_table_size
 
unsigned int is_size
 
unsigned int ci_size
 
unsigned int ci_kw_size
 
unsigned int line_info_size
 
unsigned int stack_max
 

Detailed Description

Definition at line 272 of file vm_core.h.

Member Enumeration Documentation

◆ iseq_type

Enumerator
ISEQ_TYPE_TOP 
ISEQ_TYPE_METHOD 
ISEQ_TYPE_BLOCK 
ISEQ_TYPE_CLASS 
ISEQ_TYPE_RESCUE 
ISEQ_TYPE_ENSURE 
ISEQ_TYPE_EVAL 
ISEQ_TYPE_MAIN 
ISEQ_TYPE_DEFINED_GUARD 

Definition at line 273 of file vm_core.h.

Field Documentation

◆ ambiguous_param0

unsigned int rb_iseq_constant_body::ambiguous_param0

Definition at line 321 of file vm_core.h.

◆ bits_start

int rb_iseq_constant_body::bits_start

Definition at line 351 of file vm_core.h.

◆ block_start

int rb_iseq_constant_body::block_start

◆ catch_table

const struct iseq_catch_table* rb_iseq_constant_body::catch_table

◆ cc_entries

struct rb_call_cache* rb_iseq_constant_body::cc_entries

Definition at line 378 of file vm_core.h.

Referenced by ibf_load_code(), ibf_load_iseq_each(), iseq_set_sequence(), and rb_iseq_free().

◆ ci_entries

struct rb_call_info* rb_iseq_constant_body::ci_entries

◆ ci_kw_size

unsigned int rb_iseq_constant_body::ci_kw_size

◆ ci_size

unsigned int rb_iseq_constant_body::ci_size

◆ default_values

const VALUE* rb_iseq_constant_body::default_values

Definition at line 354 of file vm_core.h.

◆ flags

struct { ... } rb_iseq_constant_body::flags

◆ has_block

unsigned int rb_iseq_constant_body::has_block

Definition at line 319 of file vm_core.h.

◆ has_kw

unsigned int rb_iseq_constant_body::has_kw

Definition at line 317 of file vm_core.h.

◆ has_kwrest

unsigned int rb_iseq_constant_body::has_kwrest

Definition at line 318 of file vm_core.h.

◆ has_lead

unsigned int rb_iseq_constant_body::has_lead

Definition at line 313 of file vm_core.h.

◆ has_opt

unsigned int rb_iseq_constant_body::has_opt

Definition at line 314 of file vm_core.h.

◆ has_post

unsigned int rb_iseq_constant_body::has_post

Definition at line 316 of file vm_core.h.

◆ has_rest

unsigned int rb_iseq_constant_body::has_rest

Definition at line 315 of file vm_core.h.

◆ is_entries

union iseq_inline_storage_entry* rb_iseq_constant_body::is_entries

◆ is_size

unsigned int rb_iseq_constant_body::is_size

◆ iseq_encoded

const VALUE* rb_iseq_constant_body::iseq_encoded

◆ iseq_size

unsigned int rb_iseq_constant_body::iseq_size

◆ keyword

const { ... } ::rb_iseq_param_keyword * rb_iseq_constant_body::keyword

◆ lead_num

int rb_iseq_constant_body::lead_num

◆ line_info_size

unsigned int rb_iseq_constant_body::line_info_size

◆ line_info_table

const struct iseq_line_info_entry* rb_iseq_constant_body::line_info_table

◆ local_iseq

struct rb_iseq_struct* rb_iseq_constant_body::local_iseq

◆ local_table

const ID* rb_iseq_constant_body::local_table

◆ local_table_size

unsigned int rb_iseq_constant_body::local_table_size

◆ location

rb_iseq_location_t rb_iseq_constant_body::location

◆ mark_ary

VALUE rb_iseq_constant_body::mark_ary

Definition at line 380 of file vm_core.h.

Referenced by ibf_load_iseq_each(), prepare_iseq_build(), and rb_iseq_mark().

◆ num

int rb_iseq_constant_body::num

Definition at line 349 of file vm_core.h.

◆ opt_num

int rb_iseq_constant_body::opt_num

◆ opt_table

const VALUE* rb_iseq_constant_body::opt_table

◆ param

struct { ... } rb_iseq_constant_body::param

parameter information

def m(a1, a2, ..., aM, # mandatory b1=(...), b2=(...), ..., bN=(...), # optional *c, # rest d1, d2, ..., dO, # post e1:(...), e2:(...), ..., eK:(...), # keyword **f, # keyword_rest &g) # block =>

lead_num = M opt_num = N rest_start = M+N post_start = M+N+(*1) post_num = O keyword_num = K block_start = M+N+(*1)+O+K keyword_bits = M+N+(*1)+O+K+(&1) size = M+N+O+(*1)+K+(&1)+(**1) // parameter size.

Referenced by args_setup_kw_parameters(), for_self_aref(), for_self_aset(), ibf_dump_param_keyword(), ibf_dump_param_opt_table(), ibf_load_iseq_each(), ibf_load_param_keyword(), ibf_load_param_opt_table(), invoke_block(), invoke_bmethod(), iseq_build_kw(), iseq_calc_param_size(), iseq_compile_each(), iseq_data_to_ary(), iseq_memsize(), iseq_set_arguments(), iseq_set_arguments_keywords(), iseq_set_optargs_table(), rb_iseq_build_from_ary(), rb_iseq_disasm(), rb_iseq_free(), rb_iseq_min_max_arity(), rb_iseq_parameters(), rb_vmdebug_stack_dump_th(), setup_parameters_complex(), simple_iseq_p(), vm_call_iseq_setup(), vm_call_iseq_setup_normal_0start(), vm_call_iseq_setup_tailcall(), vm_callee_setup_arg(), vm_callee_setup_block_arg(), vm_callee_setup_block_arg_arg0_splat(), and vm_invoke_iseq_block().

◆ parent_iseq

const struct rb_iseq_struct* rb_iseq_constant_body::parent_iseq

◆ post_num

int rb_iseq_constant_body::post_num

◆ post_start

int rb_iseq_constant_body::post_start

◆ required_num

int rb_iseq_constant_body::required_num

Definition at line 350 of file vm_core.h.

◆ rest_start

int rb_iseq_constant_body::rest_start

◆ size

unsigned int rb_iseq_constant_body::size

◆ stack_max

unsigned int rb_iseq_constant_body::stack_max

◆ table

const ID* rb_iseq_constant_body::table

Definition at line 353 of file vm_core.h.

◆ type

enum rb_iseq_constant_body::iseq_type rb_iseq_constant_body::type

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