mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
* vm_core.h: constify rb_iseq_constant_body::iseq_encoded and
rb_control_frame_t::pc. * compile.c (rb_iseq_translate_threaded_code): catch up this fix. * iseq.c: ditto. * vm_exec.c (vm_exec_core): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51356 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f965866f4f
commit
18f6978625
5 changed files with 30 additions and 16 deletions
|
@ -60,12 +60,12 @@ vm_exec_core(rb_thread_t *th, VALUE initial)
|
|||
#endif
|
||||
|
||||
#if defined(__GNUC__) && defined(__i386__)
|
||||
DECL_SC_REG(VALUE *, pc, "di");
|
||||
DECL_SC_REG(const VALUE *, pc, "di");
|
||||
DECL_SC_REG(rb_control_frame_t *, cfp, "si");
|
||||
#define USE_MACHINE_REGS 1
|
||||
|
||||
#elif defined(__GNUC__) && defined(__x86_64__)
|
||||
DECL_SC_REG(VALUE *, pc, "14");
|
||||
DECL_SC_REG(const VALUE *, pc, "14");
|
||||
# if defined(__native_client__)
|
||||
DECL_SC_REG(rb_control_frame_t *, cfp, "13");
|
||||
# else
|
||||
|
@ -74,13 +74,13 @@ vm_exec_core(rb_thread_t *th, VALUE initial)
|
|||
#define USE_MACHINE_REGS 1
|
||||
|
||||
#elif defined(__GNUC__) && defined(__powerpc64__)
|
||||
DECL_SC_REG(VALUE *, pc, "14");
|
||||
DECL_SC_REG(const VALUE *, pc, "14");
|
||||
DECL_SC_REG(rb_control_frame_t *, cfp, "15");
|
||||
#define USE_MACHINE_REGS 1
|
||||
|
||||
#else
|
||||
register rb_control_frame_t *reg_cfp;
|
||||
VALUE *reg_pc;
|
||||
const VALUE *reg_pc;
|
||||
#endif
|
||||
|
||||
#if USE_MACHINE_REGS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue