[前][次][番号順一覧][スレッド一覧]

ruby-changes:59533

From: =E5=8D=9C=E9=83=A8=E6=98=8C=E5=B9=B3 <ko1@a...>
Date: Fri, 27 Dec 2019 17:53:30 +0900 (JST)
Subject: [ruby-changes:59533] c524df0780 (master): internal/proc.h rework

https://git.ruby-lang.org/ruby.git/commit/?id=c524df0780

From c524df078044dfbf44215557e7b7a0faaa3bc3db Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=8D=9C=E9=83=A8=E6=98=8C=E5=B9=B3?=
 <shyouhei@r...>
Date: Wed, 4 Dec 2019 12:10:06 +0900
Subject: internal/proc.h rework

Annotated MJIT_FUNC_EXPORTED functions as such.  Declaration of
rb_sym_to_proc is moved into this file because the function is defined
in proc.c rather than string.c.

diff --git a/internal/proc.h b/internal/proc.h
index 2831afc..7f2bec8 100644
--- a/internal/proc.h
+++ b/internal/proc.h
@@ -9,16 +9,23 @@ https://github.com/ruby/ruby/blob/trunk/internal/proc.h#L9
  *             modify this file, provided that  the conditions mentioned in the
  *             file COPYING are met.  Consult the file for details.
  */
-
-struct rb_block;
+#include "ruby/ruby.h"          /* for rb_block_call_func_t */
+#include "ruby/st.h"            /* for st_index_t */
+struct rb_block;                /* in vm_core.h */
+struct rb_iseq_struct;          /* in vm_core.h */
 
 /* proc.c */
 VALUE rb_proc_location(VALUE self);
 st_index_t rb_hash_proc(st_index_t hash, VALUE proc);
 int rb_block_arity(void);
 int rb_block_min_max_arity(int *max);
-VALUE rb_func_proc_new(rb_block_call_func_t func, VALUE val);
 VALUE rb_func_lambda_new(rb_block_call_func_t func, VALUE val, int min_argc, int max_argc);
 VALUE rb_block_to_s(VALUE self, const struct rb_block *block, const char *additional_info);
 
+MJIT_SYMBOL_EXPORT_BEGIN
+VALUE rb_func_proc_new(rb_block_call_func_t func, VALUE val);
+VALUE rb_iseq_location(const struct rb_iseq_struct *iseq);
+VALUE rb_sym_to_proc(VALUE sym);
+MJIT_SYMBOL_EXPORT_END
+
 #endif /* INTERNAL_PROC_H */
diff --git a/internal/string.h b/internal/string.h
index 2135490..d020d06 100644
--- a/internal/string.h
+++ b/internal/string.h
@@ -54,7 +54,6 @@ VALUE rb_str_initialize(VALUE str, const char *ptr, long len, rb_encoding *enc); https://github.com/ruby/ruby/blob/trunk/internal/string.h#L54
 #define is_broken_string(str) (rb_enc_str_coderange(str) == ENC_CODERANGE_BROKEN)
 size_t rb_str_memsize(VALUE);
 VALUE rb_sym_proc_call(ID mid, int argc, const VALUE *argv, int kw_splat, VALUE passed_proc);
-VALUE rb_sym_to_proc(VALUE sym);
 char *rb_str_to_cstr(VALUE str);
 VALUE rb_str_eql(VALUE str1, VALUE str2);
 VALUE rb_obj_as_string_result(VALUE str, VALUE obj);
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]