mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* vm_core.h, vm_insnhelper.h: move definition of VMDEBUG
from vm_insnhelper.h to vm_core.h. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52252 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1b5dce5a4e
commit
9e1b06e17d
3 changed files with 27 additions and 22 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
Sat Oct 24 01:56:01 2015 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
|
* vm_core.h, vm_insnhelper.h: move definition of VMDEBUG
|
||||||
|
from vm_insnhelper.h to vm_core.h.
|
||||||
|
|
||||||
Sat Oct 24 01:51:01 2015 Akinori MUSHA <knu@iDaemons.org>
|
Sat Oct 24 01:51:01 2015 Akinori MUSHA <knu@iDaemons.org>
|
||||||
|
|
||||||
* NEWS: [DOC] In the new safe call syntax, arguments are evaluated
|
* NEWS: [DOC] In the new safe call syntax, arguments are evaluated
|
||||||
|
|
|
||||||
22
vm_core.h
22
vm_core.h
|
|
@ -20,6 +20,28 @@
|
||||||
#define VM_CHECK_MODE 0
|
#define VM_CHECK_MODE 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* VM Debug Level
|
||||||
|
*
|
||||||
|
* debug level:
|
||||||
|
* 0: no debug output
|
||||||
|
* 1: show instruction name
|
||||||
|
* 2: show stack frame when control stack frame is changed
|
||||||
|
* 3: show stack status
|
||||||
|
* 4: show register
|
||||||
|
* 5:
|
||||||
|
* 10: gc check
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef VMDEBUG
|
||||||
|
#define VMDEBUG 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
#undef VMDEBUG
|
||||||
|
#define VMDEBUG 3
|
||||||
|
#endif
|
||||||
|
|
||||||
#if VM_CHECK_MODE > 0
|
#if VM_CHECK_MODE > 0
|
||||||
#define VM_ASSERT(expr) ( \
|
#define VM_ASSERT(expr) ( \
|
||||||
LIKELY(expr) ? (void)0 : \
|
LIKELY(expr) ? (void)0 : \
|
||||||
|
|
|
||||||
|
|
@ -12,28 +12,6 @@
|
||||||
#ifndef RUBY_INSNHELPER_H
|
#ifndef RUBY_INSNHELPER_H
|
||||||
#define RUBY_INSNHELPER_H
|
#define RUBY_INSNHELPER_H
|
||||||
|
|
||||||
/**
|
|
||||||
* VM Debug Level
|
|
||||||
*
|
|
||||||
* debug level:
|
|
||||||
* 0: no debug output
|
|
||||||
* 1: show instruction name
|
|
||||||
* 2: show stack frame when control stack frame is changed
|
|
||||||
* 3: show stack status
|
|
||||||
* 4: show register
|
|
||||||
* 5:
|
|
||||||
* 10: gc check
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef VMDEBUG
|
|
||||||
#define VMDEBUG 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if 0
|
|
||||||
#undef VMDEBUG
|
|
||||||
#define VMDEBUG 3
|
|
||||||
#endif
|
|
||||||
|
|
||||||
extern VALUE ruby_vm_const_missing_count;
|
extern VALUE ruby_vm_const_missing_count;
|
||||||
|
|
||||||
#if VM_COLLECT_USAGE_DETAILS
|
#if VM_COLLECT_USAGE_DETAILS
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue