Home
last modified time | relevance | path

Searched refs:VM_INSN_INFO_TABLE_IMPL (Results 1 – 5 of 5) sorted by relevance

/dports/lang/ruby26/ruby-2.6.9/
H A Diseq.c35 #if VM_INSN_INFO_TABLE_IMPL == 2
91 #if VM_INSN_INFO_TABLE_IMPL == 2 in rb_iseq_free()
497 #if VM_CHECK_MODE > 0 && VM_INSN_INFO_TABLE_IMPL > 0
504 #if VM_INSN_INFO_TABLE_IMPL == 2 in rb_iseq_insns_info_encode_positions()
518 #if VM_INSN_INFO_TABLE_IMPL == 2
554 #if VM_CHECK_MODE > 0 && VM_INSN_INFO_TABLE_IMPL > 0 in finish_iseq_build()
1509 #if VM_INSN_INFO_TABLE_IMPL == 1 /* binary search */
1605 #if VM_CHECK_MODE > 0 || VM_INSN_INFO_TABLE_IMPL == 0
1644 #if VM_INSN_INFO_TABLE_IMPL == 0 /* linear search */
1652 #if VM_CHECK_MODE > 0 && VM_INSN_INFO_TABLE_IMPL > 0
[all …]
H A Diseq.h157 #if VM_INSN_INFO_TABLE_IMPL == 2
H A Dvm_core.h65 #ifndef VM_INSN_INFO_TABLE_IMPL
66 # define VM_INSN_INFO_TABLE_IMPL 2 macro
428 #if VM_INSN_INFO_TABLE_IMPL == 2
H A Dcompile.c9071 #if VM_INSN_INFO_TABLE_IMPL == 2 in ibf_dump_iseq_each()
9084 #if VM_INSN_INFO_TABLE_IMPL == 2 in ibf_dump_iseq_each()
9090 #if VM_INSN_INFO_TABLE_IMPL == 2 in ibf_dump_iseq_each()
9186 #if VM_INSN_INFO_TABLE_IMPL == 2 in ibf_load_iseq_each()
H A DChangeLog23711 Make VM_INSN_INFO_TABLE_IMPL=1 work
23714 VM_INSN_INFO_TABLE_IMPL=2.
25430 compile.c: Fix segfault when VM_INSN_INFO_TABLE_IMPL is not 2
25433 `positions` is only used when VM_INSN_INFO_TABLE_IMPL is 2.
37469 * vm_core.h (VM_INSN_INFO_TABLE_IMPL): use 1 (binary search)
39476 Currently, VM_INSN_INFO_TABLE_IMPL == 0 means linear search, and
39477 VM_INSN_INFO_TABLE_IMPL == 1 means binary search. I plan to add