From 27013e71e4ca0417ad8a694bb743de5457ed3ff7 Mon Sep 17 00:00:00 2001 From: ko1 Date: Sun, 1 Jul 2007 18:16:02 +0000 Subject: * yarvcore.h, compile.c, insnhelper.ci, iseq.c, vm.c: rename structure names and field names. * insnhelper.h, insns.def: add GET_CONST_INLINE_CACHE(). * iseq.c: add rb_iseq_build_for_ruby2cext(). * yarvcore.h, vm.h: move declaration of rb_insn_func_t to yarvcore.h. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12675 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- yarvcore.h | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'yarvcore.h') diff --git a/yarvcore.h b/yarvcore.h index 9bd7462445..34de53b8b9 100644 --- a/yarvcore.h +++ b/yarvcore.h @@ -140,7 +140,7 @@ extern ID idFuncall; extern ID id__send_bang; -struct insn_info_struct { +struct iseq_insn_info_entry { unsigned short position; unsigned short line_no; }; @@ -161,7 +161,7 @@ struct insn_info_struct { #define CATCH_TYPE_REDO INT2FIX(5) #define CATCH_TYPE_NEXT INT2FIX(6) -struct catch_table_entry { +struct iseq_catch_table_entry { VALUE type; VALUE iseq; unsigned long start; @@ -244,11 +244,10 @@ struct rb_iseq_struct { VALUE *iseq; /* iseq (insn number and openrads) */ VALUE *iseq_encoded; /* encoded iseq */ unsigned long iseq_size; - VALUE iseq_mark_ary; /* Array: includes operands which should be GC marked */ - + VALUE mark_ary; /* Array: includes operands which should be GC marked */ /* insn info, must be freed */ - struct insn_info_struct *insn_info_table; + struct iseq_insn_info_entry *insn_info_table; unsigned long insn_info_size; ID *local_table; /* must free */ @@ -288,12 +287,12 @@ struct rb_iseq_struct { int arg_post_len; int arg_post_start; int arg_size; - VALUE *arg_opt_tbl; + VALUE *arg_opt_table; int stack_max; /* for stack overflow check */ /* catch table */ - struct catch_table_entry *catch_table; + struct iseq_catch_table_entry *catch_table; int catch_table_size; /* for child iseq */ @@ -607,7 +606,12 @@ void rb_vm_change_state(void); typedef VALUE CDHASH; +#ifndef FUNC_FASTCALL +#define FUNC_FASTCALL(x) x +#endif +typedef rb_control_frame_t * + (FUNC_FASTCALL(*rb_insn_func_t))(rb_thread_t *, rb_control_frame_t *); #define GC_GUARDED_PTR(p) ((VALUE)((VALUE)(p) | 0x01)) #define GC_GUARDED_PTR_REF(p) ((void *)(((VALUE)p) & ~0x03)) -- cgit v1.2.3