2008-05-31 02:17:45 -04:00
|
|
|
/**********************************************************************
|
|
|
|
|
* common.mk: clean up
- remove blockinlining.$(OBJEXT) to built
- make ENCODING_H_INCLDUES variable (include/ruby/encoding.h)
- make VM_CORE_H_INCLUDES variable (vm_core.h)
- simplify rules.
- make depends rule to output depend status using gcc -MM.
* include/ruby/mvm.h, include/ruby/vm.h: rename mvm.h to vm.h.
* include/ruby.h: ditto.
* load.c: add inclusion explicitly.
* enumerator.c, object.c, parse.y, thread.c, vm_dump.c:
remove useless inclusion.
* eval_intern.h: cleanup inclusion.
* vm_core.h: rb_thread_t should be defined in this file.
* vm_evalbody.c, vm_exec.c: rename vm_evalbody.c to vm_exec.c.
* vm.h, vm_exec.h: rename vm.h to vm_exec.h.
* insnhelper.h, vm_insnhelper.h: rename insnhelper.h to vm_insnhelper.h.
* vm.c, vm_insnhelper.c, vm_insnhelper.h:
- rename vm_eval() to vm_exec_core().
- rename vm_eval_body() to vm_exec().
- cleanup include order.
* vm_method.c: fix comment.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19466 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-22 20:20:28 -04:00
|
|
|
ruby/vm.h -
|
2008-05-31 02:17:45 -04:00
|
|
|
|
|
|
|
$Author$
|
|
|
|
created at: Sat May 31 15:17:36 2008
|
|
|
|
|
|
|
|
Copyright (C) 2008 Yukihiro Matsumoto
|
|
|
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
2008-10-21 16:59:23 -04:00
|
|
|
#ifndef RUBY_VM_H
|
|
|
|
#define RUBY_VM_H 1
|
2008-05-31 02:17:45 -04:00
|
|
|
|
2010-05-25 00:26:50 -04:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#if 0
|
|
|
|
} /* satisfy cc-mode */
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2010-07-21 17:38:25 -04:00
|
|
|
#if defined __GNUC__ && __GNUC__ >= 4
|
|
|
|
#pragma GCC visibility push(default)
|
|
|
|
#endif
|
|
|
|
|
2008-10-21 16:59:23 -04:00
|
|
|
/* Place holder.
|
|
|
|
*
|
|
|
|
* We will prepare VM creation/control APIs on 1.9.2 or later.
|
|
|
|
* If you have an interest about it, please see mvm branch.
|
|
|
|
* http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/mvm/
|
|
|
|
*/
|
2008-06-09 01:18:03 -04:00
|
|
|
|
2009-09-18 03:29:17 -04:00
|
|
|
/* VM type declaration */
|
|
|
|
typedef struct rb_vm_struct ruby_vm_t;
|
|
|
|
|
|
|
|
/* core API */
|
|
|
|
int ruby_vm_destruct(ruby_vm_t *vm);
|
|
|
|
|
2010-07-21 17:38:25 -04:00
|
|
|
#if defined __GNUC__ && __GNUC__ >= 4
|
|
|
|
#pragma GCC visibility pop
|
|
|
|
#endif
|
|
|
|
|
2010-05-25 00:26:50 -04:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
#if 0
|
|
|
|
{ /* satisfy cc-mode */
|
|
|
|
#endif
|
|
|
|
} /* extern "C" { */
|
|
|
|
#endif
|
|
|
|
|
2008-10-21 16:59:23 -04:00
|
|
|
#endif /* RUBY_VM_H */
|