2007-02-06 10:41:30 +03:00
|
|
|
/*-*-c-*-*/
|
|
|
|
/**********************************************************************
|
|
|
|
|
|
|
|
vm_opts.h - VM optimize option
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
|
* blockinlining.c, compile.c, compile.h, debug.c, debug.h,
id.c, insnhelper.h, insns.def, thread.c, thread_pthread.ci,
thread_pthread.h, thread_win32.ci, thread_win32.h, vm.h,
vm_dump.c, vm_evalbody.ci, vm_opts.h: fix comments and
copyright year.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13920 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-14 01:13:04 +03:00
|
|
|
Copyright (C) 2004-2007 Koichi Sasada
|
2007-02-06 10:41:30 +03:00
|
|
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
|
2008-01-18 11:56:11 +03:00
|
|
|
#ifndef RUBY_VM_OPTS_H
|
|
|
|
#define RUBY_VM_OPTS_H
|
2007-02-06 10:41:30 +03:00
|
|
|
|
2007-08-19 08:16:13 +04:00
|
|
|
/* Compile options.
|
|
|
|
* You can change these options at runtime by VM::CompileOption.
|
|
|
|
* Following definitions are default values.
|
|
|
|
*/
|
|
|
|
|
2008-08-23 10:18:11 +04:00
|
|
|
#define OPT_TRACE_INSTRUCTION 1
|
2007-08-19 08:16:13 +04:00
|
|
|
#define OPT_TAILCALL_OPTIMIZATION 0
|
|
|
|
#define OPT_PEEPHOLE_OPTIMIZATION 1
|
|
|
|
#define OPT_SPECIALISED_INSTRUCTION 1
|
|
|
|
#define OPT_INLINE_CONST_CACHE 1
|
|
|
|
|
|
|
|
|
|
|
|
/* Build Options.
|
|
|
|
* You can't change these options at runtime.
|
|
|
|
*/
|
|
|
|
|
2013-04-22 23:40:10 +04:00
|
|
|
/* C compiler dependent */
|
2007-02-06 10:41:30 +03:00
|
|
|
#define OPT_DIRECT_THREADED_CODE 1
|
2008-05-22 08:28:13 +04:00
|
|
|
#define OPT_TOKEN_THREADED_CODE 0
|
2007-02-06 10:41:30 +03:00
|
|
|
#define OPT_CALL_THREADED_CODE 0
|
|
|
|
|
|
|
|
/* VM running option */
|
|
|
|
#define OPT_CHECKED_RUN 1
|
|
|
|
#define OPT_INLINE_METHOD_CACHE 1
|
2012-10-06 13:36:35 +04:00
|
|
|
#define OPT_GLOBAL_METHOD_CACHE 1
|
2007-02-06 10:41:30 +03:00
|
|
|
#define OPT_BLOCKINLINING 0
|
|
|
|
|
|
|
|
/* architecture independent, affects generated code */
|
2012-12-04 08:57:50 +04:00
|
|
|
#define OPT_OPERANDS_UNIFICATION 1
|
2007-02-06 10:41:30 +03:00
|
|
|
#define OPT_INSTRUCTIONS_UNIFICATION 0
|
|
|
|
#define OPT_UNIFY_ALL_COMBINATION 0
|
|
|
|
#define OPT_STACK_CACHING 0
|
|
|
|
|
|
|
|
/* misc */
|
|
|
|
#define SUPPORT_JOKE 0
|
|
|
|
|
2012-11-22 13:03:43 +04:00
|
|
|
#ifndef VM_COLLECT_USAGE_DETAILS
|
2012-12-04 08:57:50 +04:00
|
|
|
#define VM_COLLECT_USAGE_DETAILS 0
|
2012-11-22 13:03:43 +04:00
|
|
|
#endif
|
|
|
|
|
2008-01-18 11:56:11 +03:00
|
|
|
#endif /* RUBY_VM_OPTS_H */
|