diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | vm_exec.h | 14 |
2 files changed, 21 insertions, 1 deletions
@@ -1,3 +1,11 @@ +Wed Feb 27 12:13:32 2013 NARUSE, Yui <[email protected]> + + * vm_exec.h (END_INSN): llvm-gcc may optimize out reg_cfp and cause + Stack/cfp consistency error when the instruction doesn't use reg_cfp. + Usually instructions use PUSH() but for example trace doesn't. + This hack cause speed down but you shouldn't use llvm-gcc, use clang. + [Bug #7938] + Wed Feb 27 10:23:00 2013 Zachary Scott <[email protected]> * thread.c (thread_raise_m): rdoc formatting @@ -116,9 +116,21 @@ error ! #endif /* DISPATCH_DIRECT_THREADED_CODE */ +#if defined(__llvm__) && !defined(__clang__) + /* llvm-gcc may optimize out reg_cfp and cause Stack/cfp consistency error + * when the instruction doesn't use reg_cfp. + * Usually instructions use PUSH() but for example trace doesn't. + * This hack cause speed down but you shouldn't use llvm-gcc, use clang. + */ #define END_INSN(insn) \ + { rb_control_frame_t *volatile RB_UNUSED_VAR(tmpcfp) = reg_cfp; } \ DEBUG_END_INSN(); \ - TC_DISPATCH(insn); \ + TC_DISPATCH(insn); +#else +#define END_INSN(insn) \ + DEBUG_END_INSN(); \ + TC_DISPATCH(insn); +#endif #define INSN_DISPATCH() \ TC_DISPATCH(__START__) \ |