Skip to content

Commit

Permalink
* vm_exec.h (VM_DEBUG_STACKOVERFLOW): added.
Browse files Browse the repository at this point in the history
  disable stack overflow check for every stack pushing as default.
* vm_exec.c (vm_stack_overflow_for_insn): ditto.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44275 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
ko1 committed Dec 18, 2013
1 parent 4ef3a23 commit 26e553d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ChangeLog
@@ -1,3 +1,10 @@
Wed Dec 18 14:32:06 2013 Koichi Sasada <ko1@atdot.net>

* vm_exec.h (VM_DEBUG_STACKOVERFLOW): added.
disable stack overflow check for every stack pushing as default.

* vm_exec.c (vm_stack_overflow_for_insn): ditto.

Wed Dec 18 10:00:22 2013 Eric Hodel <drbrain@segment7.net>

* lib/rubygems: Update to RubyGems master d8f12e2. This increases the
Expand Down
2 changes: 2 additions & 0 deletions vm_exec.c
Expand Up @@ -29,6 +29,7 @@ static void vm_analysis_insn(int insn);
#endif
/* #define DECL_SC_REG(r, reg) VALUE reg_##r */

#if VM_DEBUG_STACKOVERFLOW
NORETURN(static void vm_stack_overflow_for_insn(void));
static void
vm_stack_overflow_for_insn(void)
Expand All @@ -37,6 +38,7 @@ vm_stack_overflow_for_insn(void)
"Please contact ruby-core/dev with your (a part of) script. "
"This check will be removed soon.");
}
#endif

#if !OPT_CALL_THREADED_CODE
static VALUE
Expand Down
7 changes: 7 additions & 0 deletions vm_exec.h
Expand Up @@ -169,7 +169,14 @@ default: \
#endif

#define SCREG(r) (reg_##r)

#define VM_DEBUG_STACKOVERFLOW 0

#if VM_DEBUG_STACKOVERFLOW
#define CHECK_VM_STACK_OVERFLOW_FOR_INSN(cfp, margin) \
WHEN_VM_STACK_OVERFLOWED(cfp, (cfp)->sp, margin) vm_stack_overflow_for_insn()
#else
#define CHECK_VM_STACK_OVERFLOW_FOR_INSN(cfp, margin)
#endif

#endif /* RUBY_VM_EXEC_H */

0 comments on commit 26e553d

Please sign in to comment.