mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* vm_core.h ({GET,INC}_VM_STATE_VERSION): moved from vm_insnhelper.h.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24690 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
afb957b129
commit
a2f378737f
3 changed files with 9 additions and 6 deletions
|
@ -1,7 +1,10 @@
|
|||
Fri Aug 28 09:34:04 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
Fri Aug 28 10:21:30 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* iseq.c (iseq_mark): skip outdated cache entries.
|
||||
|
||||
* vm_core.h ({GET,INC}_VM_STATE_VERSION): moved from
|
||||
vm_insnhelper.h.
|
||||
|
||||
Fri Aug 28 07:25:25 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* enumerator.c (next_i): typo fixed (reached at end -> reached an
|
||||
|
|
|
@ -529,6 +529,11 @@ typedef struct {
|
|||
/* inline cache */
|
||||
typedef struct iseq_inline_cache_entry *IC;
|
||||
|
||||
extern VALUE ruby_vm_global_state_version;
|
||||
|
||||
#define GET_VM_STATE_VERSION() (ruby_vm_global_state_version)
|
||||
#define INC_VM_STATE_VERSION() \
|
||||
(ruby_vm_global_state_version = (ruby_vm_global_state_version+1) & 0x8fffffff)
|
||||
void rb_vm_change_state(void);
|
||||
|
||||
typedef VALUE CDHASH;
|
||||
|
|
|
@ -58,13 +58,8 @@ enum {
|
|||
};
|
||||
|
||||
extern char ruby_vm_redefined_flag[BOP_LAST_];
|
||||
extern VALUE ruby_vm_global_state_version;
|
||||
extern VALUE ruby_vm_const_missing_count;
|
||||
|
||||
#define GET_VM_STATE_VERSION() (ruby_vm_global_state_version)
|
||||
#define INC_VM_STATE_VERSION() \
|
||||
(ruby_vm_global_state_version = (ruby_vm_global_state_version+1) & 0x8fffffff)
|
||||
|
||||
|
||||
/**********************************************************/
|
||||
/* deal with stack */
|
||||
|
|
Loading…
Add table
Reference in a new issue