From 67f5f9477cac18773794ad8692f1760e3712211e Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 17 Jul 2015 13:18:12 +0000 Subject: compile.c: use ruby_tag_type * compile.c (iseq_compile_each): use enum ruby_tag_type names. * vm_core.h (ruby_tag_type): move from eval_intern.h for compiling break/next/redo/return. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51283 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_core.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'vm_core.h') diff --git a/vm_core.h b/vm_core.h index 4055e79..7cb60aa 100644 --- a/vm_core.h +++ b/vm_core.h @@ -124,6 +124,27 @@ typedef unsigned long rb_num_t; +enum ruby_tag_type { + RUBY_TAG_RETURN = 0x1, + RUBY_TAG_BREAK = 0x2, + RUBY_TAG_NEXT = 0x3, + RUBY_TAG_RETRY = 0x4, + RUBY_TAG_REDO = 0x5, + RUBY_TAG_RAISE = 0x6, + RUBY_TAG_THROW = 0x7, + RUBY_TAG_FATAL = 0x8, + RUBY_TAG_MASK = 0xf +}; +#define TAG_RETURN RUBY_TAG_RETURN +#define TAG_BREAK RUBY_TAG_BREAK +#define TAG_NEXT RUBY_TAG_NEXT +#define TAG_RETRY RUBY_TAG_RETRY +#define TAG_REDO RUBY_TAG_REDO +#define TAG_RAISE RUBY_TAG_RAISE +#define TAG_THROW RUBY_TAG_THROW +#define TAG_FATAL RUBY_TAG_FATAL +#define TAG_MASK RUBY_TAG_MASK + /* iseq data type */ struct iseq_compile_data_ensure_node_stack; -- cgit v1.1